/* ==========================================================================
   יַעֲרוֹן : cinematic night-forest. Deep, filmic, boutique-luxe.
   Near-black forest ground, warm ivory type, brass-gold accent, film grain.
   ========================================================================== */

:root {
  --bg:        #0E1310;   /* near-black forest ground */
  --bg-2:      #121A14;   /* raised panel */
  --bg-3:      #17211A;   /* card */
  --bg-4:      #1E2A20;   /* hover / inset */
  --ink:       #EEE8DA;   /* warm ivory */
  --ink-soft:  #A7AE9C;   /* muted sage-grey */
  --ink-mute:  #7C8474;   /* dim */
  --gold:      #C9A24B;   /* brass */
  --gold-soft: #E2CB8B;   /* light brass */
  --gold-deep: #9E7C33;
  --line:      rgba(238, 232, 218, 0.12);
  --line-strong: rgba(238, 232, 218, 0.22);

  --font-display: "Frank Ruhl Libre", "Noto Serif Hebrew", Georgia, serif;
  --font-body: "Assistant", "Heebo", system-ui, sans-serif;

  --wrap: 1240px;
  --radius: 4px;
  --radius-lg: 6px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.75);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw + 0.6rem, 18px);
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Film grain + vignette over the whole page */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
main, .site-header, .site-footer { position: relative; z-index: 2; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--gold); color: #14100A; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

.skip-link {
  position: absolute; right: -999px; top: 12px; z-index: 200;
  background: var(--gold); color: #14100A; padding: 10px 18px; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { right: 16px; }

.gold { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  letter-spacing: .02em; padding: 15px 34px; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer; position: relative;
  transition: background-color .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .4s var(--ease), box-shadow .5s var(--ease);
}
.btn-primary { background: var(--gold); color: #14100A; box-shadow: 0 14px 34px -18px rgba(201,162,75,.7); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 20px 44px -18px rgba(201,162,75,.85); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(238,232,218,.06); border-color: var(--gold); color: var(--gold-soft); }
.btn-soft {
  background: transparent; color: var(--gold-soft); border-color: rgba(201,162,75,.4);
  padding: 11px 24px; font-size: .9rem;
}
.btn-soft:hover { background: var(--gold); color: #14100A; border-color: var(--gold); }
.btn-full { width: 100%; }

/* ---------- Shared section bits ---------- */
.section { padding: clamp(78px, 12vw, 168px) 0; position: relative; }

.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: 0.34em;
  color: var(--gold); margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light::before { background: var(--gold-soft); }

.section-title { font-size: clamp(2.1rem, 4.8vw, 3.8rem); color: var(--ink); }
.section-head { max-width: 640px; margin: 0 0 clamp(44px, 6vw, 78px); position: relative; }
.section-lead { margin-top: 22px; color: var(--ink-soft); font-size: 1.06rem; }

/* editorial index numeral */
.sec-idx {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem); letter-spacing: .3em; color: var(--gold-deep);
  margin-bottom: 14px;
}
.sec-idx::after { content: ""; display: inline-block; width: 46px; height: 1px; background: var(--line-strong); vertical-align: middle; margin-inline-start: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease), backdrop-filter .55s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.22); }
.brand-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: 0.03em; }

.nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; opacity: .82; transition: opacity .4s var(--ease), color .4s var(--ease); }
.nav a:hover { opacity: 1; color: var(--gold-soft); }
.nav-cta {
  border: 1px solid var(--line-strong); padding: 9px 22px; border-radius: 999px; opacity: 1 !important;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease) !important;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #14100A !important; }

/* scrolled state : dark glass */
.site-header.scrolled {
  background: rgba(14,19,16,.78); backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 20px 50px -34px rgba(0,0,0,.9); border-color: var(--line);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { flex-direction: column; background: rgba(14,19,16,.96); backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: 12px 24px 26px; gap: 2px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: block; padding: 15px 4px; text-decoration: none; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .nav-cta { border: 0; color: var(--gold-soft); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 0 64px; overflow: hidden; color: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-forest.jpg") center 40% / cover no-repeat;
  transform: scale(1.08);
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.08) translateY(0); } to { transform: scale(1.15) translateY(-18px); } }
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; transform: scale(1.05); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,11,8,.92) 2%, rgba(8,11,8,.45) 34%, rgba(8,11,8,.30) 62%, rgba(8,11,8,.66) 100%),
    linear-gradient(to left, rgba(8,11,8,.55), rgba(8,11,8,.08) 60%);
}
/* thin cinematic frame */
.hero-frame { position: absolute; inset: 92px clamp(16px,2.4vw,30px) clamp(16px,2.4vw,30px); border: 1px solid rgba(238,232,218,.18); z-index: 2; pointer-events: none; }
.hero-frame::before, .hero-frame::after { content: ""; position: absolute; width: 12px; height: 12px; border: 1px solid var(--gold); }
.hero-frame::before { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.hero-frame::after { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }

.hero-topline {
  position: absolute; top: clamp(96px,12vw,120px); inset-inline: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .74rem; letter-spacing: .28em; color: var(--ink-soft); text-transform: uppercase;
}
.hero-topline .dot { color: var(--gold); margin: 0 8px; }

.hero-content { position: relative; z-index: 3; max-width: 900px; }
.hero-title { font-size: clamp(2.7rem, 8.4vw, 6.4rem); font-weight: 500; margin: 10px 0 28px; line-height: 1.02; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
.hero-title .gold { font-style: italic; }
.hero-sub { font-size: clamp(1.08rem, 1.5vw, 1.3rem); max-width: 540px; color: #DDD6C6; margin-bottom: 38px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-facts {
  position: relative; z-index: 3; display: flex; flex-wrap: wrap; gap: clamp(24px,5vw,64px);
  margin-top: clamp(40px,6vw,72px); padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-fact { display: flex; flex-direction: column; gap: 4px; }
.hero-fact b { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 700; color: var(--gold-soft); line-height: 1; }
.hero-fact span { font-size: .82rem; letter-spacing: .1em; color: var(--ink-soft); }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: block; }
.hero-scroll-line { display: block; width: 1px; height: 56px; background: linear-gradient(to bottom, transparent, rgba(238,232,218,.5)); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -56px; left: 0; width: 100%; height: 56px; background: var(--gold); animation: scrollDot 2.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -56px; } 60%,100% { top: 56px; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-line::after { animation: none; top: 0; opacity: .5; } }

/* ---------- Story ---------- */
.story { background: var(--bg); }
.story-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(38px, 6vw, 92px); align-items: center; }
.story-text p { color: var(--ink-soft); }
.story-text .section-title { margin-bottom: 24px; }
.story-stats { list-style: none; margin: 40px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); display: flex; gap: clamp(22px, 4vw, 52px); }
.story-stats li { display: flex; flex-direction: column; }
.story-stats strong { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; color: var(--gold-soft); line-height: 1; }
.story-stats span { font-size: .88rem; color: var(--ink-soft); margin-top: 10px; }
.story-media { margin: 0; position: relative; }
.story-media::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 62%; height: 62%; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); z-index: 2; pointer-events: none; }
.story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.94) brightness(.94); }

/* ---------- Units ---------- */
.units { background: var(--bg-2); }
.unit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 28px); }
.unit-card {
  background: var(--bg-3); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; border: 1px solid var(--line);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.unit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201,162,75,.4); }
.unit-media { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.unit-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,14,10,.5), transparent 55%); }
.unit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(.94); }
.unit-card:hover .unit-media img { transform: scale(1.07); }
.unit-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.unit-name { font-size: 1.75rem; margin-bottom: 10px; color: var(--ink); }
.unit-line { color: var(--ink-soft); font-size: 1rem; margin-bottom: 20px; }
.unit-amen { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.unit-amen li { font-size: .82rem; color: var(--gold-soft); background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.2); padding: 6px 14px; border-radius: 999px; }
.unit-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.price { margin: 0; display: flex; flex-direction: column; }
.price-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.price-per { font-size: .8rem; color: var(--ink-mute); }

/* ---------- Experiences ---------- */
.experiences { background: var(--bg); }
.experiences::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: var(--line); }
.exp-grid { display: grid; grid-template-columns: 1.1fr 0.95fr 0.95fr; gap: clamp(16px, 1.6vw, 22px); align-items: stretch; }
.exp-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; border: 1px solid var(--line); }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(.92) brightness(.9); }
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,8,.9), rgba(8,11,8,.08) 62%); }
.exp-cap { position: relative; margin-top: auto; padding: 28px 28px 30px; z-index: 1; }
.exp-cap h3 { font-size: 1.55rem; margin-bottom: 10px; color: var(--ink); }
.exp-cap p { font-size: .94rem; color: #D6D0C1; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-2); }
.testimonials .section-head { margin-bottom: clamp(34px, 5vw, 60px); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.quote { margin: 0; padding: 38px 32px 34px; background: var(--bg-3); border-radius: var(--radius-lg); border: 1px solid var(--line); position: relative; }
.quote::before { content: "\201E"; font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: .5; position: absolute; top: 10px; right: 24px; line-height: 1; }
.quote blockquote { margin: 16px 0 24px; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.6; color: var(--ink); }
.quote figcaption { display: flex; flex-direction: column; gap: 3px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote figcaption strong { font-weight: 600; color: var(--gold-soft); }
.quote figcaption span { font-size: .86rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(38px, 6vw, 84px); align-items: start; }
.faq-head { margin: 0; position: sticky; top: 108px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 26px 0 26px 44px; font-family: var(--font-display); font-size: 1.24rem; font-weight: 500; color: var(--ink); position: relative; transition: color .35s var(--ease); }
.faq-item summary:hover { color: var(--gold-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; top: 50%; left: 6px; width: 15px; height: 15px; transform: translateY(-50%); transition: transform .45s var(--ease); background: no-repeat center/contain; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-a { overflow: hidden; padding: 0 0 26px; }
.faq-a p { color: var(--ink-soft); margin: 0; max-width: 62ch; }
.faq-item[open] .faq-a { animation: faqOpen .5s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(38px, 6vw, 84px); align-items: start; }
.contact-intro p { color: var(--ink-soft); }
.contact-intro .section-title { margin-bottom: 22px; }
.contact-info { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info li { display: flex; align-items: baseline; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-info a { text-decoration: none; transition: color .35s var(--ease); }
.contact-info a:hover { color: var(--gold-soft); }
.ci-label { font-size: .78rem; letter-spacing: .16em; color: var(--gold); min-width: 64px; text-transform: uppercase; }

.contact-form { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: .88rem; font-weight: 600; margin-bottom: 9px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 14px 16px; width: 100%; transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; background-size: 16px; }
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.field input.invalid { border-color: #C56A4A; box-shadow: 0 0 0 3px rgba(197,106,74,.16); }
.err { color: #E19477; font-size: .82rem; margin-top: 6px; min-height: 1em; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }
.form-success { margin-top: 22px; padding: 22px 24px; background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.4); border-radius: var(--radius); display: flex; gap: 16px; align-items: flex-start; }
.form-success p { margin: 0; color: var(--ink); }
.fs-mark { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); position: relative; margin-top: 2px; }
.fs-mark::after { content: ""; position: absolute; top: 8px; right: 9px; width: 7px; height: 13px; border: solid #14100A; border-width: 0 2.4px 2.4px 0; transform: rotate(45deg); }

/* ---------- Footer ---------- */
.site-footer { background: #090C09; color: var(--ink-soft); padding: clamp(60px, 8vw, 90px) 0 32px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-name { color: var(--ink); font-size: 2rem; }
.footer-brand p { margin-top: 14px; max-width: 34ch; color: var(--ink-mute); }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a, .footer-legal a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; transition: color .35s var(--ease); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 28px; font-size: .86rem; color: var(--ink-mute); }
.footer-bottom p { margin: 0; }
.credit a { color: var(--gold); text-decoration: none; font-weight: 600; }
.credit a:hover { color: var(--gold-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Legal / subpages ---------- */
.legal-page { background: var(--bg); }
.legal-hero { padding: 140px 0 44px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.legal-hero .section-title { margin-top: 8px; }
.legal-body { padding: clamp(50px, 7vw, 88px) 0 clamp(66px, 9vw, 116px); }
.legal-body .wrap { max-width: 800px; }
.legal-body h2 { font-size: 1.65rem; margin: 44px 0 14px; color: var(--ink); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body a { color: var(--gold-soft); }
.legal-body ul { padding-right: 20px; margin: 0 0 1rem; }
.legal-body li { margin-bottom: 8px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 44px; text-decoration: none; color: var(--gold-soft); font-weight: 600; }
.legal-back:hover { color: var(--ink); }
.legal-updated { font-size: .9rem; color: var(--ink-mute); margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-topline { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { order: -1; }
  .story-media img { aspect-ratio: 16/10; }
  .unit-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-tall { grid-column: 1 / -1; }
  .quote-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .unit-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .story-stats { gap: 22px; }
  .hero { min-height: 94svh; }
  .hero-facts { gap: 22px 40px; }
}
