*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8973A;
  --gold-light: #D4AF5A;
  --gold-pale: #F7F2E8;
  --ink: #1C1A16;
  --ink-mid: #3D3A32;
  --ink-muted: #7A7568;
  --cream: #FDFAF4;
  --cream-dark: #F0EBE0;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 250, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* ── SHARED ── */
.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-heading em { font-style: italic; color: var(--gold); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(28, 26, 22, 0.3);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3rem 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(253,250,244,0.5);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,250,244,0.4);
}

@media (max-width: 768px) {
  nav ul { gap: 1rem; }
}

@media (max-width: 520px) {
  nav ul li:not(:last-child) { display: none; }
}
