/* ================================================================
   ATLAS DREAM — GLOBAL STYLESHEET
   Design tokens, typography, layout, components.
   ================================================================ */

/* --- Brandon Text (self-hosted, drop .woff2 files in /assets/fonts/brandon/) --- */
@font-face {
  font-family: 'Brandon Text';
  src: url('/assets/fonts/brandon/brandon-text-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brandon Text';
  src: url('/assets/fonts/brandon/brandon-text-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brandon Text';
  src: url('/assets/fonts/brandon/brandon-text-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brandon Text';
  src: url('/assets/fonts/brandon/brandon-text-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================
   Tokens
   ========================================================== */
:root {
  /* Brand colors — from logo + off-white background */
  --green-dark:   #1d3a26;
  --green-deep:   #13281a;
  --green-sage:   #c6d4a4;
  --green-sage-soft: #dde5c3;
  --green-sage-pale: #ecf0dc;
  --cream:        #faf7f0;
  --cream-warm:   #f3ede0;
  --ink:          #1a1a1a;
  --ink-soft:     #4a4a4a;
  --ink-mute:     #7a7a7a;
  --line:         #e6e0d0;
  --white:        #ffffff;

  /* Typography */
  --font-title: 'Brandon Text', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --r-xs: 6px;  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 40px;

  /* Layout */
  --container:   1280px;
  --gap:         32px;
  --section-py:  110px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr { border: 0; height: 1px; background: var(--line); margin: 40px 0; }
::selection { background: var(--green-dark); color: var(--cream); }

/* ==========================================================
   Typography — Brandon Text for titles, Montserrat for body
   Style matches the "EVERY JOURNEY STARTS WITH A FEELING" screen.
   ========================================================== */
h1, h2, h3, h4, h5, h6, .heading {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 .6em;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.15;
}
h1, .h1 { font-size: clamp(36px, 6vw, 68px); letter-spacing: .08em; font-weight: 700; }
h2, .h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: .08em; }
h3, .h3 { font-size: clamp(20px, 1.8vw, 26px); letter-spacing: .10em; }
h4, .h4 { font-size: 16px; letter-spacing: .14em; }
h5       { font-size: 13px; letter-spacing: .18em; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
.eyebrow i {
  font-size: 13px;
  color: var(--green-sage);
  flex-shrink: 0;
}
.section-dark .eyebrow i { color: var(--green-sage); }

.section-title { margin-top: 0; }
.section-lead { font-size: 17px; color: var(--ink-soft); max-width: 640px; }

/* ==========================================================
   Layout
   ========================================================== */
.container { width: 100%; max-width: var(--container); padding: 0 28px; margin: 0 auto; }
.section   { padding: var(--section-py) 0; position: relative; }
.section.tight { padding: 70px 0; }
/* "compact-40" modifier — section padding + inner split gap reduced ~40%.
   Used on Our Philosophy intro. Reduces the section's vertical footprint
   without touching content, design or image. */
.section--compact-40 { padding: calc(var(--section-py) * 0.6) 0; }
.section--compact-40 .split,
.section--compact-40 .split--with-cta { gap: 16px 48px; }
@media (max-width: 800px) {
  .section--compact-40 { padding: 42px 0; }
}
.section-dark { background: var(--green-deep); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark .eyebrow { color: var(--green-sage); }
.section-sage { background: var(--green-sage-pale); }
.section-cream { background: var(--cream-warm); }

.section-header { margin-bottom: 56px; max-width: 740px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================
   Header / nav — full responsive, FA icons on every item,
   signature "Plan Your Dream" button.
   ========================================================== */
:root { --header-h: 92px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
/* Transparent only on pages that explicitly set $header_transparent = true
   (currently: homepage). Everything else uses the default cream bar. */
.site-header.is-transparent {
  position: fixed; left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-transparent.is-scrolled {
  background: var(--cream);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(19, 40, 26, 0.06);
}
/* Cream text on transparent header (over dark hero) */
.site-header.is-transparent:not(.is-scrolled) .brand,
.site-header.is-transparent:not(.is-scrolled) .nav-link,
.site-header.is-transparent:not(.is-scrolled) .nav-toggle { color: var(--cream); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 30px;
  position: relative;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-title);
  color: var(--green-dark);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  z-index: 3;
}
.brand-mark { display: inline-flex; color: currentColor; }
.brand-name span { color: var(--green-sage); margin-left: 4px; }

/* PNG logo — keeps aspect ratio */
.brand-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 80px;
  transition: max-height .3s var(--ease);
}
.site-header .brand-logo-img { max-height: 64px; }
.site-header.is-scrolled .brand-logo-img { max-height: 52px; }
/* Obsolete — footer now uses its own .brand-footer-img treatment */
.site-footer .brand-logo-img { max-height: 96px; }
.admin-sidebar .brand-logo-img { max-height: 64px; }
.brand-login .brand-logo-img { max-height: 150px; margin: 0 auto; }

/* === Desktop nav === */
.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--green-deep);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-link i:first-child {
  font-size: 13px;
  color: var(--green-sage);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.nav-link:hover i:first-child { transform: translateY(-1px); }
.nav-link .nav-chev {
  font-size: 9px;
  margin-left: 2px;
  color: inherit;
  opacity: 0.6;
  transition: transform .2s var(--ease);
}
.has-dropdown:hover .nav-chev { transform: rotate(180deg); }

/* Underline on hover / active (desktop only) */
.nav-link::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--green-sage);
  transform: scaleX(0); transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-transparent:not(.is-scrolled) .nav-link::after { background: var(--green-sage); }

/* === Dropdown === */
.has-dropdown { position: relative; }
/* Invisible hover bridge — prevents the dropdown from closing when the
   mouse crosses the visual gap between the nav trigger and the menu. */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 16px;
  pointer-events: auto;
  z-index: 0;
}
.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px;
  min-width: 320px;
  opacity: 0; pointer-events: none;
  transition: .22s var(--ease);
  box-shadow: 0 30px 60px rgba(19, 40, 26, 0.18);
  margin-top: 10px;
  z-index: 1;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* On mobile the dropdown becomes an inline accordion — disable the bridge */
@media (max-width: 820px) {
  .has-dropdown::after { display: none; }
}
.dropdown-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-title);
  text-transform: uppercase; letter-spacing: .22em;
  font-size: 10px;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.dropdown-eyebrow i { color: var(--green-sage); }
.dropdown-links { display: flex; flex-direction: column; gap: 2px; }
.dropdown-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .15s var(--ease);
}
.dropdown-link:hover {
  background: var(--green-sage-pale);
  color: var(--green-deep);
  padding-left: 14px;
}
.dropdown-link i { font-size: 10px; color: var(--green-sage); width: 12px; }
.dropdown-link--custom {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}
.dropdown-link--custom i { font-size: 13px; }

/* Day trip group in dropdown — secondary section with sun-warm accent */
.dropdown-eyebrow--day {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  border-bottom: none;
  padding-bottom: 0;
  color: var(--green-deep);
}
.dropdown-eyebrow--day i { color: #f5b400; }
.dropdown-link--day i { color: #f5b400; }

/* =======================================================
   "PLAN YOUR DREAM" — signature button
   Rotating compass + shine sweep + arrow reveal on hover
   ======================================================= */
.btn-plan {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, #1d3a26 0%, #13281a 55%, #1d3a26 100%);
  background-size: 220% 220%;
  background-position: 0% 0%;
  border: 1px solid rgba(198, 212, 164, 0.3);
  overflow: hidden;
  transition:
    background-position 0.6s cubic-bezier(.25,.8,.25,1),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  isolation: isolate;
}
.btn-plan::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(198, 212, 164, 0.5), transparent);
  transition: left 0.7s cubic-bezier(.25,.8,.25,1);
  pointer-events: none;
}
.btn-plan:hover::before { left: 120%; }
.btn-plan:hover {
  background-position: 100% 100%;
  transform: translateY(-1px);
  border-color: rgba(198, 212, 164, 0.55);
  box-shadow:
    0 10px 24px rgba(19, 40, 26, 0.3),
    0 0 40px rgba(198, 212, 164, 0.2);
}

/* Compass icon — always rotating slowly as signature motif */
.btn-plan-ring {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border: 1px solid rgba(198, 212, 164, 0.4);
  border-radius: 50%;
  color: var(--green-sage);
  animation: btn-plan-spin 14s linear infinite;
  transition: all .35s var(--ease);
  flex-shrink: 0;
}
.btn-plan-ring i {
  font-size: 10px;
  color: inherit;
  animation: btn-plan-spin-inner 14s linear infinite reverse; /* keeps icon upright */
}
@keyframes btn-plan-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes btn-plan-spin-inner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.btn-plan:hover .btn-plan-ring {
  animation-duration: 2.5s;
  border-color: var(--green-sage);
  background: rgba(198, 212, 164, 0.12);
}
.btn-plan:hover .btn-plan-ring i { animation-duration: 2.5s; }

.btn-plan-text {
  position: relative; z-index: 1;
  transition: letter-spacing .3s var(--ease);
}
.btn-plan:hover .btn-plan-text { letter-spacing: .22em; }

/* Arrow appears on hover */
.btn-plan-arrow {
  display: inline-flex;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width .35s var(--ease), opacity .25s var(--ease) .05s;
}
.btn-plan-arrow i {
  font-size: 12px;
  color: var(--green-sage);
  padding-left: 4px;
}
.btn-plan:hover .btn-plan-arrow { width: 20px; opacity: 1; }

/* === Hamburger (mobile only) === */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  color: var(--green-deep);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  transition: .25s var(--ease);
  border-radius: 1px;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav close button (hidden on desktop) */
.nav-close {
  display: none;
  position: absolute;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--green-deep);
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.nav-backdrop { display: none; }

/* ===== RESPONSIVE — full-screen overlay mobile menu ===== */
@media (max-width: 1020px) {
  :root { --header-h: 80px; }
  .site-header .brand-logo-img { max-height: 56px; }
  .site-header.is-scrolled .brand-logo-img { max-height: 48px; }
  .nav-link { font-size: 11px; padding: 10px 10px; gap: 6px; letter-spacing: .1em; }
  .nav-link span { display: none; } /* show only icons on tablet-wide */
  .nav-link i:first-child { font-size: 16px; }
  .nav-link::after { display: none; }
  .btn-plan { padding: 11px 16px 11px 12px; font-size: 10px; letter-spacing: .16em; }
  .btn-plan-text { white-space: nowrap; }
  .has-dropdown .dropdown { min-width: 260px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.65,0,.35,1);
    z-index: 80;
    overflow-y: auto;
  }
  body.nav-open .site-nav { transform: translateX(0); }

  .nav-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(10, 25, 16, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 70;
  }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .nav-close { display: inline-flex; }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-list > li:last-child { border-bottom: 0; }
  .nav-link {
    width: 100%;
    padding: 20px 6px;
    font-size: 15px;
    letter-spacing: .14em;
    gap: 16px;
    color: var(--green-deep);
  }
  .nav-link span { display: inline !important; flex: 1; }
  .nav-link i:first-child {
    font-size: 17px;
    width: 24px;
    text-align: center;
    color: var(--green-sage);
  }
  .nav-link .nav-chev { margin-left: auto; opacity: 0.5; font-size: 11px; }
  .has-dropdown.is-open .nav-chev { transform: rotate(180deg); }

  /* Dropdown becomes inline on mobile */
  .has-dropdown .dropdown {
    position: static;
    transform: none !important;
    opacity: 1; pointer-events: auto;
    border: 0;
    box-shadow: none;
    padding: 6px 0 16px;
    background: transparent;
    margin: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .has-dropdown.is-open .dropdown { max-height: 600px; }
  .dropdown-eyebrow { padding-bottom: 8px; margin-bottom: 10px; }
  .dropdown-link { padding: 10px 14px; font-size: 14px; }
  .dropdown-link:hover { padding-left: 14px; }

  /* Plan Your Dream button — full-width, padded, distinctive on mobile */
  .nav-list .nav-cta {
    margin-top: 26px;
    padding-top: 0;
    border-bottom: 0 !important;
  }
  .btn-plan {
    width: 100%;
    justify-content: center;
    padding: 18px 22px;
    font-size: 13px;
    letter-spacing: .22em;
  }
  .btn-plan-ring { width: 30px; height: 30px; }
  .btn-plan-ring i { font-size: 12px; }
  .btn-plan-arrow { width: 20px; opacity: 1; }

  /* Transparent header doesn't stick on mobile drawer */
  .site-header.is-transparent:not(.is-scrolled) .nav-link,
  body.nav-open .site-header .nav-link { color: var(--green-deep); }
  body.nav-open .site-header { background: var(--cream); border-bottom-color: var(--line); }
  body.nav-open .site-header .brand { color: var(--green-dark); }
  body.nav-open .site-header .nav-toggle { color: var(--green-deep); }

  /* Body scroll lock when menu open */
  body.nav-open { overflow: hidden; }
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-title);
  font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 11px 20px; font-size: 11px; letter-spacing: .16em; }
.btn-primary { background: var(--green-dark); color: var(--cream); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--green-dark); color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--cream); }
.btn-ghost-light { background: transparent; border: 1px solid rgba(255,255,255,.6); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sage { background: var(--green-sage); color: var(--green-deep); }
.btn-sage:hover { background: var(--green-sage-soft); }
.btn i { font-size: .9em; flex-shrink: 0; }

/* ==========================================================
   Hero — full-bleed 16:9 background video with dark overlay
   ========================================================== */
.hero {
  position: relative;
  /* Full-screen on every browser, every device:
     - 100vh  = fallback (older browsers)
     - 100svh = smallest viewport (never overflows under mobile UI bars)
     - 100dvh = dynamic viewport (modern browsers, perfect fit) */
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 110px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep); /* fallback before video loads */
}

/* Hero slideshow — 5 slides, crossfade cycle, CSS only (no JS needed) */
.hero-slides {
  position: absolute; inset: 0;
  z-index: 0;
  background: var(--green-deep); /* base color before any slide loads */
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  /* 5 slides * 6s each = 30s total cycle */
  animation: heroSlideCycle 30s infinite;
  will-change: opacity;
}
@keyframes heroSlideCycle {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  20%  { opacity: 1; }
  23%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
}

/* Dark gradient overlay — keeps text legible on any greenery video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,25,16,0.35) 0%, rgba(10,25,16,0.45) 55%, rgba(10,25,16,0.88) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(10,25,16,0) 0%, rgba(10,25,16,0.25) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 11px;
  color: var(--green-sage);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow i {
  font-size: 13px;
  color: var(--green-sage);
}

.hero-title {
  font-size: clamp(40px, 6.2vw, 86px);
  letter-spacing: .06em;
  color: var(--cream);
  max-width: 18ch;
  line-height: 1.06;
  margin: 0 0 26px;
  font-weight: 700;
  text-shadow: 0 2px 40px rgba(10, 25, 16, 0.4);
}
.hero-sub {
  font-size: clamp(16px, 1.25vw, 20px);
  max-width: 60ch;
  color: rgba(250, 247, 240, 0.88);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 38px;
  text-shadow: 0 1px 20px rgba(10, 25, 16, 0.4);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll cue — cream on dark video */
.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 120px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.68);
  font-weight: 700;
  transition: color 0.3s ease;
}
.hero-scroll-cue i {
  font-size: 18px;
  color: var(--green-sage);
  animation: hero-scroll-bob 2.2s ease-in-out infinite;
}
@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(8px); opacity: 1; }
}
.hero-scroll-cue:hover { color: var(--cream); }

/* Bottom stats strip — dark translucent over video */
.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(198, 212, 164, 0.22);
  background: rgba(10, 25, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-meta-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; max-width: var(--container); margin: 0 auto;
  gap: 30px; flex-wrap: wrap;
}
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.75);
}
.hero-stat strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-title);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 2px;
}
.hero-since {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  color: var(--green-sage);
}

/* ===== Responsive — hero stays 100dvh, CTAs stack clean inside ===== */
@media (max-width: 900px) {
  .hero { padding: 100px 0 130px; }
  .hero-scroll-cue { display: none; }

  /* Compact text spacing so CTAs fit comfortably above the meta band */
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-title { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 24px; }

  /* CTA stack — column, equal width, both clearly visible */
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    flex: none;
    justify-content: center;
    padding: 14px 22px;
    font-size: 12px;
  }

  /* Meta band — single horizontal row, compact */
  .hero-meta-inner {
    padding: 12px 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
  }
  .hero-stats { gap: 8px 18px; font-size: 11px; flex: 1 1 auto; }
  .hero-stat { font-size: 11px; }
  .hero-stat strong { font-size: 12px; margin-bottom: 1px; }
  .hero-since { font-size: 10px; flex-shrink: 0; }
}

@media (max-width: 700px) {
  .hero { padding: 90px 0 140px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 11.5px; }
  .hero-meta-inner { padding: 10px 16px; gap: 6px 14px; }
  .hero-stats { gap: 6px 14px; font-size: 10.5px; }
  .hero-stat strong { font-size: 11px; }
}

/* Very short viewports (landscape phones) */
@media (max-height: 650px) and (max-width: 900px) {
  .hero { padding-top: 90px; }
  .hero-title { font-size: clamp(28px, 5vw, 48px); margin-bottom: 14px; }
  .hero-sub { margin-bottom: 18px; }
  .hero-eyebrow { margin-bottom: 14px; }
}

/* Simpler hero for inner pages */
.page-hero {
  padding: 180px 0 90px; position: relative; overflow: hidden;
  background: var(--green-deep); color: var(--cream);
  text-align: center;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,40,26,.55), rgba(19,40,26,.75)); z-index: 1;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(198,212,164,.2), transparent 60%), linear-gradient(180deg, #13281a, #1d3a26);
}
.page-hero h1 { color: var(--cream); letter-spacing: .1em; }
.page-hero p { max-width: 640px; margin: 0 auto; color: rgba(250,247,240,.8); font-weight: 300; }
.page-hero .eyebrow { color: var(--green-sage); }
.page-hero.is-compact { padding: 130px 0 56px; }
.page-hero.is-compact h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 8px; }
.page-hero.is-compact p { font-size: 15px; }
.page-hero.is-mini { padding: 110px 0 40px; }
.page-hero.is-mini h1 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 0; letter-spacing: .12em; }
.page-hero.is-mini .eyebrow { font-size: 11px; }
@media (max-width: 820px) {
  .page-hero.is-compact { padding: 110px 0 44px; }
  .page-hero.is-mini { padding: 96px 0 32px; }
  .page-hero.is-mini h1 { font-size: 22px; }
}

/* ==========================================================
   Tripadvisor — compact editorial band
   Signature gradient sand→sage + Moroccan pentagram + Atlas
   silhouette. Single centered column. No reviews.
   ========================================================== */
.ta-compact {
  position: relative;
  padding: 56px 0 48px;
  color: var(--green-deep);
  overflow: hidden;
  isolation: isolate;
}
.ta-compact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
    #ffffff 0%, #fbf9f1 22%, #f1f1de 48%, #dde5c3 78%, #c6d4a4 100%);
  z-index: -2;
}
.ta-compact .ta-morocco-star {
  position: absolute;
  top: -28px; right: -36px;
  width: 200px; height: 200px;
  color: rgba(193, 39, 45, 0.16);
  z-index: -1;
  pointer-events: none;
}
.ta-compact .ta-mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 110px;
  z-index: -1;
  pointer-events: none;
}
.ta-compact-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cobrand logos floating frame */
.ta-cobrand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 22px;
  border: 1px solid rgba(29, 58, 38, 0.08);
  box-shadow: 0 12px 30px -16px rgba(19, 40, 26, .14);
  margin-bottom: 26px;
}
.ta-cobrand-logo { display: block; width: auto; object-fit: contain; }
.ta-cobrand-logo--atlas { height: 46px; }
.ta-cobrand-logo--ta    { height: 36px; }
.ta-cobrand-sep {
  display: inline-block;
  width: 1px; height: 32px;
  background: rgba(29, 58, 38, 0.18);
}

/* Stars row */
.ta-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 18px;
  color: #f5b400;
  line-height: 1;
}
.ta-star { display: inline-block; }
.ta-rating-num {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(29, 58, 38, 0.22);
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}

/* Hero number "+1,300" */
.ta-number {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font-title);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 800;
}
.ta-n-plus {
  font-size: 0.46em;
  margin-right: 4px;
  font-weight: 600;
  color: var(--green-dark);
  align-self: flex-start;
  margin-top: 0.18em;
}
.ta-n-digits {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Caption under number */
.ta-n-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ta-n-line {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--green-dark);
}

/* CTA link */
.ta-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  padding-bottom: 4px;
  position: relative;
}
.ta-cta-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--green-deep);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.ta-cta-link:hover { color: var(--green-dark); }
.ta-cta-link:hover::after { transform: scaleX(0); transform-origin: left; }
.ta-cta-link:hover i { transform: translateX(6px); }
.ta-cta-link i { transition: transform .25s var(--ease); }

@media (max-width: 820px) {
  .ta-compact { padding: 44px 0 40px; }
  .ta-compact .ta-morocco-star { width: 150px; height: 150px; top: -22px; right: -30px; }
  .ta-compact .ta-mountains { height: 80px; }
  .ta-cobrand { gap: 14px; padding: 12px 18px; margin-bottom: 22px; }
  .ta-cobrand-logo--atlas { height: 40px; }
  .ta-cobrand-logo--ta    { height: 32px; }
  .ta-stars-row { font-size: 16px; margin-bottom: 12px; }
  .ta-rating-num { font-size: 11px; }
  .ta-n-caption { font-size: 10px; gap: 10px; margin-bottom: 20px; }
  .ta-cta-link { font-size: 10.5px; }
}
@media (max-width: 480px) {
  .ta-compact { padding: 38px 0 34px; }
  .ta-cobrand { gap: 10px; padding: 10px 14px; margin-bottom: 18px; }
  .ta-cobrand-logo--atlas { height: 34px; }
  .ta-cobrand-logo--ta    { height: 28px; }
  .ta-cobrand-sep { height: 26px; }
  .ta-n-caption { font-size: 9.5px; letter-spacing: 0.14em; }
  .ta-n-line { width: 18px; }
}

/* ==========================================================
   Cards — Dreams
   ========================================================== */
.dream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
}

/* Homepage variant — single row horizontal scroll with controls */
.dreams-scroller { position: relative; width: 100%; }
.dream-grid--scroll {
  display: flex;
  flex-direction: row;
  grid-template-columns: none;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-snap-stop: normal;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  padding: 10px 2px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  outline: none;
  border: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
}
.dream-grid--scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.dream-grid--scroll.is-dragging { user-select: none; }
.dream-grid--scroll::-webkit-scrollbar { display: none; }
.dream-grid--scroll:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 4px;
}
.dream-grid--scroll > .dream-card {
  flex: 0 0 340px;
  max-width: 94vw;
  scroll-snap-align: start;
}

.dreams-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 0 2px;
}
.dreams-btn {
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(29, 58, 38, 0.18);
  color: var(--green-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
  font-family: inherit;
}
.dreams-btn i { font-size: 12px; }
.dreams-btn:hover:not(:disabled) {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.dreams-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.dreams-track {
  flex: 1;
  height: 2px;
  background: rgba(29, 58, 38, 0.14);
  position: relative;
  overflow: hidden;
}
.dreams-progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 20%;
  background: var(--green-dark);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}

@media (max-width: 1100px) {
  .dream-grid--scroll { gap: 20px; }
}
@media (max-width: 700px) {
  .dream-grid--scroll > .dream-card { flex: 0 0 84vw; max-width: 360px; }
  .dream-grid--scroll { gap: 16px; padding-bottom: 18px; cursor: auto; }
  .dreams-controls { margin-top: 16px; gap: 0; justify-content: center; }
  .dreams-btn { display: none; }
  .dreams-track { max-width: 60%; height: 3px; }
}
.dream-card {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  outline: 0;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .35s var(--ease);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 40px -18px rgba(19, 40, 26, 0.18);
}
.dream-card:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 3px;
}
.dream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px -18px rgba(19, 40, 26, 0.26);
}
.dream-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--green-sage-pale);
}
.dream-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dream-card:hover .dream-card-img img { transform: scale(1.05); }
.dream-card-duration {
  position: absolute; top: 18px; left: 18px;
  background: var(--cream); color: var(--green-deep);
  padding: 7px 14px;
  font-family: var(--font-title);
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.dream-card-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--green-dark); color: var(--cream);
  padding: 6px 12px;
  font-family: var(--font-title); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}

/* Day Trip variant — distinct sun-warm color, draws the eye */
.dream-card-duration--day {
  background: var(--green-deep); color: var(--cream);
  padding-left: 26px;
  position: absolute; top: 18px; left: 18px;
}
.dream-card-duration--day::before {
  content: ""; position: absolute; left: 12px; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #f5b400; transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(245, 180, 0, 0.65);
}
.dream-card-badge--day {
  background: #f5b400; color: var(--green-deep);
  letter-spacing: .18em; font-size: 9.5px;
}
.dream-card--day-trip { position: relative; }
.dream-card--day-trip::before {
  content: ""; position: absolute; inset: 0;
  border: 1.5px solid #f5b400;
  pointer-events: none; z-index: 2;
  transition: border-color .25s var(--ease);
}
.dream-card--day-trip:hover::before { border-color: var(--green-dark); }
.dream-card-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dream-card-region {
  font-family: var(--font-title);
  text-transform: uppercase; letter-spacing: .18em; font-size: 10px;
  color: var(--green-dark); font-weight: 700;
}
.dream-card-title { margin: 4px 0 8px; color: var(--green-deep); font-size: 20px; letter-spacing: .08em; }
.dream-card-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.dream-card-foot {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.dream-card-price {
  font-family: var(--font-title);
  font-size: 15px; font-weight: 700; color: var(--green-deep);
  letter-spacing: .04em;
}
.dream-card-price small { font-weight: 400; font-size: 10px; color: var(--ink-mute); letter-spacing: .18em; text-transform: uppercase; display: block; }
.dream-card-cta { color: var(--green-dark); font-family: var(--font-title); font-weight: 700; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.dream-card-cta i { transition: transform .2s var(--ease); margin-left: 4px; }
.dream-card:hover .dream-card-cta i { transform: translateX(4px); }

/* ==========================================================
   Category grid
   ========================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: all .25s var(--ease);
  color: var(--ink); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--green-sage); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.cat-card:hover { border-color: var(--green-sage); transform: translateY(-3px); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-icon {
  width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-sage-pale); color: var(--green-dark);
  font-size: 22px;
}
.cat-card h3 { font-size: 18px; margin: 0; color: var(--green-deep); }
.cat-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.cat-card .cat-link {
  margin-top: auto; padding-top: 8px;
  font-family: var(--font-title); font-weight: 700;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 8px;
}
.cat-card:hover .cat-link i { transform: translateX(4px); }
.cat-card .cat-link i { transition: transform .2s var(--ease); }

/* ==========================================================
   Value props
   ========================================================== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px;
}
.value {
  text-align: left;
}
.value-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-dark); color: var(--green-sage);
  font-size: 20px;
  margin-bottom: 18px;
}
.value h4 { font-size: 13px; margin-bottom: 10px; color: var(--green-deep); letter-spacing: .16em; }
.value p { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================
   Story / split content
   ========================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split.flip .split-text { order: 2; }
.split-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ".split--with-cta" — adds a 3rd child (.split-cta) that stays under
   the text column on desktop and jumps AFTER the image on mobile. */
.split--with-cta {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 26px 80px;
  align-items: start;
}
.split--with-cta > .split-text   { grid-column: 1; grid-row: 1; align-self: center; }
.split--with-cta > .split-visual { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.split--with-cta > .split-cta    { grid-column: 1; grid-row: 2; }
.split-text p { font-size: 16px; color: var(--ink-soft); }
.split-highlight {
  border-left: 3px solid var(--green-sage);
  padding: 6px 0 6px 20px;
  font-family: var(--font-title);
  font-size: 15px; letter-spacing: .1em;
  color: var(--green-deep); margin: 24px 0;
}

/* "Our Philosophy" image — luminous sage glow + raised relief */
.split-visual--landscape .intro-img,
.split-visual--landscape img { aspect-ratio: 3/2 !important; }
.split-visual .intro-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow:
    /* Fine sage ring — defines the edge */
    0 0 0 1px rgba(198, 212, 164, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    /* Raised drop shadows (relief) */
    0 40px 80px -20px rgba(19, 40, 26, 0.3),
    0 20px 40px -12px rgba(19, 40, 26, 0.22),
    0 8px 20px -8px rgba(19, 40, 26, 0.18),
    /* Luminous sage halos (near + far) */
    0 0 40px -5px rgba(198, 212, 164, 0.55),
    0 0 90px -10px rgba(198, 212, 164, 0.65),
    0 0 160px -30px rgba(198, 212, 164, 0.5);
  transition:
    transform 0.5s cubic-bezier(.25,.8,.25,1),
    box-shadow 0.5s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}
.split-visual .intro-img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(198, 212, 164, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 55px 100px -20px rgba(19, 40, 26, 0.38),
    0 28px 55px -12px rgba(19, 40, 26, 0.28),
    0 10px 25px -8px rgba(19, 40, 26, 0.22),
    0 0 55px -5px rgba(198, 212, 164, 0.75),
    0 0 120px -10px rgba(198, 212, 164, 0.8),
    0 0 200px -30px rgba(198, 212, 164, 0.6);
}

/* ==========================================================
   Morocco / Marrakech — light theme, white → sage gradient,
   same mindset as the Tripadvisor section.
   ========================================================== */
.morocco-scene {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  color: var(--green-deep);
  isolation: isolate;
  background:
    linear-gradient(108deg,
      #ffffff 0%,
      #fbf9f1 22%,
      #f1f1de 48%,
      #dde5c3 78%,
      #c6d4a4 100%);
}
.morocco-scene::before {
  /* Warm sheen top-left + sage glow bottom-right for depth */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 5% 0%, rgba(255, 255, 255, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 100% 100%, rgba(198, 212, 164, 0.5) 0%, transparent 60%);
}

/* Visual column — compact square, companion to the title */
.morocco-scene-visual {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  justify-self: end;
}
.morocco-scene-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  display: block;
}

/* Static SVG fallback — shown until Three.js boots */
.morocco-scene-fallback {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  aspect-ratio: 1;
  color: rgba(29, 58, 38, 0.18);
  z-index: 1;
  pointer-events: none;
  animation: morocco-fallback-spin 60s linear infinite;
}
@keyframes morocco-fallback-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Hide fallback once the WebGL scene is running */
body.morocco-scene-live .morocco-scene-fallback { opacity: 0; transition: opacity 0.6s ease; }

/* Section inner wrapper — block flow, each row has its own layout */
.morocco-scene .container { position: relative; z-index: 3; }

/* ========== Row 1 — header: title (left) + compact star (right) ========== */
.morocco-scene-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.morocco-scene-head-text { max-width: 640px; }

.morocco-scene h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  color: var(--green-deep);
  line-height: 1.08;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.morocco-scene h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: .02em;
  display: block;
  font-size: 0.78em;
  margin-top: 4px;
  opacity: 0.8;
}

.morocco-scene .eyebrow { color: var(--green-dark); }
.morocco-scene .eyebrow i { color: var(--green-sage); }
.morocco-scene .eyebrow::before { background: var(--green-dark); opacity: 0.5; }

/* ========== 4 region cards in a horizontal grid ========== */
.morocco-scene-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-top: 12px;
}
/* 7-card editorial layout: 4 cards on row 1 (3-col span each) + 3 cards on row 2 (4-col span each). */
.morocco-scene-cards .mo-card { grid-column: span 3; }
.morocco-scene-cards .mo-card:nth-child(n+5) { grid-column: span 4; }
.mo-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-out), background 0.25s var(--ease);
}
.mo-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-sage-pale);
}
.mo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mo-card:hover .mo-card-img img { transform: scale(1.05); }
.mo-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
}
.mo-card-body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green-sage);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform 0.35s var(--ease);
}
.mo-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.75);
}
.mo-card:hover .mo-card-body::before { transform: scaleX(1); }

.mo-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.mo-card-kicker i { font-size: 11px; color: var(--green-sage); }
.mo-card-title {
  display: block;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--green-deep);
  margin: 4px 0 8px;
  line-height: 1.45;
}
.mo-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.mo-card-tags {
  list-style: none;
  margin: 8px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(29, 58, 38, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mo-card-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.mo-card-tags li i {
  font-size: 5px;
  color: var(--green-sage);
  flex-shrink: 0;
}

/* ===== Responsive — editorial flow collapses gracefully =====
   - ≥1100 : head 1fr/280 | cards 4-col
   - 1100  : cards 2-col
   - 1020  : head stacks (text over star)
   - 700   : cards 1-col | compact spacing
   - 420   : max compression */
@media (max-width: 1100px) {
  .morocco-scene-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .morocco-scene-cards .mo-card,
  .morocco-scene-cards .mo-card:nth-child(n+5) { grid-column: auto; }
}
@media (max-width: 1020px) {
  .morocco-scene { padding: 70px 0 60px; }
  .morocco-scene-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 40px;
  }
  .morocco-scene-head-text { text-align: left; max-width: none; }
  .morocco-scene-visual { margin: 0 auto; max-width: 200px; justify-self: center; }
  .morocco-scene h2 { font-size: clamp(30px, 5.2vw, 48px); }
}
@media (max-width: 900px) {
  .morocco-scene { padding: 60px 0 50px; }
  .morocco-scene-visual { max-width: 170px; }
}
@media (max-width: 700px) {
  .morocco-scene { padding: 56px 0 48px; }
  .morocco-scene-visual { max-width: 150px; }
  .morocco-scene h2 { font-size: clamp(26px, 7vw, 38px); margin-bottom: 14px; }
  .morocco-scene h2 em { font-size: 0.72em; }
  .morocco-scene-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
  }
  .mo-card-body { padding: 18px 16px; }
  .mo-card-body::before { transform: scaleX(1); }
  .mo-card-title { font-size: 14px; }
  .mo-card p { font-size: 13.5px; }
}
@media (max-width: 420px) {
  .morocco-scene { padding: 48px 0 44px; }
  .morocco-scene-visual { max-width: 130px; }
  .morocco-scene-head { gap: 20px; margin-bottom: 32px; }
}

/* ==========================================================
   Testimonials
   ========================================================== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; }
.testimonial {
  background: var(--white); border: 1px solid var(--line);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-stars { color: var(--green-sage); letter-spacing: 3px; font-size: 14px; }
.testimonial-quote { font-size: 15px; color: var(--ink); line-height: 1.8; font-style: italic; }
.testimonial-author { font-family: var(--font-title); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; color: var(--green-deep); }
.testimonial-author small { display: block; font-weight: 400; color: var(--ink-mute); font-size: 10px; letter-spacing: .2em; margin-top: 3px; }

/* ==========================================================
   Forms
   ========================================================== */
.form { display: grid; gap: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end; /* inputs align horizontally even if a label wraps to 2 lines */
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.5;
  min-height: 17px; /* reserve one line so single-line labels hold their baseline */
}
.form input, .form textarea, .form select {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--ease);
  width: 100%;
  font-family: var(--font-body);
  border-radius: 0;
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231d3a26' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 38px;
  cursor: pointer;
}
.form select::-ms-expand { display: none; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--green-dark); }
.form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-note { font-size: 12px; color: var(--ink-mute); }

.flash {
  padding: 14px 18px;
  border: 1px solid var(--line);
  font-size: 14px;
  margin-bottom: 18px;
}
.flash-success { border-color: #7aa66d; background: #eef3e3; color: #2f5523; }
.flash-error   { border-color: #c16868; background: #f8e6e6; color: #7a2020; }
.flash-info    { border-color: #a2b4c4; background: #eaf0f5; color: #2a425c; }

/* Inputs with leading FA icon (premium form pattern) */
.finput { position: relative; display: block; }
.finput-ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--green-dark);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
  transition: color .25s ease;
}
.finput input,
.finput select,
.finput textarea {
  padding-left: 42px !important;
  width: 100%;
}
.finput select { padding-right: 36px; }
.finput--textarea .finput-ic {
  top: 18px;
  transform: none;
  height: 16px;
}
.finput--textarea textarea {
  padding-top: 14px !important;
}
.finput:focus-within .finput-ic { color: var(--green-deep); }

.dream-form-footer {
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.dream-form-footer .form-note { margin: 0; }

/* Phone combo — country code select + number input as one unified group */
.phone-combo {
  display: flex;
  align-items: stretch;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  transition: border-color .15s var(--ease);
  overflow: hidden;
}
.phone-combo:focus-within {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(29,58,38,0.08);
}
.phone-combo-code {
  flex: 0 0 auto;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  background: var(--green-sage-pale);
  padding: 14px 34px 14px 14px !important;
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--green-deep);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%231d3a26' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.phone-combo-number {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
  padding: 14px 16px !important;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: transparent;
}
@media (max-width: 480px) {
  .phone-combo-code { max-width: 100px; font-size: 11.5px; padding: 14px 28px 14px 10px !important; }
  .phone-combo-number { padding: 14px 12px !important; font-size: 14px; }
}

/* Email suggest — dropdown when user types @ with common email domains */
.email-suggest-wrap { position: relative; }
.email-suggest-dd {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px -14px rgba(19,40,26,0.22);
  z-index: 40;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.email-suggest-dd.is-open { display: block; }
.email-suggest-item {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background .15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.email-suggest-item:last-child { border-bottom: 0; }
.email-suggest-item:hover,
.email-suggest-item.is-active { background: var(--green-sage-pale); }
.email-suggest-item strong { color: var(--green-deep); font-weight: 600; }
.email-suggest-item .es-at { color: var(--ink-mute); }

/* Compact choice-card (allergies) — smaller padding, horizontal layout */
.choice-card--compact {
  padding: 12px 12px !important;
  min-height: 66px;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
}
.choice-card--compact .cc-icon {
  font-size: 17px !important;
  color: var(--green-dark);
  flex: 0 0 auto;
}
.choice-card--compact .cc-title {
  font-size: 11.5px !important;
  letter-spacing: .06em !important;
}
.choice-card--compact .cc-check {
  width: 18px !important; height: 18px !important;
  font-size: 9px !important;
  top: 8px !important; right: 8px !important;
}

/* ==========================================================
   Footer
   ========================================================== */
/* When the partners band is present the site-footer no longer needs its
   80px top margin — the band *is* the visual break. Kept as fallback. */
.site-footer { background: var(--green-deep); color: rgba(250,247,240,.78); padding: 80px 0 0; margin-top: 80px; }
body:has(.partners-band) .site-footer { margin-top: 0; }

/* ==========================================================
   Floating actions (bottom-right) — WhatsApp + scroll-up
   Minimalist, monochrome-ish so it fits the brand.
   ========================================================== */
.floating-actions {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.floating-actions .flb { pointer-events: auto; }

.flb {
  position: relative;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid rgba(198, 212, 164, 0.25);
  cursor: pointer;
  padding: 0;
  margin: 0;
  box-shadow:
    0 10px 24px -8px rgba(19, 40, 26, 0.35),
    0 4px 10px -3px rgba(19, 40, 26, 0.2);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease);
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.flb > svg,
.flb > i {
  grid-area: 1 / 1;
  display: block;
  margin: 0;
  padding: 0;
}
.flb i { font-size: 19px; line-height: 1; }
.flb-whatsapp { color: #34e0a1; }
.flb-whatsapp:hover { color: #4af0b3; }
.flb:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow:
    0 14px 30px -8px rgba(19, 40, 26, 0.45),
    0 6px 14px -3px rgba(19, 40, 26, 0.25);
}

/* Tooltip-style label on WhatsApp (appears on hover) */
.flb-label {
  position: absolute;
  right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 6px 16px -6px rgba(19, 40, 26, 0.35);
}
.flb-label::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--green-deep);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.flb:hover .flb-label,
.flb:focus-visible .flb-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Legacy FA icon color (kept as fallback if FA loads while page lives) */
.flb-whatsapp i { color: #34e0a1; }
.flb-whatsapp:hover i { color: #4af0b3; }

/* Scroll-to-top — hidden until the user has scrolled ~40% */
.flb-top {
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none !important;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.22s var(--ease);
}
body.is-scrolled-past .flb-top {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto !important;
}

@media (max-width: 600px) {
  .floating-actions { right: 16px; bottom: 16px; gap: 10px; }
  .flb { width: 48px; height: 48px; }
  .flb i { font-size: 17px; }
}

/* ===== Partners / press band =====
   Static (no slide), cream background, logos in full colour at all times.
   Padding is reduced so bigger logos fit without enlarging the band. */
.partners-band {
  /* Same white → sage gradient as the hero / philosophy / TA sections */
  background: linear-gradient(108deg,
    #ffffff 0%,
    #fbf9f1 22%,
    #f1f1de 48%,
    #dde5c3 78%,
    #c6d4a4 100%);
  padding: 14px 0;
  border-top: 1px solid rgba(29, 58, 38, 0.08);
  border-bottom: 1px solid rgba(29, 58, 38, 0.08);
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 48px;
  list-style: none;
  padding: 0; margin: 0;
  min-height: 52px;
}
.partners-list li { display: inline-flex; align-items: center; }
.partners-list img {
  display: block;
  max-height: 54px;
  max-width: 220px;
  width: auto;
  height: auto;
  transition: transform 0.2s var(--ease);
}
.partners-list a { display: inline-flex; align-items: center; }
.partners-list a:hover img,
.partners-list a:focus-visible img {
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .partners-band { padding: 12px 0; }
  .partners-list { gap: 12px 28px; min-height: 40px; }
  .partners-list img { max-height: 42px; max-width: 160px; }
}
.footer-top {
  display: grid; gap: 50px;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(198,212,164,.15);
}
.footer-brand .brand { color: var(--cream); font-size: 20px; }
.footer-brand .brand-name span { color: var(--green-sage); }

/* Imposing footer logo with sage luminous halo */
.brand-footer {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 20px;
  margin: -10px -20px 0;
  isolation: isolate;
}
.brand-footer-glow {
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(ellipse at center, rgba(198, 212, 164, 0.45) 0%, rgba(198, 212, 164, 0.2) 35%, transparent 70%);
  filter: blur(32px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
  animation: brand-footer-breathe 6s ease-in-out infinite alternate;
}
@keyframes brand-footer-breathe {
  from { opacity: 0.7; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1.04); }
}
.brand-footer-img {
  display: block;
  max-height: 140px;
  width: auto;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgba(198, 212, 164, 0.5))
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}
.brand-footer:hover .brand-footer-img {
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 34px rgba(198, 212, 164, 0.75))
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

@media (max-width: 820px) {
  .brand-footer-img { max-height: 110px; }
}
@media (max-width: 560px) {
  .brand-footer-img { max-height: 90px; }
}
.footer-note { font-size: 14px; max-width: 340px; margin: 22px 0; line-height: 1.7; color: rgba(250,247,240,.65); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(198,212,164,.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-sage);
  transition: all .2s var(--ease);
}
.socials a:hover { background: var(--green-sage); color: var(--green-deep); border-color: var(--green-sage); }
.footer-col h4 { color: var(--green-sage); font-size: 12px; letter-spacing: .22em; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--green-sage); }
.footer-col ul.plain li { display: flex; align-items: flex-start; gap: 10px; }
.footer-col ul.plain li i { color: var(--green-sage); width: 14px; margin-top: 5px; }

.footer-bottom { padding: 22px 0; font-size: 12px; letter-spacing: .06em; color: rgba(250,247,240,.5); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-credit {
  font-family: 'League Spartan', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 7.2px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(250,247,240,.55);
}
.footer-credit a {
  color: var(--green-sage);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s ease;
}
.footer-credit a:hover { color: var(--cream); }
.footer-credit .credit-domain {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(198,212,164,.7);
  text-transform: lowercase;
}
.footer-credit .credit-heart {
  color: var(--green-sage);
  font-size: 7.5px;
  display: inline-block;
  transform-origin: center;
  animation: creditHeartBeat 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(198,212,164,0.45));
}
@keyframes creditHeartBeat {
  0%, 28%, 70%, 100% { transform: scale(1); }
  14%               { transform: scale(1.25); }
  42%               { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-credit .credit-heart { animation: none; }
}

/* ==========================================================
   Reveal animations
   ========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: .08s; }
.reveal.d-2 { transition-delay: .16s; }
.reveal.d-3 { transition-delay: .24s; }
.reveal.d-4 { transition-delay: .32s; }

/* ==========================================================
   Dream single
   ========================================================== */
.dream-hero {
  position: relative; min-height: 80vh; padding: 180px 0 90px;
  color: var(--cream); overflow: hidden;
  background: var(--green-deep);
  display: flex; align-items: flex-end;
}
.dream-hero::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,40,26,.3) 0%, rgba(19,40,26,.85) 100%);
  z-index: 1;
}
.dream-hero > img, .dream-hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.dream-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.dream-hero h1 { color: var(--cream); margin-bottom: 18px; }
.dream-hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap; margin: 18px 0 30px;
  font-family: var(--font-title); letter-spacing: .18em; text-transform: uppercase;
  font-size: 11px; color: var(--green-sage);
}
.dream-hero-meta span i { margin-right: 8px; }
.dream-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; }
.dream-long { font-size: 16px; line-height: 1.9; color: var(--ink-soft); }
.dream-long p { margin-bottom: 1.3em; }
.dream-aside {
  background: var(--green-sage-pale); padding: 36px;
  position: sticky; top: 110px; align-self: start;
}
.dream-aside h3 { color: var(--green-deep); font-size: 14px; margin-bottom: 18px; }
.dream-aside .price {
  font-family: var(--font-title);
  font-size: 30px; letter-spacing: .04em;
  color: var(--green-deep); margin-bottom: 6px;
}
.dream-aside .price small { font-weight: 400; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-top: 4px; }
.dream-aside ul { margin-top: 18px; }
.dream-aside ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(19,40,26,.08);
  font-size: 13px; color: var(--ink);
}
.dream-aside ul li:last-child { border-bottom: 0; }
.dream-aside ul li strong { font-family: var(--font-title); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--green-dark); display: block; margin-bottom: 3px; }

/* ==========================================================
   About page components
   ========================================================== */
.about-nav {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 110px; z-index: 20;
}
.about-nav-inner {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  padding: 14px 0;
}
.about-nav a {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
  transition: color 0.2s var(--ease);
  padding: 4px 0;
  position: relative;
}
.about-nav a:hover { color: var(--green-deep); }
.about-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  height: 2px; width: 100%;
  background: var(--green-sage);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.about-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* How-steps */
.how-steps { list-style: none; padding: 0; margin: 18px 0 0; }
.how-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.how-steps li:first-child { border-top: 0; padding-top: 10px; }
.how-steps .how-step-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 26px;
  color: var(--green-sage);
  letter-spacing: 0.02em;
  line-height: 1;
}
.how-steps strong {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: block;
  margin-bottom: 6px;
}
.how-steps p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0;
}

/* Team cards */
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(19,40,26,.1); }
.team-card-img {
  aspect-ratio: 4/5; overflow: hidden;
  background: var(--green-sage-pale);
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 28px; }
.team-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.team-card-role {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--green-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.team-card-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin: 0; }

/* For Good cards */
.forgood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.forgood-card {
  background: rgba(198, 212, 164, 0.06);
  border: 1px solid rgba(198, 212, 164, 0.2);
  padding: 30px 26px;
  transition: all 0.25s var(--ease);
}
.forgood-card:hover {
  background: rgba(198, 212, 164, 0.1);
  border-color: rgba(198, 212, 164, 0.4);
  transform: translateY(-2px);
}
.forgood-card i {
  font-size: 24px; color: var(--green-sage);
  margin-bottom: 14px;
}
.forgood-card h4 {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.forgood-card p {
  font-size: 13.5px; line-height: 1.75;
  color: rgba(250, 247, 240, 0.72); margin: 0;
}

@media (max-width: 820px) {
  .about-nav { top: 0; }
  .about-nav-inner { gap: 22px; font-size: 10px; }
  .about-nav a { font-size: 10px; letter-spacing: 0.16em; }
  .how-steps li { grid-template-columns: 50px 1fr; gap: 12px; }
  .how-steps .how-step-num { font-size: 22px; }
}

/* ==========================================================
   Why Book With Us — 3-col image cards (About page)
   ========================================================== */
.wbu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.wbu-card {
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(19, 40, 26, 0.22);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.wbu-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px -22px rgba(19, 40, 26, 0.32),
    0 0 50px -10px rgba(198, 212, 164, 0.45);
}
.wbu-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
}
.wbu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.wbu-card:hover .wbu-card-img img { transform: scale(1.04); }
.wbu-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wbu-card-body h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.3;
}
.wbu-card-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.wbu-card-body em { font-style: italic; color: var(--green-dark); font-weight: 500; }

@media (max-width: 1100px) {
  .wbu-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 700px) {
  .wbu-grid { grid-template-columns: 1fr; gap: 18px; }
  .wbu-card-body { padding: 22px 20px 24px; }
}

/* ==========================================================
   Atlas Dream For Good — editorial section
   ========================================================== */
.fg-section { padding: 0 0 var(--section-py); background: var(--cream-warm); }

/* Hero band with full-bleed image + dark overlay + content */
.fg-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 70px;
}
.fg-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.fg-hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,18,12,0.45) 0%, rgba(8,18,12,0.62) 100%);
}
.fg-hero-content {
  text-align: center;
  color: var(--cream);
  padding: 80px 0;
  max-width: 760px;
}
.fg-hero-content .eyebrow {
  color: var(--green-sage);
  margin-bottom: 18px;
}
.fg-hero-content .eyebrow i { color: var(--green-sage); }
.fg-hero-content .eyebrow::before { background: var(--green-sage); opacity: 0.6; }
.fg-hero-content h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.fg-hero-content p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250, 247, 240, 0.88);
  margin: 0 auto;
  max-width: 640px;
}

/* Alternating image+text cards */
.fg-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.fg-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.fg-card--reverse .fg-card-img { order: 2; }
.fg-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow:
    0 0 0 1px rgba(29, 58, 38, 0.08),
    0 28px 60px -22px rgba(19, 40, 26, 0.28),
    0 0 60px -10px rgba(198, 212, 164, 0.4);
  transition: transform 0.4s var(--ease-out);
}
.fg-card-img:hover { transform: translateY(-4px); }
.fg-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.fg-card-img:hover img { transform: scale(1.04); }

.fg-card-body { display: flex; flex-direction: column; gap: 16px; }
.fg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.fg-kicker i { color: var(--green-sage); font-size: 12px; }
.fg-card-body h3 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.03em;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.25;
}
.fg-card-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

.fg-outro {
  margin-top: 70px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(29, 58, 38, 0.12);
  text-align: center;
}
.fg-outro p {
  margin: 0 auto;
  max-width: 680px;
  font-family: var(--font-title);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--green-deep);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 900px) {
  .fg-hero { min-height: 340px; margin-bottom: 50px; }
  .fg-hero-content { padding: 60px 0; }
  .fg-grid { gap: 56px; }
  .fg-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fg-card--reverse .fg-card-img { order: 0; }
  .fg-outro { margin-top: 50px; padding-top: 30px; }
}
@media (max-width: 600px) {
  .fg-hero { min-height: 280px; }
  .fg-hero-content { padding: 48px 0; }
  .fg-hero-content p { font-size: 14.5px; }
  .fg-card-body p { font-size: 14.5px; line-height: 1.8; }
}

/* ==========================================================
   Dream itinerary (day-by-day)
   ========================================================== */
.itinerary { display: flex; flex-direction: column; gap: 0; }
.iti-day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.iti-day:first-child { border-top: 0; }
.iti-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding-top: 6px;
  position: relative;
}
.iti-num::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--green-sage);
  border-radius: 50%;
}
.iti-content h4 {
  color: var(--green-deep);
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.iti-content p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .iti-day { grid-template-columns: 1fr; gap: 10px; }
  .iti-num::before { display: none; }
}

/* ==========================================================
   Utilities
   ========================================================== */
.text-center { text-align: center; }
.mt-xl { margin-top: var(--r-xl); }
.mb-xl { margin-bottom: var(--r-xl); }
.divider { height: 1px; background: var(--line); margin: 60px 0; }

/* ==========================================================
   Plan Your Dream — info, travel guide, choice cards
   ========================================================== */
.plan-intro { padding: 90px 0 30px; }
.plan-section { padding: 70px 0; }
.plan-section + .plan-section { padding-top: 0; }
.plan-section .section-eyebrow {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 28px;
}
.plan-section h2 {
  font-family: var(--font-title); text-transform: uppercase; letter-spacing: .08em;
  font-size: clamp(22px, 2.2vw, 30px); margin: 0 0 14px; color: var(--ink);
}
.plan-section .section-lead { margin-bottom: 36px; }

.info-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: #fff; padding: 28px 22px; border: 1px solid var(--line);
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(19,40,26,.18); }
.info-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--green-dark); color: var(--cream);
  font-family: var(--font-title); font-weight: 700; font-size: 14px;
  letter-spacing: .05em; margin-bottom: 14px;
}
.info-card .info-icon { font-size: 22px; color: var(--green-dark); margin-bottom: 14px; display: block; }
.info-card h3 {
  font-family: var(--font-title); text-transform: uppercase;
  font-size: 14px; letter-spacing: .08em; margin: 0 0 10px; color: var(--ink);
}
.info-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* Step × Promise merged card (process + commitment in one) */
.steps-promise-grid .step-promise-card {
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.steps-promise-grid .step-promise-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--green-sage);
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.steps-promise-grid .step-promise-card:hover::before { transform: scaleY(1); }
.steps-promise-grid .spc-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; margin-bottom: 8px;
}
.steps-promise-grid .step-promise-card .step-num { margin-bottom: 0; }
.steps-promise-grid .spc-promise {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-title);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep); font-weight: 700;
  padding: 7px 11px;
  background: var(--green-sage-pale);
  border-left: 2px solid var(--green-sage);
  white-space: nowrap;
}
.steps-promise-grid .spc-promise i { font-size: 11px; color: var(--green-dark); }
.steps-promise-grid .step-promise-card h3 { margin-top: 4px; }

/* ==========================================================
   Contact page — premium form card + responsive map embed
   ========================================================== */
.contact-grid { gap: 60px; align-items: stretch; }

.contact-info-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 16px;
  font-size: 15px; color: var(--ink);
}
.contact-info-list li {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list li i {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-sage-pale); color: var(--green-dark);
  font-size: 14px; flex: 0 0 36px;
}
.contact-info-list li a { color: var(--ink); text-decoration: none; }
.contact-info-list li a:hover { color: var(--green-dark); }

/* Form card with logo on top */
.contact-form-card {
  background: #fff;
  padding: 38px 36px 34px;
  box-shadow: 0 28px 60px -32px rgba(19,40,26,0.28);
  border-top: 3px solid var(--green-sage);
  position: relative;
}
.contact-form-card .cfc-logo {
  display: flex; justify-content: center;
  margin-bottom: 18px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-form-card .cfc-logo .brand-logo-img,
.contact-form-card .cfc-logo img { height: 64px; width: auto; }
.contact-form-card .cfc-intro {
  text-align: center; margin-bottom: 26px;
}
.contact-form-card .cfc-intro h3 {
  font-family: var(--font-title);
  text-transform: uppercase; letter-spacing: .1em;
  font-size: 15px; margin: 0 0 6px; color: var(--ink);
}
.contact-form-card .cfc-intro p {
  font-size: 13.5px; color: var(--ink-mute); margin: 0;
}

/* ==========================================================
   Dream page — sticky mobile CTA bar (price + actions)
   ========================================================== */
.dream-sticky-bar { display: none; }
@media (max-width: 1100px) {
  .dream-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    background: #fff;
    box-shadow: 0 -10px 28px -10px rgba(19,40,26,0.28);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 2px solid var(--green-sage);
  }
  .dsb-price { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
  .dsb-price strong {
    font-family: var(--font-title);
    font-size: 19px; color: var(--green-deep);
    letter-spacing: 0;
  }
  .dsb-price small {
    font-family: var(--font-title);
    font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-mute); margin-top: 2px;
  }
  .dsb-actions { display: flex; align-items: center; gap: 8px; }
  .dsb-plan {
    padding: 11px 16px;
    font-size: 11.5px;
  }
  .dsb-icon {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-sage-pale);
    color: var(--green-dark);
    text-decoration: none;
    font-size: 16px;
    transition: background .25s ease, color .25s ease;
  }
  .dsb-icon:hover { background: var(--green-dark); color: var(--cream); }
  .dsb-icon--wa { background: #25d366; color: #fff; }
  .dsb-icon--wa:hover { background: #128c7e; color: #fff; }

  /* Push the page bottom + floating fabs above the sticky bar */
  body.page-dream { padding-bottom: 76px; }
  body.page-dream .flb-whatsapp { display: none; }
  body.page-dream .flb-top { bottom: 88px; }
}

/* Map section */
.contact-map-section { padding: 0 0 var(--section-py); }
.contact-map-head {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px; max-width: 720px;
}
.contact-map-head h2 {
  font-family: var(--font-title); text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(20px, 2vw, 28px);
  margin: 0; color: var(--ink);
}
.contact-map-head p { margin: 6px 0 0; line-height: 1.65; }

.contact-map {
  position: relative; width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--cream-warm);
  overflow: hidden;
  box-shadow: 0 26px 56px -32px rgba(19,40,26,0.32);
}
.contact-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; display: block;
}
.contact-map-cta {
  position: absolute; bottom: 18px; right: 18px;
  background: var(--cream); color: var(--green-deep);
  padding: 12px 18px;
  font-family: var(--font-title);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 14px 28px -14px rgba(19,40,26,0.45);
  transition: background .25s ease, color .25s ease, transform .25s ease;
  z-index: 2;
}
.contact-map-cta i { font-size: 12px; }
.contact-map-cta:hover {
  background: var(--green-dark); color: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .contact-grid { gap: 40px; }
}
@media (max-width: 820px) {
  .contact-form-card { padding: 30px 22px 26px; }
  .contact-form-card .cfc-logo .brand-logo-img,
  .contact-form-card .cfc-logo img { height: 54px; }
  .contact-map { aspect-ratio: 4 / 3; }
  .contact-map-cta {
    bottom: 12px; right: 12px;
    padding: 10px 14px; font-size: 10.5px; letter-spacing: .1em;
  }
}

.travel-info {
  background: linear-gradient(108deg, #ffffff 0%, #fbf9f1 22%, #f1f1de 48%, #dde5c3 78%, #c6d4a4 100%);
  padding: var(--section-py) 0;
}
.travel-info .section-eyebrow {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px; margin-bottom: 36px;
}
.travel-info .section-eyebrow h2 { margin: 4px 0 6px; }
.travel-info .section-eyebrow .section-lead {
  margin: 0 auto; max-width: 660px;
}
.travel-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.travel-card {
  background: rgba(255,255,255,.94); padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.travel-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(19,40,26,.18); }
.travel-card .ti-icon { font-size: 20px; color: var(--green-dark); margin-bottom: 12px; display: block; }
.travel-card h4 {
  font-family: var(--font-title); text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em; margin: 0 0 10px; color: var(--ink);
}
.travel-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 12px; }
.travel-card a.ti-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--green-dark); font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.travel-card a.ti-link:hover { color: var(--green-deep); }
.travel-card a.ti-link i { font-size: 9px; }

.travel-spotlight {
  margin-top: 32px; background: var(--green-deep); color: var(--cream);
  padding: 32px 36px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
}
.travel-spotlight .ts-icon {
  width: 56px; height: 56px; flex: 0 0 56px;
  background: var(--green-sage); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.travel-spotlight .ts-text { flex: 1 1 320px; }
.travel-spotlight h4 {
  font-family: var(--font-title); text-transform: uppercase;
  font-size: 13px; letter-spacing: .1em; color: var(--green-sage);
  margin: 0 0 6px;
}
.travel-spotlight p { margin: 0; color: rgba(250,247,240,.85); font-size: 14px; line-height: 1.65; }

/* Choice cards (selectable) */
.choice-block { margin-top: 36px; }
.choice-block:first-child { margin-top: 0; }
.choice-question {
  font-family: var(--font-title); text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em; color: var(--ink);
  margin: 0 0 4px;
}
.choice-question .req { color: var(--green-dark); margin-left: 4px; }
.choice-help { font-size: 13px; color: var(--ink-mute); margin: 0 0 16px; }

.choice-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.choice-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

.choice-card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1.5px solid var(--line);
  padding: 18px 16px; cursor: pointer; user-select: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .25s ease;
}
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card .cc-icon {
  font-size: 22px; color: var(--green-dark); transition: color .2s ease;
}
.choice-card .cc-title {
  font-family: var(--font-title); text-transform: uppercase;
  font-size: 12px; letter-spacing: .07em; color: var(--ink); line-height: 1.3;
}
.choice-card .cc-desc { font-size: 12px; color: var(--ink-mute); line-height: 1.5; }
.choice-card .cc-check {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: var(--green-dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; opacity: 0; transform: scale(.6);
  transition: opacity .2s ease, transform .2s ease;
}
.choice-card:hover {
  border-color: var(--green-sage);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -16px rgba(19,40,26,.22);
}
.choice-card.is-selected {
  border-color: var(--green-dark);
  background: var(--green-sage-pale);
}
.choice-card.is-selected .cc-check { opacity: 1; transform: scale(1); }
.choice-card.is-selected .cc-icon { color: var(--green-deep); }
.choice-card:focus-within { outline: 2px solid var(--green-sage); outline-offset: 2px; }

/* Dream image cards */
.choice-card--dream { padding: 0; overflow: hidden; }
.choice-card--dream .cc-dream-img {
  width: 100%; aspect-ratio: 4 / 3;
  background-color: #f3ede0; background-size: cover; background-position: center;
}
.choice-card--dream .cc-dream-body {
  padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px;
}
.choice-card--dream .cc-region {
  font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute);
}
.choice-card--dream .cc-title { font-size: 13px; }

/* Custom dream tile (dark) */
.choice-card--custom { background: var(--green-deep); border-color: var(--green-deep); color: var(--cream); }
.choice-card--custom .cc-dream-img {
  background: linear-gradient(160deg, #1d3a26 0%, #2a4c31 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-sage); font-size: 38px;
}
.choice-card--custom .cc-region { color: var(--green-sage); }
.choice-card--custom .cc-title { color: var(--cream); }
.choice-card--custom.is-selected { background: var(--green-deep); border-color: var(--green-sage); }
.choice-card--custom .cc-check { background: var(--green-sage); color: var(--green-deep); }

.plan-form-text-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.plan-submit-bar {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.plan-submit-bar .plan-note { font-size: 13px; color: var(--ink-mute); margin: 0; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.flip .split-text { order: 0; }
  /* On mobile, the CTA jumps AFTER the image so it "arrives with" it. */
  .split--with-cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
  }
  .split--with-cta > .split-text   { grid-column: 1; grid-row: 1; }
  .split--with-cta > .split-visual { grid-column: 1; grid-row: 2; }
  .split--with-cta > .split-cta    { grid-column: 1; grid-row: 3; margin-top: -6px; }
  .dream-body { grid-template-columns: 1fr; gap: 50px; }
  .dream-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1100px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid, .choice-grid.cols-3, .choice-grid.cols-5, .choice-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  :root { --section-py: 70px; --gap: 24px; }
  /* Nav rules are handled by the header block (lines ~488–590) — not here. */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; align-items: center; gap: 8px; }
  .footer-credit { justify-content: center; flex-wrap: wrap; }
  .info-grid, .info-grid.cols-3 { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
  .travel-spotlight { padding: 24px; gap: 18px; }
  .choice-grid, .choice-grid.cols-3, .choice-grid.cols-5, .choice-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .plan-form-text-grid { grid-template-columns: 1fr; }
  .plan-section { padding: 56px 0; }
  .plan-intro { padding-top: 70px; }
}
@media (max-width: 480px) {
  .choice-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   DREAM PAGE — Phase 3 v2 (sticky shell + lead intro + FA-rich)
   =========================================================== */

.dream-page { background: var(--cream); }

/* ----- Shell : grid global qui englobe hero + sections + sticky aside ----- */
.dh-shell {
  padding: 110px 0 80px;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #fbf9f1 12%,
      #f3ede0 22%,
      var(--cream) 38%,
      var(--cream) 100%);
}
.dh-shell-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: start;
}
.dh-shell-main {
  min-width: 0;
  display: flex; flex-direction: column; gap: 70px;
}
.dh-shell-aside { position: sticky; top: 96px; align-self: start; }

@media (max-width: 1100px) {
  .dh-shell-grid { grid-template-columns: 1fr; gap: 30px; }
  .dh-shell-aside { position: relative; top: auto; max-width: 520px; width: 100%; }
}
@media (max-width: 700px) {
  .dh-shell { padding: 90px 0 50px; }
  .dh-shell-main { gap: 50px; }
}

/* ----- Hero block (h1 + image, gradient bg) ----- */
.dh-hero-block {
  display: flex; flex-direction: column; gap: 18px;
}
.dh-hero-eyebrow {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 4px;
}
.dh-hero-eyebrow .eyebrow {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-dark);
}
.dh-hero-eyebrow .eyebrow i { color: var(--green-deep); margin-right: 6px; }
.dh-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-deep); color: var(--cream);
  padding: 6px 12px;
  font-family: var(--font-title); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
}
.dh-hero-pill i { color: var(--green-sage); }
.dh-hero-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: 0.04em; line-height: 1.06;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0;
}
.dh-hero-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--green-sage-pale);
  overflow: hidden;
  box-shadow: 0 22px 50px -22px rgba(19,40,26,.28);
  margin-top: 10px;
}
.dh-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero gallery — stage + thumb strip (Booking-style) */
.dh-gallery {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dh-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--green-sage-pale);
  overflow: hidden;
  box-shadow: 0 22px 50px -22px rgba(19, 40, 26, 0.28);
}
.dh-gallery-stage-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  z-index: 1;
}
.dh-gallery-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s var(--ease);
}
.dh-gallery-stage.is-swapping .dh-gallery-stage-img { opacity: 0.4; }

.dh-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  color: var(--green-deep);
  font-size: 14px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 6px 18px -6px rgba(19, 40, 26, 0.35);
}
.dh-gallery-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 22px -6px rgba(19, 40, 26, 0.4);
}
.dh-gallery-arrow:active { transform: translateY(-50%) scale(0.98); }
.dh-arrow-prev { left: 14px; }
.dh-arrow-next { right: 14px; }

.dh-gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(19, 40, 26, 0.78);
  color: var(--cream);
  padding: 7px 13px;
  font-family: var(--font-title);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dh-gallery-counter i { font-size: 11px; opacity: 0.9; }

.dh-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0 4px;
  -webkit-overflow-scrolling: touch;
}
.dh-gallery-thumbs::-webkit-scrollbar { display: none; }
.dh-gallery-thumb {
  flex: 0 0 100px;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  background: var(--green-sage-pale);
  cursor: pointer;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.dh-gallery-thumb:hover { opacity: 0.85; }
.dh-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--green-dark);
}
.dh-gallery-thumb:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}
.dh-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .dh-gallery-stage { aspect-ratio: 16 / 11; }
  .dh-gallery-arrow { width: 40px; height: 40px; font-size: 13px; }
  .dh-arrow-prev { left: 10px; }
  .dh-arrow-next { right: 10px; }
  .dh-gallery-counter { right: 10px; bottom: 10px; padding: 6px 11px; font-size: 11px; }
  .dh-gallery-thumb { flex: 0 0 78px; }
}
@media (max-width: 480px) {
  .dh-gallery-arrow { display: none; }
  .dh-gallery-thumb { flex: 0 0 64px; }
}

/* ----- Trip card (sticky right column) ----- */
.dh-trip-card {
  background: #fff;
  border-top: 4px solid var(--green-dark);
  padding: 26px 24px;
  box-shadow: 0 18px 40px -18px rgba(19,40,26,.18);
  display: flex; flex-direction: column; gap: 16px;
}
.dh-tc-rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink);
}
.dh-tc-rating > i.fa-star { color: #f5b400; font-size: 16px; }
.dh-tc-rating strong { font-size: 18px; color: var(--green-deep); }
.dh-tc-reviews {
  font-size: 12px; color: var(--green-dark);
  text-decoration: underline; text-underline-offset: 3px;
}
.dh-tc-code {
  margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--ink-mute);
  font-family: var(--font-title); letter-spacing: 0.14em; text-transform: uppercase;
}
.dh-tc-code i { font-size: 9px; }

.dh-tc-route { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; display: flex; flex-direction: column; gap: 6px; }
.dh-tc-route p { margin: 0; display: flex; align-items: center; gap: 8px; }
.dh-tc-route p > i { color: var(--green-dark); width: 16px; text-align: center; }
.dh-tc-route strong { color: var(--green-deep); font-weight: 600; }

.dh-tc-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dh-tc-stat { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dh-tc-label {
  font-family: var(--font-title); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
  display: flex; align-items: center; gap: 6px;
}
.dh-tc-label i { color: var(--green-dark); font-size: 11px; }
.dh-tc-value { font-size: 13.5px; color: var(--ink); font-weight: 500; }

.dh-bars { display: inline-flex; gap: 4px; align-items: center; }
.dh-bar {
  display: inline-block;
  width: 16px; height: 8px;
  background: var(--green-sage-pale);
  border: 1px solid var(--green-sage);
}
.dh-bar.is-on { background: var(--green-deep); border-color: var(--green-deep); }

.dh-tc-price { display: flex; flex-direction: column; gap: 2px; }
.dh-tc-price-from {
  font-family: var(--font-title); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 6px;
}
.dh-tc-price-from i { color: var(--green-dark); }
.dh-tc-price strong {
  font-family: var(--font-title);
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--green-deep);
}
.dh-tc-price-meta { font-size: 11px; color: var(--ink-mute); }

.dh-tc-cta {
  width: 100%; justify-content: center; padding: 14px 22px;
}
.dh-tc-secondary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.dh-tc-icon {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--green-deep);
  border: 1px solid var(--green-sage);
  padding: 10px 14px;
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; transition: all .15s var(--ease);
}
.dh-tc-icon:hover { background: var(--green-sage-pale); border-color: var(--green-dark); }

/* ----- Intro (lead + body) ----- */
.dh-intro { display: flex; flex-direction: column; gap: 22px; }
.dh-intro-lead {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--green-deep);
  font-weight: 500;
  font-style: italic;
  margin: 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--green-sage);
}
.dh-quote-ic {
  position: absolute; left: -10px; top: 4px;
  font-size: 18px; color: var(--green-sage);
  background: var(--cream);
  padding: 2px 4px;
}
.dh-intro-body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); }
.dh-intro-body p { margin: 0 0 16px; }
.dh-intro-body p:last-child { margin-bottom: 0; }
.dh-intro-body h2, .dh-intro-body h3 {
  font-family: var(--font-title); color: var(--green-deep);
  font-size: 18px; letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 24px 0 12px;
}

/* ----- Why you'll love ----- */
.dh-love { display: flex; flex-direction: column; gap: 26px; }
.dh-love-head .eyebrow {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.dh-love-head .eyebrow i { color: var(--green-deep); }
.dh-love-head h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 8px 0 0;
  line-height: 1.1;
}
.dh-love-bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
}
.dh-love-bullets li {
  display: flex; gap: 12px;
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
}
.dh-love-bullets li > i {
  flex: 0 0 auto;
  font-size: 14px; color: var(--green-dark);
  margin-top: 4px;
}
@media (max-width: 700px) { .dh-love-bullets { grid-template-columns: 1fr; } }

/* ----- Gallery + Lightbox ----- */
.dh-gallery { display: flex; flex-direction: column; gap: 22px; }
.dh-gallery-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 18px; flex-wrap: wrap;
}
.dh-gallery-head .eyebrow {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-dark);
}
.dh-gallery-head .eyebrow i { color: var(--green-deep); margin-right: 6px; }
.dh-gallery-head h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-deep);
  margin: 8px 0 0;
}
.dh-gallery-all {
  background: var(--green-deep); color: var(--cream);
  padding: 11px 18px; border: 0; cursor: pointer;
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s var(--ease);
}
.dh-gallery-all:hover { background: var(--green-dark); }

.dh-gallery-empty {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 48px 20px;
  background: var(--cream-warm);
  border: 1px dashed var(--green-sage);
  text-align: center;
  color: var(--ink-mute);
}
.dh-gallery-empty i { font-size: 36px; color: var(--green-sage); }
.dh-gallery-empty p { margin: 0; font-size: 14px; line-height: 1.6; }

.dh-gallery-scroller-wrap { position: relative; }
.dh-gallery-scroller {
  display: flex; gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding: 4px 0 14px; margin: 0;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.dh-gallery-scroller::-webkit-scrollbar { display: none; }
.dh-gallery-scroller.is-dragging { cursor: grabbing; user-select: none; }
.dh-gallery-scroller:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 4px; }

.dh-gallery-card {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 360px);
  aspect-ratio: 4 / 3;
  background: var(--green-sage-pale);
  border: 0; padding: 0; margin: 0;
  cursor: pointer; overflow: hidden;
  scroll-snap-align: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 12px 28px -16px rgba(19,40,26,.22);
}
.dh-gallery-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -18px rgba(19,40,26,.32); }
.dh-gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dh-gallery-controls {
  display: flex; align-items: center; gap: 16px;
  padding-top: 4px;
}
.dh-gc-btn {
  width: 42px; height: 42px;
  background: var(--white); color: var(--green-deep);
  border: 1px solid var(--green-sage); cursor: pointer;
  font-size: 14px; transition: all .15s var(--ease);
  display: grid; place-items: center;
}
.dh-gc-btn:hover:not(:disabled) { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.dh-gc-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.dh-gc-progress {
  flex: 1; height: 3px; background: var(--green-sage-pale);
  position: relative; overflow: hidden;
}
.dh-gc-progress > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--green-deep);
  width: 20%; transition: width .15s var(--ease), left .15s var(--ease);
}
@media (max-width: 700px) {
  .dh-gallery-controls .dh-gc-btn { display: none; }
  .dh-gallery-card { width: 80vw; }
}

/* Lightbox */
.dh-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 18, 12, 0.96);
  display: none; align-items: center; justify-content: center;
}
.dh-lightbox.is-open { display: flex; }
.dh-lightbox .dhlb-stage { max-width: 92vw; max-height: 86vh; display: flex; }
.dh-lightbox .dhlb-stage img { max-width: 100%; max-height: 86vh; object-fit: contain; display: block; }
.dhlb-close {
  position: absolute; top: 22px; right: 22px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06); color: var(--cream);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; font-size: 20px;
  display: grid; place-items: center;
  transition: background .15s var(--ease);
}
.dhlb-close:hover { background: rgba(255,255,255,.14); }
.dhlb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,.06); color: var(--cream);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; font-size: 16px;
  display: grid; place-items: center;
  transition: background .15s var(--ease);
}
.dhlb-nav:hover { background: rgba(255,255,255,.16); }
.dhlb-prev { left: 22px; }
.dhlb-next { right: 22px; }
.dhlb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(250, 247, 240, .7);
  font-family: var(--font-title); font-size: 12px; letter-spacing: 0.18em;
}
@media (max-width: 700px) {
  .dhlb-prev, .dhlb-next { width: 44px; height: 44px; }
  .dhlb-prev { left: 10px; }
  .dhlb-next { right: 10px; }
}

/* ----- Itinerary ----- */
.dh-iti { display: flex; flex-direction: column; gap: 22px; }
.dh-iti-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 18px; flex-wrap: wrap;
}
.dh-iti-head .eyebrow {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-dark);
}
.dh-iti-head .eyebrow i { color: var(--green-deep); margin-right: 6px; }
.dh-iti-head h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-deep);
  margin: 8px 0 0;
}
.dh-iti-show-all {
  background: transparent; color: var(--green-deep);
  border: 1px solid var(--green-sage);
  padding: 10px 16px; cursor: pointer;
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; transition: all .15s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.dh-iti-show-all:hover { background: var(--green-sage-pale); }

.dh-iti-grid {
  display: grid; grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px; align-items: start;
}
.dh-iti-side { display: flex; flex-direction: column; gap: 14px; }
.dh-iti-map {
  background: var(--green-sage-pale); border: 1px solid var(--line);
  overflow: hidden;
}
.dh-iti-map img { width: 100%; height: auto; display: block; }
.dh-iti-carbon {
  background: var(--green-sage-pale);
  border-left: 3px solid var(--green-dark);
  padding: 12px 14px; font-size: 12.5px; line-height: 1.6;
  color: var(--ink-soft);
}
.dh-iti-carbon p { margin: 0 0 6px; display: flex; gap: 8px; align-items: flex-start; }
.dh-iti-carbon p > i { color: var(--green-dark); margin-top: 3px; }
.dh-iti-carbon strong { color: var(--green-deep); }
.dh-iti-carbon a {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-deep);
}

.dh-iti-list { display: flex; flex-direction: column; gap: 0; }
.dh-iti-day { background: transparent; border-bottom: 1px solid var(--line); }
.dh-iti-day:first-child { border-top: 1px solid var(--line); }
.dh-iti-day > summary {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  padding: 20px 4px;
  cursor: pointer; user-select: none;
  transition: background .15s var(--ease);
}
.dh-iti-day > summary::-webkit-details-marker { display: none; }
.dh-iti-day > summary:hover { background: rgba(198,212,164,.12); }
.dh-iti-day-meta {
  font-family: var(--font-title); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-dark); flex: 0 0 auto;
}
.dh-iti-day-title { font-size: 16px; color: var(--ink); font-weight: 500; flex: 1; }
.dh-iti-day-chevron {
  flex: 0 0 auto;
  color: var(--ink-mute);
  transition: transform .2s var(--ease);
}
.dh-iti-day[open] > summary .dh-iti-day-chevron { transform: rotate(180deg); }

.dh-iti-day-body {
  padding: 0 4px 26px 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.dh-iti-narrative { font-size: 15px; line-height: 1.85; color: var(--ink-soft); margin: 0; }

.dh-iti-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dh-iti-block { display: flex; flex-direction: column; gap: 6px; }
.dh-iti-block ul {
  list-style: none; padding: 0; margin: 0;
  font-size: 14px; line-height: 1.75; color: var(--ink-soft);
}
.dh-iti-block ul li { padding-left: 16px; position: relative; }
.dh-iti-block ul li::before {
  content: '•'; position: absolute; left: 0; top: 0;
  color: var(--green-dark);
}
.dh-iti-block p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--ink-soft); }
.dh-iti-label {
  font-family: var(--font-title); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-deep);
  display: flex; align-items: center; gap: 8px;
}
.dh-iti-label i { color: var(--green-dark); font-size: 13px; }
.dh-iti-price { color: var(--green-dark); font-weight: 500; }

.dh-iti-special {
  background: var(--cream-warm);
  border-left: 3px solid var(--green-sage);
  padding: 12px 16px;
}
.dh-iti-special p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.75; color: var(--ink-soft); }

@media (max-width: 900px) {
  .dh-iti-grid { grid-template-columns: 1fr; gap: 24px; }
  .dh-iti-side { flex-direction: row; }
  .dh-iti-map { flex: 1; }
  .dh-iti-carbon { flex: 1; }
}
@media (max-width: 700px) {
  .dh-iti-side { flex-direction: column; }
  .dh-iti-cols { grid-template-columns: 1fr; gap: 16px; }
}

/* ----- Inclusions overview (full width section) ----- */
.dh-incl { padding: 70px 0; background: var(--cream-warm); }
.dh-incl-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.dh-incl-col {
  background: #fff; padding: 24px;
  border-top: 3px solid var(--green-sage);
  box-shadow: 0 12px 30px -18px rgba(19,40,26,.18);
}
.dh-incl-col h3 {
  font-family: var(--font-title); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-deep);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.dh-incl-col h3 i { color: var(--green-dark); font-size: 14px; }
.dh-incl-col ul {
  list-style: none; padding: 0; margin: 0;
  font-size: 14px; line-height: 1.75; color: var(--ink-soft);
}
.dh-incl-col ul li { padding-left: 18px; position: relative; }
.dh-incl-col ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 2px;
  color: var(--green-dark); font-size: 10px;
}
@media (max-width: 1000px) { .dh-incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .dh-incl-grid { grid-template-columns: 1fr; } }

/* ----- Accommodation details ----- */
.dh-accom { padding: 60px 0; }
.dh-accom-inner { max-width: 880px; }
.dh-accom-body {
  font-size: 15.5px; line-height: 1.85; color: var(--ink-soft);
  background: #fff;
  border-left: 3px solid var(--green-sage);
  padding: 26px 30px;
}
.dh-accom-body p { margin: 0 0 14px; }
.dh-accom-body p:last-child { margin-bottom: 0; }

/* ----- Joining point ----- */
.dh-join { padding: 60px 0; background: var(--cream-warm); }
.dh-join-inner { max-width: 880px; }
.dh-join-card {
  background: #fff;
  border-top: 3px solid var(--green-dark);
  padding: 26px 30px;
  box-shadow: 0 14px 32px -18px rgba(19,40,26,.2);
}
.dh-join-card h3 {
  font-family: var(--font-title); font-size: 18px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-deep);
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 10px;
}
.dh-join-card h3 i { color: var(--green-dark); font-size: 16px; }
.dh-join-addr {
  font-size: 14px; color: var(--ink-soft);
  margin: 0 0 12px; display: flex; align-items: center; gap: 8px;
}
.dh-join-addr i { color: var(--green-dark); }
.dh-join-map {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-deep);
  border-bottom: 1px solid var(--green-sage);
  padding-bottom: 4px;
}
.dh-join-map i { color: var(--green-dark); }
.dh-join-alts-title {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
  margin: 30px 0 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.dh-join-alts-title i { color: var(--green-dark); }
.dh-join-alts {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.dh-join-alt {
  background: #fff; border: 1px solid var(--line); padding: 16px;
}
.dh-join-alt strong { color: var(--green-deep); display: block; margin-bottom: 4px; font-size: 14px; }
.dh-join-alt p {
  font-size: 13px; color: var(--ink-soft); margin: 0 0 8px;
  display: flex; align-items: center; gap: 6px;
}
.dh-join-alt p > i { color: var(--green-dark); }
.dh-join-alt a {
  font-family: var(--font-title); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ----- Before you book ----- */
.dh-before { padding: 60px 0; }
.dh-before-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 880px;
}
.dh-before-list li {
  display: flex; gap: 14px;
  background: var(--cream-warm);
  border-left: 3px solid var(--green-sage);
  padding: 16px 20px;
  font-size: 14.5px; line-height: 1.7; color: var(--ink-soft);
}
.dh-before-list li > i {
  flex: 0 0 auto;
  font-size: 14px; color: var(--green-dark);
  margin-top: 4px;
}

/* ----- Reviews compact ----- */
.dh-reviews {
  padding: 30px 0; background: var(--green-sage-pale);
  border-top: 1px solid var(--green-sage);
}
.dh-reviews-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.dh-reviews-stars {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.dh-reviews-stars i { color: #f5b400; font-size: 18px; }
.dh-reviews-stars strong { font-size: 22px; color: var(--green-deep); font-family: var(--font-title); }
.dh-reviews-link {
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.dh-reviews-link:hover { color: var(--green-dark); }

/* ===================== PLAN MODAL ===================== */
.plan-modal {
  position: fixed; inset: 0; z-index: 220;
  display: none; align-items: stretch; justify-content: center;
  overflow: hidden;
}
.plan-modal.is-open { display: flex; }
.plan-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.plan-modal.is-open .plan-modal-backdrop { opacity: 1; }
.plan-modal-dialog {
  position: relative; z-index: 1;
  margin: auto;
  width: 100%; max-width: 760px;
  max-height: calc(100vh - 60px);
  background: var(--cream);
  display: flex; flex-direction: column;
  box-shadow: 0 40px 90px -30px rgba(8, 18, 12, .55);
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  overflow: hidden;
}
.plan-modal.is-open .plan-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.plan-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  color: var(--green-deep);
  cursor: pointer; font-size: 16px;
  display: grid; place-items: center;
  z-index: 2;
  transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.plan-modal-close:hover {
  background: var(--green-deep); color: var(--cream);
  transform: rotate(90deg);
}
.plan-modal-body {
  padding: 56px 56px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.plan-modal-head {
  text-align: center;
  margin-bottom: 32px;
}
.plan-modal-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-dark);
  margin-bottom: 14px;
}
.plan-modal-head h2 {
  margin: 0 0 14px; font-family: var(--font-title);
  font-size: clamp(24px, 3.4vw, 34px); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-deep);
  line-height: 1.2;
}
.plan-modal-lead {
  margin: 0 auto; max-width: 540px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.7;
}
.plan-modal .contact-form-card {
  padding: 30px;
  box-shadow: none;
  border: 1px solid var(--line);
}
body.plan-modal-open {
  overflow: hidden;
  /* compensate scrollbar width to avoid layout jump */
  padding-right: var(--scrollbar-comp, 0px);
}
@media (max-width: 820px) {
  .plan-modal-dialog {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
  }
  .plan-modal-body { padding: 64px 22px 40px; }
  .plan-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 15px; }
  .plan-modal-head { margin-bottom: 24px; }
  .plan-modal .contact-form-card { padding: 22px 18px; }
  .plan-modal .cfc-logo { padding-bottom: 16px; margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .plan-modal-body { padding: 60px 16px 32px; }
  .plan-modal .contact-form-card { padding: 18px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .plan-modal-backdrop,
  .plan-modal-dialog { transition: none; }
}

/* ===== Homepage FAQ — 2-column accordion ===== */
.faq-section .section-header { margin-bottom: 36px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(29, 58, 38, 0.08);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] {
  border-color: rgba(29, 58, 38, 0.2);
  box-shadow: 0 14px 32px -20px rgba(19, 40, 26, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-q { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green-sage);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--green-dark); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}
.faq-body p { margin: 0; }
@media (max-width: 820px) {
  .faq-grid { grid-template-columns: 1fr; gap: 12px; max-width: 640px; }
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-body { padding: 0 18px 18px; font-size: 13.5px; }
}

/* ===== Legal pages (Privacy, Booking Conditions) ===== */
.legal-section { padding: 70px 0 110px; background: var(--cream); }
.legal-container { max-width: 760px; }
.legal-intro {
  font-family: var(--font-title);
  font-size: 17px;
  line-height: 1.7;
  color: var(--green-deep);
  margin: 0 0 44px;
  padding-left: 20px;
  border-left: 3px solid var(--green-sage);
}
.legal-article + .legal-article { margin-top: 38px; }
.legal-article h2 {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.25;
}
.legal-article h3 {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 18px 0 8px;
}
.legal-num {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--green-sage);
  flex-shrink: 0;
  min-width: 32px;
}
.legal-article p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.legal-article p:last-child { margin-bottom: 0; }
.legal-article ul {
  margin: 0 0 12px;
  padding: 0 0 0 18px;
  list-style: none;
}
.legal-article ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 4px 0 4px 14px;
}
.legal-article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--green-sage);
  border-radius: 50%;
}
.legal-article a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-article a:hover { color: var(--green-deep); }
.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 !important;
}
.legal-contact li { padding-left: 0 !important; }
.legal-contact li::before { display: none; }
.legal-contact i { color: var(--green-dark); margin-right: 8px; }
@media (max-width: 700px) {
  .legal-section { padding: 50px 0 80px; }
  .legal-intro { font-size: 15px; padding-left: 16px; margin-bottom: 36px; }
  .legal-article h2 { font-size: 18px; gap: 10px; }
  .legal-article p, .legal-article ul li { font-size: 14px; }
}

/* ===== Editorial slideshow — left text + right image deck ===== */
.editorial-slideshow {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.editorial-slideshow.es-tone-cream { background: var(--cream); }
.editorial-slideshow.es-tone-sage  { background: var(--green-sage-pale); }
.editorial-slideshow.es-no-top-pad { padding-top: 30px; }

/* "Best of Morocco" header (h2 + Three.js pentagram) when used as a standalone block above the slideshow */
.morocco-scene--header {
  padding: 60px 0 30px;
  background: var(--cream);
}
.morocco-scene--header::before { display: none; }
.morocco-scene--header .morocco-scene-head {
  grid-template-columns: minmax(0, 1fr) minmax(0, 200px);
  gap: 36px;
  margin-bottom: 0;
}
.morocco-scene--header .morocco-scene-head-text { max-width: 480px; }
.morocco-scene--header h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  margin-bottom: 14px;
}
.morocco-scene--header .morocco-scene-visual { max-width: 200px; }

/* Editorial slideshow — compact variant (used by the home "Best of Morocco" block, ~35% smaller) */
.editorial-slideshow.es-compact { padding: 16px 0 64px; }
.editorial-slideshow.es-compact .es-grid { min-height: 380px; gap: 48px; }
.editorial-slideshow.es-compact .es-text { max-width: 460px; }
.editorial-slideshow.es-compact .es-eyebrow { margin-bottom: 12px; }
.editorial-slideshow.es-compact .es-title {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 18px;
}
.editorial-slideshow.es-compact .es-body { font-size: 14px; line-height: 1.7; }
.editorial-slideshow.es-compact .es-controls { margin-top: 26px; }
.editorial-slideshow.es-compact .es-btn { width: 44px; height: 44px; }
.editorial-slideshow.es-compact .es-stack { max-width: 360px; }

@media (max-width: 900px) {
  .morocco-scene--header { padding: 40px 0 18px; }
  .morocco-scene--header .morocco-scene-visual { max-width: 140px; }
  .editorial-slideshow.es-no-top-pad { padding-top: 20px; }
  .editorial-slideshow.es-compact { padding: 8px 0 50px; }
  .editorial-slideshow.es-compact .es-grid { min-height: auto; gap: 26px; }
  .editorial-slideshow.es-compact .es-stack { max-width: 280px; }
}
.es-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
.es-text { max-width: 540px; }
.es-eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
  transition: opacity 0.3s var(--ease);
}
.es-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.005em;
  line-height: 1.04;
  color: var(--green-deep);
  margin: 0 0 26px;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.es-body {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.es-body p { margin: 0 0 14px; }
.es-body p:last-child { margin-bottom: 0; }
.es-body em { color: var(--green-deep); font-style: italic; }
.es-text.is-swapping .es-eyebrow,
.es-text.is-swapping .es-title,
.es-text.is-swapping .es-body { opacity: 0; transform: translateY(8px); }

.es-controls {
  margin-top: 38px;
  display: flex;
  gap: 12px;
}
.es-btn {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  color: var(--green-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  font-size: 14px;
}
.es-btn:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
.es-btn:active { transform: scale(0.96); }

.es-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.es-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 5;
}
.es-card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--green-sage-pale);
  border-radius: 22px;
  box-shadow: 0 30px 60px -28px rgba(19, 40, 26, 0.28);
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease), z-index 0s 0.3s;
  will-change: transform, opacity;
}
.es-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}
.es-card.is-active {
  z-index: 6;
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}
.es-card.is-active img { transform: scale(1); }
.es-card.is-prev-1 {
  z-index: 4;
  opacity: 0.92;
  transform: translate(-7%, -2%) rotate(-3.5deg) scale(0.97);
}
.es-card.is-prev-2 {
  z-index: 3;
  opacity: 0.65;
  transform: translate(-12%, -3%) rotate(-7deg) scale(0.93);
}
.es-card.is-next-1 {
  z-index: 4;
  opacity: 0.92;
  transform: translate(7%, -2%) rotate(3.5deg) scale(0.97);
}
.es-card.is-next-2 {
  z-index: 3;
  opacity: 0.65;
  transform: translate(12%, -3%) rotate(7deg) scale(0.93);
}
.es-card.is-far {
  z-index: 1;
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.85);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .es-grid { gap: 44px; min-height: 500px; }
  .es-stack { max-width: 460px; }
}
@media (max-width: 900px) {
  .editorial-slideshow { padding: 60px 0 80px; }
  .es-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .es-text { max-width: none; }
  .es-stack { max-width: 380px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .es-controls { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .editorial-slideshow { padding: 50px 0 70px; }
  .es-stack { max-width: 86vw; }
  .es-card { border-radius: 16px; }
  .es-btn { width: 46px; height: 46px; }
}

/* ===== Inspirations entry page — 2 luminous green cards ===== */
.insp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.insp-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--cream);
  padding: 0;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(140deg, #1d3a26 0%, #234a30 55%, #2c5938 100%);
  box-shadow:
    0 30px 60px -28px rgba(19, 40, 26, 0.45),
    inset 0 0 0 1px rgba(198, 212, 164, 0.18);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease);
}
.insp-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 44px 80px -28px rgba(19, 40, 26, 0.55),
    inset 0 0 0 1px rgba(198, 212, 164, 0.32);
}
/* Luminous radial glow — gives the "vert lumineux" feel */
.insp-card-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(198, 212, 164, 0.42) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 90% 95%, rgba(154, 188, 130, 0.32) 0%, transparent 65%);
  transition: opacity 0.5s var(--ease);
}
.insp-card:hover .insp-card-glow { opacity: 1; }
/* Subtle Moroccan pentagram pattern as decorative texture */
.insp-card-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 147,165 24,75 176,75 53,165' fill='none' stroke='%23faf7f0' stroke-width='1.5' stroke-linejoin='miter'/></svg>");
  background-repeat: no-repeat;
  background-position: 110% -20%;
  background-size: 360px 360px;
  transition: transform 0.6s var(--ease);
}
.insp-card:hover .insp-card-pattern { transform: rotate(8deg); }

.insp-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: inherit;
  padding: 56px 50px 48px;
}
.insp-card-num {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--green-sage);
  font-weight: 700;
  margin-bottom: 18px;
}
.insp-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 14px;
}
.insp-card-eyebrow i { color: var(--green-sage); font-size: 11px; }
.insp-card-title {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 60px);
  letter-spacing: -0.005em;
  line-height: 1.04;
  color: var(--cream);
  margin: 0 0 22px;
  text-shadow: 0 2px 30px rgba(198, 212, 164, 0.18);
}
.insp-card-lead {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.78);
  margin-bottom: 32px;
  max-width: 380px;
  flex: 1;
}
.insp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-sage);
  font-weight: 700;
  align-self: flex-start;
  padding: 12px 22px;
  border: 1px solid rgba(198, 212, 164, 0.5);
  border-radius: 999px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), gap 0.2s var(--ease);
}
.insp-card-cta i { transition: transform 0.2s var(--ease); }
.insp-card:hover .insp-card-cta {
  background: rgba(198, 212, 164, 0.16);
  border-color: var(--green-sage);
  color: var(--cream);
  gap: 14px;
}
.insp-card:hover .insp-card-cta i { transform: translateX(4px); }

/* Tone variant: stories card (right) — slightly different gradient angle for variety */
.insp-card--stories {
  background: linear-gradient(220deg, #1d3a26 0%, #1f4538 55%, #2c5d54 100%);
}
.insp-card--stories .insp-card-glow {
  background:
    radial-gradient(ellipse 65% 50% at 85% 18%, rgba(198, 212, 164, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 12% 92%, rgba(154, 188, 130, 0.28) 0%, transparent 65%);
}
.insp-card--stories .insp-card-pattern {
  background-position: -20% 110%;
}

@media (max-width: 820px) {
  .insp-grid { grid-template-columns: 1fr; gap: 18px; }
  .insp-card { min-height: 320px; }
  .insp-card-inner { padding: 40px 32px 36px; }
}
@media (max-width: 480px) {
  .insp-card { min-height: 280px; }
  .insp-card-inner { padding: 32px 24px 30px; }
  .insp-card-title { font-size: clamp(30px, 9vw, 42px); }
}

/* ===== Blog post — Travel stories horizontal panel scroller (Black Tomato style) ===== */
/* Each panel collapses to a 90px coloured tab; click/arrow expands it to show photo + quote. */
.ts-scroller {
  /* Break out of the 760px content container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background: var(--cream);
  margin-top: 40px;
  margin-bottom: 40px;
}
.ts-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 60px);
  background: var(--cream);
  border-bottom: 1px solid rgba(29, 58, 38, 0.08);
}
.ts-progress {
  flex: 1;
  height: 3px;
  background: rgba(29, 58, 38, 0.12);
  position: relative;
  overflow: hidden;
}
.ts-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 11.11%; /* 1 of 9 */
  background: var(--green-deep);
  transition: width 0.4s var(--ease);
}
.ts-prev, .ts-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.ts-prev:hover, .ts-next:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
.ts-prev:active, .ts-next:active { transform: scale(0.95); }

.ts-track {
  display: flex;
  height: clamp(560px, 70vh, 680px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  outline: none;
}
.ts-track::-webkit-scrollbar { display: none; }
.ts-track:focus-visible { outline: 2px solid var(--green-dark); outline-offset: -2px; }

.ts-panel {
  flex: 0 0 auto;
  width: 92px;
  height: 100%;
  background: var(--ts-bg);
  color: var(--ts-fg);
  position: relative;
  cursor: pointer;
  transition: width 0.6s var(--ease);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.ts-panel:last-child { border-right: 0; }
.ts-panel.is-active {
  width: clamp(620px, 78vw, 980px);
  cursor: default;
}

.ts-side {
  position: absolute;
  inset: 0 auto 0 0;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 26px;
  z-index: 2;
  pointer-events: none;
}
.ts-num {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: inherit;
  margin-bottom: 24px;
}
.ts-vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
  color: inherit;
  text-align: center;
}

.ts-content {
  position: absolute;
  inset: 0 0 0 92px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 44px;
  padding: 56px 56px 56px 36px;
  align-items: center;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
  pointer-events: none;
}
.ts-panel.is-active .ts-content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.ts-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.ts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ts-text {
  max-width: 540px;
}
.ts-text h3 {
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: inherit;
  margin: 0 0 8px;
  opacity: 0.82;
}
.ts-text .ts-subtitle {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: inherit;
  margin: 0 0 18px;
  opacity: 0.92;
}
.ts-text .ts-context {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: inherit;
  margin: 0 0 18px;
  opacity: 0.78;
}
.ts-text blockquote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: inherit;
  margin: 0 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid currentColor;
  font-weight: 400;
  quotes: none;
  opacity: 0.95;
}
.ts-text .ts-author {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: inherit;
}
.ts-text .ts-date {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.7;
  margin: 0;
}
.ts-text .ts-date em { font-style: italic; }

/* Colour variants — earthy Atlas Dream palette */
.ts-c-rust   { --ts-bg: #b25c30; --ts-fg: #faf7f0; }
.ts-c-green  { --ts-bg: #1d3a26; --ts-fg: #faf7f0; }
.ts-c-teal   { --ts-bg: #2a5550; --ts-fg: #faf7f0; }
.ts-c-ochre  { --ts-bg: #b8893f; --ts-fg: #faf7f0; }
.ts-c-blue   { --ts-bg: #2a3d5b; --ts-fg: #faf7f0; }
.ts-c-olive  { --ts-bg: #6e7a3f; --ts-fg: #faf7f0; }

@media (max-width: 900px) {
  .ts-track { height: clamp(580px, 80vh, 720px); }
  .ts-panel.is-active { width: clamp(540px, 86vw, 760px); }
  .ts-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 28px 32px 22px;
    align-items: start;
    overflow-y: auto;
  }
  .ts-photo { aspect-ratio: 16 / 10; max-height: 220px; }
}
@media (max-width: 600px) {
  .ts-controls { padding: 16px 18px; gap: 12px; }
  .ts-prev, .ts-next { width: 36px; height: 36px; font-size: 12px; }
  .ts-panel { width: 64px; }
  .ts-panel.is-active { width: 90vw; }
  .ts-side { width: 64px; padding: 22px 0 20px; }
  .ts-num { font-size: 11px; margin-bottom: 18px; }
  .ts-vlabel { font-size: 13px; letter-spacing: 0.18em; }
  .ts-content {
    inset: 0 0 0 64px;
    padding: 24px 22px 24px 18px;
  }
  .ts-text h3 { font-size: 12px; margin-bottom: 14px; }
  .ts-text blockquote { font-size: 14.5px; }
  .ts-text .ts-author { font-size: 15px; }
}

/* Google reviews CTA below the scroller (re-used from previous version) */
.post-google-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin: 44px 0 12px;
  padding: 36px 24px;
  background: var(--green-sage-pale);
  border: 1px solid rgba(29, 58, 38, 0.12);
}
.post-google-cta p {
  margin: 0;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}
@media (max-width: 700px) {
  .post-google-cta { padding: 28px 18px; }
}

/* ===== Form sections (Plan Your Dream — About you / About your trip) ===== */
.form-section + .form-section { margin-top: 36px; }
.form-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29, 58, 38, 0.12);
}
.form-section-num {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--green-sage);
  font-weight: 700;
}
.form-section-head h4 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.2;
}
.form-req {
  color: var(--green-sage);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(1px);
}
.form-opt {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  padding: 2px 7px;
  border: 1px solid rgba(29, 58, 38, 0.18);
  border-radius: 999px;
  line-height: 1.3;
  transform: translateY(-1px);
}

/* Native date input — neutralize Safari/iOS quirks so the icon + input align like other text inputs */
.finput input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  height: 50px; /* matches the natural height of text inputs (14px padding + 22px line) */
  min-height: 50px;
  color: var(--ink);
}
.finput input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
  margin-left: auto;
  transition: opacity 0.15s var(--ease);
}
.finput input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.finput input[type="date"]::-webkit-date-and-time-value { text-align: left; }

/* Select chevron + icon: keep enough breathing room on both sides */
.finput select { padding-right: 42px !important; }

/* ===== GDPR consent checkbox (shared across forms) ===== */
.form-consent { margin: 6px 0 18px; }
.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.form-consent-label input[type="checkbox"] {
  flex-shrink: 0;
  margin: 3px 0 0;
  width: 16px;
  height: 16px;
  accent-color: var(--green-deep);
  cursor: pointer;
}
.form-consent-label a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.form-consent-label a:hover { color: var(--green-deep); }
.form-consent-label input[type="checkbox"]:invalid + span { color: var(--ink); }

/* =========================================================
   About page — heading size reduction (~25% smaller)
   Scoped to body.page-about so other pages are untouched
   Added: 2026-05-06
   ========================================================= */
body.page-about .page-hero h1 { font-size: clamp(27px, 4.5vw, 51px); }
body.page-about h1, body.page-about .h1 { font-size: clamp(27px, 4.5vw, 51px); }
body.page-about h2, body.page-about .h2 { font-size: clamp(21px, 2.55vw, 33px); }
body.page-about h3, body.page-about .h3 { font-size: clamp(15px, 1.35vw, 19.5px); }

/* =========================================================
   About page — Team section (consolidated, final)
   - Card image height reduced ~25% (4/5 -> 16/15) on all viewports
   - Read more / Read less as a centered CTA-styled button
   - Mobile: horizontal swipe scroller
   Added: 2026-05-06
   ========================================================= */

/* Override base .team-card-img aspect ratio (was 4/5, now ~25% shorter) */
body.page-about .team-card-img {
  aspect-ratio: 16 / 15;
}

/* Read more / Read less — centered, uppercase, letter-spaced, underlined CTA */
body.page-about .team-card-bio[data-bio-toggle] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
body.page-about .team-card-bio[data-bio-toggle] .team-bio-short,
body.page-about .team-card-bio[data-bio-toggle] .team-bio-full {
  width: 100%;
}
body.page-about .team-bio-link {
  display: inline-block;
  margin: 18px auto 2px;
  padding: 6px 2px;
  background: none;
  border: 0;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  cursor: pointer;
  text-align: center;
  align-self: center;
  transition: color .15s var(--ease), text-decoration-thickness .15s var(--ease);
}
body.page-about .team-bio-link:hover {
  color: var(--green-dark);
  text-decoration-thickness: 1.5px;
}

/* Hide leftover scroller controls if present */
body.page-about .team-controls { display: none !important; }

/* Mobile (≤820px): grid -> horizontal swipe scroller */
@media (max-width: 820px) {
  body.page-about .grid.grid-3.team-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 8px 2px 18px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pan-y;
  }
  body.page-about .grid.grid-3.team-grid::-webkit-scrollbar { display: none; }
  body.page-about .grid.grid-3.team-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  body.page-about .grid.grid-3.team-grid > .team-card {
    flex: 0 0 78vw;
    width: 78vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  body.page-about .team-card-body { padding: 18px 18px 22px; }
  body.page-about .team-card-body h3 { font-size: 16px; margin-bottom: 2px; }
  body.page-about .team-card-role { font-size: 11px; }
  body.page-about .team-card-bio { font-size: 13.5px; line-height: 1.55; }
  body.page-about .team-bio-link { font-size: 11px; margin-top: 14px; }
}

/* About page — Team bio expand animation */
body.page-about .team-bio-full {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease .05s;
}

/* About page — let team cards self-size, don't stretch to row height */
body.page-about .grid.grid-3.team-grid { align-items: start; }

/* Footer — FAQ + Plan Your Dream on same row */
.footer-faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-faq-row a:first-child {
  flex: 0 0 auto;
}
.footer-plan-btn {
  flex: 0 0 auto;
  white-space: nowrap;

}
/* Footer — tighten Partners list spacing so Plan Your Dream button rises closer to FAQ */
.footer-col h4 + ul li { margin-bottom: 5px; }
.footer-col h4 + ul { margin-top: -2px; }

/* =========================================================
   Tripadvisor section — split layout + auto-scroll review marquee
   ========================================================= */
.ta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  width: 100%;
}
.ta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.ta-left .ta-cobrand,
.ta-left .ta-stars-row,
.ta-left .ta-n-caption { justify-content: flex-start; }
.ta-left .ta-number,
.ta-left .ta-n-caption { text-align: left; }
.ta-left .ta-n-line { margin-left: 0; }

.ta-right { position: relative; width: 100%; min-width: 0; }
.ta-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ta-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: ta-scroll 60s linear infinite;
}
.ta-marquee:hover .ta-track,
.ta-marquee:focus-within .ta-track { animation-play-state: paused; }

@keyframes ta-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ta-track { animation: none; }
  .ta-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

.ta-review-card {
  flex: 0 0 320px;
  width: 320px;
  background: var(--cream, #faf7f0);
  border: 1px solid rgba(29, 58, 38, 0.10);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 28px -18px rgba(19, 40, 26, 0.18);
  text-align: left;
}
.ta-review-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; line-height: 1; }
.ta-review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink, #1d3a26);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ta-review-meta {
  font-family: var(--font-title, system-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep, #1d3a26);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.ta-review-meta strong { font-weight: 700; }
.ta-review-dot { opacity: 0.5; }
.ta-review-date { opacity: 0.7; }
.ta-review-tour {
  font-size: 11.5px;
  font-style: italic;
  color: var(--ink-soft, #4a5d52);
  border-top: 1px solid rgba(29, 58, 38, 0.08);
  padding-top: 10px;
  line-height: 1.4;
}
.ta-review-source {
  font-family: var(--font-title, system-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep, #1d3a26);
  opacity: 0.55;
}
.ta-review-source span { color: #34e0a1; font-weight: 700; opacity: 1; }

@media (max-width: 900px) {
  .ta-grid { grid-template-columns: 1fr; gap: 36px; }
  .ta-left { align-items: center; text-align: center; }
  .ta-left .ta-cobrand,
  .ta-left .ta-stars-row,
  .ta-left .ta-n-caption { justify-content: center; }
  .ta-left .ta-number,
  .ta-left .ta-n-caption { text-align: center; }
  .ta-review-card { flex: 0 0 280px; width: 280px; }
}

/* =========================================================
   Plan Your Dream — final form spacing (clean, single source)
   Root fix: override .form-grid align-items + use a
   proper rhythm scale (label↔input, row↔row, section↔section)
   ========================================================= */
body.page-plan .form-grid {
  column-gap: 28px;
  row-gap: 32px;
  align-items: start;
}
body.page-plan .form { display: flex; flex-direction: column; gap: 56px; }
body.page-plan .form-section { display: flex; flex-direction: column; gap: 32px; }
body.page-plan .form-row { gap: 14px; }
body.page-plan .form-section + .form-section { margin-top: 0; }
body.page-plan .form-section-head {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(29, 58, 38, 0.12);
}
body.page-plan .form-row > label,
body.page-plan .form-grid > .form-row > label { 
  min-height: auto; 
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
}
body.page-plan .form-row > label .form-opt,
body.page-plan .form-grid .form-opt {
  flex-shrink: 0;
  font-size: 9.5px;
  padding: 2px 8px;
  letter-spacing: 0.18em;
}
/* Consent label MUST wrap — it's full sentence text */
body.page-plan .form-consent label,
body.page-plan .form-consent {
  flex-wrap: wrap !important;
  white-space: normal !important;
  align-items: flex-start !important;
}

@media (max-width: 820px) {
  body.page-plan .form { gap: 44px; }
  body.page-plan .form-section { gap: 24px; }
  body.page-plan .form-grid { row-gap: 24px; }
}

/* Mobile (≤600px): tighten container + form-card so fields fit viewport */
@media (max-width: 600px) {
  body.page-plan .plan-section .container,
  body.page-plan .plan-section .container[style] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }
  body.page-plan .contact-form-card {
    padding: 24px 20px 22px !important;
  }
  body.page-plan .form { gap: 36px; }
  body.page-plan .form-section { gap: 20px; }
  body.page-plan .form-grid { row-gap: 20px; }
  body.page-plan .form input,
  body.page-plan .form textarea,
  body.page-plan .form select {
    font-size: 14.5px;
    padding: 12px 14px;
  }
  body.page-plan .finput input,
  body.page-plan .finput select,
  body.page-plan .finput textarea {
    padding-left: 38px !important;
  }
  body.page-plan .finput-ic { left: 12px; font-size: 13px; }
  /* Allow OPTIONAL pill to wrap to new line on mobile */
  body.page-plan .form-row > label,
  body.page-plan .form-grid > .form-row > label {
    flex-wrap: wrap !important;
    white-space: normal !important;
    row-gap: 6px;
  }
}

/* Very small phones (≤380px): one more tightening pass */
@media (max-width: 380px) {
  body.page-plan .plan-section .container,
  body.page-plan .plan-section .container[style] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-plan .contact-form-card {
    padding: 22px 16px 20px !important;
  }
}
