/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #1A1A2E;
  --cream:   #F5F0E8;
  --cream-d: #EDEAE2;
  --gold:    #C8A96E;
  --gold-lt: #E8D8B0;
  --text:    #2D2D2D;
  --muted:   #5A5A5A;
  --white:   #FFFFFF;
  --grain:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 64px; /* nav height */
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(245,240,232,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-lt);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 0.3rem;
}
@media (max-width: 680px) {
  nav { padding: 0 1.3rem; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(245,240,232,0.98);
    border-bottom: 1px solid var(--gold-lt);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem 1.8rem; width: 100%;
    font-size: 0.9rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.5rem 1.8rem; padding: 0.65rem 1.3rem; }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--ink);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grain); pointer-events: none; opacity: 0.5;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,169,110,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 0.9rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: rgba(245,240,232,0.6);
  font-size: 0.95rem; max-width: 460px;
  margin: 1rem auto 0; line-height: 1.8;
}

/* ── SHARED SECTION ── */
.section { padding: 5.5rem 1.5rem; }
.section--dark { background: var(--ink); }
.section--cream-d { background: var(--cream-d); }
.container { max-width: 1020px; margin: 0 auto; }
.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--ink); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section--dark .section-title { color: var(--white); }

/* ── LUCIDE ICON WRAPPER ── */
.icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.icon--lg { width: 56px; height: 56px; }
.icon--lg svg { width: 26px; height: 26px; }

/* ── GOLD DIVIDER ── */
.gold-rule {
  width: 48px; height: 1px; background: var(--gold);
  opacity: 0.6; margin: 0;
}
.gold-rule--center { margin: 0 auto; }

/* ── CTA BUTTON ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.btn--outline {
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--ink); }
.btn--solid {
  background: var(--gold); color: var(--ink);
  border: 1px solid var(--gold);
}
.btn--solid:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* ── PHOTO CORNER FRAME ── */
.frame {
  position: relative;
  border: 1px solid rgba(200,169,110,0.3);
  padding: 2.5rem;
  background: rgba(200,169,110,0.04);
}
.frame .c { position: absolute; width: 22px; height: 22px; border-color: var(--gold); border-style: solid; opacity: 0.65; }
.frame .c-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame .c-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.frame .c-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.frame .c-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ── FOOTER ── */
footer {
  background: #0D0D1A;
  border-top: 1px solid rgba(200,169,110,0.12);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1020px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
  align-items: start;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 0.7rem; }
.footer-brand p {
  font-size: 0.82rem; color: rgba(245,240,232,0.35); line-height: 1.7;
}
.footer-links {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
}
.footer-links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact p {
  font-size: 0.82rem; color: rgba(245,240,232,0.35); line-height: 1.9;
}
.footer-contact a {
  color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1020px; margin: 2rem auto 0;
  border-top: 1px solid rgba(200,169,110,0.1);
  padding-top: 1.2rem;
  font-size: 0.72rem; color: rgba(245,240,232,0.2);
  letter-spacing: 0.06em; text-align: center;
}
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-contact { text-align: left; }
  .footer-links { align-items: flex-start; }
}

/* ── SCROLL REVEAL ── */
.r {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.r.visible { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.08s; }
.r.d2 { transition-delay: 0.16s; }
.r.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
}
