/* =========================================================
   Ker & Downey Safaris — 2026 redesign
   A modern, minimal, photography-led system in the spirit of
   Singita: generous space, a quiet serif, one accent, real light.
   ========================================================= */

:root {
  /* ---- Palette --------------------------------------------------- */
  --ink: #1b1b16;
  --ink-soft: #46453c;
  --paper: #f8f6f0;
  --paper-deep: #efeade;
  --olive: #454f37;
  --olive-deep: #2f351f;
  --clay: #8a6a48;
  --sand: #cdc0a0;
  --line: rgba(27, 27, 22, 0.12);
  --line-on-dark: rgba(248, 246, 240, 0.22);
  --white: #ffffff;
  --scrim-strong: linear-gradient(180deg, rgba(15, 15, 11, 0.15) 0%, rgba(15, 15, 11, 0.08) 35%, rgba(15, 15, 11, 0.72) 100%);
  --scrim-soft: linear-gradient(180deg, rgba(15, 15, 11, 0.05) 0%, rgba(15, 15, 11, 0.5) 100%);

  /* ---- Type --------------------------------------------------- */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Rhythm --------------------------------------------------- */
  --header-h: 88px;
  --edge: clamp(20px, 5vw, 72px);
  --max: 1360px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Brand display script — used for the K&D monogram in the seal */
@font-face {
  font-family: 'NellaSue';
  src: url('../fonts/NellaSue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------- */
/* Reset                                                             */
/* ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 420; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--sand); }

h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); line-height: 1.03; }
h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.2; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46em;
}
.prose { max-width: 42em; }
.prose p + p { margin-top: 1.3em; }
.prose p { color: var(--ink-soft); font-size: 1.02rem; }

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* On the dark sections the quote must not inherit the light-background ink. */
.section--olive .quote, .section--ink .quote { color: var(--white); }
.section--olive .quote cite, .section--ink .quote cite { color: var(--sand); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--edge); }
.section { padding: clamp(64px, 10vw, 140px) 0; }
.section--tight { padding: clamp(40px, 6vw, 84px) 0; }
.section--olive { background: var(--olive); color: var(--paper); }
.section--paper-deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }

.divider { width: 56px; height: 1px; background: var(--clay); margin: 22px 0; border: 0; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- */
/* Buttons / links                                                   */
/* ---------------------------------------------------------------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid currentColor;
  transition: color .45s var(--ease), border-color .5s var(--ease);
}
/* Nimali-style hover: a rounded fill sweeps in from the left and squares off
   to cover the whole button. ::before is the resting fill, ::after sweeps. */
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.btn::before { z-index: -2; }
.btn::after {
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 0 60px 60px 0;
  transition: transform .55s cubic-bezier(.66, 0, .28, 1), border-radius .55s cubic-bezier(.66, 0, .28, 1);
}
.btn:hover::after { transform: scaleX(1); border-radius: 0; }
.btn svg { transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--dark { color: var(--white); border-color: var(--ink); }
.btn--dark::before { background: var(--ink); }
.btn--dark::after { background: var(--olive); }
.btn--dark:hover { color: var(--white); border-color: var(--olive); }

.btn--line { color: var(--ink); border-color: var(--ink); }
.btn--line::after { background: var(--ink); }
.btn--line:hover { color: var(--white); border-color: var(--ink); }

.btn--on-dark { color: var(--white); border-color: var(--line-on-dark); }
.btn--on-dark::after { background: var(--white); }
.btn--on-dark:hover { color: var(--ink); border-color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}
.link-arrow svg { width: 15px; height: 11px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------------------------------------------------------------- */
/* Header + nav overlay                                              */
/* ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), height .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-header.is-solid { background: rgba(248, 246, 240, 0.94); backdrop-filter: blur(10px); border-color: var(--line); height: 76px; }
.site-header.is-solid, .site-header.is-solid .menu-btn { color: var(--ink); }
.no-hero .site-header { background: rgba(248, 246, 240, 0.94); backdrop-filter: blur(10px); border-color: var(--line); }
.no-hero .site-header .menu-btn { color: var(--ink); }
.no-hero main { padding-top: var(--header-h); }

/* The logo is dark-green script art. Over a photographic hero it must be
   knocked out to white to stay legible; once the header goes solid on the
   paper background, it returns to its true brand colour. */
.brand { display: flex; align-items: center; gap: 16px; }
.brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .5s var(--ease);
}
.site-header.is-solid .brand img, .no-hero .site-header .brand img { filter: none; }

.brand-est {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  opacity: .75;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-solid .brand-est, .no-hero .site-header .brand-est { color: var(--clay); border-left-color: var(--line); opacity: 1; }
@media (max-width: 720px) {
  .brand img { height: 32px; }
  .brand-est { display: none; }
}

.header-actions { display: flex; align-items: center; gap: 26px; }
.btn-plan {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.5);
  transition: color .45s var(--ease), border-color .5s var(--ease);
}
.btn-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 0 60px 60px 0;
  transition: transform .55s cubic-bezier(.66, 0, .28, 1), border-radius .55s cubic-bezier(.66, 0, .28, 1);
}
.btn-plan:hover { color: var(--white); border-color: var(--clay); }
.btn-plan:hover::after { transform: scaleX(1); border-radius: 0; }
.site-header.is-solid .btn-plan, .no-hero .site-header .btn-plan { color: var(--ink); border-color: var(--line); }
.site-header.is-solid .btn-plan:hover, .no-hero .site-header .btn-plan:hover { color: var(--white); border-color: var(--clay); }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  transition: color .4s var(--ease);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-btn .bars { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.menu-btn .bars span { display: block; height: 1px; background: currentColor; width: 100%; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.menu-btn.is-open .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-open .bars span:nth-child(2) { opacity: 0; }
.menu-btn.is-open .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--ink);
  color: var(--paper);
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
  overflow-y: auto;
}
.nav-overlay.is-open { visibility: visible; opacity: 1; transition: opacity .5s var(--ease); }
.nav-overlay-inner {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 110px var(--edge) 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-close {
  position: absolute;
  top: 30px;
  right: var(--edge);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity .3s var(--ease);
}
.nav-close:hover { opacity: 1; }
.nav-close__x { position: relative; width: 22px; height: 22px; }
.nav-close__x::before,
.nav-close__x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
.nav-close__x::before { transform: rotate(45deg); }
.nav-close__x::after { transform: rotate(-45deg); }
.nav-overlay-top { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 60px; }
.nav-primary { display: flex; flex-direction: column; gap: 2px; }
.nav-primary a {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.25;
  padding: 4px 0;
  color: var(--paper);
  opacity: 0.6;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav-primary a:hover { opacity: 1; transform: translateX(6px); }
.nav-primary a.is-current { opacity: 1; color: var(--sand); }
.nav-plan-btn { align-self: flex-start; margin-top: 26px; }

.nav-side { display: grid; grid-template-columns: 1fr; gap: 34px; align-content: start; }
.nav-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.nav-group h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; }
.nav-group ul { display: flex; flex-direction: column; gap: 9px; }
.nav-group--cols ul { display: block; columns: 2; column-gap: 26px; }
.nav-group--cols li { margin-bottom: 9px; break-inside: avoid; }
.nav-group a { font-size: 0.92rem; color: var(--paper); opacity: 0.65; transition: opacity .3s var(--ease); }
.nav-group a:hover { opacity: 1; }

.nav-overlay-bottom {
  margin-top: auto;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line-on-dark);
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--sand);
}
.nav-overlay-bottom a:hover { color: var(--white); }
.nav-overlay-bottom .socials { display: flex; gap: 18px; }

body.nav-locked { overflow: hidden; }

/* ---------------------------------------------------------------- */
/* Hero                                                               */
/* ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero--tall { height: 100vh; }
.hero--short { height: 74vh; min-height: 480px; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero__media::after { content: ''; position: absolute; inset: 0; background: var(--scrim-strong); z-index: 2; }
.hero__body, .hero__scroll { z-index: 3; }

/* Photo slideshow hero — crossfading full-bleed frames with a slow drift */
.hero__slide {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; animation: heroKenBurns 7s ease-out both; }
@keyframes heroKenBurns { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__dots { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.42); border: 0; padding: 0; cursor: pointer; transition: background-color .3s var(--ease), width .3s var(--ease), border-radius .3s var(--ease); }
.hero__dot:hover { background: rgba(255,255,255,.75); }
.hero__dot.is-active { background: #fff; width: 22px; border-radius: 4px; }
.hero__body { position: relative; z-index: 2; width: 100%; padding: 0 var(--edge) 74px; max-width: var(--max); margin: 0 auto; }
.hero__body h1 { max-width: 15em; }
.hero__kicker { margin-bottom: 22px; }
.hero__foot { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  right: var(--edge);
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ''; width: 1px; height: 46px; background: var(--line-on-dark); display: block; }

/* Slim page hero for interior pages */
.page-hero { position: relative; height: 62vh; min-height: 420px; }

/* ---------------------------------------------------------------- */
/* Stat row                                                          */
/* ---------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 34px 6px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 420; color: var(--olive); }
.stat span { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------------------------------------------------------------- */
/* Split / feature blocks                                             */
/* ---------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
/* Destination detail: description beside its photo, image top-aligned and
   sticky so it stays in view alongside a longer country write-up. */
.dest-split { align-items: start; }
.dest-split .split__media { position: sticky; top: 100px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.split__eyebrow { margin-bottom: 20px; }
.split__foot { margin-top: 34px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}
.feature-strip figure, .feature-rail figure { position: relative; overflow: hidden; aspect-ratio: 3/4; margin: 0; }
.feature-strip img, .feature-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-strip a:hover img, .feature-rail a:hover img { transform: scale(1.05); }
.feature-strip figcaption, .feature-rail figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: var(--scrim-soft);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* ---------------------------------------------------------------- */
/* Feature rail: the swipeable variant of the strip                  */
/* Native scroll-snap does the scrolling; main.js only drives the    */
/* arrows, so the rail still works with JS disabled.                 */
/* ---------------------------------------------------------------- */
.feature-rail {
  --rail-gap: clamp(16px, 3vw, 28px);
  --rail-per-view: 4;
  position: relative;
  margin-top: 44px;
}
.feature-rail__track {
  display: flex;
  gap: var(--rail-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Bleed to the container edge on touch so a half-tile hints at more. */
  padding-bottom: 2px;
}
.feature-rail__track::-webkit-scrollbar { display: none; }
.feature-rail__track:focus-visible { outline: 2px solid var(--clay); outline-offset: 6px; }
.feature-rail__slide {
  flex: 0 0 calc((100% - (var(--rail-per-view) - 1) * var(--rail-gap)) / var(--rail-per-view));
  scroll-snap-align: start;
}

.rail-arrow {
  position: absolute;
  top: calc(50% - 24px);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(27, 27, 22, 0.12);
  transition: opacity .3s var(--ease), background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.rail-arrow svg { width: 17px; height: 13px; }
.rail-arrow:hover { background: var(--olive); border-color: var(--olive); color: var(--white); }
.rail-arrow--prev { left: -24px; }
.rail-arrow--next { right: -24px; }
.rail-arrow[disabled] { opacity: 0; pointer-events: none; }
.feature-rail.is-static .rail-arrow { display: none; }

@media (hover: none) {
  .rail-arrow { display: none; }
}

/* ---------------------------------------------------------------- */
/* Cards: destinations / guides                                      */
/* ---------------------------------------------------------------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
.grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  display: block;
  position: relative;
}
.card__media { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--paper-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,11,0) 55%, rgba(15,15,11,.65) 100%); opacity: 0; transition: opacity .4s var(--ease); }
.card:hover .card__media::after { opacity: 1; }
.card__body { padding-top: 16px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.card__title { font-family: var(--font-display); font-size: 1.15rem; }
.card__meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); white-space: nowrap; }
.card__excerpt { margin-top: 8px; font-size: 0.9rem; color: var(--ink-soft); }

.card--overlay .card__media { aspect-ratio: 3/4; }
.card--overlay .card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 2; color: var(--white); }
.card--overlay .card__title { color: var(--white); }
.card--overlay .card__meta { color: var(--sand); }

/* ---------------------------------------------------------------- */
/* Guide profile                                                     */
/* ---------------------------------------------------------------- */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.profile__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.profile__media img { width: 100%; height: 100%; object-fit: cover; }
.profile__email { margin-top: 26px; }

/* ---------------------------------------------------------------- */
/* Testimonials                                                      */
/* ---------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; }
.testi { padding-top: 26px; border-top: 1px solid var(--line-on-dark); }
.section--ink .testi, .section--olive .testi { border-top-color: var(--line-on-dark); }
.testi p.quote { font-size: 1.1rem; }
.testi cite { display: block; margin-top: 16px; font-size: 0.8rem; letter-spacing: 0.08em; opacity: 0.7; font-style: normal; }

/* ---------------------------------------------------------------- */
/* Accordion (FAQ)                                                   */
/* ---------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.accordion-item .plus { position: relative; width: 18px; height: 18px; flex: none; }
.accordion-item .plus::before, .accordion-item .plus::after { content: ''; position: absolute; background: var(--ink); transition: transform .35s var(--ease); }
.accordion-item .plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.accordion-item .plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.accordion-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-item .panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-item .panel-inner { padding-bottom: 26px; max-width: 46em; color: var(--ink-soft); }
.accordion-item .panel-inner p + p { margin-top: 1em; }

/* ---------------------------------------------------------------- */
/* Contact                                                           */
/* ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 90px); }
.info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.info-list dt { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 6px; }
.info-list dd { margin: 0; font-size: 1.02rem; }
.info-list dd a:hover { color: var(--olive); }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--olive); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------------------------------------------------------------- */
/* Pre-footer CTA band                                                */
/* ---------------------------------------------------------------- */
.prefooter { background: var(--olive); color: var(--paper); }
.prefooter__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 6vw, 78px) var(--edge);
}
.prefooter__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.prefooter__lead { display: flex; align-items: center; gap: 26px; position: relative; z-index: 1; }
.prefooter__portrait { width: 118px; height: 118px; border-radius: 50%; overflow: hidden; flex: none; border: 2px solid rgba(255,255,255,.25); }
.prefooter__portrait img { width: 100%; height: 100%; object-fit: cover; }
.prefooter__lead h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); color: var(--paper); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.05; }
.prefooter__lead p { margin-top: 12px; color: var(--sand); font-size: 0.95rem; max-width: 30ch; }
.prefooter__card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 30px 24px;
  /* A solid resting panel so the cards read as buttons over the topo lines. */
  background: rgba(24, 28, 18, 0.42);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(2px);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.prefooter__card--link:hover { background: rgba(24, 28, 18, 0.58); border-color: rgba(255,255,255,.7); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24); }
.prefooter__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--clay); color: var(--white); }
.prefooter__card h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); font-family: var(--font-body); font-weight: 600; }
.prefooter__card a, .prefooter__cta { font-size: 1.05rem; color: var(--paper); border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; }
.prefooter__card a:hover, .prefooter__card--link:hover .prefooter__cta { border-color: var(--paper); }

/* ---------------------------------------------------------------- */
/* When to Visit — month-by-month strip (destination pages)          */
/* ---------------------------------------------------------------- */
.wv {
  --wv-best: #d8a02f;   /* Best  — warm gold */
  --wv-good: #7f9a86;   /* Good  — sage */
  --wv-mixed: var(--ink); /* Mixed — ink */
}
.wv-head { text-align: center; }
.wv-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--wv-good);
  letter-spacing: 0.005em;
}
.wv-title {
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wv-strip {
  margin: clamp(30px, 4vw, 46px) auto 0;
  max-width: 1060px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf6;
  overflow: hidden;
}
.wv-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 24px 4px;
  border-left: 1px solid rgba(27, 27, 22, 0.07);
}
.wv-cell:first-child { border-left: 0; }
.wv-month {
  font-family: var(--font-body);
  font-size: clamp(8.5px, 0.85vw, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.wv-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: none;
  background: var(--wv-mixed);
}
.wv-dot--best { background: var(--wv-best); }
.wv-dot--good { background: var(--wv-good); }
.wv-dot--mixed { background: var(--wv-mixed); }
.wv-legend {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.wv-legend span { display: inline-flex; align-items: baseline; gap: 9px; }
.wv-legend .wv-dot { width: 13px; height: 13px; align-self: center; }
.wv-legend em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  opacity: 0.55;
}
.wv-legend em::before { content: '· '; }
@media (max-width: 640px) {
  .wv-cell { padding: 16px 2px; gap: 10px; }
  .wv-dot { width: 12px; height: 12px; }
  .wv-legend { gap: 10px 18px; }
}

/* ---------------------------------------------------------------- */
/* Conservation partners grid                                        */
/* ---------------------------------------------------------------- */
.eyebrow--center { justify-content: center; }
.partner-grid {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 20px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 26px 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.partner-card:hover {
  border-color: var(--clay);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.partner-photo {
  display: block;
  width: calc(100% + 52px);
  margin: -26px -26px 4px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 76px;
  background: var(--paper);
  border-radius: 3px;
}
.partner-logo img { max-height: 60px; max-width: 78%; width: auto; object-fit: contain; }
.partner-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 420;
  letter-spacing: 0.01em;
  color: var(--olive);
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--ink);
}
.partner-blurb { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); }
.partner-visit {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.partner-visit svg { width: 14px; height: 10px; transition: transform .35s var(--ease); }
.partner-card:hover .partner-visit svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- */
/* Tent configuration cards (Mobile Camps)                           */
/* ---------------------------------------------------------------- */
.tent-types { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px); }
.tent-card { display: flex; flex-direction: column; }
.tent-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tent-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tent-card:hover .tent-card__media img { transform: scale(1.04); }
.tent-card__body { padding-top: 22px; }
.tent-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.tent-card__body h3 { margin-top: 8px; }
.tent-card__body p { margin-top: 12px; color: var(--ink-soft); line-height: 1.62; }
.tent-card__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.tent-card__thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (max-width: 820px) {
  .tent-types { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Footer (light)                                                     */
/* ---------------------------------------------------------------- */
.site-footer { background: var(--paper); color: var(--ink); }
.footer-top {
  padding: clamp(56px, 7vw, 90px) 0 54px;
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr 1.4fr;
  gap: clamp(30px, 4vw, 60px);
}
.footer-emblem { width: 230px; margin-bottom: 26px; text-align: center; }
.emblem-arc { width: 200px; height: auto; display: block; margin: 0 auto -4px; }
.emblem-word { width: 210px; height: auto; margin: 0 auto; }
.emblem-est { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--olive); padding-left: 0.34em; }
.footer-phone { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 420; }
.footer-phone:hover { color: var(--olive); }
.footer-offices { margin-top: 6px; color: var(--ink-soft); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.footer-socials a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); color: var(--olive); transition: background-color .3s var(--ease), color .3s var(--ease); }
.footer-socials a:hover { background: var(--olive); color: var(--paper); }

.footer-col h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.95rem; color: var(--ink-soft); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--olive); }

.footer-signup h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.footer-signup > p { color: var(--ink-soft); font-size: 0.92rem; max-width: 40ch; margin-bottom: 22px; }
.signup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.signup-fields input { border: none; border-bottom: 1px solid var(--line); background: none; padding: 8px 0; font-size: 0.95rem; color: var(--ink); }
.signup-fields input:focus { outline: none; border-color: var(--olive); }
.signup-fields input::placeholder { color: var(--ink-soft); opacity: .7; }
.signup-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.signup-consent { font-size: 0.82rem; color: var(--ink-soft); max-width: 34ch; }
.signup-consent a { text-decoration: underline; }
.signup-consent a:hover { color: var(--olive); }

.footer-legal { border-top: 1px solid var(--line); padding: 34px 0 40px; }
.footer-legal > p { font-size: 0.78rem; line-height: 1.7; color: var(--ink-soft); max-width: 88ch; }
.footer-legal__bottom {
  margin-top: 26px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.8rem; color: var(--ink-soft);
}
.footer-legal__bottom .legal { display: flex; gap: 22px; }
.footer-legal__bottom a:hover { color: var(--olive); }
.footer-credit { margin-left: auto; }
.footer-credit a { color: var(--clay); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.footer-credit a:hover { border-color: var(--clay); color: var(--clay); }

/* ---------------------------------------------------------------- */
/* Reveal-on-scroll                                                   */
/* ---------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- */
/* Utility                                                            */
/* ---------------------------------------------------------------- */
.small-caps { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.stack { display: flex; flex-direction: column; }
.gap-lg { gap: 60px; }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 30px; }
.badge-list li { font-size: 0.86rem; color: var(--ink-soft); padding-left: 16px; position: relative; }
.badge-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }

.legal-page .prose h2 { margin-top: 2em; margin-bottom: .6em; font-size: 1.4rem; }
.legal-page .prose h2:first-child { margin-top: 0; }

/* ---------------------------------------------------------------- */
/* Decorative line-art background — pre-footer banner only            */
/* ---------------------------------------------------------------- */
.prefooter { position: relative; overflow: hidden; }
.prefooter::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url(../img/topo.svg) center 40% / 140% auto no-repeat;
  opacity: 0.18;
}
.prefooter__inner { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- */
/* Booking bar (Singita-style sticky availability)                   */
/* ---------------------------------------------------------------- */
.booking-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.6fr .9fr auto;
  align-items: stretch;
  background: rgba(248, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(15,15,11,.08);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.booking-bar.is-visible { transform: translateY(0); }
.booking-field { display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 14px clamp(16px, 2vw, 30px); border-right: 1px solid var(--line); min-width: 0; }
.booking-field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.booking-field select, .booking-dates input {
  border: none; background: none; padding: 2px 0;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  width: 100%; cursor: pointer;
}
.booking-field select:focus, .booking-dates input:focus { outline: none; color: var(--olive); }
.booking-dates { display: flex; align-items: center; gap: 8px; }
.booking-dates input { cursor: text; color: var(--ink-soft); font-size: 0.85rem; }
.booking-dates span { color: var(--clay); }
.booking-submit {
  background: var(--clay); color: var(--white);
  padding: 0 clamp(24px, 3vw, 46px);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background-color .35s var(--ease);
}
.booking-submit:hover { background: var(--olive); }
body.nav-locked .booking-bar { transform: translateY(100%); }

/* ---------------------------------------------------------------- */
/* Full-bleed media + benefit grid + gallery                         */
/* ---------------------------------------------------------------- */
.fullbleed-media { width: 100%; aspect-ratio: 21 / 9; overflow: hidden; }
.fullbleed-media img { width: 100%; height: 100%; object-fit: cover; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 44px); }
.benefit .divider { margin-top: 0; }
.benefit h3 { font-size: 1.3rem; margin-bottom: 12px; }
.benefit p { color: var(--ink-soft); font-size: 0.95rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure:nth-child(1) { grid-row: span 2; }
.gallery-grid figure:nth-child(6) { grid-column: span 2; }

/* ---------------------------------------------------------------- */
/* Plan Your Trip wizard                                              */
/* ---------------------------------------------------------------- */
.plan { display: grid; grid-template-columns: 1fr 320px; gap: clamp(30px, 5vw, 70px); align-items: start; }
.plan__intro { grid-column: 1 / -1; max-width: 46em; }

/* The <ol> marker is suppressed — the numbering comes from the ::before
   counter below, which is styled (leading zero, clay) and flips to a tick
   once a step is done. The reset only clears list-style on <ul>. */
.wizard-steps { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 34px 0 40px; padding: 0; list-style: none; counter-reset: step; }
.wizard-steps li {
  position: relative; padding-left: 30px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .5; transition: opacity .3s var(--ease), color .3s var(--ease);
}
.wizard-steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -1px; font-weight: 600; color: var(--clay);
}
.wizard-steps li.is-active { opacity: 1; color: var(--ink); }
.wizard-steps li.is-done { opacity: 1; }
.wizard-steps li.is-done::before { content: '✓'; }

.wizard-step { display: none; border: none; margin: 0; padding: 0; min-inline-size: 0; }
.wizard-step.is-active { display: block; animation: wizardIn .5s var(--ease); }
@keyframes wizardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard-legend { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 420; display: flex; align-items: baseline; gap: 14px; padding: 0; }
.wizard-num { font-size: 0.8rem; color: var(--clay); font-family: var(--font-body); letter-spacing: 0.1em; }
.field-hint { color: var(--ink-soft); font-size: 0.9rem; margin: 12px 0 22px; }
.wizard-subhead { margin: 34px 0 16px; font-size: 0.95rem; }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.chip-grid--wide { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.chip { position: relative; display: block; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: block; text-align: center; padding: 13px 12px;
  border: 1px solid var(--line); background: var(--white);
  font-size: 0.88rem; color: var(--ink-soft);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.chip:hover span { border-color: var(--clay); }
.chip input:checked + span { background: var(--olive); border-color: var(--olive); color: var(--paper); }
.chip input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }

/* Guide picker (wizard step 3) — a scrollable list of every guide, so a
   name can be chosen by eye instead of typed. Groups scroll with the list;
   their headings stick to the top of the panel while that group is in view. */
.guide-list {
  max-height: 380px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  border: 1px solid var(--line);
  background: var(--white);
  scrollbar-width: thin;
}
.guide-list__group {
  position: sticky; top: 0; z-index: 2;
  margin: 0;
  padding: 11px 18px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.guide-row { position: relative; display: block; cursor: pointer; }
.guide-row + .guide-row .guide-row__inner { border-top: 1px solid var(--line); }
.guide-row input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.guide-row__inner {
  display: flex; align-items: center; gap: 15px;
  padding: 10px 18px;
  transition: background-color .2s var(--ease);
}
.guide-row__photo {
  width: 46px; height: 46px; flex: none;
  overflow: hidden; border-radius: 50%;
  background: var(--paper-deep);
}
.guide-row__photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-row__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.guide-row__name { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.guide-row__note { font-size: 0.78rem; color: var(--ink-soft); }
/* The tick sits in a reserved slot so rows don't reflow on selection. */
.guide-row__tick {
  margin-left: auto; flex: none;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 10px; line-height: 1; color: transparent;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.guide-row:hover .guide-row__inner { background: var(--paper); }
.guide-row input:checked + .guide-row__inner { background: var(--paper-deep); }
.guide-row input:checked + .guide-row__inner .guide-row__name { color: var(--olive-deep); }
.guide-row input:checked + .guide-row__inner .guide-row__tick {
  background: var(--olive); border-color: var(--olive); color: var(--white);
}
.guide-row input:focus-visible + .guide-row__inner { outline: 2px solid var(--clay); outline-offset: -2px; }
/* "No preference" pins above the scroller so the default is always in view. */
.guide-row--any .guide-row__inner { border: 1px solid var(--line); background: var(--white); }
.guide-row--any { margin-bottom: 10px; }
.guide-row--any .guide-row__photo {
  display: grid; place-items: center; color: var(--clay); border-radius: 50%;
}
.guide-row--any .guide-row__photo svg { width: 20px; height: 15px; }

.wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; }
.wizard-nav span { flex: none; }
.wizard-note { margin-top: 18px; font-size: 0.9rem; color: var(--olive); }
.check-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.check-row input { margin-top: 3px; accent-color: var(--olive); }

.wizard-done { text-align: left; }
.plan__card { background: var(--paper-deep); padding: 32px 30px; position: sticky; top: 110px; }
.plan__card h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 420; }
.plan__card .divider { margin: 16px 0 20px; }

/* ---------------------------------------------------------------- */
/* Responsive                                                        */
/* ---------------------------------------------------------------- */
@media (max-width: 1080px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .plan { grid-template-columns: 1fr; }
  .plan__card { position: static; }
  .booking-bar { grid-template-columns: 1fr 1fr auto; }
  .booking-field--dates, .booking-field--guests { display: none; }
  .nav-overlay-top { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-rail { --rail-per-view: 3; }
  .profile { grid-template-columns: 1fr; }
  .profile__media { max-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-signup { grid-column: 1 / -1; }
  .footer-signup { order: 3; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .prefooter__inner { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .grid-cards, .grid-cards.cols-4, .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-rail { --rail-per-view: 2; margin-top: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .nav-cols { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__body { padding-bottom: 50px; }
  .hero__scroll { display: none; }
  .hero__dots { bottom: 18px; }
  .btn-plan { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .prefooter__actions { grid-template-columns: 1fr; }
  .prefooter__lead { flex-direction: column; align-items: flex-start; text-align: left; }
  .signup-fields { grid-template-columns: 1fr; gap: 16px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(6) { grid-row: auto; grid-column: auto; }
  .fullbleed-media { aspect-ratio: 3 / 2; }
  .booking-bar { grid-template-columns: 1fr auto; }
  .booking-field--exp { display: none; }
}

@media (max-width: 480px) {
  .grid-cards, .grid-cards.cols-4, .feature-strip { grid-template-columns: 1fr; }
  .feature-rail { --rail-per-view: 1.2; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
}
