/* ===========================================================
   Areti Occupational Therapy — v2
   Brand: warm gold, ivory cream, deep charcoal. Refined, premium.
   =========================================================== */

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

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --cream: #FAF6EE;
  --ivory: #F0E8D6;
  --gold-soft: #E8DCC2;
  --gold-light: #C9B58A;
  --gold: #A88B5C;
  --gold-deep: #7A6440;
  --stone: #C9BEA9;
  --charcoal: #2A2723;
  --ink: #161412;
  --muted: #8A8478;
  --line: #DDD2BC;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.12;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 500; }
p { margin: 0 0 1em; }
.lead {
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 60ch;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 300; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); transition: color .2s; font-weight: 500; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .topbar-cta { letter-spacing: 0.08em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(168, 139, 92, 0.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand img { height: 56px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 238, 0.82);
  position: relative;
  padding: 0.4rem 0;
  transition: color .25s;
  text-transform: uppercase;
}
.nav a:hover, .nav a.active { color: var(--gold-light); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--cream); }
.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.45);
}
.btn-outline-cream:hover { background: rgba(250, 246, 238, 0.08); border-color: var(--cream); }

.btn .arrow { transition: transform .25s var(--ease); display: inline-block; font-family: serif; font-size: 1.05em; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-nav { padding: 0.6rem 1.25rem; font-size: 0.72rem; background: transparent; color: var(--gold-light); border-color: var(--gold); }
.btn-nav:hover { background: var(--gold); color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-home { padding-bottom: clamp(5rem, 10vw, 8rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(42, 39, 35, 0.4);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { max-width: 180px; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}
.hero-meta span { font-size: 0.85rem; color: var(--muted); }

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

.page-hero {
  background: var(--ivory);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 50ch; color: var(--charcoal); }

/* ---------- Intro / mission strips ---------- */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; } }
.intro h2 { max-width: 14ch; }

/* ---------- Service grid ---------- */
.services-section { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px -25px rgba(168, 139, 92, 0.35);
}
.service-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory);
}
.service-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-card:hover .img img { transform: scale(1.04); }
.service-card .body { padding: 1.6rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.service-card .more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.25rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.service-card .more .arrow { transition: transform .25s var(--ease); font-family: serif; }
.service-card:hover .more .arrow { transform: translateX(3px); }

/* ---------- Detailed service rows (services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.service-row .img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.service-row .img img { width: 100%; height: 100%; object-fit: cover; }
.service-row h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 300; }
.service-row ul { padding: 0; list-style: none; margin-top: 1.25rem; }
.service-row li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
}
.service-row li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* ---------- Audience cards ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.audience-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  transition: all .3s var(--ease);
}
.audience-card .num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
}
.audience-card h3 { margin-bottom: 0.6rem; }
.audience-card p { color: var(--muted); font-size: 0.95rem; }
.audience-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(168, 139, 92, 0.3); }

/* ---------- Why-choose / values (dark) ---------- */
.values { background: var(--ink); color: var(--cream); }
.values .lead, .values p { color: rgba(250, 246, 238, 0.78); max-width: 60ch; }
.values h2 { color: var(--cream); }
.values .eyebrow { color: var(--gold-light); }
.values .eyebrow::before { background: var(--gold-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.value-item {
  border-top: 1px solid rgba(201, 181, 138, 0.25);
  padding-top: 1.5rem;
}
.value-item .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
}
.value-item h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.value-item p {
  color: rgba(250, 246, 238, 0.72);
  font-size: 0.95rem;
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
  margin-top: 3rem;
}
.step .num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 400; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Service area ---------- */
.area { background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) { .area-grid { grid-template-columns: 1fr; } }
.area-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; }
.area-image img { width: 100%; height: 100%; object-fit: cover; }
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 2rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.locations li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ---------- About page specifics ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(42, 39, 35, 0.35);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio h2 { margin-bottom: 1.5rem; }
.bio .creds {
  list-style: none;
  padding: 2rem 0 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  border-top: 1px solid var(--line);
}
.bio .creds li { font-size: 0.9rem; color: var(--muted); }
.bio .creds strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}

.philosophy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
  margin-top: 3rem;
}
.philosophy .item {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
}
.philosophy h3 { font-size: 1.25rem; margin-bottom: 0.6rem; font-weight: 400; }
.philosophy p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.pullquote blockquote {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- FAQ (replaces testimonials for new business) ---------- */
.faq-section { background: var(--ivory); }
.faq-list {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  max-width: 800px;
}
.faq {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 1rem;
  color: var(--muted);
  max-width: 65ch;
}
.faq-body p { margin: 0 0 0.75em; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) { .cta-band .container { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--cream); margin: 0; }
.cta-band p { color: rgba(250, 246, 238, 0.72); margin-top: 0.75rem; max-width: 50ch; }
.cta-band .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-band .actions { justify-content: flex-start; } }

/* ---------- Contact page form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.contact-info dd {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.75rem;
  line-height: 1.4;
}
.contact-info dd a { color: inherit; border-bottom: 1px solid var(--line); transition: border-color .25s; padding-bottom: 2px; }
.contact-info dd a:hover { border-color: var(--gold); }

.form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.form h3 { margin-bottom: 0.5rem; font-weight: 400; }
.form .lead { font-size: 0.95rem; margin-bottom: 1.75rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .25s, background .25s;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream);
}
.field textarea { min-height: 120px; resize: vertical; }
/* Honeypot field (anti-spam): visually hidden, accessible position off-screen */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { margin-top: 1rem; font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .brand-block img { height: 84px; margin-bottom: 1.5rem; }
.site-footer .brand-block p { max-width: 36ch; line-height: 1.65; }
.acknowledgement {
  border-top: 1px solid rgba(201, 181, 138, 0.18);
  padding-top: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  color: rgba(250, 246, 238, 0.65);
  max-width: 80ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.5);
  border-top: 1px solid rgba(201, 181, 138, 0.18);
  padding-top: 1.75rem;
}
.copyright a { margin-left: 1.5rem; }

/* ---------- Mobile nav ---------- */
.menu-toggle { display: none; }
@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(168, 139, 92, 0.2);
    padding: 1rem var(--gutter) 1.5rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(201, 181, 138, 0.15); }
  .nav a:last-child { border-bottom: 0; }
  .nav .btn { margin-top: 0.75rem; align-self: flex-start; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px; height: 22px;
    justify-content: center;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--gold-light);
    transition: transform .25s var(--ease);
  }
}

/* ---------- Reveal on load ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s var(--ease) forwards;
}
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .22s; }
.fade-up.d3 { animation-delay: .34s; }
.fade-up.d4 { animation-delay: .46s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Legal pages (privacy, terms) ---------- */
.legal { max-width: 760px; }
.legal .meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin-top: 2.75rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--charcoal); }
.legal ul { padding-left: 1.5rem; margin: 0 0 1em; }
.legal li { margin-bottom: 0.5em; }
.legal strong { color: var(--ink); font-weight: 500; }

/* ---------- Decorative gold divider ---------- */
.divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 200px;
  color: var(--gold);
}
.divider-gold::before, .divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.divider-gold span { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
