/* ── TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --stone:        #F5F0E8;
  --stone-2:      #EDE6D6;
  --stone-3:      #DDD3BC;
  --parchment:    #FAF7F2;
  --dark:         #1C1510;
  --dark-2:       #2A1F14;
  --text:         #2C2218;
  --text-muted:   #7A6A56;
  --terra:        #B86B3A;
  --terra-light:  #D4895A;
  --terra-dark:   #8A4E28;
  --maquis:       #3D5E35;
  --gold:         #C4963C;
  --gold-light:   #DDB96A;
  --shadow-warm:  0 8px 40px rgba(60,30,10,.12);
  --shadow-card:  0 4px 24px rgba(60,30,10,.08);
  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Josefin Sans', system-ui, sans-serif;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--parchment);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(184,107,58,.2); }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: var(--radius-sm); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--stone); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 3px; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 4rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt  { background: var(--stone); }
.section-dark { background: var(--dark); color: #F5F0E8; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-body); font-size: .68rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--terra);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.section-label::before { content:''; width: 2rem; height: 1px; background: var(--terra); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.section-heading em { font-style: italic; font-weight: 400; color: var(--terra); }
.section-heading.light { color: #F5F0E8; }
.section-heading.light em { color: var(--gold-light); }

.section-sub {
  font-size: .95rem; font-weight: 300; color: var(--text-muted);
  max-width: 54ch; line-height: 1.85; margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--terra); color: #fff;
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.25rem;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background .25s var(--ease-out), transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,107,58,.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .7rem;
  background: transparent; color: var(--dark);
  font-family: var(--font-body); font-size: .75rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.25rem;
  border: 1px solid rgba(44,34,24,.25); border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color .25s, color .25s, transform .2s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }
.btn-ghost.light { color: #F5F0E8; border-color: rgba(245,240,232,.3); }
.btn-ghost.light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.5rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(44,34,24,.08), 0 4px 24px rgba(44,34,24,.06);
}
.navbar.solid {
  background: rgba(250,247,242,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(44,34,24,.1);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; letter-spacing: .04em;
  color: #fff; text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.2;
  transition: color .3s;
}
.navbar.scrolled .nav-logo,
.navbar.solid .nav-logo { color: var(--dark); }
.nav-logo span {
  font-family: var(--font-body); font-size: .55rem; font-weight: 300;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .3s;
}
.navbar.scrolled .nav-logo span,
.navbar.solid .nav-logo span { color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.8); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -.3rem; left: 0;
  width: 0; height: 1px; background: var(--terra);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active-page::after { width: 100%; }
.nav-links a.active-page { color: #fff; }
.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.solid .nav-links a:hover,
.navbar.scrolled .nav-links a.active-page,
.navbar.solid .nav-links a.active-page { color: var(--terra); }

.nav-cta { font-size: .68rem; padding: .65rem 1.5rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; margin: 5px 0;
  transition: all .3s; border-radius: 1px;
}
.navbar.scrolled .nav-burger span,
.navbar.solid .nav-burger span { background: var(--dark); }
@media (max-width: 900px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-burger { display: block; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--parchment);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark-2, #2A1F14);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  letter-spacing: .02em; color: rgba(245,240,232,.9);
  text-decoration: none; display: block; margin-bottom: .4rem;
}
.footer-tagline { font-size: .7rem; color: rgba(245,240,232,.3); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-about { font-size: .82rem; color: rgba(245,240,232,.4); line-height: 1.8; max-width: 36ch; }
.footer-col-title {
  font-family: var(--font-display); font-size: .88rem; font-weight: 700;
  color: rgba(245,240,232,.7); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .78rem; color: rgba(245,240,232,.38); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-sep { height: 1px; background: rgba(245,240,232,.07); margin-bottom: 2rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .7rem; color: rgba(245,240,232,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .7rem; color: rgba(245,240,232,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(245,240,232,.6); }

/* Shared JS */
