/* ============================================================
   NARADA — Journeys Worth Retelling
   Modeled on the Rumaya template's quiet-luxury system:
   Instrument Serif display / Inter labels, native scroll,
   sticky chapter panels wiped by incoming full-bleed imagery.
   ============================================================ */

:root {
  --bg: #000000;
  --black: #000000;
  --cream: #FEF9F3;
  --gold: #F5E3A1;
  --oxblood: #670626;          /* footer claret */
  --line: rgba(254, 249, 243, 0.22);
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 3vw, 44px);
  --ease-apple: cubic-bezier(0.32, 0.08, 0.24, 1);
  --vh100: 100vh;
}
@supports (height: 100svh) {
  :root { --vh100: 100svh; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;   /* menu scroll-lock must not shift the layout */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* the RA monogram from the wordmark: rules above and below */
.ra-mark {
  display: inline-block;
  line-height: 1;
  padding: 2px 1px 3px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

/* ---------- shared label style ---------- */
.section-kicker,
.menu-eyebrow,
.footer-heading,
.hero-scrollcue span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad);
}
/* the blur layer lives on a pseudo-element and fades via opacity —
   backdrop-filter itself is not reliably transitionable everywhere */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-apple);
  pointer-events: none;
}
.site-header.scrolled::before { opacity: 1; }

.menu-toggle {
  justify-self: start;
  position: relative;
  display: grid;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 0;
  overflow: hidden;
}
.menu-toggle-word {
  grid-area: 1 / 1;
  transition: transform 0.5s var(--ease-apple), opacity 0.4s var(--ease-apple);
}
.menu-toggle-close { transform: translateY(120%); opacity: 0; }
body.menu-open .menu-toggle-open { transform: translateY(-120%); opacity: 0; }
body.menu-open .menu-toggle-close { transform: translateY(0); opacity: 1; }

.header-logo img { height: clamp(20px, 2.4vw, 28px); width: auto; }
.header-logo {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s var(--ease-apple), transform 0.5s var(--ease-apple);
  pointer-events: none;
}
.site-header.scrolled .header-logo,
body.menu-open .header-logo,
body.home .header-logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.header-cta {
  justify-self: end;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.header-cta::after,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.45s var(--ease-apple);
}
.header-cta:hover::after,
.menu-toggle:hover::after { right: 0; }

/* ============================================================
   MENU OVERLAY — Apple-style curtain + staggered links
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  backdrop-filter: blur(28px) saturate(1.3);
  /* the curtain descends via transform — WebKit does not reliably clip
     a backdrop-filter with an animating clip-path */
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.62s var(--ease-apple), visibility 0s linear 0.62s;
}
body.menu-open .menu-overlay {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.62s var(--ease-apple);
}

.menu-inner {
  height: 100%;
  padding: calc(72px + 4vh) var(--pad) 6vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5vh;
  max-width: 880px;
  margin: 0 auto;
  overflow-y: auto;
}

.menu-link {
  display: block;
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.22;
  color: var(--cream);
}
.menu-link span { display: inline-block; position: relative; }
.menu-link span::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 6px;
  height: 1px;
  background: var(--gold);
  transition: right 0.45s var(--ease-apple);
}
.menu-link:hover span::after { right: 0; }
.menu-link:hover { color: var(--gold); transition: color 0.35s var(--ease-apple); }

.menu-secondary { display: flex; flex-direction: column; gap: 10px; }
.menu-destnav { display: flex; flex-direction: column; gap: 10px; }
.menu-eyebrow { margin-bottom: 4px; }
.menu-sublink {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 27px);
  font-style: italic;
  color: rgba(254, 249, 243, 0.72);
  transition: color 0.3s var(--ease-apple), transform 0.3s var(--ease-apple);
}
.menu-sublink:hover { color: var(--gold); transform: translateX(6px); }
.menu-sublink[aria-current="page"] { color: var(--gold); }

.menu-foot {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(254, 249, 243, 0.5);
}

/* staggered rise of every menu item, Apple-nav style */
.menu-link, .menu-eyebrow, .menu-sublink, .menu-foot {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.4s var(--ease-apple), transform 0.4s var(--ease-apple), color 0.3s var(--ease-apple);
}
body.menu-open .menu-link,
body.menu-open .menu-eyebrow,
body.menu-open .menu-sublink,
body.menu-open .menu-foot {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s var(--ease-apple) calc(0.18s + var(--i) * 0.045s),
    transform 0.55s var(--ease-apple) calc(0.18s + var(--i) * 0.045s),
    color 0.3s var(--ease-apple);
}

/* ============================================================
   01 · HERO
   ============================================================ */
.hero {
  position: relative;
  height: var(--vh100);
  min-height: 620px;
  overflow: hidden;
  overflow: clip;
  display: flex;
  flex-direction: column;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.78) 100%);
}

.hero-foot {
  position: relative;
  z-index: 2;
  margin-top: auto;      /* pins the foot to the hero's base now that
                            the mark sits at the top */
  padding: 0 var(--pad) clamp(28px, 5vh, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(33px, 5.4vw, 77px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--cream);
}
/* bottom room inside the mask keeps descender ink un-clipped
   at the tight 0.98 leading (offset by margin, so flow is unchanged) */
.hero-headline .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero-headline .line span {
  display: inline-block;
  transform: translateY(130%);
  animation: lineUp 0.9s var(--ease-apple) var(--d, 0s) forwards;
}
/* line III — the signature: Instrument Serif italic, in gold */
.hero-headline .line span.hl-script {
  font-style: italic;
  color: var(--gold);
}
@keyframes lineUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 260px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(254, 249, 243, 0.85);
  text-align: right;
}

.hero-scrollcue {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 26px;
  margin-inline: auto;
  width: fit-content;
  /* centered without transform: the .reveal animation owns this
     element's transform and would discard a translateX(-50%) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scrollcue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueDrop 2.2s var(--ease-apple) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* entrance helper for hero bits */
.reveal {
  opacity: 0;
  animation: fadeUp 1s var(--ease-apple) var(--d, 0s) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   02 · QUOTE PAGE  — pure #000000, every line set in gold
   (#F5E3A1), the quote kept luminous by a soft glow.
   ============================================================ */
.quote-page {
  position: relative;
  background: var(--black);
  min-height: var(--vh100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 120px var(--pad);
  text-align: center;
}
.quote-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-family: var(--sans);
  text-transform: uppercase;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.7;
  max-width: 30ch;
  color: var(--gold);
  text-shadow:
    0 0 26px rgba(245, 227, 161, 0.28),
    0 0 3px rgba(245, 227, 161, 0.22);
}
.quote-tail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
}

/* ============================================================
   03 · JOURNEYS — Rumaya's sticky chapter mechanism
   ============================================================ */
.journeys-head {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  padding: 140px var(--pad) 120px;
}
.journeys-title {
  font-weight: 400;
  line-height: 1.02;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.jt-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4vw, 52px);
  color: rgba(254, 249, 243, 0.85);
}
.jt-name {
  font-family: var(--serif);
  font-size: clamp(64px, 11vw, 150px);
  letter-spacing: -0.01em;
  color: var(--cream);
}
.journeys-intro {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(254, 249, 243, 0.62);
}

/* --- the chapter stack --------------------------------------
   Each chapter is one viewport tall in flow and owns:
   · a full-bleed media block that scrolls normally, wiping
     over whatever came before it (plain DOM paint order), and
   · an absolutely-positioned 200vh text track whose sticky
     panel pins at the top of the viewport while the next
     chapter's image rises over it — exactly Rumaya's move.  */
.chapters { position: relative; }

.chapter {
  position: relative;
  height: var(--vh100);
}
.chapter-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  overflow: clip;
}
.chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* centre-weighted scrim keeps the pinned text readable over bright
     imagery without dimming the frame edges */
  background:
    radial-gradient(ellipse 62% 58% at 50% 50%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 78%),
    rgba(0, 0, 0, 0.38);
}

.panel-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200vh;
  z-index: 1;                /* same layer as media: later chapters wipe earlier text */
  pointer-events: none;
}
.panel-track:focus-within { z-index: 2; }  /* keyboard focus lifts a wiped panel back into view */
.chapter-last .panel-track { height: 100vh; }

.panel {
  position: sticky;
  top: 0;
  height: var(--vh100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad);
}

.panel-text {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
}
.panel-heading { font-weight: 400; }
.panel-pre {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  color: var(--cream);
}
.panel-name {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.05;
  color: var(--cream);
}
.panel-rule {
  width: 1px;
  height: 110px;
  margin: 18px 0 22px;
  background: var(--cream);
  transform-origin: top;
  transition: transform 1.1s var(--ease-apple) 0.25s;
}
html.js .chapter:not(.active) .panel-rule { transform: scaleY(0); }
.panel-desc {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.35;
  max-width: 30ch;
  color: var(--cream);
}
.panel-btn {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(254, 249, 243, 0.8);
  border-radius: 999px;
  padding: 13px 34px;
}
.panel-btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--bg);
}
.panel-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* chapter entrance choreography (added by IntersectionObserver).
   Initial hidden states apply only when JS is running (html.js),
   so content stays visible if scripting is unavailable. */
.panel-pre, .panel-name, .panel-desc {
  transition: opacity 0.85s var(--ease-apple), transform 0.85s var(--ease-apple);
}
.panel-btn {
  transition:
    opacity 0.85s var(--ease-apple), transform 0.85s var(--ease-apple),
    background-color 0.45s var(--ease-apple), color 0.45s var(--ease-apple), border-color 0.45s var(--ease-apple);
}
html.js .chapter:not(.active) .panel-pre,
html.js .chapter:not(.active) .panel-name,
html.js .chapter:not(.active) .panel-desc,
html.js .chapter:not(.active) .panel-btn {
  opacity: 0;
  transform: translateY(22px);
}
.chapter.active .panel-pre { transition-delay: 0.05s; }
.chapter.active .panel-name { transition-delay: 0.14s; }
.chapter.active .panel-rule { transform: scaleY(1); }
.chapter.active .panel-desc { transition-delay: 0.34s; }
.chapter.active .panel-btn { transition-delay: 0.46s, 0.46s, 0s, 0s, 0s; }

/* ============================================================
   04 · RETELLINGS — stacked deck of story cards
   ============================================================ */
.retellings {
  position: relative;
  z-index: 2;               /* seals the journeys stack behind it */
  background: var(--bg);
  padding: 150px 0 140px;
}
.retellings-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad) 90px;
}
.retellings-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8.6vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
}
.rt-accent { font-style: italic; color: var(--gold); }
.retellings-intro {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(254, 249, 243, 0.62);
}

.cards {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.card {
  position: sticky;
  top: calc(96px + var(--n) * 14px);
  background: #0B0906;
  border: 1px solid rgba(245, 227, 161, 0.14);
  border-radius: 6px;
  padding: clamp(34px, 5vw, 60px);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.55);
}
.card-pull {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 18px;
}
.card-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(254, 249, 243, 0.72);
  max-width: 52ch;
}
.card figcaption {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.card-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
}
.card-place {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 249, 243, 0.55);
}

/* ============================================================
   05 · CTA
   ============================================================ */
.cta {
  position: relative;
  z-index: 2;
  background: var(--bg);
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  padding: 120px var(--pad);
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
}
.cta-accent { font-style: italic; color: var(--gold); }
.cta-body {
  font-size: 15px;
  line-height: 1.8;
  max-width: 44ch;
  color: rgba(254, 249, 243, 0.7);
}
.cta-btn {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 227, 161, 0.6);
  color: var(--gold);
  border-radius: 999px;
  padding: 16px 44px;
}
/* same fill-on-hover as the chapter Explore buttons (the transition
   list lives after the .observe rules so both survive the cascade) */
.cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ============================================================
   FOOTER — claret curtain, revealed the Rumaya way
   The footer pins to the viewport bottom (sticky) one layer
   beneath <main>, whose opaque background hides it until the
   last section lifts away and reveals it standing still.
   script.js enables the pin only when the footer fits the
   viewport; otherwise its top edge could never scroll into
   view, so short screens keep a normal in-flow footer.
   ============================================================ */
main {
  position: relative;
  z-index: 2;                /* opaque cover over the pinned footer */
  background: var(--bg);
}
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--oxblood);
  color: var(--cream);
  padding: clamp(70px, 9vh, 110px) var(--pad) 34px;
}
html.footer-reveal .site-footer {
  position: sticky;
  bottom: 0;
}
/* Tabbing into the pinned footer must never leave focus invisible behind
   <main> — same occlusion fix the wiped chapter panels use (.panel-track). */
html.footer-reveal .site-footer:focus-within { z-index: 3; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(254, 249, 243, 0.16);
}
.footer-brand { max-width: 380px; }
.footer-logo { width: clamp(220px, 24vw, 340px); }
.footer-tag {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(254, 249, 243, 0.75);
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 90px);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col nav { display: flex; flex-direction: column; gap: 12px; }
.footer-heading { color: rgba(245, 227, 161, 0.8); margin-bottom: 6px; }
.footer-col a {
  font-size: 14px;
  color: rgba(254, 249, 243, 0.82);
  width: fit-content;
  position: relative;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease-apple);
}
.footer-col a:hover::after { right: 0; }
.footer-note { font-size: 13px; line-height: 1.7; color: rgba(254, 249, 243, 0.5); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(254, 249, 243, 0.55);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--cream); }

/* ============================================================
   Scroll-triggered reveals (generic)
   ============================================================ */
.observe {
  transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple);
}
html.js .observe:not(.in-view) {
  opacity: 0;
  transform: translateY(26px);
}
.observe:nth-child(2).in-view { transition-delay: 0.1s; }
.observe:nth-child(3).in-view { transition-delay: 0.2s; }
/* the Begin button is both a reveal target and a hover target: merge
   the two transition lists (declared after .observe so neither is
   clobbered), and keep the reveal stagger off the hover properties */
.cta-btn {
  transition:
    opacity 1s var(--ease-apple), transform 1s var(--ease-apple),
    background-color 0.45s var(--ease-apple), color 0.45s var(--ease-apple), border-color 0.45s var(--ease-apple);
}
.cta .cta-btn.in-view { transition-delay: 0.2s, 0.2s, 0s, 0s, 0s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  .hero-scrollcue { display: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-sub { text-align: left; max-width: 320px; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 560px) {
  .panel-desc { font-size: 18px; }
  .card { padding: 28px 22px; }
  .menu-inner { gap: 4vh; }
}

/* ============================================================
   DESTINATION PAGES — Rumaya's detail-page template, in Narada's
   dark system. Section order mirrors /suites et al. exactly:
   full-bleed hero with staggered three-line headline · two-column
   itinerary card grid · claret inclusions block with sticky-left
   heading and scrolling cards · accordion FAQ · full-bleed
   next-destination CTA · shared curtain-reveal footer.
   ============================================================ */

/* ---------- hero ---------- */
.dest-hero {
  position: relative;
  height: var(--vh100);
  min-height: 620px;
  overflow: hidden;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dest-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroSettle 2.6s var(--ease-apple) 0.1s forwards;
}
.dest-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 62% at 50% 46%, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0) 78%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 32%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.72) 100%);
}
.dest-hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-align: center;
  display: flex;
  flex-direction: column;
}
/* The mask carries extra bottom room (padding offset by margin) so the
   tight 0.94 leading never clips serif descender ink. */
.dest-hero-title .dh-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.dest-hero-title .dh-line span {
  display: inline-block;
  transform: translateY(130%);
  animation: lineUp 0.9s var(--ease-apple) var(--d, 0s) forwards;
}
.dest-hero-title .dh-italic span { font-style: italic; }
.dest-hero-sub {
  position: absolute;
  z-index: 1;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(28px, 5vh, 54px);
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(254, 249, 243, 0.85);
}
.dest-hero-kicker {
  position: absolute;
  z-index: 1;
  top: calc(64px + 2vh);
  left: 0; right: 0;
  text-align: center;
}

/* ---------- itinerary grid ---------- */
.itinerary {
  padding: clamp(90px, 12vh, 150px) var(--pad);
}
.itinerary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 48px;
  max-width: 1320px;
  margin: 0 auto;
}
.itin-card { display: flex; flex-direction: column; }
.itin-media {
  overflow: hidden;
  aspect-ratio: 14 / 9;
}
.itin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-apple);
}
.itin-card:hover .itin-media img { transform: scale(1.045); }
.itin-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}
.itin-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.2;
  color: var(--cream);
}
.itin-name sup {
  font-size: 0.55em;
  font-style: italic;
  color: var(--gold);
  margin-left: 8px;
}
.itin-days {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.itin-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 52ch;
  color: rgba(254, 249, 243, 0.65);
}

/* ---------- inclusions: sticky-left heading, scrolling cards ---------- */
.inclusions {
  background: var(--oxblood);
  padding: 0 var(--pad);
}
.inclusions-wrap {
  display: flex;
  gap: clamp(40px, 6vw, 110px);
  max-width: 1320px;
  margin: 0 auto;
}
.incl-left {
  position: sticky;
  top: 0;
  height: var(--vh100);
  flex: 1 1 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.incl-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.incl-title .incl-italic { font-style: italic; }
.incl-intro {
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 40ch;
  color: rgba(254, 249, 243, 0.75);
}
.incl-right {
  flex: 1 1 30%;
  max-width: 400px;
  padding-bottom: clamp(90px, 14vh, 160px);
}
.incl-spacer { height: var(--vh100); }
.incl-card { padding-bottom: clamp(56px, 8vh, 84px); }
.incl-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 14px;
}
.incl-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.12;
  color: var(--cream);
}
.incl-desc {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 36ch;
  color: rgba(254, 249, 243, 0.72);
}

/* ---------- FAQ accordion ---------- */
.dest-faq {
  padding: clamp(110px, 15vh, 170px) var(--pad);
}
.dest-faq-inner {
  display: flex;
  gap: clamp(40px, 6vw, 110px);
  max-width: 1320px;
  margin: 0 auto;
}
.faq-head { flex: 1 1 40%; }
.faq-title {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.faq-sub {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 34ch;
  color: rgba(254, 249, 243, 0.62);
}
.faq-list { flex: 1 1 60%; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 23px);
  text-align: left;
  color: var(--cream);
  transition: color 0.35s var(--ease-apple);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.5s var(--ease-apple);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-icon::before { left: 0; right: 0; top: 6px; height: 1px; }
.faq-icon::after { top: 0; bottom: 0; left: 6px; width: 1px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-apple);
}
/* visibility mirrors the collapse so closed answers leave the
   accessibility tree and find-in-page, matching aria-expanded */
.faq-a > div {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 0.55s;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div {
  visibility: visible;
  transition: visibility 0s;
}
.faq-a p {
  padding: 0 0 28px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 60ch;
  color: rgba(254, 249, 243, 0.68);
}

/* ---------- next-destination CTA ---------- */
.next-cta {
  position: relative;
  height: var(--vh100);
  min-height: 560px;
  overflow: hidden;
  overflow: clip;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 0 var(--pad);
}
.next-media { position: absolute; inset: 0; }
.next-media img { width: 100%; height: 100%; object-fit: cover; }
.next-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 50% 50%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 78%),
    rgba(0, 0, 0, 0.44);
}
.next-kicker { position: relative; z-index: 1; }
.next-title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8.4vw, 116px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.next-title .next-accent { font-style: italic; color: var(--gold); }
.next-sub {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.8;
  max-width: 44ch;
  color: rgba(254, 249, 243, 0.8);
}
.next-btn {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(254, 249, 243, 0.8);
  border-radius: 999px;
  padding: 14px 38px;
  /* also an .observe reveal target — keep its fade alongside the hover */
  transition:
    opacity 1s var(--ease-apple), transform 1s var(--ease-apple),
    background-color 0.45s var(--ease-apple), color 0.45s var(--ease-apple), border-color 0.45s var(--ease-apple);
}
.next-btn:hover { background: var(--cream); border-color: var(--cream); color: var(--black); }

/* the index trio-stagger (.observe:nth-child(2/3)) lands on accidental
   positions inside these grids — neutralise it and stagger card rows
   deliberately: the right-hand card of each row follows the left */
.itinerary-grid .observe:nth-child(2).in-view,
.itinerary-grid .observe:nth-child(3).in-view,
.incl-right .observe:nth-child(2).in-view,
.incl-right .observe:nth-child(3).in-view { transition-delay: 0s; }
.itinerary-grid .itin-card:nth-child(even).in-view { transition-delay: 0.1s; }

/* ---------- destination pages, smaller viewports ---------- */
@media (max-width: 900px) {
  .itinerary-grid { grid-template-columns: 1fr; gap: 64px; }
  .inclusions-wrap { flex-direction: column; gap: 0; }
  .incl-left {
    position: static;
    height: auto;
    padding: clamp(90px, 14vh, 140px) 0 60px;
  }
  .incl-right { max-width: none; padding-bottom: clamp(70px, 10vh, 110px); }
  .incl-spacer { display: none; }
  .dest-faq-inner { flex-direction: column; gap: 48px; }
  .dest-hero-sub { max-width: 300px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-headline .line span { animation: none; opacity: 1; transform: none; }
  html.js .observe:not(.in-view),
  html.js .chapter:not(.active) .panel-pre,
  html.js .chapter:not(.active) .panel-name,
  html.js .chapter:not(.active) .panel-desc,
  html.js .chapter:not(.active) .panel-btn { opacity: 1; transform: none; }
  .observe, .panel-pre, .panel-name, .panel-desc, .panel-btn { transition: none; }
  html.js .chapter:not(.active) .panel-rule { transform: scaleY(1); }
  .panel-rule { transition: none; }
  .menu-overlay, .menu-link, .menu-eyebrow, .menu-sublink, .menu-foot,
  .menu-toggle-word, .header-logo,
  body.menu-open .menu-overlay,
  body.menu-open .menu-link,
  body.menu-open .menu-eyebrow,
  body.menu-open .menu-sublink,
  body.menu-open .menu-foot { transition: none; }
  .hero-scrollcue i { animation: none; }
  .dest-hero-title .dh-line span, .dest-hero-media img { animation: none; opacity: 1; transform: none; }
  .faq-a, .faq-a > div, .faq-icon, .itin-media img { transition: none; }
}
