/* ============================================================
   Mediterra Journey — main.css
   Brand: sea #2a6b8a · terra #c8714a · sand #f5efe6 · charcoal #1e2020
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sea:          #2a6b8a;
  --sea-dark:     #1d4f66;
  --terra:        #c8714a;
  --terra-dark:   #a55a39;
  --sand:         #f5efe6;
  --sand-dark:    #e8ddd0;
  --charcoal:     #1e2020;
  --stone:        #8a8478;
  --stone-light:  #b0a99f;
  --white:        #fdfcfb;
  --gold:         #e0a32e;
  --gold-dark:    #c4881d;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:   88rem;   /* 1408px container */
  --px:      1.25rem; /* horizontal page padding */
  --radius:  0.375rem;

  --hero-height:    82vh;
  --hero-video-y:  -170px;

  /* Per-video offset & scale — tweak to frame each clip.
     Y: negative = up, positive = down.
     X: negative = left, positive = right.
     Scale: 1 = fill frame, >1 = zoom in. */
  --vy-eclipse:    -9px;
  --vx-eclipse:    18px;
  --vs-eclipse:    1.05;
  --vy-med:        -136px;
  --vx-med:        0px;
  --vs-med:        1.00;
  --vy-desert:     0px;
  --vx-desert:     0px;
  --vs-desert:     1.00;
  --fade-ms:        1500ms;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

@media (min-width: 640px)  { :root { --px: 1.5rem; } }
@media (min-width: 1024px) { :root { --px: 2.5rem; } }

.section-pad { padding-block: 5rem; }
@media (min-width: 768px)  { .section-pad { padding-block: 7rem; } }
@media (min-width: 1280px) { .section-pad { padding-block: 9rem; } }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.25rem;
  padding-inline: max(2rem, calc((100vw - 1280px) / 2));
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

@media (min-width: 1024px) {
  .site-nav {
    grid-template-columns: auto auto 1fr;
    gap: 2.5rem;
  }
}

.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--sand-dark);
  padding-block: 0.85rem;
}

.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
@media (min-width: 640px) {
  .nav-logo img { height: 44px; }
}

@media (max-width: 639px) {
  .site-nav { padding-block: 0.75rem; }
  .site-nav.scrolled { padding-block: 0.5rem; }
}
.site-nav.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    white-space: nowrap;
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    inset-inline-start: calc((100vw - 56rem) / 2 + 2.5rem);
  }
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.site-nav.scrolled .nav-links a { color: var(--stone); }
.site-nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-right {
    grid-column: -1;
    justify-self: end;
  }
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.lang-btn {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.45rem;
  border-radius: 3px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.site-nav.scrolled .lang-btn { color: var(--stone); }
.site-nav.scrolled .lang-btn:hover,
.site-nav.scrolled .lang-btn.active {
  color: var(--charcoal);
  background: var(--sand);
}

/* Dividers between lang buttons */
.lang-btn + .lang-btn {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 0.55rem;
}
.site-nav.scrolled .lang-btn + .lang-btn { border-color: var(--sand-dark); }

.nav-cta {
  display: none;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.3s;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }
.site-nav.scrolled .nav-cta { color: var(--charcoal); border-color: var(--charcoal); }
.site-nav.scrolled .nav-cta:hover { background: var(--sand); }
@media (min-width: 768px) { .nav-cta { display: block; } }

/* Highlighted "Plan Your Trip" CTA — gold, draws the eye */
.nav-cta--plan {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(224,163,46,0.35);
}
.nav-cta--plan:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--charcoal); }
.site-nav.scrolled .nav-cta--plan { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.site-nav.scrolled .nav-cta--plan:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* Mobile menu CTA */
.mobile-cta {
  margin-top: 1rem;
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.mobile-cta:hover { background: var(--gold-dark); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  color: var(--white);
}
.site-nav.scrolled .nav-hamburger { color: var(--charcoal); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 1rem;
}
.mobile-menu a:hover { color: var(--sea); }

.mobile-lang {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.mobile-lang a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--stone);
  border: none;
  padding: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  /* White backstop ("white strip"): each clip is shifted up by a different
     amount (--vy-*), and when that shift exceeds the object-fit:cover overflow
     the bottom of the hero is left uncovered. This white base fills that gap so
     it merges with the booking bar / white section below instead of exposing
     the page background. */
  background: var(--white);
}


@media (max-width: 639px) {
  .hero { min-height: 100svh; }
  .hero-video--eclipse { --vy: calc(var(--vy-eclipse) - 20px); }
}

/* Video stack */
.hero-videos {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + var(--vx, 0px)) calc(50% + var(--vy, var(--hero-video-y)));
  transform: scale(var(--vs, 1));
  transform-origin: center center;
  opacity: 0;
  transition: opacity var(--fade-ms) ease-in-out;
}
.hero-video.active { opacity: 1; }

/* Per-video offset hooks — change values in :root above to tune. */
.hero-video--eclipse { --vy: var(--vy-eclipse); --vx: var(--vx-eclipse); --vs: var(--vs-eclipse); }
.hero-video--med     { --vy: var(--vy-med);     --vx: var(--vx-med);     --vs: var(--vs-med); }
.hero-video--desert  { --vy: var(--vy-desert);  --vx: var(--vx-desert);  --vs: var(--vs-desert); }

/* Per-video tint overlays */
.hero-tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fade-ms) ease-in-out;
}
.hero-tint--desert {
  background: rgba(30, 20, 10, 0.35);
}
.hero-videos:has(.hero-video--desert.active) .hero-tint--desert {
  opacity: 1;
}


/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-inline: var(--px);
  max-width: 56rem;
  margin-inline: auto;
  width: 100%;
  padding-bottom: 7rem;
  text-align: left;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 2rem;
  text-wrap: balance;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

.hero-eyebrow {
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero-disclaimer,
.hero-disclosure {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  padding-inline: var(--px);
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ── Booking bar outer wrapper ────────────────────────────── */
/* Bar straddles the hero/section boundary 50/50.
   Transparent top shows the hero video behind it; white bottom
   merges with the section below. Any gap defaults to white. */
.booking-bar-outer {
  position: relative;
  z-index: 20;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    var(--white) 50%,
    var(--white) 100%
  );
  margin-top: -2.5rem;
  padding-inline: var(--px);
}

/* ── Booking bar ──────────────────────────────────────────── */
.booking-bar {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.08);
  border: 1px solid var(--sand-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .booking-bar {
    flex-direction: row;
    align-items: stretch;
  }
}

.bar-field {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

@media (min-width: 768px) {
  .bar-field {
    border-bottom: none;
    border-right: 1px solid var(--sand-dark);
  }
}

.bar-field label {
  display: block;
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.bar-field-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bar-field-inner svg {
  width: 14px;
  height: 14px;
  color: var(--stone);
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar-field select,
.bar-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.bar-field input::placeholder { color: var(--stone-light); }

.bar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 2rem;
  background: var(--terra);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.2s;
}
.bar-cta:hover { background: var(--terra-dark); }
.bar-cta svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tours section ────────────────────────────────────────── */
.tours-section {
  background: var(--white);
  padding-top: 3.5rem;
}

.tours-section .section-header {
  margin-bottom: 3rem;
  max-width: 32rem;
}

.tours-section .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.tours-section .section-header p {
  color: var(--stone);
  line-height: 1.65;
}

/* Tours grid: three equal premium cards */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tour card */
.tour-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2);
  background: var(--charcoal);
  box-shadow: 0 8px 30px rgba(30,32,32,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(30,32,32,0.18);
}

.tour-card:hover .tour-card-img { transform: scale(1.04); }
.tour-card:hover .tour-card-overlay { opacity: 0.7; }

/* Featured (eclipse) keeps a subtle warm lift */
.tour-card--featured { box-shadow: 0 10px 34px rgba(200,113,74,0.20); }

.tour-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.tour-card-img,
.tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,32,32,0.88) 0%,
    rgba(30,32,32,0.35) 50%,
    transparent 100%
  );
  opacity: 0.65;
  transition: opacity 0.4s;
}

.tour-card-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.75rem;
  z-index: 2;
}

.tour-card--featured .tour-card-body { padding: 2.25rem; }

.tour-card-tag {
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}

.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.tour-card--featured h3 { font-size: 1.5rem; }

.tour-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tour-card-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.tour-card-duration {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.tour-card-arrow {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.tour-card:hover .tour-card-arrow {
  background: var(--terra);
  border-color: var(--terra);
}

.tour-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Eclipse badge */
.eclipse-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(200,113,74,0.92);
  color: var(--white);
  font-size: 0.6125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ── Algeria spotlight strip ──────────────────────────────── */
.spotlight {
  background: var(--charcoal);
  color: var(--white);
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) { .spotlight { padding-top: 6.5rem; } }

.spotlight-text {
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-bottom: 4rem;
  max-width: 40rem;
}

@media (min-width: 1024px) { .spotlight-text { max-width: var(--max-w); } }

.spotlight-text .eyebrow { margin-bottom: 1rem; }

.spotlight-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  line-height: 1.1;
}

.spotlight-text h3 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--sand);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.spotlight-text p {
  color: rgba(255,255,255,0.68);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.spotlight-cta:hover { background: rgba(255,255,255,0.08); }
.spotlight-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animated strip */
.strip-wrap {
  position: relative;
  overflow: hidden;
}

/* Decorative tagline floating over the image strip. Without this rule the
   text renders as a plain paragraph pinned to the left edge of the page. */
.strip-tagline {
  position: absolute;
  top: 0.5rem;
  right: 18%;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  color: var(--terra);
  text-align: center;
  transform: rotate(-11deg);
  pointer-events: none;
}

@media (max-width: 767px) {
  .strip-tagline { right: 8%; top: 0.25rem; }
}

.strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: strip-scroll 55s linear infinite;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip-track:hover { animation-play-state: paused; }

.strip-item {
  flex-shrink: 0;
  width: 11rem;
  aspect-ratio: 1 / 1;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

@media (min-width: 768px) { .strip-item { width: 14rem; } }

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Staggered vertical offset */
.strip-item:nth-child(4n+2)  { margin-top: 2.5rem; }
.strip-item:nth-child(4n+4)  { margin-top: -1rem; }


/* ── Trust pillars ────────────────────────────────────────── */
.trust-section { background: var(--white); }

.trust-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.trust-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--charcoal);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px)  { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar svg {
  width: 18px;
  height: 18px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

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

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,107,138,0.87);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-inline: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--terra);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--terra-dark); }
.btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.68);
  padding-block: 4rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.75rem;
}

/* Footer sits on a dark background: force the dark logo artwork to white */
.footer-brand .logo img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.65;
  max-width: 26rem;
}

.footer-brand .contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.footer-brand .contact-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-brand .contact-links a:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 0.6rem; }

.footer-col a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-quote {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.footer-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.ssl-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ssl-note svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Compass scroll-to-top ────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover { background: var(--sand); transform: translateY(-3px); }

#scroll-top svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

#scroll-top:hover svg { transform: translateY(-2px); }

/* ── Floating WhatsApp button ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 95;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

/* When the WhatsApp button is present, lift the scroll-to-top above it */
body:has(.wa-float) #scroll-top {
  bottom: 5.75rem;
}

/* ── Cookie banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  border-radius: calc(var(--radius) * 1.5);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  max-width: 28rem;
  transform: translateY(200%);
  transition: transform 0.4s ease;
}

#cookie-banner.show { transform: translateY(0); }

@media (min-width: 640px) {
  #cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    right: auto;
    left: 1rem;
    gap: 1rem;
  }
}

#cookie-banner p { font-size: 0.75rem; line-height: 1.5; margin: 0; }
#cookie-banner p a { color: rgba(255,255,255,0.6); text-decoration: underline; white-space: nowrap; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.4rem 0.9rem;
  background: var(--terra);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--terra-dark); }

.cookie-decline {
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.cookie-decline:hover { color: var(--white); }

/* ── Tour detail page ─────────────────────────────────────── */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.tour-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero .hero-overlay { opacity: 0.7; }

.tour-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.tour-hero-content .eyebrow { margin-bottom: 0.75rem; }

.tour-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.tour-hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 40ch;
  line-height: 1.65;
}

/* Tour meta bar */
.tour-meta-bar {
  background: var(--sand);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--sand-dark);
}

.tour-meta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.tour-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tour-meta-item span:first-child {
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.tour-meta-item span:last-child {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
}

.tour-meta-cta {
  margin-left: auto;
}

/* Tour body layout */
.tour-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 4rem var(--px);
}

@media (min-width: 1024px) {
  .tour-body { grid-template-columns: 1fr 22rem; gap: 5rem; }
}

.tour-description {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.tour-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand-dark);
}

/* Itinerary */
.itinerary-day {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.25rem;
  margin-bottom: 2.25rem;
}

.itinerary-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: rgba(42,107,138,0.25);
  line-height: 1.2;
  padding-top: 0.1rem;
}

.itinerary-day h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.itinerary-day p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.7;
}

/* Inclusions */
.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

.inclusions-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--sea);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Sidebar enquiry card */
.enquiry-card {
  background: var(--sand);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.enquiry-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.enquiry-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sea);
  margin-bottom: 0.25rem;
}

.enquiry-card .price-note {
  font-size: 0.75rem;
  color: var(--stone);
  margin-bottom: 1.75rem;
}

.enquiry-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.enquiry-card .secondary-link {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--stone);
  text-decoration: underline;
  transition: color 0.2s;
}
.enquiry-card .secondary-link:hover { color: var(--charcoal); }

.enquiry-card hr {
  border: none;
  border-top: 1px solid var(--sand-dark);
  margin-block: 1.5rem;
}

.enquiry-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.enquiry-card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--stone);
}

.enquiry-card-features svg {
  width: 14px;
  height: 14px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   Journey detail pages (single mj_journey) — redesigned layout
   ══════════════════════════════════════════════════════════════ */
.tour-detail { padding-block: 4.5rem; }
.tour-detail__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.tour-detail .eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.tour-detail__h {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

/* Meta-bar CTA rendered as a link */
.tour-detail-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.tour-detail-btn:hover { filter: brightness(0.92); transform: translateY(-2px); }

/* Overview + highlights */
.tour-detail--overview { background: var(--white); }
.tour-detail__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) {
  .tour-detail__grid { grid-template-columns: 1fr 22rem; gap: 4.5rem; align-items: start; }
}
.tour-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.tour-detail__lead-col p:not(.tour-lead):not(.eyebrow) {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 1.25rem;
}
.tour-detail__highlights {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
}
.tour-detail__highlights h2 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.tour-detail__highlights ul { list-style: none; margin: 0; padding: 0; }
.tour-detail__highlights li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--stone);
}
.tour-detail__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

/* Itinerary stages */
.tour-detail--itinerary { background: var(--sand); }
.tour-stages { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .tour-stages { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
.tour-stage {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem;
}
.tour-stage__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terra);
  line-height: 1;
  flex-shrink: 0;
}
.tour-stage__body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.tour-stage__body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--stone);
  margin: 0;
}

/* Inclusions checklist */
.tour-detail--incl { background: var(--white); }
.tour-incl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .tour-incl-list { grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; } }
.tour-incl-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--stone);
}
.tour-incl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terra);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Gallery */
.tour-detail--gallery { padding-block: 0 4.5rem; }
.tour-gallery {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .tour-gallery { grid-template-columns: repeat(3, 1fr); } }
.tour-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 2);
}

/* ── Inner page hero (about, contact, planner, legal) ────── */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: var(--white);
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
}

.page-hero .eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  max-width: 22ch;
  text-wrap: balance;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 42ch;
}

/* ── Journeys showcase ────────────────────────────────────── */
.journeys-showcase { background: var(--white); }

.journeys-showcase .section-header {
  max-width: 36rem;
  margin-bottom: 3.5rem;
}

.journeys-showcase .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.journey-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) { .journey-rows { gap: 6rem; } }

.journey-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .journey-row { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .journey-row--reverse .journey-media { order: 2; }
}

.journey-media {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 40px rgba(30,32,32,0.14);
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.journey-row:hover .journey-media img { transform: scale(1.04); }

.journey-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(200,113,74,0.94);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.journey-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.85rem;
}

.journey-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.journey-desc {
  color: var(--stone);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.journey-meta {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  margin-bottom: 1.75rem;
}

.journey-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.journey-duration {
  font-size: 0.8125rem;
  color: var(--stone);
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

.journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.journey-cta:hover { background: var(--terra); transform: translateY(-2px); }

.journey-cta-arrow { display: inline-flex; }

.journey-cta-arrow svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-cta--ghost {
  background: transparent;
  color: var(--charcoal);
  padding-inline: 0.5rem;
}

.journey-cta--ghost:hover { background: transparent; color: var(--terra); transform: none; }

/* ── About page ───────────────────────────────────────────── */
.about-section {
  padding-block: 5rem;
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (min-width: 768px) { .about-section { padding-block: 7rem; } }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-col-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.about-col h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.about-col p {
  color: var(--stone);
  line-height: 1.75;
  font-size: 1rem;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(42,107,138,0.25);
  line-height: 1.1;
  flex-shrink: 0;
  width: 2.5rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
}

/* Philosophy pillars */
.pillars-philosophy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) { .pillars-philosophy { grid-template-columns: repeat(3, 1fr); } }

.pillar-philosophy .pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(42,107,138,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pillar-philosophy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.pillar-philosophy p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.75;
}

/* Quote break */
.quote-break {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

.quote-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,32,32,0.5);
}

.quote-break blockquote {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 4rem var(--px);
  max-width: 44rem;
}

.quote-break blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-break blockquote cite {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* Overlay so the quote stays legible over bright imagery */
.quote-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(30,32,32,0.74) 0%, rgba(30,32,32,0.45) 60%, rgba(30,32,32,0.3) 100%);
}

/* About imagery */
.about-figure img {
  border-radius: calc(var(--radius) * 2);
  width: 100%;
  height: auto;
  display: block;
}

.about-vision .two-col { align-items: center; }

.about-vision .about-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Collaboration band */
.collaboration-section {
  padding: 5rem var(--px);
  text-align: center;
}

@media (min-width: 768px) { .collaboration-section { padding-block: 6rem; } }

.collaboration-section .about-col-label { margin-bottom: 1rem; }

.collaboration-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.collaboration-section p {
  color: var(--stone);
  line-height: 1.8;
  font-size: 1.0625rem;
  max-width: 46rem;
  margin-inline: auto;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 4rem var(--px) 6rem;
}

@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1.5fr; gap: 5rem; } }

.contact-info h2 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.contact-detail span:first-child {
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}

.contact-detail a,
.contact-detail span:last-child {
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--sea); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--sea); }

.form-field textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 0.75rem; color: var(--stone); }

.form-success {
  display: none;
  padding: 1.25rem 1.5rem;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  color: #155724;
  font-size: 0.875rem;
}

.form-success.show { display: block; }

/* ── Trip planner wizard ──────────────────────────────────── */
.planner-section {
  padding-block: 2rem 6rem;
  padding-inline: var(--px);
  max-width: 56rem;
  margin-inline: auto;
}

/* Progress track */
.wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}

.wizard-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--sand-dark, #e8ddd1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--stone);
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.wizard-step-dot.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.wizard-step-dot.done {
  background: var(--sea);
  border-color: var(--sea);
  color: var(--white);
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: var(--sand-dark, #e8ddd1);
  transition: background 0.25s;
}

.wizard-step-line.done { background: var(--sea); }

/* Step panels */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: wizardIn 0.35s ease both;
}

@keyframes wizardIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-step-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.wizard-step h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.wizard-step-hint {
  font-size: 0.9375rem;
  color: var(--stone);
  margin-bottom: 2rem;
}

/* Tour cards grid (step 1) */
.tour-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .tour-pick-grid { grid-template-columns: repeat(2, 1fr); }
}

.tour-pick-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

@media (min-width: 640px) {
  .tour-pick-card { aspect-ratio: 2 / 3; }
}

.tour-pick-card:hover { transform: translateY(-3px); }

.tour-pick-card.selected {
  border-color: var(--terra);
  box-shadow: 0 0 0 2px var(--terra);
}

.tour-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tour-pick-card:hover img { transform: scale(1.04); }

.tour-pick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,32,32,0.88) 0%, rgba(30,32,32,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1rem;
}

.tour-pick-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.35rem;
}

.tour-pick-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.tour-pick-detail {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.tour-pick-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.tour-pick-card.selected .tour-pick-check { opacity: 1; }

.tour-pick-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 2.5;
}

/* Custom tour option */
.custom-tour-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px dashed var(--stone);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--stone);
  text-align: left;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.custom-tour-btn:hover,
.custom-tour-btn.active {
  border-color: var(--terra);
  color: var(--charcoal);
  background: rgba(200,113,74,0.04);
}

.custom-tour-btn .plus-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--terra);
  transition: background 0.2s;
}

.custom-tour-btn.active .plus-icon { background: var(--terra); color: var(--white); }

.custom-tour-expand {
  display: none;
  margin-top: 1rem;
}

.custom-tour-expand.show { display: block; }

.custom-tour-expand textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  padding: 0.875rem 1rem;
  border: 1px solid var(--sand-dark, #e8ddd1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  transition: border-color 0.2s;
}

.custom-tour-expand textarea:focus {
  outline: none;
  border-color: var(--sea);
}

/* Choice grid (steps 2-5) */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .choice-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.choice-card {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--sand-dark, #e8ddd1);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.choice-card:hover {
  border-color: var(--sea);
  background: rgba(42,107,138,0.03);
}

.choice-card.selected {
  border-color: var(--terra);
  background: rgba(200,113,74,0.05);
}

.choice-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.choice-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.choice-hint {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.4;
}

.choice-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.choice-card.selected .choice-check { opacity: 1; }

.choice-check svg {
  width: 9px;
  height: 9px;
  stroke: white;
  stroke-width: 2.5;
}

/* Contact step fields */
.planner-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 560px) {
  .planner-fields .field-full { grid-column: 1 / -1; }
}

.planner-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.planner-field input,
.planner-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--sand-dark, #e8ddd1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}

.planner-field input:focus,
.planner-field textarea:focus {
  outline: none;
  border-color: var(--sea);
}

.planner-field textarea {
  min-height: 90px;
  resize: vertical;
}

/* Wizard nav buttons */
.wizard-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.wizard-back {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
}

.wizard-back:hover { color: var(--charcoal); }

.wizard-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

.wizard-next,
.wizard-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.wizard-next:hover,
.wizard-submit:hover {
  background: var(--sea);
  transform: translateY(-1px);
}

.wizard-next svg,
.wizard-submit svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

.wizard-step-count {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--stone);
}

/* Summary (step 6) */
.planner-summary {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.planner-summary h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.875rem;
}

.summary-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.summary-row:last-child { border-bottom: none; }

.summary-key {
  color: var(--stone);
  min-width: 9rem;
  flex-shrink: 0;
}

/* Success state */
.wizard-success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}

.wizard-success.show { display: block; }

.wizard-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(42,107,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.wizard-success .success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sea);
  stroke-width: 2;
}

.wizard-success h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.wizard-success p {
  color: var(--stone);
  max-width: 38ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* Planner placeholder (kept for legacy) */
.planner-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--px);
  text-align: center;
}

.planner-placeholder h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.planner-placeholder p {
  color: var(--stone);
  line-height: 1.75;
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ── Legal pages ──────────────────────────────────────────── */
.legal-body {
  max-width: 48rem;
  margin-inline: auto;
  padding: 3rem var(--px) 6rem;
}

.legal-body h2 {
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

.legal-body h3 {
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-body p,
.legal-body li {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.legal-review {
  display: inline-block;
  background: rgba(200,113,74,0.08);
  border: 1px solid rgba(200,113,74,0.3);
  color: var(--terra-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── Page image hero (about, contact, planner) ────────────── */
.hero--page {
  min-height: 52vh;
}

@media (max-width: 639px) {
  .hero--page { min-height: 60svh; }
}

.hero--page .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--page .hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,22,22,0.72) 0%, rgba(20,22,22,0.25) 55%, rgba(20,22,22,0.35) 100%);
}

.hero--page .hero-content {
  padding-bottom: 5rem;
  max-width: var(--max-w);
}

.hero--page h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

/* ── Stats band ───────────────────────────────────────────── */
.stats-band {
  background: var(--charcoal);
  padding-block: 3.5rem;
}

.stats-band-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

@media (min-width: 768px) { .stats-band-inner { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--sand);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── About: editorial split with image ────────────────────── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) { .editorial-split { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.editorial-split-img {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.editorial-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-split-img .img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── Contact: card layout ─────────────────────────────────── */
.contact-info-card {
  background: var(--sand);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  height: fit-content;
}

@media (min-width: 768px) {
  .contact-info-card { position: sticky; top: 6rem; }
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(30,32,32,0.06);
}

@media (max-width: 560px) {
  .contact-info-card, .contact-form-card { padding: 1.5rem; }
}

.contact-detail + .contact-detail {
  border-top: 1px solid var(--sand-dark);
  padding-top: 1.25rem;
}

/* ── Planner layout with live summary ─────────────────────── */
.planner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 3rem var(--px) 6rem;
}

@media (min-width: 1024px) {
  .planner-layout { grid-template-columns: minmax(0, 1fr) 21rem; gap: 4rem; }
}

.planner-main { min-width: 0; }

/* Sticky trip summary */
.trip-summary {
  display: none;
}

@media (min-width: 1024px) {
  .trip-summary {
    display: block;
    position: sticky;
    top: 6rem;
    height: fit-content;
  }
}

.trip-summary-card {
  border: 1px solid var(--sand-dark);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(30,32,32,0.06);
}

.trip-summary-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  overflow: hidden;
}

.trip-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-summary-img .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--stone);
}

.trip-summary-body { padding: 1.5rem; }

.trip-summary-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.trip-summary-sub {
  font-size: 0.75rem;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.trip-summary-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sand-dark);
}

.trip-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.8125rem;
}

.trip-summary-row .k { color: var(--stone); }
.trip-summary-row .v { color: var(--charcoal); text-align: right; }
.trip-summary-row .v.empty { color: var(--stone-light); }

.trip-summary-price {
  padding-top: 1.25rem;
}

.trip-summary-price .price-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.2rem;
}

.trip-summary-price .price-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.trip-summary-price .price-note {
  font-size: 0.7rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

.trip-summary-assurance {
  background: var(--sand);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.trip-summary-assurance li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--stone);
  list-style: none;
}

.trip-summary-assurance svg {
  width: 13px;
  height: 13px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Wizard progress with labels */
.wizard-progress { display: block; margin-bottom: 2.5rem; }

.wizard-progress-bar {
  height: 3px;
  background: var(--sand-dark);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.wizard-progress-fill {
  height: 100%;
  width: 0;
  background: var(--terra);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.wizard-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.wizard-progress-meta strong {
  font-weight: 500;
  color: var(--charcoal);
}

/* Inline validation message */
.wizard-error {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(200,113,74,0.08);
  border: 1px solid rgba(200,113,74,0.35);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--terra-dark);
}

.wizard-error.show { display: flex; }

/* SVG choice icons */
.choice-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card.wide {
  grid-column: 1 / -1;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
}

.choice-card.wide .choice-icon { margin: 0; }
.choice-card.wide .choice-check { position: static; margin-left: auto; }

/* Season recommendation badge */
.choice-badge {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
  background: rgba(42,107,138,0.08);
  border: 1px solid rgba(42,107,138,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.choice-card .choice-badge { display: none; }
.choice-card.recommended .choice-badge { display: inline-block; }

/* Locked note (eclipse fixed dates) */
.wizard-note {
  display: none;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.875rem 1.1rem;
  background: rgba(42,107,138,0.06);
  border-left: 3px solid var(--sea);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8125rem;
  color: var(--sea-dark);
  line-height: 1.55;
}

.wizard-note.show { display: flex; }

/* Mobile compact summary strip */
.trip-summary-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
}

@media (min-width: 1024px) { .trip-summary-mobile { display: none; } }

.trip-summary-mobile .tour-name {
  font-family: var(--font-display);
  color: var(--charcoal);
}

.trip-summary-mobile .price { color: var(--terra-dark); white-space: nowrap; }

/* ── RTL support (Arabic) ─────────────────────────────────── */
[dir="rtl"] .site-nav,
[dir="rtl"] .nav-links,
[dir="rtl"] .nav-right,
[dir="rtl"] .footer-grid,
[dir="rtl"] .tours-grid,
[dir="rtl"] .pillars-grid,
[dir="rtl"] .booking-bar,
[dir="rtl"] .tour-meta-inner,
[dir="rtl"] .footer-bottom {
  direction: rtl;
}

[dir="rtl"] .bar-cta { border-radius: var(--radius) 0 0 var(--radius); }
[dir="rtl"] .strip-track { animation-direction: reverse; }
[dir="rtl"] .eclipse-badge { right: auto; left: 1.5rem; }
[dir="rtl"] .strip-tagline { right: auto; left: 18%; transform: rotate(11deg); }

/* Contact info card: breathing room around the team note divider */
.contact-info-card .contact-team-divider { margin: 2.25rem 0 1.75rem; }
.contact-info-card .contact-team-note { margin-top: 0.75rem; margin-bottom: 0.75rem; }
[dir="rtl"] .tour-meta-cta { margin-left: 0; margin-right: auto; }

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] label {
  font-family: 'IBM Plex Sans Arabic', var(--font-body);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'IBM Plex Sans Arabic', var(--font-display);
  letter-spacing: 0;
}


/* ── Cover-block page hero (WordPress seeded pages) ───────── */
.page-hero-cover {
  display: flex;
  align-items: flex-end;
}

.page-hero-cover .wp-block-cover__inner-container {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  padding: 8rem var(--px) 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero-cover .hero-eyebrow,
.page-hero-cover p.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.page-hero-cover h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.page-hero-cover h1 + p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 42ch;
  text-wrap: balance;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

/* Stats band built from core columns */
.stats-band .wp-block-columns {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  gap: 1.5rem;
}

.stats-band .wp-block-column { text-align: center; }

.stats-band .stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--sand);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stats-band .stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Eclipse lead capture ─────────────────────────────────── */
.eclipse-capture {
  background: var(--charcoal);
  padding: 5rem 2rem;
}
.eclipse-capture-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .eclipse-capture-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.eclipse-capture-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.eclipse-capture-text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.eclipse-capture-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.eclipse-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .eclipse-form-row { grid-template-columns: 1fr; }
}
.eclipse-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.eclipse-form-field label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.eclipse-form-field input,
.eclipse-form-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.eclipse-form-field input::placeholder { color: rgba(255,255,255,0.3); }
.eclipse-form-field input:focus,
.eclipse-form-field select:focus { border-color: var(--sea); }
.eclipse-form-field select option { background: var(--charcoal); color: var(--white); }
.eclipse-submit { align-self: flex-start; }
.eclipse-form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.eclipse-form-success {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.eclipse-form-success svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  stroke: #4ade80;
  stroke-width: 2.5;
}
.eclipse-form-success strong { color: var(--white); display: block; margin-bottom: 0.4rem; }
.eclipse-form-success p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; }
.eclipse-form-success a { color: var(--sea); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--sand); }
.faq-section .section-header { margin-bottom: 3rem; text-align: center; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}
.faq-col { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item p {
  color: var(--stone);
  line-height: 1.75;
  font-size: 0.9375rem;
  padding-bottom: 1.25rem;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   Secondary-page header (centered) — Journeys, Travel Essentials
   ══════════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem var(--px) 3.5rem;
}
@media (max-width: 639px) { .page-header { min-height: 56svh; } }

.page-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,22,22,0.55) 0%, rgba(20,22,22,0.4) 50%, rgba(20,22,22,0.65) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
}
.page-header-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.page-header-lede {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  margin-top: 1.25rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* Clean (image-less) variant — pale sand band */
.page-header--plain { min-height: auto; padding: 9rem var(--px) 3rem; background: var(--sand); }
.page-header--plain .page-header h1,
.page-header--plain h1 { color: var(--charcoal); text-shadow: none; }

/* ══════════════════════════════════════════════════════════════
   Journeys showcase
   ══════════════════════════════════════════════════════════════ */
.journeys-section { background: var(--white); }

.journeys-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 768px) { .journeys-list { gap: 7rem; } }

.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .journey { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  /* Alternate image side */
  .journey:nth-child(even) .journey-media { order: 2; }
}

.journey-media {
  position: relative;
  display: block;
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 50px rgba(30,32,32,0.14);
}
.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.journey-media:hover img { transform: scale(1.04); }
.journey-index {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  line-height: 1;
}

.journey-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.journey-content h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
.journey-region {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--stone);
  margin-top: 0.5rem;
}
.journey-summary {
  color: var(--charcoal);
  line-height: 1.75;
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}
.journey-highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.journey-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.6;
}
.journey-highlights svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--sea);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.journey-atmosphere {
  margin-top: 1.5rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 1.0625rem;
}
.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-dark);
}
.journey-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.journey-meta-item span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.journey-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
}
.journey-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
}
.journey-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sea);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.journey-link:hover { border-color: var(--sea); }

/* ── Open Air Journeys editorial showcase ────────────────── */
.mj-journeys-showcase {
  position: relative;
  overflow: hidden;
}

.mj-journeys-showcase .mj-journeys-intro {
  max-width: 42rem;
  margin-bottom: clamp(3.5rem, 8vw, 8rem);
}

.mj-journeys-showcase .mj-journeys-intro h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  text-wrap: balance;
}

.mj-journeys-showcase .mj-journeys-intro .eyebrow {
  margin-bottom: 1.15rem;
}

.mj-journey-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 11vw, 11rem);
}

.mj-journey-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.mj-journey-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-dark);
}

.mj-journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mj-journey-row:hover .mj-journey-media img {
  transform: scale(1.025);
}

.mj-journey-index {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(253,252,251,0.94);
  text-shadow: 0 1px 18px rgba(30,32,32,0.34);
}

.mj-journey-badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(253,252,251,0.65);
  color: var(--white);
  background: rgba(30,32,32,0.2);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.mj-journey-body {
  max-width: 34rem;
}

.mj-journey-label {
  margin-bottom: 1rem;
  color: var(--terra);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mj-journey-body h3 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 300;
  line-height: 1.06;
  text-wrap: balance;
}

.mj-journey-desc {
  max-width: 38ch;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.8;
}

.mj-journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--sand-dark);
}

.mj-journey-meta div {
  display: grid;
  gap: 0.25rem;
}

.mj-journey-meta dt {
  color: var(--stone);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mj-journey-meta dd {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
}

.mj-journey-actions {
  margin-top: 2rem;
}

.mj-journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--terra);
  color: var(--charcoal);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}

.mj-journey-cta:hover {
  color: var(--terra-dark);
  border-color: var(--terra-dark);
}

.mj-journey-cta:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 0.35rem;
}

.mj-journey-cta svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

@media (min-width: 860px) {
  .mj-journey-row {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
    gap: clamp(3rem, 8vw, 9rem);
  }

  .mj-journey-row--reverse .mj-journey-media { order: 2; }
  .mj-journey-row--reverse .mj-journey-body { justify-self: end; }
  .mj-journey-media { aspect-ratio: 5 / 4; }
}

@media (max-width: 639px) {
  .mj-journeys-showcase .mj-journeys-intro { margin-bottom: 3.5rem; }
  .mj-journey-rows { gap: 5.5rem; }
  .mj-journey-media { aspect-ratio: 5 / 4; }
  .mj-journey-index { top: 1rem; left: 1rem; }
  .mj-journey-badge { right: 1rem; bottom: 1rem; }
  .mj-journey-body h3 { max-width: 14ch; }
}

@media (prefers-reduced-motion: reduce) {
  .mj-journey-media img { transition: none; }
}

/* Wizard: grouped questions within a single step */
.wizard-group + .wizard-group {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand-dark);
}
.wizard-group-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.wizard-group #dates-group { transition: opacity 0.3s ease; }

/* ══════════════════════════════════════════════════════════════
   About page — clean, centered, white
   ══════════════════════════════════════════════════════════════ */
.about-intro {
  padding: 9rem var(--px) 3.5rem;
  text-align: center;
  background: var(--white);
}
.about-intro .eyebrow { color: var(--terra); }
.about-intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.08;
  margin: 0.75rem 0 1.25rem;
}
.about-intro .lede {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--stone);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.stats-band--light { background: var(--sand); padding-block: 2.75rem; }
.stats-band--light .stat-value { color: var(--charcoal); }
.stats-band--light .stat-label { color: var(--stone); }

.about-centered {
  max-width: 46rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.about-centered .eyebrow { color: var(--terra); }
.about-centered h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

.about-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .about-duo { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.about-duo-card {
  background: var(--sand);
  border-radius: calc(var(--radius) * 2);
  padding: 2.25rem;
  text-align: center;
}
.about-duo-card .about-col-label { color: var(--terra); margin-bottom: 0.75rem; }
.about-duo-card p:not(.about-col-label) { color: var(--stone); line-height: 1.8; }

.about-figure {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
}
.about-figure img {
  width: 100%;
  height: clamp(18rem, 42vw, 30rem);
  object-fit: cover;
  border-radius: calc(var(--radius) * 3);
  display: block;
}
.about-figure-caption {
  position: absolute;
  bottom: 1.25rem;
  left: calc(var(--px) + 1.5rem);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Centred process list */
.about-process { max-width: 40rem; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   Travel essentials — quick facts
   ══════════════════════════════════════════════════════════════ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 60rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.fact-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem 1.5rem;
  text-align: center;
}
.fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  margin-bottom: 0.85rem;
}
.fact-icon svg { width: 30px; height: 30px; }
.essentials-lead {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--stone);
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 3rem;
}
.essentials-intro-wrap h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}
.essentials-intro-wrap h2.essentials-lead-h { margin-bottom: 1.25rem; }
.fact-key {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.fact-val {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.fact-note {
  font-size: 0.8125rem;
  color: var(--stone);
  margin-top: 0.3rem;
}

/* ══════════════════════════════════════════════════════════════
   Builder CTA section — consistent button shape sitewide
   (matches the gold "Plan Your Trip" nav button: same radius + padding)
   ══════════════════════════════════════════════════════════════ */
.builder-cta-section .wp-block-buttons {
  margin-top: 2.25rem;
}
.builder-cta-section .wp-block-button__link {
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.builder-cta-section .wp-block-button__link:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

/* WordPress block output guards */
.page-content,
.entry-content,
.page-content > article {
  margin: 0;
  padding: 0;
}

.entry-content > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.entry-content > .alignfull,
.entry-content > .wp-block-group.alignfull,
.entry-content > .wp-block-cover.alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-content--home .entry-content > .hero,
.page-content--home .entry-content > .booking-bar-outer,
.page-content--home .entry-content > .tours-section,
.page-content--home .entry-content > .spotlight,
.page-content--home .entry-content > .trust-section,
.page-content--home .entry-content > .cta-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Restore the booking-bar straddle: the generic `.entry-content > *`
   reset above zeroes margin-block-start at equal specificity and later
   source order, which cancels the -2.5rem pull-up that overlaps the bar
   onto the hero. Re-apply it at higher specificity so the bar sits half
   over the video and half over the white section below. */
.page-content--home .entry-content > .booking-bar-outer {
  margin-top: -2.5rem;
}

.entry-content .wp-block-columns.pillars-grid {
  display: grid;
}

.entry-content .wp-block-columns.pillars-grid > .wp-block-column {
  flex-basis: auto !important;
  min-width: 0;
}

.entry-content .wp-block-columns.tour-card-meta {
  display: flex;
}

.entry-content .wp-block-columns.tour-card-meta > .wp-block-column {
  flex: 0 0 auto;
}

.entry-content .strip-track {
  display: flex;
  flex-wrap: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   2026-07 editable layout refresh
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1180px) {
  .tours-grid.tours-grid--four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .tours-grid.tours-grid--four-up .tour-card-body {
    padding: 1.4rem;
  }

  .tours-grid.tours-grid--four-up .tour-card--featured .tour-card-body {
    padding: 1.75rem;
  }

  .tours-grid.tours-grid--four-up .tour-card h3 {
    font-size: 1.25rem;
  }
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.spotlight-actions .spotlight-cta {
  flex-shrink: 0;
}

.spotlight-next {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  color: var(--sand);
}
@media (max-width: 767px) {
  .spotlight-actions { align-items: flex-start; }
  .spotlight-next { width: 100%; padding-left: 0.15rem; }
}

.faq-strip-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 auto 2.75rem;
  padding-top: 0.35rem;
}

.faq-strip-label {
  position: absolute;
  top: 0.65rem;
  left: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(30, 32, 32, 0.78);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: strip-scroll 55s linear infinite;
}

.faq-strip-track:hover {
  animation-play-state: paused;
}

.faq-strip-item {
  flex-shrink: 0;
  width: 11rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 12px 32px rgba(30, 32, 32, 0.12);
}

@media (min-width: 768px) {
  .faq-strip-item {
    width: 13.5rem;
  }
}

.faq-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-strip-item:nth-child(4n + 2) {
  margin-top: 2rem;
}

.faq-strip-item:nth-child(4n + 4) {
  margin-top: -0.75rem;
}

.facts-grid,
.wp-block-group.facts-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 60rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .facts-grid,
  .wp-block-group.facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.facts-grid > *,
.wp-block-group.facts-grid > * {
  margin: 0 !important;
  min-width: 0;
}

.about-layout-v2 {
  text-align: center;
}

.about-section--single {
  max-width: 50rem;
  margin-inline: auto;
  text-align: left;
}

.about-section--single h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.about-section--single p:not(.about-col-label) {
  color: var(--stone);
  line-height: 1.85;
  font-size: 1.05rem;
}

.about-figure--inline {
  margin-top: 2rem;
  padding-inline: 0;
}

.about-figure--inline img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) * 2.5);
}

.about-process-shell {
  max-width: 68rem;
}

.about-process-copy {
  max-width: 46rem;
  margin: 0 auto 2.25rem;
}

.about-process-copy .wp-block-buttons {
  margin-top: 1.75rem;
}

.about-process-layout {
  gap: 2rem;
  align-items: flex-start;
}

.about-process-media {
  padding-inline: 0;
}

.about-process-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-process-list {
  max-width: 34rem;
}

@media (max-width: 781px) {
  .about-process-copy .wp-block-button,
  .about-process-copy .wp-block-button__link {
    width: 100%;
  }

  .about-process-copy .wp-block-button__link {
    justify-content: center;
  }
}

.contact-layout-v2 {
  align-items: flex-start;
}

.mj-recaptcha-badge-slot {
  min-height: 78px;
}

.mj-recaptcha-badge-slot .grecaptcha-badge,
.grecaptcha-badge.mj-recaptcha-badge--inline {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  box-shadow: none !important;
  margin-top: 0.25rem;
}



/* ══════════════════════════════════════════════════════════════
   2026-07 admin and content UX corrections
   ══════════════════════════════════════════════════════════════ */
.facts-grid--travel-essentials,
.wp-block-group.facts-grid--travel-essentials {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 72rem;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .facts-grid--travel-essentials,
  .wp-block-group.facts-grid--travel-essentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .facts-grid--travel-essentials,
  .wp-block-group.facts-grid--travel-essentials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

.facts-grid--travel-essentials .fact-card {
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-strip-grid-wrap {
  margin: 0 auto 2.75rem;
}

.faq-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 900px) {
  .faq-strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.faq-strip-item--static {
  width: 100%;
  margin-top: 0 !important;
  aspect-ratio: 4 / 3;
}

.faq-strip-item--static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-strip-item--static.faq-strip-item--2,
.faq-strip-item--static.faq-strip-item--5 {
  transform: translateY(0.75rem);
}

.faq-strip-item--static.faq-strip-item--3,
.faq-strip-item--static.faq-strip-item--6 {
  transform: translateY(-0.35rem);
}

.mj-editor-block-surface {
  position: relative;
}

.mj-editor-block-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(200, 113, 74, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.block-editor-block-list__block.is-selected .mj-editor-block-surface::before,
.block-editor-block-list__block:hover .mj-editor-block-surface::before {
  border-color: rgba(200, 113, 74, 0.8);
}
