@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --black:     #0a0908;
  --charcoal:  #1b1a17;
  --dark:      #252320;
  --mid:       #5a5449;
  --rule:      #cdc4b0;
  --pale:      #e8e0ce;
  --cream:     #f4efe4;
  --white:     #faf7f0;
  --gold:      #a8832e;
  --gold-hi:   #c9a84c;
  --gold-pale: #f0e5c8;
  --orange:    #d4622a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,131,46,0.15);
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(10,9,8,0.98);
  border-color: rgba(168,131,46,0.28);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark { width: 30px; height: 30px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  color: var(--white); letter-spacing: 0.03em; line-height: 1.2;
}
.nav-logo-text span {
  display: block; font-size: 9px; font-weight: 300;
  font-style: italic; color: rgba(250,247,240,0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(250,247,240,0.48);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-hi); }

.nav-cta {
  padding: 9px 20px;
  background: var(--gold); color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-hi); }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(250,247,240,0.6); transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: rgba(10,9,8,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--white);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-hi); }
.nav-mobile .mobile-cta {
  margin-top: 16px; padding: 14px 40px;
  background: var(--gold); color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-mobile-close {
  position: absolute; top: 20px; right: 6%;
  background: none; border: none; cursor: pointer;
  color: rgba(250,247,240,0.4); font-size: 28px; line-height: 1;
}

@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  background: #0d0c0a;
  border-bottom: 1px solid rgba(168,131,46,0.1);
  padding: 0 6%;
  margin-top: 60px;
}
.breadcrumb-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 10px 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(250,247,240,0.28);
  letter-spacing: 0.05em;
}
.breadcrumb-inner a {
  color: rgba(250,247,240,0.35); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--gold-hi); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-gold {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-hi); transform: translateY(-1px); }

.btn-outline-light {
  display: inline-block; padding: 14px 32px;
  background: transparent; color: rgba(250,247,240,0.52);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(250,247,240,0.18); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-hi); }

.btn-outline-dark {
  display: inline-block; padding: 14px 32px;
  background: transparent; color: var(--mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--rule); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-block; padding: 14px 36px;
  background: var(--charcoal); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.btn-dark:hover { background: var(--black); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 64px 6% 36px;
  border-top: 1px solid rgba(168,131,46,0.1);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(168,131,46,0.08);
  margin-bottom: 32px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
}
.footer-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600; color: var(--white);
  letter-spacing: 0.04em; line-height: 1.2;
}
.footer-brand-text span {
  display: block; font-size: 9px; font-weight: 300;
  font-style: italic; color: rgba(250,247,240,0.28);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; font-weight: 300;
  color: rgba(250,247,240,0.28); margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(250,247,240,0.32); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-hi); }
.footer-col p { font-size: 13px; font-weight: 300; color: rgba(250,247,240,0.32); line-height: 1.7; }
.footer-base {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 11px; color: rgba(250,247,240,0.16); }
.footer-legal { font-size: 11px; color: rgba(250,247,240,0.13); line-height: 1.65; max-width: 580px; text-align: right; }

/* ── SHARED SECTIONS ─────────────────────────────── */
.sec { padding: 96px 6%; }
.sec-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.eyebrow.light { color: var(--gold-hi); }
.eyebrow.light::before { background: var(--gold-hi); }

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.015em;
  color: var(--charcoal);
}
.sec-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.sec-title.on-dark { color: var(--white); }
.sec-title.on-dark em { color: var(--gold-hi); }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── SVG LOGO MARK ────────────────────────────────── */
.logo-svg { width: 30px; height: 30px; flex-shrink: 0; }

/* ── RESPONSIVE FOOTER ────────────────────────────── */
@media(max-width:860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-legal { text-align: left; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── DISCLAIMER BAR ───────────────────────────────── */
.disclaimer-bar {
  background: var(--pale); border-top: 1px solid var(--rule);
  padding: 24px 6%;
}
.disclaimer-bar p {
  max-width: 1100px; margin: 0 auto;
  font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7;
}
.disclaimer-bar p strong { color: var(--charcoal); font-weight: 500; }
