:root {
  --bg0: #fefcf7; --bg1: #f9f5ec; --bg2: #ede0c4;
  --gold: #b8963c; --gold-dk: #957828;
  --sage: #7a9e7e; --sage-dk: #527a56;
  --ink: #1a1714;
  --ink65: rgba(26,23,20,0.65); --ink40: rgba(26,23,20,0.40);
  --ink15: rgba(26,23,20,0.15); --ink08: rgba(26,23,20,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --nav-h: 58px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg0); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

.sec-label { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sec-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.15; color: var(--ink); margin-bottom: 14px; }
.body-text { font-size: 0.92rem; font-weight: 300; color: var(--ink65); line-height: 1.85; margin-bottom: 12px; }
.divider { width: 40px; height: 1px; background: var(--ink15); margin: 16px 0; }
.text-link { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; transition: gap 0.2s; }
.text-link:hover { gap: 10px; }
.btn-gold { display: inline-block; padding: 12px 26px; background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-dk); }
.btn-outline { display: inline-block; padding: 11px 24px; background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid var(--ink15); border-radius: 2px; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-lt { display: inline-block; padding: 11px 24px; background: transparent; color: rgba(255,255,255,0.65); font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.22); border-radius: 2px; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-outline-lt:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: rgba(254,252,247,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--ink08); display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(16px, 4vw, 52px); z-index: 100; gap: 14px; }
.nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); list-style: none; }
.nav-links a { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink40); transition: color 0.18s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-social { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-social a { display: flex; align-items: center; color: var(--ink40); transition: color 0.18s; }
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-cta { background: var(--gold); color: #fff; padding: 8px 16px; border-radius: 2px; font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; flex-shrink: 0; transition: background 0.18s; white-space: nowrap; display: inline-block; }
.nav-cta:hover { background: var(--gold-dk); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; flex-shrink: 0; cursor: pointer; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.mob-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg0); border-bottom: 1px solid var(--ink08); padding: 16px 24px 20px; z-index: 99; flex-direction: column; }
.mob-drawer.open { display: flex; }
.mob-drawer a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink65); padding: 13px 0; border-bottom: 1px solid var(--ink08); display: block; }
.mob-drawer a:last-of-type { border-bottom: none; }
.mob-social { display: flex; gap: 18px; padding: 14px 0 6px; }
.mob-social a { border: none !important; padding: 4px 0 !important; color: var(--ink40) !important; }
.mob-social svg { width: 20px; height: 20px; fill: currentColor; }
.mob-cta { margin-top: 14px; background: var(--gold); color: #fff; text-align: center; padding: 13px; border-radius: 2px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border: none !important; cursor: pointer; display: block; }

main { padding-top: var(--nav-h); }

/* CTA BAND */
.cta-band { background: var(--ink); padding: clamp(44px, 6vw, 68px) clamp(20px, 6vw, 80px); text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: #fff; margin-bottom: 10px; }
.cta-band p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.4); margin-bottom: 26px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #131110; padding: clamp(32px, 4vw, 52px) clamp(20px, 6vw, 80px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-col-title { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 12px; }
.footer-col a, .footer-col p { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 2; display: block; transition: color 0.18s; }
.footer-col a:hover { color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 14px; margin-top: 12px; }
.footer-social a { color: rgba(255,255,255,0.28); transition: color 0.18s; display: flex; }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { background: #0d0b0a; padding: 13px clamp(20px, 6vw, 80px); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.footer-bottom span { font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.18); letter-spacing: 0.06em; }

/* FEATURE PAGES */
.feature-header { background: var(--bg1); padding: clamp(32px, 5vw, 52px) clamp(20px, 6vw, 80px) clamp(20px, 3vw, 32px); }
.feature-status { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(122,158,126,0.35); border-radius: 20px; padding: 6px 16px; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dk); margin-bottom: 14px; }
.feature-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); animation: pulse 2s infinite; }
.feature-status.complete { border-color: rgba(184,150,60,0.35); color: var(--gold); }
.feature-status.complete .feature-status-dot { background: var(--gold); animation: none; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
.feature-copy { background: var(--bg2); padding: clamp(28px, 4vw, 48px) clamp(20px, 6vw, 80px); }
.feature-copy-inner { max-width: 640px; }
.photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(transparent, rgba(26,23,20,0.62)); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.88); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links, .nav-social, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .footer { grid-template-columns: 1fr; }
}
