/* ============================================================
   Authentick Travel, concept 2: cinematic dark coastal theme.
   Design read: premium tourism landing for international travelers
   booking Hermanus experiences. Cinematic coastal-adventure vibe.
   Vanilla HTML/CSS/JS + GSAP ScrollTrigger (static site, no build step).
   Dials: variance 8, motion 8, density 3. One accent color pulled from
   the real logo (gold, navy text-on-gold), one radius family (20px
   cards, pill buttons), single dark theme locked across every section.
   ============================================================ */

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

:root {
  --ink-950: #10121a;
  --ink-900: #151824;
  --ink-800: #1d212f;
  --ink-700: #272c3d;
  --ink-600: #363c52;

  --cream: #f4efe4;
  --cream-dim: rgba(244,239,228,0.7);
  --cream-faint: rgba(244,239,228,0.45);
  --cream-ghost: rgba(244,239,228,0.14);

  --coral: #f3b62c;
  --coral-light: #ffd166;
  --coral-dim: rgba(243,182,44,0.16);
  --coral-ink: #1c1708;

  --glow-teal: rgba(56,178,163,0.16);

  --r-card: 20px;
  --r-pill: 999px;
  --r-input: 12px;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

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

body {
  background: var(--ink-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* film-grain texture, fixed so it never repaints on scroll */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)'/%3E%3C/svg%3E");
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--cream);
}

h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p { color: var(--cream-dim); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 14px;
}

section { padding: 128px 0; position: relative; }
@media (max-width: 768px) { section { padding: 76px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring), background 0.3s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--coral);
  color: var(--coral-ink);
}
.btn-primary:hover {
  background: var(--coral-light);
  box-shadow: 0 12px 32px rgba(243,182,44,0.32);
}
.btn-primary .btn-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(26,13,7,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-spring);
}
.btn-primary:hover .btn-icon { transform: translate(2px,-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-ghost);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-light); }

/* ---------- Scroll tracker: a bus rides this line down the page as you scroll ---------- */
.scroll-tracker {
  position: fixed;
  top: 96px; bottom: 28px; right: 26px;
  width: 2px;
  z-index: 90;
  pointer-events: none;
}
.scroll-tracker-line {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(244,239,228,0.3) 0 4px, transparent 4px 11px);
}
.scroll-tracker-bus {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
}
.scroll-tracker-bus svg { transform: rotate(90deg); display: block; }
.bus-body { fill: var(--ink-700); }
.bus-stripe { fill: var(--coral); }
.bus-window { fill: #dfe9ea; }
.bus-wheel { fill: #0c0e11; }
.bus-shadow { fill: rgba(0,0,0,0.35); }
@media (max-width: 860px) { .scroll-tracker { display: none; } }

/* ---------- Nav (floating glass island) ---------- */
.nav-wrap {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.nav {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(12,26,22,0.6);
  border: 1px solid rgba(244,239,228,0.1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.6s var(--ease-out);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 34px; height: 34px; border-radius: 9px; }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; color: var(--cream-dim); transition: color 0.3s ease; }
.nav-links a:hover { color: var(--cream); }
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.nav .btn-primary { padding: 11px 20px; font-size: 14px; }
.nav-toggle { display: none; width: 34px; height: 34px; border-radius: 50%; background: rgba(244,239,228,0.08); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 15px; height: 1.5px; background: var(--cream);
  transition: transform 0.4s var(--ease-spring), opacity 0.3s ease;
}
.nav-toggle span::before { transform: translateY(-5px); }
.nav-toggle span::after { transform: translateY(3.5px); }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg); }
.nav-toggle.active span::after { transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(16,18,26,0.92);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-mobile.active { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.nav-mobile.active a { opacity: 1; transform: translateY(0); }
.nav-mobile.active a:nth-child(1) { transition-delay: 0.08s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.14s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.26s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.32s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero-layers { position: absolute; inset: 0; z-index: 0; }
.hero-layer {
  position: absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-layer-sky { background-image: url('https://authentick.travel/wp-content/uploads/2023/06/authentick-banner-hermanus-cliff-path-sunset-1420x680-opt.png'); filter: brightness(0.55) saturate(1.05); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(16,18,26,0.25), transparent 60%),
    linear-gradient(180deg, rgba(16,18,26,0.55) 0%, rgba(16,18,26,0.35) 40%, rgba(16,18,26,0.92) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 860px; }
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px 12px 12px;
  border-radius: var(--r-pill);
  background: rgba(244,239,228,0.07);
  border: 1px solid rgba(243,182,44,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 60px rgba(243,182,44,0.22);
  margin-bottom: 32px;
}
.hero-logo img {
  width: 72px; height: 72px; border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 6px 18px rgba(0,0,0,0.35);
}
.hero-logo span {
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cream);
}
.hero-content h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-content h1 .line { display: block; overflow: hidden; }
.hero-content h1 .line span { display: block; }
.hero-content p {
  font-size: 17.5px;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-coords {
  position: absolute;
  right: 32px;
  bottom: 40px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--cream-faint);
  text-transform: uppercase;
}
@media (max-width: 900px) { .hero-coords { display: none; } }

/* ---------- Marquee ---------- */
.marquee-section {
  padding: 34px 0;
  border-top: 1px solid var(--cream-ghost);
  border-bottom: 1px solid var(--cream-ghost);
  background: var(--ink-900);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-faint);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.marquee-track span i { color: var(--coral); font-size: 15px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section heads ---------- */
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 16px; max-width: 460px; }
.section-head.center p { margin: 0 auto; }

/* ---------- Itinerary sticky stack ---------- */
.itinerary { background: var(--ink-950); }
.itinerary-head { padding-bottom: 40px; }
.itinerary-total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--coral-dim);
  border: 1px solid rgba(243,182,44,0.3);
  font-size: 14px;
  color: var(--cream-dim);
}
.itinerary-total strong { font-family: var(--font-display); color: var(--coral-light); font-size: 16px; }
.stack-wrap { position: relative; }
.stack-card {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
/* explicit escalating z-index: without it, a pinned (position:fixed) card and
   the next normal-flow card racing up beneath it can paint in the wrong order
   and appear to merge into each other instead of stacking cleanly */
.stack-card:nth-child(1) { z-index: 1; }
.stack-card:nth-child(2) { z-index: 2; }
.stack-card:nth-child(3) { z-index: 3; }
.stack-card:nth-child(4) { z-index: 4; }
.stack-card-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: var(--ink-900);
  border: 1px solid rgba(244,239,228,0.08);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.stack-card-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.stack-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.stack-card-copy { padding: 20px 32px 20px 4px; }
.stack-day {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.stack-day::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--coral);
}
.stack-card-copy h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 14px; }
.stack-card-copy p { font-size: 16px; max-width: 420px; margin-bottom: 18px; }

.stack-activity-select {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(244,239,228,0.18);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0 32px 10px 0;
  margin-bottom: 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23f3b62c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  transition: border-color 0.3s ease;
}
.stack-activity-select:hover, .stack-activity-select:focus { border-color: var(--coral); outline: none; }
.stack-activity-select option { background: var(--ink-900); color: var(--cream); font-family: var(--font-body); }

.stack-price {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--coral-light);
  background: var(--coral-dim);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

@media (max-width: 860px) {
  .stack-card { min-height: unset; padding: 0 0 24px; }
  .stack-card-inner { grid-template-columns: 1fr; gap: 0; border-radius: 22px; }
  .stack-card-copy { padding: 24px 16px 28px; }
}

/* ---------- Stay: real accommodation section, not just the widget tab ---------- */
.stay { background: var(--ink-900); }
.stay-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.stay-copy p { font-size: 16px; max-width: 460px; margin-bottom: 24px; }
.amenity-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.amenity-list li {
  font-size: 13.5px; font-weight: 600; color: var(--cream-dim);
  padding: 9px 16px; border-radius: var(--r-pill);
  background: rgba(244,239,228,0.06); border: 1px solid rgba(244,239,228,0.12);
}
.stay-frame { position: relative; }
.stay-frame-inner {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(244,239,228,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 70px rgba(0,0,0,0.4);
}
.stay-frame-inner img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stay-badge {
  position: absolute; bottom: -18px; left: 24px;
  background: var(--coral); color: var(--coral-ink);
  font-weight: 700; font-size: 13.5px;
  padding: 10px 18px; border-radius: var(--r-pill);
  box-shadow: 0 12px 28px rgba(243,182,44,0.3);
}
@media (max-width: 860px) {
  .stay-split { grid-template-columns: 1fr; gap: 32px; }
  .stay-badge { left: 16px; }
}

/* ---------- Activities: horizontal scroll-snap rail, not a bento grid ---------- */
.activities { background: var(--ink-950); }
.activity-rail-wrap { position: relative; }
.activity-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 32px 12px;
  scrollbar-width: none;
}
.activity-rail::-webkit-scrollbar { display: none; }
.activity-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid rgba(244,239,228,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.activity-card-photo { aspect-ratio: 4/5; overflow: hidden; }
.activity-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.activity-card:hover .activity-card-photo img { transform: scale(1.07); }
.activity-card-info { padding: 18px 20px 22px; }
.activity-card-info .tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--coral-light); font-weight: 700; margin-bottom: 8px; display: block;
}
.activity-card-info h3 { font-size: 1.15rem; }
.activity-rail-controls {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px;
}
@media (max-width: 640px) {
  .activity-card { flex-basis: 240px; }
}

/* ---------- Transport: mirrors the Stay split, photo on the other side ---------- */
.transport { background: var(--ink-900); }
.transport-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.transport-copy p { font-size: 16px; max-width: 460px; margin-bottom: 24px; }
.transport-frame-inner {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(244,239,228,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 70px rgba(0,0,0,0.4);
}
.transport-frame-inner img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) {
  .transport-split { grid-template-columns: 1fr; gap: 32px; }
  .transport-split .transport-frame { order: -1; }
}

/* ---------- Booking widget (glass panel) ---------- */
.book { position: relative; overflow: hidden; }
.book-bg {
  position: absolute; inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/19/Hermanus_whale_watchers_old_harbour.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(0.9);
}
.book-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, var(--glow-teal), transparent 55%),
    radial-gradient(ellipse at 80% 80%, var(--coral-dim), transparent 55%),
    linear-gradient(180deg, rgba(16,18,26,0.55) 0%, rgba(16,18,26,0.88) 100%);
}
.book > .container { position: relative; z-index: 1; }
.book-panel {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 28px;
  background: rgba(244,239,228,0.05);
  border: 1px solid rgba(244,239,228,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.35);
  padding: 40px;
}
.book-tabs { display: flex; gap: 8px; margin-bottom: 28px; background: rgba(16,18,26,0.4); padding: 6px; border-radius: var(--r-pill); width: max-content; }
.book-tab {
  padding: 10px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  color: var(--cream-dim); transition: background 0.4s var(--ease-out), color 0.3s ease;
}
.book-tab.active { background: var(--coral); color: var(--coral-ink); }
.book-fields { display: none; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-fields.active { display: grid; }
.field-full { grid-column: span 2; }
.field label { display: block; font-size: 12.5px; color: var(--cream-faint); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.field input, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--r-input);
  background: rgba(16,18,26,0.5); border: 1px solid rgba(244,239,228,0.14);
  color: var(--cream); font-family: var(--font-body); font-size: 15px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--coral); }
.book-submit { margin-top: 8px; width: 100%; justify-content: center; }
.book-result {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding: 18px 22px;
  border-radius: 16px;
  background: var(--coral-dim);
  border: 1px solid rgba(243,182,44,0.3);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.book-result.show { opacity: 1; transform: translateY(0); }
.book-result-label { font-size: 14px; color: var(--cream-dim); }
.book-result-total { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--coral-light); }
.book-note { margin-top: 18px; font-size: 13px; color: var(--cream-faint); text-align: center; }
@media (max-width: 640px) {
  .book-panel { padding: 26px 20px; }
  .book-fields { grid-template-columns: 1fr; }
  .field-full { grid-column: span 1; }
}

/* ---------- Whale crier narrative ---------- */
.narrative {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.narrative-bg {
  position: absolute; inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b8/Whale_Crier_-_Hermanus.jpg');
  background-size: cover; background-position: center 30%;
}
.narrative-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,10,16,0.94) 0%, rgba(9,10,16,0.72) 45%, rgba(9,10,16,0.4) 100%);
}
.narrative-inner { position: relative; z-index: 2; max-width: 640px; }
.narrative h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 22px; }
.narrative-text { font-size: 18px; line-height: 1.75; }
.narrative-text .word { opacity: 0.22; transition: opacity 0.4s ease; }
.narrative-text .word.lit { opacity: 1; }

/* ---------- Reviews carousel ---------- */
.reviews { position: relative; overflow: hidden; }
.reviews-bg {
  position: absolute; inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/74/Hermanus_sunset_-_panoramio.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(0.9);
}
.reviews-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink-950) 0%, rgba(16,18,26,0.7) 30%, rgba(16,18,26,0.92) 100%); }
.reviews > .container { position: relative; z-index: 1; }

.trust-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px 10px 10px;
  border-radius: var(--r-pill);
  background: rgba(244,239,228,0.06);
  border: 1px solid rgba(244,239,228,0.14);
  backdrop-filter: blur(16px);
  margin: 0 auto 30px;
}
.trust-badge-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--coral); color: var(--coral-ink);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.trust-badge-text { text-align: left; }
.trust-badge-score { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.trust-badge-score span { color: var(--coral-light); margin-left: 6px; font-size: 13px; letter-spacing: 0.05em; }
.trust-badge-label { font-size: 12px; color: var(--cream-faint); }

/* stack every slide in the same grid cell so the tallest one sets the
   stage height; a crossfade never needs a guessed min-height */
.review-stage { position: relative; max-width: 720px; margin: 0 auto; display: grid; }
.review-slide {
  grid-area: 1 / 1;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.review-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.review-quote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.1vw, 1.6rem); font-weight: 500; line-height: 1.5; color: var(--cream); margin-bottom: 22px; }
.review-attr { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral-dim); color: var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.review-attr .who span { display: block; }
.review-attr .name { font-weight: 700; font-size: 14.5px; }
.review-attr .place { font-size: 13px; color: var(--cream-faint); }
.review-controls { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.review-dots { display: flex; gap: 8px; }
.review-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(244,239,228,0.25); transition: all 0.4s var(--ease-out); }
.review-dot.active { background: var(--coral); width: 22px; border-radius: var(--r-pill); }
.review-arrows { display: flex; gap: 8px; margin-left: auto; }
.review-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(244,239,228,0.16);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s ease, color 0.3s ease;
}
.review-arrow:hover { border-color: var(--coral); color: var(--coral-light); }

/* ---------- Closer / CTA ---------- */
.closer { position: relative; overflow: hidden; text-align: center; }
.closer-bg {
  position: absolute; inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/82/Sir_Lowry%27s_Pass%2C_South_Africa_N2_road.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.85);
}
.closer-scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(29,33,47,0.6), var(--ink-950) 68%); }
.closer > .container { position: relative; z-index: 1; }
.closer h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 780px; margin: 0 auto 24px; }
.closer p { max-width: 480px; margin: 0 auto 34px; font-size: 17px; }
.closer .btn { font-size: 16px; padding: 18px 32px; }

/* ---------- Footer ---------- */
footer { background: var(--ink-900); padding: 72px 0 32px; border-top: 1px solid rgba(244,239,228,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand p { font-size: 14.5px; max-width: 280px; margin-top: 10px; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; margin-bottom: 16px; color: var(--cream); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col p { font-size: 14.5px; color: var(--cream-dim); }
.footer-col a:hover { color: var(--coral-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid rgba(244,239,228,0.08);
  font-size: 13px; color: var(--cream-faint);
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(244,239,228,0.14);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s ease, color 0.3s ease;
}
.social-row a:hover { border-color: var(--coral); color: var(--coral-light); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

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

/* ---------- Nav scroll state ---------- */
.nav-wrap.scrolled .nav { box-shadow: 0 16px 44px rgba(0,0,0,0.5); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
