/* ──────────────────────────────────────────────────────────
   MONTEREY WILD — design tokens + component styles
   Palette inspired by Pacific kelp + Big Sur granite:
     • Deep ocean teal accent (Hydra)
     • Warm sand neutrals
     • Editorial serif (Fraunces) + clean sans (Inter)
   ────────────────────────────────────────────────────────── */

:root {
  /* ── Type scale ────────────────────────── */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,    1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,   3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw,       5rem);
  --text-hero: clamp(2.75rem,  0.5rem + 6vw,     6.5rem);

  /* ── Spacing (4px base) ────────────────── */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

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

  /* ── Layout widths ─────────────────────── */
  --content-narrow:  640px;
  --content-default: 1080px;
  --content-wide:    1320px;

  /* ── Radius / shadow / motion ──────────── */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Light mode ──────────────────────────── */
:root,
[data-theme='light'] {
  --color-bg: #f7f2e9;             /* warm sand */
  --color-surface: #fbf7ef;
  --color-surface-2: #ffffff;
  --color-surface-offset: #efe7d7;
  --color-divider: #ddd2bd;
  --color-border: #c9bea7;

  --color-text: #1b1a16;           /* near-black warm */
  --color-text-muted: #5a584f;
  --color-text-faint: #908b7c;
  --color-text-inverse: #fbf7ef;

  --color-primary: #0e5fa3;        /* deep Pacific blue */
  --color-primary-hover: #1976c9;
  --color-primary-active: #08487d;
  --color-primary-highlight: #dbe8f5;

  --color-accent: #b25c1f;         /* warm kelp-rust accent */

  --shadow-sm: 0 1px 2px rgba(40, 30, 10, 0.06);
  --shadow-md: 0 6px 18px rgba(40, 30, 10, 0.10);
  --shadow-lg: 0 18px 40px rgba(40, 30, 10, 0.14);
}

/* ── Alternating section: flips to the opposite scheme ─── */
/* In light mode, .alt-bg uses dark-mode tokens; in dark mode it uses light-mode tokens. */
[data-theme='light'] .alt-bg,
:root:not([data-theme]) .alt-bg {
  --color-bg: #0e1212;
  --color-surface: #141919;
  --color-surface-2: #1a2122;
  --color-surface-offset: #1e2627;
  --color-divider: #2a3334;
  --color-border: #3a4546;
  --color-text: #ece6d8;
  --color-text-muted: #a39e8d;
  --color-text-faint: #6a655a;
  --color-text-inverse: #141919;
  --color-primary: #6ab4ee;
  --color-primary-hover: #8fc8f3;
  --color-primary-active: #3e8fd0;
  --color-primary-highlight: #1a2c47;
  --color-accent: #e08a4d;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.55);
  background-color: var(--color-bg);
  color: var(--color-text);
}
[data-theme='dark'] .alt-bg {
  --color-bg: #f7f2e9;
  --color-surface: #fbf7ef;
  --color-surface-2: #ffffff;
  --color-surface-offset: #efe7d7;
  --color-divider: #ddd2bd;
  --color-border: #c9bea7;
  --color-text: #1b1a16;
  --color-text-muted: #5a584f;
  --color-text-faint: #908b7c;
  --color-text-inverse: #fbf7ef;
  --color-primary: #0e5fa3;
  --color-primary-hover: #1976c9;
  --color-primary-active: #08487d;
  --color-primary-highlight: #dbe8f5;
  --color-accent: #b25c1f;
  --shadow-sm: 0 1px 2px rgba(40, 30, 10, 0.06);
  --shadow-md: 0 6px 18px rgba(40, 30, 10, 0.10);
  --shadow-lg: 0 18px 40px rgba(40, 30, 10, 0.14);
  background-color: var(--color-bg);
  color: var(--color-text);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .alt-bg {
    --color-bg: #f7f2e9;
    --color-surface: #fbf7ef;
    --color-surface-2: #ffffff;
    --color-surface-offset: #efe7d7;
    --color-divider: #ddd2bd;
    --color-border: #c9bea7;
    --color-text: #1b1a16;
    --color-text-muted: #5a584f;
    --color-text-faint: #908b7c;
    --color-text-inverse: #fbf7ef;
    --color-primary: #0e5fa3;
    --color-primary-hover: #1976c9;
    --color-primary-active: #08487d;
    --color-primary-highlight: #dbe8f5;
    --color-accent: #b25c1f;
    --shadow-sm: 0 1px 2px rgba(40, 30, 10, 0.06);
    --shadow-md: 0 6px 18px rgba(40, 30, 10, 0.10);
    --shadow-lg: 0 18px 40px rgba(40, 30, 10, 0.14);
    background-color: var(--color-bg);
    color: var(--color-text);
  }
}

/* ── Dark mode ───────────────────────────── */
[data-theme='dark'] {
  --color-bg: #0e1212;
  --color-surface: #141919;
  --color-surface-2: #1a2122;
  --color-surface-offset: #1e2627;
  --color-divider: #2a3334;
  --color-border: #3a4546;

  --color-text: #ece6d8;
  --color-text-muted: #a39e8d;
  --color-text-faint: #6a655a;
  --color-text-inverse: #141919;

  --color-primary: #6ab4ee;
  --color-primary-hover: #8fc8f3;
  --color-primary-active: #3e8fd0;
  --color-primary-highlight: #1a2c47;

  --color-accent: #e08a4d;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1212;
    --color-surface: #141919;
    --color-surface-2: #1a2122;
    --color-surface-offset: #1e2627;
    --color-divider: #2a3334;
    --color-border: #3a4546;
    --color-text: #ece6d8;
    --color-text-muted: #a39e8d;
    --color-text-faint: #6a655a;
    --color-text-inverse: #141919;
    --color-primary: #6ab4ee;
    --color-primary-hover: #8fc8f3;
    --color-primary-active: #3e8fd0;
    --color-primary-highlight: #1a2c47;
    --color-accent: #e08a4d;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 18px 40px rgba(0,0,0,0.55);
  }
}

/* ─────────────────────────────────────────────
   Typography defaults
   ───────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h2 {
  font-size: var(--text-2xl);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
}
[data-theme='dark'] .eyebrow { color: var(--color-primary); }
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   Layout primitives
   ───────────────────────────────────────────── */
.wrap {
  width: min(100% - 2 * var(--space-6), var(--content-wide));
  margin-inline: auto;
}
.wrap--narrow {
  width: min(100% - 2 * var(--space-6), var(--content-default));
  margin-inline: auto;
}
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.divider {
  height: 1px;
  background: var(--color-divider);
  border: 0;
  margin-block: 0;
}

/* ─────────────────────────────────────────────
   Header / Nav
   ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.brand__logo {
  width: 40px;
  height: 40px;
  flex: none;
  object-fit: contain;
  display: block;
  content: url('./assets/images/mw-logo.png');
}
/* Swap to the dark-mode version of the logo on dark backgrounds */
[data-theme='dark'] .brand__logo {
  content: url('./assets/images/mw-logo-dark.png');
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .brand__logo {
    content: url('./assets/images/mw-logo-dark.png');
  }
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-3), 1.4vw, var(--space-5));
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.nav__links a[aria-current="page"] {
  color: var(--color-primary);
}
.nav__links a:hover { color: var(--color-primary); }

/* Two-line stacked nav labels — same font size as single-line links */
.nav__links a.nav__stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  text-align: center;
}
.nav__links a.nav__stack span { display: block; }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.icon-btn:hover { background: var(--color-surface-offset); }

/* Mobile nav */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links--open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) var(--space-6);
  }
  .nav__links--open a {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-divider);
  }
  .nav__links--open a:last-child { border-bottom: 0; }
}
.menu-btn { display: none; }
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; }
  /* Hide redundant header CTA on small screens — every section has its own */
  .nav__actions .btn--primary { display: none; }
}

/* ─────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
[data-theme='dark'] .btn--primary { color: var(--color-bg); }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: var(--color-surface-offset); border-color: var(--color-text); }
.btn--lg { padding: 1.05rem 2rem; font-size: var(--text-base); }
.btn__arrow { transition: transform var(--transition-interactive); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ─────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────── */
.hero {
  padding-top: clamp(var(--space-12), 6vw, var(--space-16));
  padding-bottom: 0;
}

/* Hero wraps everything in a column; headline + tagline + CTA are full width.
   Only .hero__layout is the 2-column split (copy left / photo grid right). */
.hero > .wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  align-items: start;
}

.hero__copy-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-top: var(--space-4);
}

/* 2x2 photo grid with diagonal step-offset — top row shifted RIGHT relative
   to bottom row, like polaroids placed by hand. Uses a 7-column scaffold so
   each photo spans 3 cols and the rows offset by 1 col. Explicit two rows
   with a row gap so the bottom row sits cleanly below the top row. */
.hero__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(var(--space-3), 1vw, var(--space-5));
  row-gap: clamp(var(--space-3), 1.2vw, var(--space-6));
}
.hero__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
  box-shadow: 0 6px 18px -8px rgba(8, 28, 48, 0.18);
  aspect-ratio: 1 / 1;
}
.hero__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero__cell:hover img { transform: scale(1.04); }

/* Diagonal step layout:
   Top row  → otter (cols 2-4)   keyhole (cols 5-7)
   Bottom row → garrapata (cols 1-3) falls (cols 4-6)
   The bottom row sits half a tile LEFT of the top row. */
.hero__cell--otter     { grid-column: 2 / span 3; grid-row: 1; }
.hero__cell--keyhole   { grid-column: 5 / span 3; grid-row: 1; }
.hero__cell--garrapata { grid-column: 1 / span 3; grid-row: 2; }
.hero__cell--falls     { grid-column: 4 / span 3; grid-row: 2; }

/* Narrow tablet / medium window: tighten cells */
@media (max-width: 980px) {
  .hero__grid {
    grid-auto-rows: clamp(90px, 11vw, 150px);
    gap: var(--space-3);
  }
}

/* Phone: stack copy on top, photos in a clean 2x2 below (no offset) */
@media (max-width: 600px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: var(--space-2);
  }
  .hero__cell--otter,
  .hero__cell--keyhole,
  .hero__cell--garrapata,
  .hero__cell--falls {
    grid-column: auto;
    grid-row: auto;
  }
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-wrap: balance;
  margin: 0;
}
.hero__headline .amp {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-variation-settings: normal;
  letter-spacing: 0;
  margin: 0 0.04em;
}
.hero__headline em .amp {
  font-style: italic;
}
.hero__headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--color-primary);
}
.hero__copy { font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem); color: var(--color-text-muted); line-height: 1.6; }
.hero__copy + .hero__chips { margin-top: var(--space-6); }

/* Full-width tagline below the photo grid + copy column */
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 380;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-width: 60ch;
  margin: 0;
  text-wrap: balance;
}
.hero__chips {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__chips li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
  line-height: 1.5;
}
.hero__chips li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}
/* Wraps the CTA in the same 2-column split as .hero__layout so the button
   can be centered under the photo grid column instead of the full width. */
.hero__cta-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
}
.hero__cta {
  grid-column: 2;
  /* Bottom-row photos (garrapata + falls) are left-aligned within the photo
     grid and span ~85% of its width (the 7th column sits empty on the
     right). Match that box exactly so the button centers under them. */
  width: 85.4%;
  margin-left: 0;
  margin-right: auto;
  margin-top: var(--space-10);
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero__cta-row { grid-template-columns: 1fr; }
  .hero__cta { grid-column: 1; width: 100%; }
}

/* ─────────────────────────────────────────────
   Pricing
   ───────────────────────────────────────────── */
.pricing {
  background: var(--color-surface);
  padding-top: clamp(var(--space-8), 4vw, var(--space-12));
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-block: var(--space-12) var(--space-10);
}
@media (max-width: 740px) { .pricing__grid { grid-template-columns: 1fr; } }

.tour-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.tour-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.tour-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.tour-card__price-amt {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  font-variation-settings: "opsz" 96;
}
.tour-card__price-from {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.tour-card__meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.tour-card__meta span { display: flex; align-items: center; gap: var(--space-2); }
.tour-card__start-time {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.tour-card__cta { margin-top: auto; padding-top: var(--space-4); }

.pricing__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-10);
}

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4) var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.includes-list h4 {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
}
.includes-list li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 0.6em;
  flex: none;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ─────────────────────────────────────────────
   Booking is Simple
   ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 2px solid var(--color-text);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 500;
  font-variation-settings: "opsz" 36;
}
.step p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.55;
  max-width: 32ch;
}

/* ─────────────────────────────────────────────
   Why Choose
   ───────────────────────────────────────────── */
.why { background: var(--color-surface); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12) var(--space-16);
  margin-top: var(--space-12);
}
@media (max-width: 820px) { .why__grid { grid-template-columns: 1fr; gap: var(--space-10); } }

.why__item h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 72, "SOFT" 50;
}
.why__item h3 em { font-style: italic; color: var(--color-primary); font-variation-settings: "opsz" 72, "SOFT" 100; }
.why__item p { color: var(--color-text-muted); font-size: var(--text-base); }

.why__lead {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  max-width: 22ch;
  margin-top: var(--space-2);
}

/* ─────────────────────────────────────────────
   Meet Your Guide
   ───────────────────────────────────────────── */
.guide {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
/* Sits directly under the hero with almost no gap, so the two sections read
   as one continuous unit. Bottom padding stays at the normal section rhythm. */
#guide {
  padding-top: clamp(var(--space-4), 2vw, var(--space-6));
}
@media (max-width: 820px) { .guide { grid-template-columns: 1fr; } }
.guide__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface-offset);
}
.guide__photo img { width: 100%; height: 100%; object-fit: cover; }
.guide__cta {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.guide__content h2 { margin-bottom: var(--space-5); }
.guide__content p { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-4); max-width: 56ch; }

/* ─────────────────────────────────────────────
   Itineraries (cards on home page)
   ───────────────────────────────────────────── */
.itineraries { background: var(--color-surface); padding-bottom: clamp(var(--space-8), 4.5vw, var(--space-16)); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}
.section-head h2 { max-width: 16ch; }
.section-head p { color: var(--color-text-muted); max-width: 56ch; margin-top: var(--space-3); font-size: var(--text-base); }

.itin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) { .itin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .itin-grid { grid-template-columns: 1fr; } }

.itin-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.itin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.itin-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.itin-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.itin-card:hover .itin-card__media img { transform: scale(1.05); }
.itin-card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.itin-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.itin-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; }

/* ─────────────────────────────────────────────
   Field Notes
   ───────────────────────────────────────────── */
.fieldnotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
@media (max-width: 900px) { .fieldnotes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fieldnotes-grid { grid-template-columns: 1fr; } }

.fn-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  color: inherit;
}
.fn-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
}
.fn-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.fn-card:hover .fn-card__media img { transform: scale(1.05); }
.fn-card__date {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}
.fn-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.fn-card__excerpt { font-size: var(--text-sm); color: var(--color-text-muted); }

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: var(--space-12);
}

/* ─────────────────────────────────────────────
   Bottom CTA
   ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  min-height: 56vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./assets/images/cta-banner.jpg') center/cover no-repeat;
  z-index: -2;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,30,0.4) 0%, rgba(10,30,30,0.65) 100%);
  z-index: -1;
}
.cta-banner__content {
  color: #fff;
  padding: var(--space-12) var(--space-6);
  max-width: 720px;
}
.cta-banner__content h2 {
  color: #fff;
  font-size: var(--text-3xl);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.cta-banner__content em { font-style: italic; color: #d9ead2; font-variation-settings: "opsz" 144, "SOFT" 100; }
.cta-banner__content .btn { margin-top: var(--space-8); }
.cta-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  margin: var(--space-4) auto var(--space-8);
  max-width: 50ch;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.site-footer {
  padding-block: var(--space-12) var(--space-10);
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
}
.site-footer p { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.04em; }
.site-footer__links { display: flex; gap: var(--space-6); }
.site-footer__links a { font-size: var(--text-sm); color: var(--color-text); text-decoration: none; }
.site-footer__links a:hover { color: var(--color-primary); }

/* ─────────────────────────────────────────────
   Scroll reveal
   ───────────────────────────────────────────── */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────
   Page heads for subpages
   ───────────────────────────────────────────── */
.page-head {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  border-bottom: 1px solid var(--color-divider);
}
.page-head h1 {
  font-size: var(--text-3xl);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.page-head__intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-top: var(--space-5);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: var(--space-4);
}
.back-link:hover { color: var(--color-text); }

/* ─────────────────────────────────────────────
   Itinerary detail rows (itineraries.html)
   ───────────────────────────────────────────── */
.itin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  border-bottom: 1px solid var(--color-divider);
}
.itin-row:last-child { border-bottom: 0; }
.itin-row--reverse > .itin-row__media { order: 2; }
@media (max-width: 820px) {
  .itin-row { grid-template-columns: 1fr; }
  .itin-row--reverse > .itin-row__media { order: 0; }
}
.itin-row__media { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface-offset); }
.itin-row__media img { width: 100%; height: 100%; object-fit: cover; }
.itin-row h2 {
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  margin-bottom: var(--space-4);
}
.itin-row p { color: var(--color-text-muted); font-size: var(--text-base); }
.itin-row ul {
  margin-top: var(--space-5);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.itin-row ul li {
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.itin-row ul li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 0.6em;
  flex: none;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ─────────────────────────────────────────────
   Field Notes list page
   ───────────────────────────────────────────── */
.fn-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  padding-block: var(--space-16);
}
.fn-entry {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  align-items: start;
}
@media (max-width: 820px) { .fn-entry { grid-template-columns: 1fr; } }
.fn-entry__media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-2);
}
.fn-entry__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
}
.fn-entry__media img:first-child:nth-last-child(1) {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}
.fn-entry__date {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.fn-entry__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.fn-entry__body p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}
.fn-entry__loc {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: var(--space-3);
}

/* ─────────────────────────────────────────────
   Hero copy contrast bump (June revision)
   ───────────────────────────────────────────── */
.hero__copy--strong {
  color: var(--color-text);   /* same near-black tone as logo/header text */
  font-weight: 420;
}
.hero__copy--strong strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   Pricing — single CTA + merged booking block
   ───────────────────────────────────────────── */
.pricing__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-10);
}

/* Booking split: vertical steps on left, custom-tour aside on right */
.booking-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(var(--space-10), 7vw, var(--space-16));
  align-items: start;
  max-width: 64rem;
  margin-inline: auto;
}
@media (max-width: 820px) {
  .booking-split { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* Booking-is-simple block (left column) */
.booking-block {
  text-align: left;
  max-width: 28rem;
}
.booking-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--color-text);
  margin: 0 0 clamp(var(--space-8), 5vw, var(--space-12));
}
.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.booking-step__num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  line-height: 1;
}
.booking-step p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.booking-step p strong { color: var(--color-text); font-weight: 600; }

/* Custom-tour card (right column of the booking split) */
.custom-tour {
  margin-top: 0;
  padding: clamp(var(--space-6), 3.5vw, var(--space-10));
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  /* slimmer card, centered in its column */
  max-width: 22rem;
  margin-inline: auto;
  /* sit visually centered against the steps */
  align-self: center;
}
.custom-tour .custom-tour__list {
  margin-inline: auto;
}
@media (max-width: 820px) {
  .custom-tour { align-self: stretch; max-width: none; }
  .booking-block { max-width: none; }
}
.custom-tour__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  color: var(--color-text);
  margin: 0 0 var(--space-5);
}
.custom-tour__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}
.custom-tour__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text);
  font-size: var(--text-base);
}
.custom-tour__list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.custom-tour__cta {
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 500;
  margin: 0;
}

/* ─────────────────────────────────────────────
   Why section — restructured header + 3-up grid
   ───────────────────────────────────────────── */
.why__head {
  max-width: 52rem;
  margin: 0 auto var(--space-4);
  text-align: center;
}
.why__head .eyebrow { margin-inline: auto; }
.why__headline {
  margin-top: var(--space-3);
  margin-inline: auto;
  text-wrap: balance;
}
.why__headline em {
  font-style: italic;
  color: var(--color-primary);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.why__head .why__lead {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: var(--space-5) auto 0;
  text-align: center;
  line-height: 1.6;
}
.why__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10) var(--space-12);
}
@media (max-width: 900px) {
  .why__grid--3 { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ─────────────────────────────────────────────
   Itinerary card bullet list (new)
   ───────────────────────────────────────────── */
.itin-card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.itin-card__list li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.itin-card__list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ─────────────────────────────────────────────
   Booking section — light bg (its own section)
   ───────────────────────────────────────────── */
.section.booking { background: var(--color-surface); padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }

.booking-itinerary-note {
  margin-top: clamp(var(--space-12), 6vw, var(--space-20));
  max-width: 64rem;
  margin-inline: auto;
}
.booking-itinerary-note__title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  max-width: 42rem;
}
.booking-itinerary-note__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq-list {
  list-style: none;
  padding: 0;
  margin: var(--space-10) 0 0;
  max-width: 56rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item details > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background 160ms var(--ease-out);
}
.faq-item details > summary::-webkit-details-marker { display: none; }
.faq-item details > summary:hover { background: var(--color-surface-offset); }
.faq-item__q {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 480;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-variation-settings: "opsz" 72, "SOFT" 50;
}
.faq-item__icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out);
}
.faq-item__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item details[open] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-item__a {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
}
.faq-item__a h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: var(--space-4) 0 var(--space-2);
}
.faq-item__a h4:first-child { margin-top: 0; }
.faq-item__a ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.faq-item__a ul li {
  position: relative;
  padding-left: 1.1rem;
}
.faq-item__a ul li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}
.faq-item__a p { margin: 0 0 var(--space-3); }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   Guest reviews
   ───────────────────────────────────────────── */
.reviews { background: var(--color-surface); padding-top: clamp(var(--space-8), 4.5vw, var(--space-16)); }
.reviews-grid {
  list-style: none;
  padding: 0;
  margin: var(--space-12) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-5), 2vw, var(--space-8));
}
@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

.review-card {
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 2.5vw, var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review-card__stars {
  color: #d99f3f;          /* warm amber */
  letter-spacing: 0.1em;
  font-size: var(--text-base);
  line-height: 1;
}
.review-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-text);
  margin: 0;
  font-variation-settings: "opsz" 72, "SOFT" 50;
}
.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  align-items: baseline;
  font-size: var(--text-sm);
  margin-top: auto;
}
.review-card__name {
  color: var(--color-text);
  font-weight: 500;
}
.review-card__loc {
  color: var(--color-text-muted);
}
.review-card__loc::before {
  content: "·";
  margin-right: var(--space-2);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────
   Meet Your Guide page
   Continuous layout — no banding, no dividers
   ───────────────────────────────────────────── */

.guide-page {
  /* keep a single light background top to bottom */
  background: var(--color-bg);
  padding-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

/* TOP PULL QUOTE */
.guide-pullquote {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}
.guide-pullquote blockquote {
  margin: 0 auto;
  max-width: 64rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--color-text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.guide-pullquote__mark {
  color: var(--color-primary);
  font-weight: 500;
  margin-right: 0.12em;
}
.guide-pullquote__mark--close {
  margin-left: 0.06em;
  margin-right: 0;
}

/* LEAD: diving photo left, copy center, headshot right */
.guide-lead {
  margin-top: var(--space-8);
  display: grid;
  /* left col sized to portrait photo (~0.72 ratio); right col sized to landscape headshot (~1.5 ratio); middle absorbs */
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(var(--space-5), 3.5vw, var(--space-10));
  align-items: center;
}
.guide-lead__portrait {
  margin: 0;
  text-align: center;
}
.guide-lead__portrait--left { justify-self: start; }
.guide-lead__portrait--right { justify-self: end; }
.guide-lead__portrait img {
  display: block;
  /* lock both portraits to the same display height; widths follow their natural aspect ratios */
  height: clamp(336px, 33.6vw, 480px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
/* Right portrait: crop to a 4/5 portrait frame to match the homepage guide section */
.guide-lead__portrait--right img {
  aspect-ratio: 4 / 5;
  width: auto;
  object-fit: cover;
  object-position: center 30%;
}
.guide-lead__portrait figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--color-text-muted);
}
.guide-lead__copy {
  min-width: 0;
  text-align: center;
}
.guide-lead__headline {
  /* shrink to fit between the two photos */
  margin-top: var(--space-3);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
}
.guide-lead__intro {
  margin-top: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 36ch;
  margin-inline: auto;
}
.guide-lead .guide-eyebrow,
.guide-lead .guide-eyebrow-name {
  text-align: center;
}

@media (max-width: 820px) {
  .guide-lead {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .guide-lead__portrait--left,
  .guide-lead__portrait--right { justify-self: center; max-width: 320px; }
  .guide-lead__portrait img { height: auto; width: 100%; max-width: 320px; }
  .guide-lead__copy { text-align: center; }
  .guide-lead__intro { max-width: 48ch; }
}

/* FOUR ASSIGNMENT PHOTOS — small, uncropped, immediately below lead */
.guide-fourshot {
  margin-top: clamp(var(--space-8), 5vw, var(--space-12));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  align-items: center;
}
.guide-fourshot figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* uniform vertical envelope; images inside keep native aspect */
  height: 180px;
}
.guide-fourshot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
@media (max-width: 720px) {
  .guide-fourshot {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-fourshot figure { height: 180px; }
}

.guide-fourshot--single {
  grid-template-columns: 1fr;
}
.guide-fourshot--single figure {
  height: auto;
  width: 100%;
}
.guide-fourshot--single img {
  width: 100%;
  height: auto;
  max-height: none;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
@media (max-width: 720px) {
  .guide-fourshot--single {
    grid-template-columns: 1fr;
  }
}

/* TOP ROW: back link left, ekf link right */
.guide-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}
.guide-toprow__link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.guide-toprow__link:hover {
  color: var(--color-primary);
}

/* LARGER BLUE EYEBROW: "Meet your guide" */
.guide-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin: 0;
}
.guide-eyebrow-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin: var(--space-2) 0 0;
}

/* BLUE SECTION HEADINGS — significantly larger than default h2 */
.guide-section-h {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--color-primary);
  margin: 0;
}

/* ON ASSIGNMENT — networks + collage */
.guide-assignments {
  margin-top: clamp(var(--space-12), 7vw, var(--space-16));
  text-align: center;
}
.guide-assignments .guide-section-h {
  text-align: center;
}
.guide-assignments__nets {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.5;
}
.guide-assignments__collage {
  margin: clamp(var(--space-6), 4vw, var(--space-10)) auto 0;
  max-width: 980px;
}
.guide-assignments__collage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.guide-assignments__link {
  margin-top: var(--space-5);
  font-size: var(--text-md);
  color: var(--color-text-muted);
}
.guide-assignments__link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* MONTEREY + DENSE ANIMALS LIST */
.guide-monterey {
  /* a bit less space between show-card collage and this quote */
  margin-top: clamp(var(--space-12), 9vw, 7rem);
}
.guide-monterey__lede {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.guide-animals {
  list-style: none;
  padding: 0;
  /* more space above the animals list */
  margin: clamp(var(--space-10), 6vw, var(--space-12)) auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-align: center;
  justify-items: center;
  /* dense, no borders, no underlines */
}
.guide-animals li {
  padding: 0;
  line-height: 1.7;
}
.guide-animals__tag {
  margin: clamp(var(--space-8), 5vw, var(--space-10)) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1.3;
}
.guide-animals__tag em {
  font-style: italic;
}
@media (max-width: 640px) {
  .guide-animals {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.85rem;
  }
}

/* SCIENCE + TEACHING BACKGROUND — no card borders, no dividers, just typographic blocks */
.guide-block {
  margin-top: clamp(var(--space-10), 6vw, var(--space-14));
}
.guide-block .eyebrow { text-align: left; }

/* extra breathing room above science + teaching headings */
.guide-block--science {
  margin-top: clamp(var(--space-16), 12vw, 9rem);
}
.guide-block--teaching {
  margin-top: clamp(var(--space-16), 12vw, 9rem);
}

/* tail link after teaching block */
.guide-block__tail {
  margin-top: clamp(var(--space-7), 4vw, var(--space-9));
  /* a bit more space below before the CTA banner */
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: left;
}
.guide-block__tail a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.guide-credlist {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-10));
}
@media (max-width: 720px) {
  .guide-credlist { grid-template-columns: 1fr; gap: var(--space-7); }
}
.guide-credlist__item h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xl);
  line-height: 1.25;
}
.guide-credlist__inst {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--color-text);
}
.guide-credlist__detail {
  margin: 0;
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA banner — two-button layout on Meet Your Guide */
.cta-banner__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.cta-banner__buttons .btn { margin-top: 0; }
.cta-banner__ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.cta-banner__ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ─────────────────────────────────────────────
   Contact page
   ───────────────────────────────────────────── */
.contact-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 740px) {
  .contact-panel { grid-template-columns: 1fr; }
}
.contact-panel__primary {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-panel__secondary {
  background: transparent;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-panel__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.contact-panel__label--muted { color: var(--color-text-muted); }
.contact-panel__email {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  word-break: break-word;
  letter-spacing: -0.01em;
}
.contact-panel__email:hover { color: var(--color-primary); }
.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.contact-panel__phone {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-1);
}
.contact-panel__phone:hover { color: var(--color-text); }
.contact-panel__note {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 48ch;
}

/* ─────────────────────────────────────────────
   Booking boxes (updated homepage layout)
   Two centered boxes stacked vertically, matching custom-tour styling
   ───────────────────────────────────────────── */
.booking-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
}
.custom-tour--wide {
  max-width: 42rem;
}
.custom-tour__body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 820px) {
  .custom-tour--wide { max-width: none; }
}

/* ─────────────────────────────────────────────
   Tour picker buttons above the Bokun product tiles
   Two equal columns on desktop, stacked on narrow screens
   ───────────────────────────────────────────── */
.tour-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
  margin-bottom: clamp(var(--space-6), 3vw, var(--space-10));
  max-width: 64rem;
  margin-inline: auto;
}
.tour-picker__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media (max-width: 640px) {
  .tour-picker { grid-template-columns: 1fr; }
}

/* Book a Tour page: eliminate the empty header space above "Booking is simple" */
.section.booking.booking--top {
  padding-top: clamp(var(--space-6), 3vw, var(--space-10));
}
.back-link--tight {
  display: inline-block;
  margin-bottom: clamp(var(--space-6), 3vw, var(--space-10));
}

/* Book a Tour page: "Need something a little different?" moved below the Bokun widget */
.custom-tour--below {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}
/* Full-width booking block when the aside is no longer next to it */
.booking-block--full {
  max-width: none;
}

/* Book a Tour: itinerary note moved below the Bokun widget */
.booking-itinerary-note--below {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  text-align: center;
}
.booking-itinerary-note--below .booking-itinerary-note__title,
.booking-itinerary-note--below .booking-itinerary-note__body {
  margin-inline: auto;
}

/* Half-day / Full-day tour page: title + centered boxes below */
.tour-page__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-top: var(--space-2);
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

/* Half-day / Full-day tour: instruction boxes on the left, stacked vertically */
.booking-instruction-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
  align-self: start;
}
.booking-instruction-stack .custom-tour {
  max-width: none;
  margin-inline: 0;
  align-self: stretch;
}
.custom-tour__instruction {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
  margin: 0;
}

/* Meet Your Guide: equal-height photo strip (widths follow each image's own aspect ratio) */
.guide-photo-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-3);
  align-items: stretch;
  margin: clamp(var(--space-8), 5vw, var(--space-12)) 0;
  width: 100%;
}
/* Each figure grows in proportion to its own aspect ratio (width ÷ height),
   so all four images end up the same height and each keeps its natural crop. */
.guide-photo-strip figure {
  margin: 0;
  flex-basis: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
}
.guide-photo-strip figure:nth-child(1) { flex-grow: 1.3639; } /* 1473 / 1080 */
.guide-photo-strip figure:nth-child(2) { flex-grow: 1.6861; } /* 1821 / 1080 */
.guide-photo-strip figure:nth-child(3) { flex-grow: 1.5000; } /* 1620 / 1080 */
.guide-photo-strip figure:nth-child(4) { flex-grow: 1.8880; } /* 2039 / 1080 */
.guide-photo-strip figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: inherit;
}
.guide-photo-strip figure:nth-child(1) img { aspect-ratio: 1473 / 1080; }
.guide-photo-strip figure:nth-child(2) img { aspect-ratio: 1821 / 1080; }
.guide-photo-strip figure:nth-child(3) img { aspect-ratio: 1620 / 1080; }
.guide-photo-strip figure:nth-child(4) img { aspect-ratio: 2039 / 1080; }
/* On narrow screens, wrap into two rows so faces don't get too small */
@media (max-width: 640px) {
  .guide-photo-strip {
    flex-wrap: wrap;
    gap: var(--space-2);
  }
  .guide-photo-strip figure {
    flex: 1 1 calc(50% - var(--space-2));
  }
}

/* Itineraries page: heading + recommendation box side by side */
.page-head--tight {
  padding-block-end: clamp(var(--space-4), 2vw, var(--space-6));
}
.itineraries-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  align-items: center;
  margin-top: var(--space-4);
}
.itineraries-head__copy {
  min-width: 0;
}
.itineraries-head__copy .eyebrow {
  margin-bottom: var(--space-2);
}
.itineraries-head__copy h1 {
  margin: 0;
}
.itineraries-head__box {
  max-width: none;      /* fills its grid column */
  margin: 0;
  align-self: center;
}
.itineraries-head__box .custom-tour__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: var(--space-3);
}
.itineraries-head__box .custom-tour__body {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0;
}
/* Stack on narrow screens */
@media (max-width: 820px) {
  .itineraries-head {
    grid-template-columns: 1fr;
    gap: clamp(var(--space-5), 4vw, var(--space-7));
  }
}
/* Reduce empty space above the itinerary rows */
.section--tight-top {
  padding-block-start: clamp(var(--space-3), 2vw, var(--space-6)) !important;
}
