/* ==========================================================
   GoKo Safari — Cinematic Luxury Theme
   ========================================================== */

:root {
  --ink: #1b1714;
  --ink-2: #241f1a;
  --ink-3: #2e2822;
  --ivory: #f2ebdd;
  --ivory-2: #d9d0be;
  --muted: #a89e8f;
  --gold: #c9a56a;
  --gold-2: #e5c992;
  --gold-dim: rgba(201, 165, 106, 0.28);
  --line: rgba(242, 235, 221, 0.16);
  --sand: #efe7d8;
  --sand-2: #e4dac7;
  --sand-ink: #2a2420;
  --sand-muted: #7a6f62;
  --sand-line: rgba(42, 36, 32, 0.14);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cine: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 300;
}
h2 em, .chapter__title em { font-style: italic; color: var(--gold-2); }

h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  font-weight: 400;
}

h4 { font-family: var(--serif); font-size: 22px; }

.section-head { margin-bottom: clamp(48px, 6vw, 88px); max-width: 820px; }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
}
.section-head__copy { margin: 0; color: var(--ivory-2); font-size: 17px; max-width: 520px; }
.section-head__note { color: var(--muted); font-size: 14px; margin: 18px 0 0; max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 26px;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(201,165,106,.6); }
.btn--ghost { border-color: rgba(242,235,221,.35); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--ivory); background: rgba(242,235,221,.06); }
.btn--lg { padding: 18px 36px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }
.btn--text { padding: 14px 0; color: var(--ivory-2); }
.btn--text:hover { color: var(--ivory); }
.btn__play {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(242,235,221,.4);
  position: relative;
  transition: border-color .4s;
}
.btn__play::after {
  content: ""; position: absolute; left: 15px; top: 12px;
  border-left: 9px solid var(--ivory); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.btn--text:hover .btn__play { border-color: var(--gold); }

/* ---------- Curtain (intro) ---------- */
.curtain {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: grid; place-items: center;
  transition: transform 1.2s var(--ease-cine), opacity .6s;
}
.curtain.is-done { transform: translateY(-100%); pointer-events: none; }
.curtain__mark { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.curtain__word {
  font-family: var(--serif); font-size: 64px; letter-spacing: 0.14em; color: var(--ivory);
  animation: fadeUp 1.2s var(--ease) both;
}
.curtain__rule { width: 0; height: 1px; background: var(--gold); animation: growLine 1.4s .3s var(--ease) both; }
.curtain__sub {
  font-size: 11px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold);
  animation: fadeUp 1.2s .5s var(--ease) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes growLine { from { width: 0; } to { width: 120px; } }

/* ---------- Grain + progress ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 999; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); } 30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); } 50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0); } 70% { transform: translate(0,15%); }
  80% { transform: translate(3%,35%); } 90% { transform: translate(-10%,10%); }
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--gold); transform-origin: left; transform: scaleX(0);
  z-index: 998;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 26px var(--gutter);
  transition: background .6s, padding .6s, backdrop-filter .6s;
}
.nav.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(27,23,20,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: inline-flex; align-items: baseline; gap: 8px; }
.nav__brand-name { font-family: var(--serif); font-size: 28px; letter-spacing: .08em; }
.nav__brand-sub { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
.nav__links { display: flex; gap: clamp(18px, 2.2vw, 34px); justify-content: center; }
.nav__links a {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory-2);
  position: relative; padding: 6px 0; transition: color .4s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; gap: 10px; justify-content: flex-end; }
.nav__cta .btn { padding: 11px 20px; font-size: 11px; }
.nav__burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; justify-self: end; }
.nav__burger span { display: block; height: 1px; background: var(--ivory); margin: 7px 0; transition: transform .4s, opacity .4s; }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity .5s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 40px; color: var(--ivory); }
.mobile-menu__cta { color: var(--gold) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid;
  grid-template-rows: 1fr auto; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; will-change: transform; }
.hero__content, .hero__meta { will-change: transform, opacity; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  transform: scale(1.12);
  animation: kenburns 24s var(--ease-cine) both;
  filter: saturate(.9) contrast(1.05);
}
@keyframes kenburns { from { transform: scale(1.18) translateY(1%); } to { transform: scale(1.02) translateY(0); } }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,23,20,.45) 0%, rgba(27,23,20,.05) 28%, rgba(27,23,20,.1) 60%, rgba(27,23,20,.9) 100%),
    linear-gradient(90deg, rgba(27,23,20,.55) 0%, rgba(27,23,20,.25) 45%, transparent 70%),
    radial-gradient(120% 80% at 50% 50%, transparent 40%, rgba(27,23,20,.6) 100%);
}
.hero__bars { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hero__bars span {
  position: absolute; left: 0; right: 0; height: 7vh; background: var(--ink);
  transform: scaleY(1); transform-origin: top; animation: barsOut 1.6s 1.1s var(--ease-cine) both;
}
.hero__bars span:last-child { top: auto; bottom: 0; transform-origin: bottom; }
@keyframes barsOut { to { transform: scaleY(0); } }

.hero__content {
  position: relative; z-index: 2; align-self: center;
  padding: 140px var(--gutter) 40px; max-width: 980px;
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 9vw, 128px); line-height: .96; letter-spacing: -0.015em;
  margin: 10px 0 30px;
}
.hero__title em { font-style: italic; color: var(--gold-2); font-weight: 300; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block; transform: translateY(110%);
  animation: lineUp 1.4s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 1.3s; }
.hero__title .line:nth-child(2) > span { animation-delay: 1.45s; }
.hero__title .line:nth-child(3) > span { animation-delay: 1.6s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ivory); text-shadow: 0 2px 24px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.6); max-width: 520px; margin: 0 0 36px; }
.hero__actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.hero__meta {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin: 0 var(--gutter); padding: 26px 0 34px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; padding-right: 24px; }
.hero__meta-k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hero__meta-v { font-family: var(--serif); font-size: 19px; color: var(--ivory); }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 120px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll span { width: 1px; height: 64px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s infinite; }
.hero__scroll small { writing-mode: vertical-rl; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Statement ---------- */
.statement { padding: clamp(100px, 14vw, 200px) 0; background: var(--ink); }
.statement__text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 4vw, 56px); line-height: 1.18; max-width: 1100px; margin: 0 0 80px;
}
.statement__text .w { display: inline-block; opacity: .18; transition: opacity .5s; }
.statement__text .w.is-lit { opacity: 1; }
.statement__stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.statement__stats > div { padding: 32px 24px 0 0; border-right: 1px solid var(--line); margin-right: 24px; }
.statement__stats > div:last-child { border-right: 0; }
.statement__stats strong { display: block; font-family: var(--serif); font-weight: 300; font-size: 64px; line-height: 1; color: var(--gold-2); }
.statement__stats span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }

/* ---------- Journey / Acts ---------- */
.journey { padding: 0 0 clamp(100px, 12vw, 180px); }
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.act { position: relative; }
.act__media { overflow: hidden; aspect-ratio: 4 / 5; position: relative; clip-path: inset(100% 0 0 0); }
.act__media img { will-change: transform; }
.no-motion .act__media { clip-path: none; }
.act__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,23,20,.85) 100%);
}
.act__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.6s var(--ease), filter 1s; filter: saturate(.85); }
.act:hover .act__media img { transform: scale(1.12); filter: saturate(1); }
.act__body { padding: 28px 4px 0; }
.act__num { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }
.act h3 { margin: 10px 0 4px; font-size: 34px; }
.act__nights { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.act p:last-child { margin: 0; color: var(--ivory-2); }

.route { display: flex; align-items: center; margin-top: 90px; }
.route__line { transform: scaleX(0); transform-origin: left; }
.route__dot { opacity: 0; }
.no-motion .route__line { transform: none; } .no-motion .route__dot { opacity: 1; }
.route__dot { position: relative; width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gold); background: var(--ink); flex: none; }
.route__dot::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: var(--gold); }
.route__dot i { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: 10px; letter-spacing: .3em; color: var(--muted); }
.route__line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), var(--gold-dim)); position: relative; overflow: hidden; }
.route__line::after {
  content: ""; position: absolute; top: -1px; left: -30%; width: 30%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: routeRun 3.6s linear infinite;
}
.route__line:last-of-type::after { animation-delay: 1.8s; }
@keyframes routeRun { to { left: 100%; } }

/* ---------- Chapter (sticky) ---------- */
.chapter--falls { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--ink-2); }
.chapter__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.chapter__media { position: absolute; inset: 0; }
.chapter__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.95); opacity: 0; transform: scale(1.06); transition: opacity 1.2s var(--ease-cine), transform 2.4s var(--ease-cine); }
.chapter__media img.is-active { opacity: 1; transform: scale(1); }
.chapter__block { transition: opacity .6s; }
.chapter__block.is-dim { opacity: .35; }
.chapter__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,23,20,.15), transparent 40%, rgba(20,18,15,.9) 100%),
              linear-gradient(0deg, rgba(27,23,20,.9), transparent 45%);
}
.mist { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; }
.mist span {
  position: absolute; left: -20%; width: 140%; height: 45%; bottom: -10%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(242,235,221,.55), transparent 70%);
  filter: blur(40px); opacity: .5;
  animation: mistDrift 14s ease-in-out infinite alternate;
}
.mist span:nth-child(2) { animation-duration: 19s; animation-delay: -6s; height: 60%; opacity: .35; }
.mist span:nth-child(3) { animation-duration: 23s; animation-delay: -12s; height: 35%; opacity: .45; }
@keyframes mistDrift { from { transform: translate(-6%, 4%) scale(1); } to { transform: translate(6%, -6%) scale(1.15); } }
.chapter__caption { position: absolute; left: var(--gutter); bottom: 64px; z-index: 2; max-width: 520px; }
.chapter__title { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 4.6vw, 68px); line-height: 1; }
.chapter__title em { font-size: .6em; display: block; margin-top: 12px; }

.chapter__scroll { padding: clamp(80px, 10vw, 160px) var(--gutter); }
.chapter__block { padding: 56px 0; border-bottom: 1px solid var(--line); max-width: 480px; }
.chapter__block:first-child { padding-top: 0; }
.chapter__index { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: .2em; }
.chapter__block h3 { margin: 12px 0 14px; }
.chapter__block p { margin: 0; color: var(--ivory-2); }

/* ---------- Kruger gallery ---------- */
.chapter--kruger { padding: clamp(100px, 12vw, 180px) 0 clamp(80px, 10vw, 140px); background: var(--ink); }
.gallery-pin { position: relative; overflow: hidden; }
.gallery {
  display: flex; gap: 12px; padding: 0 var(--gutter); height: 72vh; width: max-content;
}
.gallery__item { flex: none; width: 34vw; height: 100%; }
.gallery__item--tall { width: 28vw; }
.gallery__item--wide { width: 52vw; }
.gallery__hint { position: absolute; right: var(--gutter); bottom: 22px; display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.gallery__hint span { width: 48px; height: 1px; background: var(--gold); animation: hintRun 2s var(--ease) infinite; }
@keyframes hintRun { 0% { transform: scaleX(0); transform-origin: left; } 60% { transform: scaleX(1); transform-origin: left; } 61% { transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }
.gallery__item figcaption { opacity: 1; transform: none; }
.gallery__item::after { opacity: 1; }
.no-motion .gallery, .gallery--static {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 10px; padding: 0 10px; height: auto; width: auto;
}
.no-motion .gallery__item, .gallery--static .gallery__item { width: auto; height: auto; }
.no-motion .gallery__hint, .gallery--static + .gallery__hint { display: none; }
.gallery__item { position: relative; overflow: hidden; margin: 0; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.8s var(--ease), filter 1s; filter: saturate(.8); }
.gallery__item:hover img { transform: scale(1.1); filter: saturate(1); }
.gallery__item figcaption {
  position: absolute; left: 22px; bottom: 20px;
  opacity: 0; transform: translateY(8px); transition: all .6s var(--ease);
}
.gallery__item figcaption span { font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--ivory); text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(27,23,20,.7), transparent 50%);
  opacity: 0; transition: opacity .6s;
}
.gallery__item:hover::after { opacity: 1; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 90px; }
.features__icon { display: block; color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.features h4 { margin-bottom: 8px; }
.features p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Kosher ---------- */
.kosher { position: relative; padding: clamp(120px, 14vw, 220px) 0; overflow: hidden; }
.kosher__bg { position: absolute; inset: 0; }
.kosher__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.8); }
.kosher__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,23,20,.95) 0%, rgba(27,23,20,.55) 60%, rgba(27,23,20,.2) 100%); }
.kosher__inner { position: relative; z-index: 1; }
.kosher__card {
  max-width: 620px; padding: clamp(36px, 4vw, 60px);
  border: 1px solid rgba(201,165,106,.3);
  background: rgba(27,23,20,.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.kosher__card h2 { font-size: clamp(34px, 3.6vw, 52px); margin-bottom: 22px; }
.kosher__card > p { color: var(--ivory-2); margin: 0 0 28px; }
.kosher__list li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); font-size: 15px; }
.kosher__list li::before { content: "✦"; position: absolute; left: 0; top: 12px; color: var(--gold); font-size: 12px; }

/* ---------- Itinerary ---------- */
.itinerary { padding: clamp(100px, 12vw, 180px) 0; background: var(--ink-2); }
.days { border-top: 1px solid var(--line); }
.day { border-bottom: 1px solid var(--line); }
.day__head {
  width: 100%; display: grid; grid-template-columns: 90px 1fr auto 40px; align-items: center; gap: 24px;
  padding: 28px 0; background: none; border: 0; color: inherit; text-align: left; cursor: pointer;
  transition: padding .5s var(--ease);
}
.day__head:hover { padding-left: 10px; }
.day__num { font-family: var(--serif); font-size: 26px; color: var(--gold-2); font-weight: 300; }
.day__title { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; }
.day__place { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.day__plus { position: relative; width: 14px; height: 14px; justify-self: end; }
.day__plus::before, .day__plus::after { content: ""; position: absolute; background: var(--gold); transition: transform .5s var(--ease); }
.day__plus::before { left: 0; right: 0; top: 6px; height: 1px; }
.day__plus::after { top: 0; bottom: 0; left: 6px; width: 1px; }
.day.is-open .day__plus::after { transform: rotate(90deg); }
.day__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .7s var(--ease); }
.day__body > div { overflow: hidden; }
.day__body p { margin: 0 0 32px 114px; max-width: 640px; color: var(--ivory-2); }
.day.is-open .day__body { grid-template-rows: 1fr; }

/* ---------- Inclusions ---------- */
.inclusions { padding: clamp(100px, 12vw, 180px) 0; }
.inclusions__grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 64px; }
.tick li, .cross li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line); color: var(--ivory-2); font-size: 15px; }
.tick li::before, .cross li::before { position: absolute; left: 0; top: 12px; font-size: 13px; }
.tick li::before { content: "✓"; color: var(--gold); }
.cross li::before { content: "—"; color: var(--muted); }
.inclusions__price { border-left: 1px solid var(--line); padding-left: 48px; }
.inclusions__price-v { font-family: var(--serif); font-size: clamp(40px, 4.4vw, 64px); line-height: 1; font-weight: 300; color: var(--gold-2); margin: 0 0 20px; }
.inclusions__price-note { color: var(--muted); font-size: 15px; margin: 0 0 30px; }

/* ---------- Quote ---------- */
.quote { position: relative; padding: clamp(140px, 18vw, 260px) 0; overflow: hidden; text-align: center; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5) saturate(.7); transform: scale(1.1); }
.quote__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, transparent, rgba(27,23,20,.9)); }
.quote blockquote { position: relative; z-index: 1; margin: 0 auto; max-width: 900px; }
.quote p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(28px, 3.8vw, 52px); line-height: 1.2; margin: 0 0 28px; }
.quote cite { font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }

/* ---------- Inquire ---------- */
.inquire { padding: clamp(100px, 12vw, 180px) 0; background: var(--ink-2); }
.inquire__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.inquire__intro h2 { margin-bottom: 22px; }
.inquire__intro > p { color: var(--ivory-2); margin: 0 0 40px; max-width: 440px; }
.inquire__wa { display: inline-flex; align-items: center; gap: 18px; padding: 18px 24px; border: 1px solid var(--line); transition: border-color .5s, background .5s; }
.inquire__wa:hover { border-color: var(--gold); background: rgba(201,165,106,.05); }
.inquire__wa small { color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.inquire__wa-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); position: relative; flex: none; }
.inquire__wa-icon::after {
  content: ""; position: absolute; inset: 12px; border-radius: 50%; border: 1.5px solid var(--gold);
  border-bottom-left-radius: 2px;
}

.form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(242,235,221,.25);
  color: var(--ivory); font-family: var(--serif); font-size: 20px; padding: 10px 0;
  outline: none; transition: border-color .4s; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select { cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--ivory); font-family: var(--sans); font-size: 15px; }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(242,235,221,.3); font-style: italic; }
.field.is-invalid input { border-color: #b8564a; }
.form__fine { margin: 0; font-size: 12px; color: var(--muted); text-align: center; letter-spacing: .04em; }
.form__success { padding: 20px; border: 1px solid var(--gold); color: var(--ivory); text-align: center; font-family: var(--serif); font-size: 20px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 80px 0 40px; background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 64px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 280px; margin: 18px 0 0; }
.footer__brand .nav__brand-sub { margin-left: 8px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h5 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer__col a { font-size: 14px; color: var(--ivory-2); transition: color .3s; }
.footer__col a:hover { color: var(--ivory); }
.footer__bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; font-size: 12px; color: var(--muted); letter-spacing: .06em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal { transition-delay: 1.9s; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; gap: 10px; padding: 0 10px; height: auto; width: auto; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide { width: auto; height: auto; }
  .gallery__hint { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .chapter--falls { grid-template-columns: 1fr; }
  .chapter__sticky { position: relative; height: 70vh; }
  .inclusions__grid { grid-template-columns: 1fr 1fr; }
  .inclusions__price { grid-column: span 2; border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 40px; }
  .inquire__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__scroll { display: none; }
  .statement__stats { grid-template-columns: 1fr 1fr; }
  .statement__stats > div:nth-child(2) { border-right: 0; }
  .acts { grid-template-columns: 1fr; gap: 48px; }
  .route__dot i { font-size: 8px; }
  .section-head--split { grid-template-columns: 1fr; gap: 20px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .features { grid-template-columns: 1fr; gap: 28px; }
  .day__head { grid-template-columns: 60px 1fr 30px; }
  .day__place { display: none; }
  .day__body p { margin-left: 0; }
  .inclusions__grid { grid-template-columns: 1fr; }
  .inclusions__price { grid-column: auto; }
  .form__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}

/* ---------- Light (sand) sections ---------- */
.light { background: var(--sand); color: var(--sand-ink); --line: var(--sand-line); --ivory: var(--sand-ink); --ivory-2: #4a423b; --muted: var(--sand-muted); --gold-2: #a67c3d; --ink: var(--sand); --ink-2: var(--sand); }
.light .eyebrow { color: #a67c3d; }
.light .btn--gold { color: #fff; background: #a67c3d; border-color: #a67c3d; }
.light .btn--gold:hover { background: #b98c49; border-color: #b98c49; }
.light .statement__text .w { opacity: .22; }
.light .day__num, .light .inclusions__price-v { color: #a67c3d; }
.light .field input, .light .field select, .light .field textarea { color: var(--sand-ink); border-bottom-color: rgba(42,36,32,.3); }
.light .field input::placeholder, .light .field textarea::placeholder { color: rgba(42,36,32,.35); }
.light .field select option { background: #fff; color: var(--sand-ink); }
.light .inquire__wa { border-color: var(--sand-line); }
.light .inquire__wa:hover { background: rgba(166,124,61,.06); }
.light .form__success { border-color: #a67c3d; }
.light .route__dot { background: var(--sand); }
.light .act__media::after { background: linear-gradient(180deg, transparent 60%, rgba(42,36,32,.55) 100%); }

/* ---------- Itinerary timeline rail ---------- */
.days-wrap { position: relative; padding-left: 34px; }
.days__rail { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--sand-line); }
.days__rail span { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(var(--gold), #a67c3d); }
.day__head { position: relative; }
.day__head::before { content: ""; position: absolute; left: -38px; top: 50%; width: 7px; height: 7px; margin-top: -4px; border-radius: 50%; border: 1px solid #a67c3d; background: var(--sand); transition: background .5s, box-shadow .5s; }
.day.is-lit .day__head::before { background: #a67c3d; box-shadow: 0 0 0 5px rgba(166,124,61,.15); }
.day .day__num { opacity: .45; transition: opacity .5s; }
.day.is-lit .day__num { opacity: 1; }
.no-motion .day .day__num { opacity: 1; } .no-motion .days__rail span { height: 100%; }
@media (max-width: 760px) { .days-wrap { padding-left: 22px; } .day__head::before { left: -26px; } }

/* ---------- Kosher card border draw ---------- */
.kosher__card { border-color: transparent; position: relative; }
.kosher__card::before, .kosher__card::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.kosher__card::before { border-top: 1px solid rgba(201,165,106,.5); border-bottom: 1px solid rgba(201,165,106,.5); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease) .2s; }
.kosher__card::after { border-left: 1px solid rgba(201,165,106,.5); border-right: 1px solid rgba(201,165,106,.5); transform: scaleY(0); transform-origin: top; transition: transform 1.4s var(--ease) .6s; }
.kosher__card.is-visible::before { transform: scaleX(1); }
.kosher__card.is-visible::after { transform: scaleY(1); }
.no-motion .kosher__card { border-color: rgba(201,165,106,.3); }

/* ---------- Quote focus pull ---------- */
.quote blockquote p, .quote cite { filter: blur(10px); opacity: 0; transition: filter 1.6s var(--ease), opacity 1.6s var(--ease); }
.quote blockquote.is-visible p, .quote blockquote.is-visible cite { filter: blur(0); opacity: 1; }
.quote blockquote.is-visible cite { transition-delay: .5s; }
.quote__bg img { will-change: transform; }
.no-motion .quote blockquote p, .no-motion .quote cite { filter: none; opacity: 1; }

/* ---------- Hero dolly canvas ---------- */
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero.has-dolly { height: 100svh; min-height: 0; }
.hero.has-dolly .hero__canvas { display: block; }
.hero.has-dolly .hero__img { display: none; }

/* ---------- Autoplay hero film ---------- */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: none; }
.hero.has-film .hero__video { display: block; }
.hero.has-film .hero__img, .hero.has-film .hero__canvas { display: none; }
.hero.has-film .hero__title .line > span { animation: none; transform: translateY(110%); transition: transform 1.4s var(--ease); }
.hero.has-film .hero__content .reveal, .hero.has-film .hero__meta { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.hero.has-film .hero__scroll { opacity: 0; transition: opacity 1s; }
.hero.has-film .hero__vignette { opacity: .35; transition: opacity 1.6s var(--ease-cine); }
.hero.has-film.is-landed .hero__title .line > span { transform: translateY(0); }
.hero.has-film.is-landed .hero__title .line:nth-child(2) > span { transition-delay: .15s; }
.hero.has-film.is-landed .hero__title .line:nth-child(3) > span { transition-delay: .3s; }
.hero.has-film.is-landed .hero__content .reveal, .hero.has-film.is-landed .hero__meta { opacity: 1; transform: none; transition-delay: .6s; }
.hero.has-film.is-landed .hero__scroll { opacity: 1; transition-delay: 1.4s; }
.hero.has-film.is-landed .hero__vignette { opacity: 1; }
.hero__skip { position: absolute; right: var(--gutter); bottom: 34px; z-index: 3; background: none; border: 1px solid rgba(242,235,221,.35); color: var(--ivory-2); font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; padding: 10px 16px; cursor: pointer; opacity: 0; transition: opacity .8s, border-color .4s; }
.hero.has-film .hero__skip { opacity: .8; }
.hero.has-film.is-landed .hero__skip { opacity: 0; pointer-events: none; }
.hero__skip:hover { border-color: var(--gold); color: var(--ivory); }

/* ---------- Brand mark ---------- */
.logo { display: block; height: 100%; width: auto; overflow: visible; }
.logo__africa { fill: none; stroke: #c98a5a; stroke-width: 1.6; opacity: .9; }
.logo__word { font-family: var(--serif); font-weight: 500; font-size: 44px; letter-spacing: .02em; fill: var(--ivory); }
.logo__script { font-family: "Allura", "Brush Script MT", cursive; font-size: 30px; fill: #c98a5a; }
.nav__brand { height: 40px; }
.nav__brand .logo { height: 40px; }
.curtain__mark { width: 260px; }
.curtain__mark .logo { width: 100%; height: auto; animation: fadeUp 1.4s var(--ease) both; }
.curtain__mark .logo__africa { stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 2.2s .2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.footer__brand .logo { height: 44px; margin-bottom: 4px; }
.light .logo__word { fill: var(--sand-ink); }

/* ---------- Film captions ---------- */
.hero__caption {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) translateY(14px); z-index: 2;
  width: min(900px, 84vw); text-align: center; pointer-events: none; margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--ivory);
  font-size: clamp(26px, 3.6vw, 54px); line-height: 1.2; text-shadow: 0 2px 30px rgba(0,0,0,.7);
  opacity: 0; filter: blur(6px);
  transition: opacity 1.4s var(--ease), transform 1.6s var(--ease), filter 1.4s var(--ease);
}
.hero__caption.is-on { opacity: 1; transform: translate(-50%, -50%); filter: blur(0); }
.hero__caption em { font-style: normal; color: var(--gold-2); }
.hero.is-landed .hero__caption { opacity: 0; }

/* ---------- WhatsApp glyph in the nav button ---------- */
.btn__wa { width: 16px; height: 16px; flex: none; color: #25d366; margin-right: -2px; }
.nav__cta .btn { gap: 9px; }
