/* ════════════════════════════════════════════════════════════════════
   JEEP CAPE XPLORER — Editorial Luxury
   A light, warm, refined adventure-tour design system.
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --paper: #faf6ef;
  --paper-2: #f3ece0;
  --paper-3: #ebe2d3;
  --cream: #fffcf6;
  --ink: #1a1714;
  --ink-2: #3a342c;
  --muted: #6b6258;
  --muted-2: #98907f;
  --line: rgba(26, 23, 20, 0.12);
  --line-soft: rgba(26, 23, 20, 0.07);

  /* Brand */
  --clay: #b8442e;        /* primary — warm Cape clay red */
  --clay-deep: #8c2f1e;
  --clay-light: #d96749;
  --forest: #2d4a3a;      /* secondary — deep Cape green */
  --ochre: #c69b3c;       /* gold sun accent */
  --sand: #d9c8a7;

  --shadow-sm: 0 1px 2px rgba(26, 23, 20, 0.04);
  --shadow-md: 0 12px 32px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 23, 20, 0.14);
  --shadow-xl: 0 40px 90px rgba(26, 23, 20, 0.18);

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.46, 0.64, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--clay); color: white; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

input, select, textarea { font: inherit; color: inherit; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

/* ── Eyebrow & dividers ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--clay);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-top: 1rem;
  letter-spacing: -0.025em;
}

.section-head .lede {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.split-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-top: 0.75rem;
}

.split-head .lede {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

/* ════════════════════════════════════════════════════════════════════
   1. TOP BAR + NAV
   ════════════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 1.5rem;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand);
}

.topbar-tag .dot {
  width: 6px; height: 6px;
  background: var(--ochre); border-radius: 50%;
  box-shadow: 0 0 8px rgba(198, 155, 60, 0.6);
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s var(--ease);
}

.topbar-contacts a:hover { color: white; }

.topbar-contacts svg { width: 13px; height: 13px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
}

.brand-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-mark::after {
  display: none;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.brand-name small {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--clay); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.nav-toggle .bar {
  display: block;
  width: 18px; height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open .bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  z-index: 100;
  background: var(--cream);
  box-shadow: -32px 0 80px rgba(26, 23, 20, 0.18);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 6rem 1.75rem 2rem;
}

.drawer.open { transform: translateX(0); }

.drawer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.drawer a span { color: var(--clay); font-size: 14px; }

.drawer-cta { margin-top: auto; }

.drawer-backdrop {
  position: fixed; inset: 0;
  z-index: 95;
  background: rgba(26, 23, 20, 0.32);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ════════════════════════════════════════════════════════════════════
   2. BUTTONS
   ════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn .icon { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary {
  background: var(--clay);
  color: white;
  box-shadow: 0 8px 24px rgba(184, 68, 46, 0.32);
}

.btn-primary:hover {
  background: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184, 68, 46, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}

.btn-ink:hover { background: var(--clay); }

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-light:hover { background: white; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-link:hover { gap: 14px; color: var(--clay-deep); }
.btn-link svg { width: 14px; height: 14px; }

.btn-sm { padding: 10px 16px; font-size: 12px; }

/* ════════════════════════════════════════════════════════════════════
   3. HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.14) translate(-2.2%, -1.6%); }
}

.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.25) 0%, transparent 30%, transparent 60%, rgba(26, 23, 20, 0.55) 100%),
    linear-gradient(90deg, rgba(26, 23, 20, 0.45) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(3rem, 5vw, 5rem);
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--clay-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(217, 103, 73, 0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  color: white;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 14ch;
  font-weight: 400;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--sand);
  display: inline-block;
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 0.05em; left: 0;
  width: 100%; height: 3px;
  background: var(--clay-light);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.4s 1.2s var(--ease) forwards;
}

@keyframes underline {
  to { transform: scaleX(1); }
}

.hero-lede {
  margin-top: 1.5rem;
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  backdrop-filter: blur(8px);
}

.hero-actions .btn-ghost:hover { background: white; color: var(--ink); border-color: white; }

/* Hero footer strip — quick stats */
.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  color: white;
}

.hero-strip-item .num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  color: white;
  display: block;
}

.hero-strip-item .num em {
  font-style: italic;
  color: var(--clay-light);
  font-size: 0.7em;
  margin-left: 4px;
}

.hero-strip-item .lbl {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55));
  animation: cueFall 2.2s ease-in-out infinite;
}

@keyframes cueFall {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════════════════════════
   4. CREDIBILITY STRIP (Awards / The Original)
   ════════════════════════════════════════════════════════════════════ */
.credibility {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 2.25rem 0;
}

.credibility-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.credibility-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credibility-tag strong {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.credibility-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

.credibility-divider {
  width: 1px;
  height: 56px;
  background: var(--line);
}

.credibility-awards {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.award {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.award svg { width: 28px; height: 28px; color: var(--ochre); flex-shrink: 0; }

.award strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════
   5. TOURS GRID
   ════════════════════════════════════════════════════════════════════ */
.tours {
  background: var(--paper);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.tour-card {
  position: relative;
  grid-column: span 2;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}

.tour-card.featured { grid-column: span 3; }

.tour-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
}

.tour-card.featured .tour-card-media { aspect-ratio: 16 / 11; }

.tour-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.tour-card:hover .tour-card-media img { transform: scale(1.06); }

.tour-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 252, 246, 0.94);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.tour-card-badge.popular { background: var(--clay); color: white; }
.tour-card-badge.popular::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ochre);
  border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}

.tour-card-meta {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  gap: 6px;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(26, 23, 20, 0.7);
  color: white;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.tour-card-meta svg { width: 11px; height: 11px; }

.tour-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.tour-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.tour-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.tour-card.featured h3 { font-size: 1.85rem; }

.tour-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tour-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.tour-card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tour-card-price small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tour-card-price strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
}

.tour-card-price strong em {
  font-style: normal;
  color: var(--clay);
}

.tour-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.tour-card:hover .tour-card-cta { background: var(--clay); transform: translateX(4px); }
.tour-card-cta svg { width: 12px; height: 12px; }

.tour-card-includes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
}

.tour-card-includes span {
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--paper-2);
  border-radius: 999px;
}

/* Custom card */
.tour-card-custom {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0;
}

.tour-card-custom .tour-card-media { aspect-ratio: auto; min-height: 320px; }
.tour-card-custom h3 { color: var(--cream); font-size: 2rem; }
.tour-card-custom p { color: rgba(255, 252, 246, 0.74); }
.tour-card-custom .tour-card-cat { color: var(--ochre); }
.tour-card-custom .tour-card-foot { border-top-color: rgba(255, 252, 246, 0.15); }
.tour-card-custom .tour-card-body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════
   6. JOURNEY (route timeline / day flow)
   ════════════════════════════════════════════════════════════════════ */
.journey {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  position: relative;
  overflow: hidden;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.journey-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.journey-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.journey-figure-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 252, 246, 0.94);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.journey-figure-tag .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--clay);
  border-radius: 50%;
  color: white;
}

.journey-figure-tag .icon svg { width: 18px; height: 18px; }

.journey-figure-tag strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.journey-figure-tag span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 1px dashed var(--line);
}

.timeline-step {
  position: relative;
  padding: 0 0 2.25rem 0;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--cream);
  border: 2px solid var(--clay);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(184, 68, 46, 0.08);
}

.timeline-step .time {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--clay);
  margin-bottom: 4px;
}

.timeline-step h3 {
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.timeline-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════
   7. WHY US (4 pillars)
   ════════════════════════════════════════════════════════════════════ */
.why { background: var(--cream); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}

.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--paper-2); }

.pillar-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--clay);
  background: var(--cream);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.pillar:hover .pillar-icon { background: var(--clay); color: white; border-color: var(--clay); }

.pillar-icon svg { width: 22px; height: 22px; }

.pillar h3 {
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════
   8. GALLERY (cinematic editorial)
   ════════════════════════════════════════════════════════════════════ */
.gallery { background: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 23, 20, 0.55));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
}

.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 6; grid-row: span 4; }
.g-2 { grid-column: span 3; grid-row: span 2; }
.g-3 { grid-column: span 3; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 3; }
.g-5 { grid-column: span 4; grid-row: span 3; }
.g-6 { grid-column: span 4; grid-row: span 3; }
.g-7 { grid-column: span 6; grid-row: span 3; }
.g-8 { grid-column: span 6; grid-row: span 3; }

/* ════════════════════════════════════════════════════════════════════
   9. TESTIMONIALS
   ════════════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 10%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184, 68, 46, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.testimonials .eyebrow { color: var(--clay-light); }
.testimonials .eyebrow::before { background: var(--clay-light); }
.testimonials h2 { color: var(--cream); }
.testimonials .lede { color: rgba(255, 252, 246, 0.7); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: rgba(255, 252, 246, 0.04);
  border: 1px solid rgba(255, 252, 246, 0.08);
  border-radius: var(--r-lg);
  position: relative;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.testimonial:hover {
  background: rgba(255, 252, 246, 0.06);
  border-color: rgba(255, 252, 246, 0.16);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg { width: 14px; height: 14px; color: var(--ochre); fill: currentColor; }

.testimonial-quote {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 17px;
  background: linear-gradient(135deg, var(--clay), var(--clay-deep));
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-author small {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  color: rgba(255, 252, 246, 0.55);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════════
   10. GUIDES (female-led team callout)
   ════════════════════════════════════════════════════════════════════ */
.guides {
  background: var(--paper);
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.guides-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.025em;
}

.guides-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.guides-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.guides-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--clay);
  letter-spacing: -0.02em;
  font-weight: 500;
}

.guides-stats div span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.guides-figure {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guides-figure img {
  width: 100%; height: 100%; object-fit: cover;
}

.guides-figure-card {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  display: grid;
  gap: 4px;
}

.guides-figure-card strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.guides-figure-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ════════════════════════════════════════════════════════════════════
   11. PRESS / MEDIA
   ════════════════════════════════════════════════════════════════════ */
.press {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  padding: 3rem 0;
}

.press-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.press-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  position: relative;
  padding-right: 2rem;
}

.press-label::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 32px;
  background: var(--line);
  transform: translateY(-50%);
}

.press-logos {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.press-logos span {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: 0.005em;
  color: var(--muted);
  opacity: 0.7;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  cursor: default;
}

.press-logos span:hover { color: var(--ink); opacity: 1; }
.press-logos span em { font-style: italic; color: var(--clay); }

/* ════════════════════════════════════════════════════════════════════
   12. FAQ
   ════════════════════════════════════════════════════════════════════ */
.faq { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--clay); }

.faq-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: background 0.3s var(--ease), transform 0.4s var(--ease);
}

.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }

.faq-item[open] .faq-icon { background: var(--clay); border-color: var(--clay); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: white; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }

.faq-answer {
  padding: 0 0 1.75rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 60ch;
}

.faq-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 2rem;
  background: var(--paper-2);
  border-radius: var(--r-lg);
}

.faq-aside h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-aside p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-aside-channels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-aside-channels a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-aside-channels a:hover { border-color: var(--clay); transform: translateX(4px); }
.faq-aside-channels svg { width: 16px; height: 16px; color: var(--clay); }

/* ════════════════════════════════════════════════════════════════════
   13. BOOK / INQUIRY
   ════════════════════════════════════════════════════════════════════ */
.book {
  background: var(--paper);
  position: relative;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.book-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.025em;
}

.book-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 480px;
}

.book-perks {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.book-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.book-perk svg { width: 18px; height: 18px; color: var(--clay); flex-shrink: 0; margin-top: 1px; }

.book-perk strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  color: var(--ink);
}

.book-perk span { color: var(--muted); font-size: 12.5px; line-height: 1.55; }

.book-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}

.book-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.book-form label {
  display: grid;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.book-form input,
.book-form select,
.book-form textarea {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.book-form input::placeholder,
.book-form textarea::placeholder { color: var(--muted-2); }

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: white;
  box-shadow: 0 0 0 4px rgba(184, 68, 46, 0.12);
}

.book-form textarea { resize: vertical; min-height: 100px; }

.form-status {
  display: none;
  padding: 14px;
  background: rgba(184, 68, 46, 0.08);
  border-left: 3px solid var(--clay);
  border-radius: var(--r-sm);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
}

.form-status.visible { display: block; }

/* ════════════════════════════════════════════════════════════════════
   14. NEWSLETTER + FOOTER
   ════════════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.newsletter h3 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.newsletter p {
  margin-top: 0.75rem;
  color: rgba(255, 252, 246, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 252, 246, 0.06);
  border: 1px solid rgba(255, 252, 246, 0.12);
  border-radius: 999px;
  padding: 6px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--cream);
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255, 252, 246, 0.5); }

.newsletter-form button {
  padding: 12px 22px;
  background: var(--clay);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s var(--ease);
}

.newsletter-form button:hover { background: var(--clay-deep); }

.footer {
  background: var(--ink);
  color: rgba(255, 252, 246, 0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 252, 246, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
}

.footer-brand .brand-name strong { color: var(--cream); }
.footer-brand .brand-name small { color: var(--clay-light); }

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 252, 246, 0.15);
  border-radius: 50%;
  color: rgba(255, 252, 246, 0.78);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--clay);
  color: white;
  border-color: var(--clay);
}

.footer-social svg { width: 14px; height: 14px; }

.footer-col h5 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: grid; gap: 0.75rem; }

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 252, 246, 0.78);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--clay-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 252, 246, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
  color: rgba(255, 252, 246, 0.45);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════════
   15. FLOATING CTA + LIGHTBOX
   ════════════════════════════════════════════════════════════════════ */
.float-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--clay);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 40px rgba(184, 68, 46, 0.4);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease), background 0.3s var(--ease);
}

.float-cta.show { transform: translateY(0); }
.float-cta:hover { background: var(--clay-deep); }
.float-cta svg { width: 14px; height: 14px; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}

.lightbox.open img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 252, 246, 0.25);
  border-radius: 50%;
  color: var(--cream);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.lightbox-close:hover { background: rgba(255, 252, 246, 0.1); border-color: var(--cream); }
.lightbox-close svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS — Rydex-level scroll-triggered
   ════════════════════════════════════════════════════════════════════ */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(54px) scale(0.97); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes reveal-left {
  from { opacity: 0; transform: translateX(-54px) scale(0.97); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes reveal-right {
  from { opacity: 0; transform: translateX(54px) scale(0.97); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.88); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes reveal-clip {
  from { opacity: 0; clip-path: inset(12% 0 0 0); transform: translateY(20px); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

.reveal { opacity: 0; will-change: transform, opacity, filter; }
.reveal.in { animation: reveal-up 0.9s var(--ease) forwards; }
.reveal.from-left.in  { animation-name: reveal-left; }
.reveal.from-right.in { animation-name: reveal-right; }
.reveal.scale-in.in   { animation-name: reveal-scale; }
.reveal.clip-in.in    { animation-name: reveal-clip; }

.reveal.d-1 { animation-delay: 0.12s; }
.reveal.d-2 { animation-delay: 0.24s; }
.reveal.d-3 { animation-delay: 0.36s; }
.reveal.d-4 { animation-delay: 0.48s; }
.reveal.d-5 { animation-delay: 0.60s; }
.reveal.d-6 { animation-delay: 0.72s; }
.reveal.d-7 { animation-delay: 0.84s; }

/* ── PARALLAX LAYER ── */
.parallax-img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ── CARD HOVER 3D LIFT ── */
.tour-card {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tour-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 32px 64px rgba(26, 23, 20, 0.16), 0 0 0 1px var(--clay-light);
}
.tour-card-media img {
  transition: transform 0.7s var(--ease);
}
.tour-card:hover .tour-card-media img {
  transform: scale(1.06);
}

/* ── PILLAR HOVER GLOW ── */
.pillar {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(184, 68, 46, 0.1), 0 0 0 1px var(--clay-light);
}
.pillar-icon {
  transition: transform 0.5s var(--ease-snap), background 0.4s var(--ease);
}
.pillar:hover .pillar-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--clay);
  color: white;
}
.pillar:hover .pillar-icon svg { stroke: white; }

/* ── TESTIMONIAL CARD HOVER ── */
.testimonial {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26, 23, 20, 0.12);
}

/* ── AWARD ITEMS STAGGER ── */
.credibility-awards .award {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.credibility.revealed .award { opacity: 1; transform: translateY(0); }
.credibility.revealed .award:nth-child(1) { transition-delay: 0.08s; }
.credibility.revealed .award:nth-child(2) { transition-delay: 0.20s; }
.credibility.revealed .award:nth-child(3) { transition-delay: 0.32s; }
.credibility.revealed .award:nth-child(4) { transition-delay: 0.44s; }

/* ── TIMELINE STEP GROW-IN ── */
.timeline-step {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ── HERO STRIP ITEMS STAGGER ── */
.hero-strip-item {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

/* ── EYEBROW DASH ANIMATION (Rydex style) ── */
.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.7s var(--ease);
  flex-shrink: 0;
}
.eyebrow.in::before { width: 28px; }

/* ── SECTION DARK BAND CONTRAST (optional) ── */
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark .eyebrow { color: var(--clay-light); }
.section-dark .eyebrow::before { background: var(--clay-light); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lede { color: var(--sand); }

/* ── IMAGE CLIP REVEAL ── */
.img-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease);
}
.img-reveal.revealed {
  clip-path: inset(0 0 0 0);
}

/* ── PRESS MARQUEE (smooth) ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.press-logos.animated {
  animation: marquee 30s linear infinite;
}
.press-logos.animated:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   PAGE HEADER (used on non-home pages)
   ════════════════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: white;
}

.page-header-img {
  position: absolute; inset: 0;
  z-index: 0;
}

.page-header-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.page-header-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.4) 0%, transparent 30%, transparent 50%, rgba(26, 23, 20, 0.6) 100%),
    linear-gradient(90deg, rgba(26, 23, 20, 0.55) 0%, transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.crumbs {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.crumbs a { color: rgba(255, 255, 255, 0.65); transition: color 0.25s var(--ease); }
.crumbs a:hover { color: var(--clay-light); }
.crumbs .sep { color: rgba(255, 255, 255, 0.3); }
.crumbs .current { color: var(--clay-light); }

.page-header h1 {
  color: white;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 16ch;
  font-weight: 400;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.page-header h1 em {
  font-style: italic;
  color: var(--sand);
}

.page-header-lede {
  margin-top: 1.25rem;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ════════════════════════════════════════════════════════════════════
   COMPARE TABLE (tours page)
   ════════════════════════════════════════════════════════════════════ */
.compare {
  background: var(--cream);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-2);
}

.compare-table th {
  background: var(--paper-2);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.compare-table tr:last-child td { border-bottom: 0; }

.compare-table .price-cell {
  font-family: var(--display);
  font-size: 16px;
  color: var(--clay);
  font-weight: 500;
}

.compare-table tr:hover td { background: rgba(184, 68, 46, 0.04); }

/* ════════════════════════════════════════════════════════════════════
   ABOUT — story & values
   ════════════════════════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.story-figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.story-figure img { width: 100%; height: 100%; object-fit: cover; }

.story-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.025em;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT — channel cards + map
   ════════════════════════════════════════════════════════════════════ */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.channel-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  gap: 0.75rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--clay);
  box-shadow: var(--shadow-md);
}

.channel-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(184, 68, 46, 0.1);
  color: var(--clay);
  display: grid; place-items: center;
}

.channel-card .icon svg { width: 18px; height: 18px; }

.channel-card strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.channel-card a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.channel-card a:hover { color: var(--clay); }

.map-block {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
  aspect-ratio: 21/9;
  border: 1px solid var(--line);
}

.map-block iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(0.92);
}

/* ════════════════════════════════════════════════════════════════════
   ADMIN PORTAL
   ════════════════════════════════════════════════════════════════════ */
.admin-body {
  background: var(--paper-2);
  min-height: 100vh;
  font-family: var(--body);
}

/* Login */
.admin-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-2);
}

.admin-login-side {
  position: relative;
  background: var(--ink);
  color: white;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.admin-login-side::before {
  content: "";
  position: absolute; inset: 0;
  background: url("images/IMG-20260428-WA0303.jpg") center/cover;
  opacity: 0.35;
  z-index: -1;
}

.admin-login-side::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 23, 20, 0.85), rgba(184, 68, 46, 0.5));
  z-index: -1;
}

.admin-login-side .brand-mark {
  height: 56px;
  width: auto;
  margin-bottom: 1.5rem;
}

.admin-login-side h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  color: white;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.admin-login-side p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 340px;
  line-height: 1.7;
}

.admin-login-side .signature {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--cream);
}

.admin-login-form-inner {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.admin-login-form h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.admin-login-form .lede {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form label {
  display: grid;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184, 68, 46, 0.12);
}

.admin-hint {
  margin-top: 0.5rem;
  padding: 12px 14px;
  background: rgba(184, 68, 46, 0.06);
  border-left: 3px solid var(--clay);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-hint code {
  background: var(--paper-3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--ink);
}

/* Layout */
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-side {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
}

.admin-side .brand {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-side .brand-name strong { color: white; font-size: 16px; }
.admin-side .brand-name small { color: var(--clay-light); }

.admin-nav-section {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 1.5rem 0.75rem 0.5rem;
}

.admin-nav-section:first-of-type { margin-top: 0; }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  position: relative;
}

.admin-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.admin-nav a:hover { background: rgba(255, 255, 255, 0.05); color: white; }

.admin-nav a.active {
  background: var(--clay);
  color: white;
}

.admin-nav a .badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
}

.admin-nav a.active .badge { background: rgba(255, 255, 255, 0.22); }

.admin-side-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.admin-side-foot a {
  display: block;
  margin-top: 8px;
  color: var(--clay-light);
  font-weight: 600;
}

.admin-main {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper-2);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-topbar h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
}

.admin-topbar .lede {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.admin-userchip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.admin-userchip strong {
  font-size: 13px;
  color: var(--ink);
}

.admin-userchip span {
  font-size: 11px;
  color: var(--muted);
}

.admin-userchip .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--clay-deep));
  color: white;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
}

/* Stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.stat-card .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card .lbl svg { width: 14px; height: 14px; color: var(--clay); }

.stat-card .num {
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}

.stat-card .delta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-card .delta.up { color: #2d7d4f; }
.stat-card .delta.down { color: var(--clay-deep); }

/* Panel */
.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.panel-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.panel-head h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.panel-head p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.panel-body { padding: 1.5rem; }

.panel-body.flush { padding: 0; }

/* Bookings table */
.tbl {
  width: 100%;
  border-collapse: collapse;
}

.tbl th, .tbl td {
  padding: 14px 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--ink-2);
}

.tbl th {
  background: var(--paper-2);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.tbl tbody tr:hover { background: rgba(184, 68, 46, 0.03); }

.tbl-guest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tbl-guest .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.tbl-guest strong { display: block; font-size: 13.5px; color: var(--ink); font-weight: 600; }
.tbl-guest small { font-size: 11.5px; color: var(--muted); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.pill-confirmed { background: rgba(45, 125, 79, 0.1); color: #2d7d4f; }
.pill-pending   { background: rgba(198, 155, 60, 0.12); color: #a07a18; }
.pill-paid      { background: rgba(45, 125, 79, 0.1); color: #2d7d4f; }
.pill-deposit   { background: rgba(184, 68, 46, 0.1); color: var(--clay); }
.pill-cancelled { background: rgba(120, 120, 120, 0.1); color: #777; }

.tbl-actions {
  display: inline-flex;
  gap: 4px;
}

.icon-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--muted);
  display: grid; place-items: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.icon-btn:hover { background: var(--clay); color: white; }
.icon-btn svg { width: 14px; height: 14px; }

/* Pricing editor */
.price-grid {
  display: grid;
  gap: 0.75rem;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease);
}

.price-row:hover { border-color: var(--clay); }

.price-row .thumb {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.price-row .meta strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.005em;
  font-weight: 500;
}

.price-row .meta span {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.price-input-wrap .currency {
  padding: 9px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-family: var(--display);
  font-size: 14px;
  color: var(--muted);
}

.price-input-wrap input {
  width: 130px;
  padding: 9px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.price-input-wrap input:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184, 68, 46, 0.14);
}

.price-row .save-flash {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d7d4f;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  white-space: nowrap;
}

.price-row .save-flash.show { opacity: 1; }

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-toolbar p {
  color: var(--muted);
  font-size: 13px;
  max-width: 540px;
}

.admin-toolbar .actions {
  display: flex;
  gap: 8px;
}

.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s var(--ease);
}
.btn-soft:hover { background: var(--paper-3); }
.btn-soft svg { width: 14px; height: 14px; }

/* Filter bar (bookings) */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-chip:hover { color: var(--ink); border-color: var(--line); }
.filter-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (max-width: 1100px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .channels { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side {
    position: static;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  .admin-side .brand { flex: 1; margin: 0; padding: 0; border: 0; }
  .admin-nav-section { display: none; }
  .admin-nav { display: flex; flex: 1 0 100%; gap: 4px; flex-wrap: wrap; }
  .admin-nav a { flex: 1; min-width: 130px; }
  .admin-side-foot { display: none; }

  .admin-login { grid-template-columns: 1fr; }
  .admin-login-side { display: none; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .price-input-wrap { width: max-content; }

  .story-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { gap: 1.4rem; }
  .tour-card { grid-column: span 3; }
  .tour-card.featured { grid-column: span 6; }
  .gallery-grid { grid-auto-rows: 90px; }
}

@media (max-width: 900px) {
  .topbar-tag { display: none; }
  .topbar-contacts { gap: 1rem; font-size: 11.5px; }
  .topbar-contacts a span { display: none; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; }

  .credibility-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .credibility-divider { display: none; }
  .credibility-awards { gap: 1.25rem; }

  .split-head { grid-template-columns: 1fr; }

  .tours-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .tour-card, .tour-card.featured { grid-column: span 1; }
  .tour-card-custom { grid-column: span 2; grid-template-columns: 1fr; }
  .tour-card-custom .tour-card-media { min-height: 240px; }

  .journey-grid, .guides-grid, .book-grid, .faq-grid {
    grid-template-columns: 1fr;
  }

  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 80px;
  }
  .g-1 { grid-column: span 6; grid-row: span 4; }
  .g-2, .g-3 { grid-column: span 3; grid-row: span 2; }
  .g-4, .g-5, .g-6 { grid-column: span 6; grid-row: span 3; }
  .g-7, .g-8 { grid-column: span 3; grid-row: span 3; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .hero-strip { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .press-inner { grid-template-columns: 1fr; gap: 1rem; }
  .press-label { padding-right: 0; }
  .press-label::after { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }

  .newsletter-inner { grid-template-columns: 1fr; }

  .book-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-inner { height: 64px; }
  .brand-name strong { font-size: 16px; }
  .brand-name small { font-size: 8.5px; }

  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.6rem); }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .float-cta {
    left: 1rem; right: 1rem;
    justify-content: center;
  }

  .gallery-grid { grid-auto-rows: 64px; }
}

/* ════════════════════════════════════════════════════════════════════
   JEEP EXPERIENCE — Phase 1
   Foundation tokens, tread dividers, topo overlays, brake glow,
   idle bobble, speedometer-ready hero strip.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --brake: #ff4a26;          /* tail-light red */
  --dust: #d9c8a7;           /* warm trail dust */
  --amber: #f5b454;          /* dashboard amber */
}

/* ── Tire-tread divider ───────────────────────────────────
   Drop <div class="tread-divider" aria-hidden="true"></div> between
   sections. Two opposing rows of slanted blocks, faded edges. */
.tread-divider {
  position: relative;
  height: 38px;
  width: 100%;
  background: var(--paper);
  pointer-events: none;
  overflow: hidden;
}

.tread-divider::before,
.tread-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: clamp(220px, 46vw, 620px);
  height: 9px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(
    105deg,
    var(--ink) 0 5px,
    transparent 5px 14px
  );
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
}

.tread-divider::before { top: 8px; }
.tread-divider::after  {
  bottom: 8px;
  background-image: repeating-linear-gradient(
    75deg,
    var(--ink) 0 5px,
    transparent 5px 14px
  );
}

.tread-divider.on-cream { background: var(--cream); }
.tread-divider.on-ink   { background: var(--ink); }
.tread-divider.on-ink::before,
.tread-divider.on-ink::after {
  background-image: repeating-linear-gradient(
    105deg,
    var(--cream) 0 5px,
    transparent 5px 14px
  );
  opacity: 0.16;
}
.tread-divider.on-ink::after {
  background-image: repeating-linear-gradient(
    75deg,
    var(--cream) 0 5px,
    transparent 5px 14px
  );
}

/* ── Topographic contour overlay ──────────────────────────
   Faint terrain lines sitting behind .journey and .why. */
.journey, .why { position: relative; overflow: hidden; }

.journey::before,
.why::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -8%;
  width: 64%;
  height: 86%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.075;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' fill='none' stroke='%231a1714' stroke-width='1.2'><path d='M-20 110 Q 200 50, 400 120 T 820 150'/><path d='M-20 190 Q 200 130, 420 190 T 820 215'/><path d='M-20 270 Q 220 220, 440 270 T 820 285'/><path d='M-20 350 Q 240 310, 460 350 T 820 365'/><path d='M-20 430 Q 260 400, 480 430 T 820 445'/><path d='M-20 510 Q 280 490, 500 510 T 820 525'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.journey > .container,
.why > .container { position: relative; z-index: 1; }

/* ── Brake-light hover on primary buttons ────────────────
   Soft red glow flares behind the button on hover, taps brighter
   on :active. Plus a tail-light bar pseudo below the pill. */
.btn-primary { position: relative; }

.btn-primary::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -3px;
  height: 8px;
  background: radial-gradient(ellipse at center, var(--brake) 0%, transparent 72%);
  filter: blur(7px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), filter 0.2s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(184, 68, 46, 0.42),
              0 0 0 1px rgba(255, 74, 38, 0.22) inset;
}

.btn-primary:hover::after {
  opacity: 0.95;
}

.btn-primary:active::after {
  opacity: 1;
  filter: blur(4px);
}

/* ── Float CTA — slide-in entrance + steady idle bob ─────
   Uses the modern `translate` property for entrance so the
   transform-based bob keyframes don't clash. */
.float-cta {
  transform: none;
  translate: 0 120%;
  transition: opacity 0.5s var(--ease), translate 0.5s var(--ease), background 0.3s var(--ease);
  opacity: 0;
}

.float-cta.show {
  translate: 0 0;
  opacity: 1;
  animation: jcxIdleBob 2.6s ease-in-out 0.6s infinite;
}

@keyframes jcxIdleBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ── Hero scroll cue — small chevron under the falling line ── */
.scroll-cue {
  padding-bottom: 16px;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateX(-50%) rotate(-45deg);
  animation: jcxCueChevron 2.2s ease-in-out infinite;
  opacity: 0.72;
}

@keyframes jcxCueChevron {
  0%, 100% { transform: translateX(-50%) rotate(-45deg) translateY(0); opacity: 0.4; }
  50%      { transform: translateX(-50%) rotate(-45deg) translateY(4px); opacity: 1; }
}

/* ── Speedometer counter — initial hidden zero state ─────
   JS swaps in the real value while counting up. The data-count
   attribute is set by JS to mark elements ready. */
.hero-strip-item .num.is-counting {
  font-variant-numeric: tabular-nums;
}

/* ── Reduced-motion safety net for Phase 1 ───────────────
   Existing global rule already kills animations; this also
   stops the brake glow & idle bob from re-triggering on hover. */
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
  .float-cta.show { animation: none; }
  .scroll-cue::before { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════
   JEEP EXPERIENCE — Phase 2
   Cinematic hero: headlight sweep, route-line draw-in, dust particles.
   Ken Burns lives on .hero-image img (above), parallax on .hero-image.
   ════════════════════════════════════════════════════════════════════ */

/* ── Headlight sweep — single pass on first paint ─────── */
.hero-headlights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 245, 220, 0.0) 42%,
    rgba(255, 245, 220, 0.34) 47%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 245, 220, 0.34) 53%,
    rgba(255, 245, 220, 0.0) 58%,
    transparent 68%
  );
  transform: translateX(-105%);
  animation: heroHeadlights 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  mix-blend-mode: screen;
}

@keyframes heroHeadlights {
  to { transform: translateX(105%); }
}

/* ── Route line — meandering path traced across the hero ── */
.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.hero-route path {
  fill: none;
  stroke: rgba(255, 245, 220, 0.7);
  stroke-width: 1.6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(245, 180, 84, 0.45))
          drop-shadow(0 0 14px rgba(184, 68, 46, 0.18));
  /* dasharray + dashoffset + transition set by JS so the line
     hides on first paint and animates in cleanly. */
}

/* ── Dust particles canvas ─────────────────────────────── */
.hero-dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.75;
}

@media (max-width: 700px) {
  .hero-dust { display: none; }
  .hero-route path { stroke-width: 1.2; }
  .hero-headlights { animation-duration: 1.2s; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; }
  .hero-headlights { display: none; }
  .hero-route path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; opacity: 0.5; }
  .hero-dust { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   JEEP EXPERIENCE — Phase 3
   Drive-in tour cards, hover tracks, journey route progress,
   reached-step glow, testimonial star pop-in.
   ════════════════════════════════════════════════════════════════════ */

/* ── Drive-in tour cards (alternating direction) ───────── */
.tours-grid .tour-card.reveal.in:nth-child(odd) {
  animation: tourCardDriveLeft 0.95s var(--ease) forwards;
}
.tours-grid .tour-card.reveal.in:nth-child(even) {
  animation: tourCardDriveRight 0.95s var(--ease) forwards;
}

@keyframes tourCardDriveLeft {
  from { opacity: 0; transform: translate3d(-28px, 30px, 0) rotate(-0.7deg); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}
@keyframes tourCardDriveRight {
  from { opacity: 0; transform: translate3d(28px, 30px, 0) rotate(0.7deg); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

/* ── Tire-track overlay on tour card hover ─────────────── */
.tour-card-media { position: relative; }

.tour-card-media::after {
  content: "";
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: 64%;
  height: 8px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(105deg, #fff 0 4px, transparent 4px 11px);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.tour-card:hover .tour-card-media::after { opacity: 0.5; }

/* ── Journey route progress overlay ──────────────────────
   Two pseudos on .timeline: ::before is the growing clay line,
   ::after is a glowing "headlight" puck at the leading edge. */
.timeline::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: var(--progress, 0%);
  max-height: 100%;
  background: linear-gradient(180deg, var(--clay), var(--clay-deep));
  box-shadow: 0 0 10px rgba(184, 68, 46, 0.45);
  border-radius: 2px;
  pointer-events: none;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.timeline::after {
  content: "";
  position: absolute;
  left: 0;
  top: var(--progress, 0%);
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 12px rgba(245, 180, 84, 0.85), 0 0 24px rgba(184, 68, 46, 0.7);
  pointer-events: none;
  opacity: 0;
  transition: top 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s var(--ease);
  z-index: 2;
}

.timeline.lit::after { opacity: 1; }

/* Reached-step glow (odometer LEDs) */
.timeline-step.reached::before {
  background: var(--clay);
  border-color: var(--clay-deep);
  box-shadow: 0 0 0 4px rgba(184, 68, 46, 0.18),
              0 0 14px rgba(184, 68, 46, 0.55);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.timeline-step.reached .time {
  text-shadow: 0 0 14px rgba(184, 68, 46, 0.45);
  transition: text-shadow 0.4s var(--ease);
}

/* ── Testimonial stars pop in one-by-one ───────────────── */
.testimonial .testimonial-stars svg {
  opacity: 0;
  transform-origin: center;
}

.testimonial.stars-lit .testimonial-stars svg {
  animation: starPop 0.55s var(--ease-snap) forwards;
}

.testimonial.stars-lit .testimonial-stars svg:nth-child(1) { animation-delay: 0.35s; }
.testimonial.stars-lit .testimonial-stars svg:nth-child(2) { animation-delay: 0.45s; }
.testimonial.stars-lit .testimonial-stars svg:nth-child(3) { animation-delay: 0.55s; }
.testimonial.stars-lit .testimonial-stars svg:nth-child(4) { animation-delay: 0.65s; }
.testimonial.stars-lit .testimonial-stars svg:nth-child(5) { animation-delay: 0.75s; }

@keyframes starPop {
  from { opacity: 0; transform: scale(0.4) rotate(-22deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .tours-grid .tour-card.reveal.in:nth-child(odd),
  .tours-grid .tour-card.reveal.in:nth-child(even) { animation: none; opacity: 1; }
  .tour-card-media::after { display: none; }
  .timeline::before, .timeline::after { transition: none; }
  .testimonial.stars-lit .testimonial-stars svg { animation: none; opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════
   JEEP EXPERIENCE — Phase 4
   Drawer settle, compass widget, ignition button state, wheel spinner.
   ════════════════════════════════════════════════════════════════════ */

/* ── Drawer: snappier settle + staggered link reveal ──── */
.drawer { transition: transform 0.55s var(--ease-snap); }

.drawer a {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.drawer.open a { opacity: 1; transform: translateX(0); }

.drawer.open a:nth-child(1) { transition-delay: 0.18s; }
.drawer.open a:nth-child(2) { transition-delay: 0.24s; }
.drawer.open a:nth-child(3) { transition-delay: 0.30s; }
.drawer.open a:nth-child(4) { transition-delay: 0.36s; }
.drawer.open a:nth-child(5) { transition-delay: 0.42s; }
.drawer.open a:nth-child(6) { transition-delay: 0.48s; }

.drawer .drawer-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.drawer.open .drawer-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* ── Compass widget — fixed, scroll-driven needle ──────── */
.compass-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 65;
  width: 56px;
  height: 56px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  filter: drop-shadow(0 8px 16px rgba(26, 23, 20, 0.18));
}

.compass-widget.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.compass-widget svg { width: 100%; height: 100%; }

.compass-widget .needle {
  transform-origin: 30px 30px;
  transition: transform 0.25s var(--ease);
}

@media (max-width: 900px) {
  .compass-widget { display: none; }
}

/* ── Wheel spinner — for "ignition" button states ──────── */
.wheel-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: wheelSpin 0.85s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}

@keyframes wheelSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .drawer a,
  .drawer .drawer-cta { transition: none; opacity: 1; transform: none; }
  .compass-widget { display: none; }
  .wheel-spinner { animation-duration: 0.01ms; }
}

