/* ============================================================================
   Savanna Secrets Safaris — site theme
   Single stylesheet for every page. Maps cleanly to a WordPress theme:
   tokens → theme.json/variables, .site-header/.site-footer → header.php/footer.php,
   components (.btn/.tag/.package-card) → block styles.
   ========================================================================= */

/* Headings: EB Garamond (classical serif) · Body/UI: Hanken Grotesk.
   Self-hosted variable fonts — files live in /assets/fonts and are declared
   in fonts.css (enqueued first by functions.php). No external font requests. */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* colour */
  --color-ink: #130501;
  --color-bark: #2c1609;
  --color-clay: #623826;
  --color-sun: #f47b20;
  --color-sand: #fff8f3;
  --color-sun-deep: #d2641a;
  --color-sand-shade: #f3e9df;
  --color-clay-soft: #8a6450;
  --overlay-grad: linear-gradient(to top, rgba(19,5,1,0.80) 0%, rgba(19,5,1,0.32) 46%, rgba(19,5,1,0) 100%);
  --overlay-deep: rgba(19,5,1,0.62);
  --border-default: rgba(98,56,38,0.22);
  --border-on-dark: rgba(255,248,243,0.22);

  /* type */
  --font-display: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* EB Garamond's lightest weight is 400, so display uses 400 (no 300) */
  --w-light: 400; --w-reg: 400; --w-med: 500; --w-semi: 600;
  --text-display: clamp(2.9rem, 7.2vw, 5.4rem);
  --text-h1: clamp(2rem, 4.5vw, 3.25rem);
  --text-h2: clamp(1.6rem, 3vw, 2.25rem);
  --text-h3: clamp(1.25rem, 2vw, 1.5rem);
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-tiny: 0.75rem;
  --lead-display: 1.05; --lead-heading: 1.12; --lead-body: 1.65; --lead-tight: 1.25;
  --track-label: 0.08em; --track-tight: -0.01em;
  --measure: 68ch;

  /* spacing / layout */
  --s1:4px; --s2:8px; --s3:16px; --s4:24px; --s5:32px; --s6:48px; --s7:64px; --s8:96px; --s9:128px;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --gutter: clamp(24px, 5vw, 80px);
  --max-content: 1280px;
  --max-prose: 720px;

  /* radii / shadow / motion */
  --radius-sm:2px; --radius:4px; --radius-md:8px; --radius-lg:14px; --radius-pill:999px;
  --shadow-sm: 0 1px 2px rgba(19,5,1,0.06);
  --shadow: 0 4px 14px rgba(19,5,1,0.08);
  --shadow-lift: 0 14px 36px rgba(19,5,1,0.16);
  --shadow-focus: 0 0 0 3px rgba(244,123,32,0.45);
  --ease-out: cubic-bezier(0.22,0.61,0.36,1);
  --dur-fast:0.18s; --dur:0.3s; --dur-slow:0.6s;
}

/* ---- Base -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lead-body);
  color: var(--color-ink);
  background: var(--color-sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: var(--w-reg); }
p { margin: 0; }
::selection { background: var(--color-sun); color: var(--color-ink); }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius); }

/* ---- Layout helpers ---------------------------------------------------- */
.container { max-width: var(--max-content); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }
.prose { max-width: var(--measure); }
.eyebrow {
  font-size: var(--text-small); letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--color-clay); font-weight: var(--w-med);
}
.eyebrow--light { color: rgba(255,248,243,0.85); }
.accent { font-style: italic; color: var(--color-sun); }
.h-display { font-size: var(--text-display); line-height: var(--lead-display); font-weight: var(--w-light); letter-spacing: var(--track-tight); }
.h1 { font-size: var(--text-h1); line-height: var(--lead-heading); }
.h2 { font-size: var(--text-h2); line-height: var(--lead-heading); }
.h3 { font-size: var(--text-h3); line-height: var(--lead-heading); font-weight: var(--w-semi); }
.lead { font-size: var(--text-body-lg); line-height: var(--lead-body); color: var(--color-clay); }
.muted { color: var(--color-clay); }
.on-dark { color: var(--color-sand); }
.on-dark .lead, .on-dark .muted { color: rgba(255,248,243,0.80); }
.center { text-align: center; }
.bg-sand { background: var(--color-sand); }
.bg-shade { background: var(--color-sand-shade); }
.bg-bark { background: var(--color-bark); color: var(--color-sand); }
.bg-ink { background: var(--color-ink); color: var(--color-sand); }

/* ---- Photo placeholders (warm, destination-keyed) ---------------------- */
/* Stand in for the real image library; each place is distinct. */
.ph { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.ph::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(19,5,1,0.28) 100%); z-index:1; }
.ph--overlay::after { content:""; position:absolute; inset:0; background: var(--overlay-grad); z-index:2; }
.ph__cap { position:absolute; bottom:12px; right:14px; z-index:3;
  font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,248,243,0.82); }
.ph > .ph__content { position: relative; z-index: 3; }

.ph--heroMara  { background-image: linear-gradient(180deg,#c8893e 0%,#9a5a26 38%,#5d3115 78%,#2c1609 100%); }
.ph--mara      { background-image: linear-gradient(150deg,#d4a04a 0%,#a86a2c 55%,#6e3f1c 100%); }
.ph--amboseli  { background-image: linear-gradient(160deg,#9fb6c4 0%,#b98a4e 52%,#7a4a22 100%); }
.ph--tsavo     { background-image: linear-gradient(150deg,#c56a32 0%,#9a3f1e 60%,#571f0e 100%); }
.ph--samburu   { background-image: linear-gradient(155deg,#d8a657 0%,#b06a2a 60%,#683713 100%); }
.ph--serengeti { background-image: linear-gradient(165deg,#cdb15e 0%,#98763a 55%,#5c3c1b 100%); }
.ph--bwindi    { background-image: linear-gradient(160deg,#6f8559 0%,#3f5a3a 55%,#1d2c18 100%); }
.ph--coast     { background-image: linear-gradient(160deg,#7fc3c9 0%,#3f8a8f 50%,#1f4f53 100%); }
.ph--team      { background-image: linear-gradient(150deg,#b9824c 0%,#7a4e2a 60%,#3d2614 100%); }
.ph--client    { background-image: linear-gradient(150deg,#d29a5a 0%,#a06633 100%); }
.ph--lodge     { background-image: linear-gradient(155deg,#c79a63 0%,#8a5e34 100%); }
.ph--nakuru    { background-image: linear-gradient(155deg,#d98a86 0%,#a8504a 52%,#5e2622 100%); }
.ph--ngorongoro{ background-image: linear-gradient(160deg,#8fa06a 0%,#5e6f3a 55%,#2f3a1c 100%); }
.ph--rwanda    { background-image: linear-gradient(160deg,#7e9466 0%,#4a6340 55%,#243218 100%); }
.ph--rounded { border-radius: var(--radius-lg); }
.ph--soft { border-radius: var(--radius-md); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--font-body); font-weight: var(--w-semi); font-size: 1rem; line-height: 1;
  padding: 14px 28px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn--primary { background: var(--color-sun); color: var(--color-ink); }
.btn--primary:hover { background: var(--color-sun-deep); }
.btn--secondary { background: transparent; color: var(--color-ink); border-color: var(--color-ink); }
.btn--secondary:hover { background: var(--color-ink); color: var(--color-sand); }
.btn--ghost { background: transparent; color: var(--color-sand); border-color: var(--color-sand); }
.btn--ghost:hover { background: var(--color-sand); color: var(--color-ink); }
.btn .arw { display: inline-flex; transition: transform var(--dur) var(--ease-out); }
.btn:hover .arw { transform: translateX(4px); }

/* ---- Tags / pills ------------------------------------------------------ */
.tag {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-body); font-size: var(--text-tiny); font-weight: var(--w-med);
  letter-spacing: var(--track-label); text-transform: uppercase; line-height: 1;
}
.tag--solid { background: rgba(44,22,9,0.78); color: var(--color-sand); padding: 7px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(2px); }
.tag--soft { background: var(--color-sand-shade); color: var(--color-clay); padding: 7px 12px; border-radius: var(--radius-pill); }

/* ---- Text link --------------------------------------------------------- */
.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: var(--w-semi); font-size: var(--text-small);
  letter-spacing: 0.01em; text-decoration: none; color: var(--color-clay);
}
.textlink--sun { color: var(--color-sun); }
.textlink--sand { color: var(--color-sand); }
.textlink { transition: color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.textlink .arw { display: inline-flex; transition: transform var(--dur) var(--ease-out); }
.textlink:hover { color: var(--color-sun-deep); transform: translateX(4px); }

/* ---- Package card ------------------------------------------------------ */
.package-card {
  display: flex; flex-direction: column; background: var(--color-sand);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.package-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.package-card .pc-img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--color-sand-shade); }
.package-card .pc-img .ph { position: absolute; inset: 0; transition: transform var(--dur-slow) var(--ease-out); }
.package-card:hover .pc-img .ph { transform: scale(1.04); }
.package-card .pc-img .tag { position: absolute; top: 14px; left: 14px; z-index: 4; }
.package-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.package-card .pc-body h3 { font-size: var(--text-h3); font-weight: var(--w-semi); line-height: var(--lead-heading); color: var(--color-ink); }
.package-card .pc-body p { font-size: var(--text-body); line-height: 1.5; color: var(--color-clay); }
.package-card .pc-link { margin-top: 6px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: var(--w-semi); font-size: var(--text-small); color: var(--color-sun); }
.package-card .pc-link { transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease-out); }
.package-card .pc-link .arw { transition: transform var(--dur) var(--ease-out); }
.package-card:hover .pc-link { transform: translateX(4px); color: var(--color-sun-deep); }

/* ---- Feature (why-us) -------------------------------------------------- */
.feature__icon { width:48px; height:48px; border-radius: var(--radius-md);
  background: var(--color-sand-shade); display:grid; place-items:center; color: var(--color-sun-deep); }
.bg-bark .feature__icon, .bg-ink .feature__icon { background: rgba(255,248,243,0.08); color: var(--color-sun); }
.feature h3 { font-size: var(--text-h3); font-weight: var(--w-semi); margin: 18px 0 8px; }

/* ---- Header ------------------------------------------------------------ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: transparent;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
/* Inner pages (no full-bleed hero behind the header) opt into top offset */
body.has-offset-header { padding-top: 78px; }
/* Solid header from the top (light heroes / editorial pages) */
body.solid-header .site-header { background: var(--color-sand); box-shadow: 0 1px 0 rgba(98,56,38,0.14), var(--shadow-sm); }
body.solid-header .site-header__logo img { filter: none; }
body.solid-header .main-nav a { color: var(--color-ink); text-shadow: none; }
body.solid-header .main-nav a.is-active { color: var(--color-sun); }
body.solid-header .lang button { color: var(--color-ink); }
body.solid-header .lang button.is-active { color: var(--color-sun); }
body.solid-header .lang .sep { color: var(--color-clay); }
body.solid-header .nav-toggle { color: var(--color-ink); }
.site-header.is-scrolled { background: var(--color-sand); box-shadow: 0 1px 0 rgba(98,56,38,0.14), var(--shadow-sm); }
.site-header__inner { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--gutter);
  height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header__logo { display:flex; align-items:center; }
.site-header__logo .mark { display: none; }
/* One black logo; inverted to white while transparent over the hero, natural when scrolled */
.site-header__logo img { height: 40px; filter: brightness(0) invert(1); transition: filter var(--dur) var(--ease-out); }
.site-header.is-scrolled .site-header__logo img { filter: none; }
.site-header__logo .mark { display: none; }
.main-nav { display: flex; align-items: center; gap: 28px; }
/* Mobile dropdown menu — solid sand panel with always-readable ink links */
.main-nav.is-open { display: flex; position: absolute; top: 78px; left: 0; right: 0; z-index: 49;
  flex-direction: column; gap: 0; background: var(--color-sand); padding: 8px var(--gutter) 16px; box-shadow: var(--shadow); }
.main-nav.is-open a { color: var(--color-ink); padding: 15px 0; font-size: 1.0625rem; border-bottom: 1px solid var(--border-default); text-shadow: none; }
.main-nav.is-open a:last-child { border-bottom: 0; }
.main-nav.is-open a.is-active { color: var(--color-sun); }
.main-nav a { font-size: 15px; font-weight: var(--w-med); color: var(--color-sand); text-decoration: none; padding: 8px 0; transition: color var(--dur); text-shadow: 0 1px 3px rgba(19,5,1,0.55); }
.site-header.is-scrolled .main-nav a { color: var(--color-ink); text-shadow: none; }
.main-nav a:hover, .site-header.is-scrolled .main-nav a:hover, body.solid-header .main-nav a:hover { color: var(--color-sun-deep); }
.main-nav a.is-active { color: var(--color-sun); }
.main-nav a.is-disabled { opacity: 0.4; pointer-events: none; cursor: default; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang { display:flex; gap:2px; font-size:13px; font-weight:600; align-items:center; }
.lang button { background:none; border:none; cursor:pointer; padding:2px 4px; font-family: var(--font-body); font-size:13px; color: var(--color-sand); }
.site-header.is-scrolled .lang button { color: var(--color-ink); }
.lang button.is-active { color: var(--color-sun); font-weight:700; }
.lang .sep { color: rgba(255,248,243,0.5); }
.site-header.is-scrolled .lang .sep { color: var(--color-clay); }
.nav-toggle { display:none; align-items:center; justify-content:center; width:44px; height:44px; margin-right:-10px; background:none; border:none; cursor:pointer; color: var(--color-sand); }
.site-header.is-scrolled .nav-toggle { color: var(--color-ink); }

/* ---- WordPress block flow: full-bleed sections sit flush --------------- */
/* The page body is a stack of self-contained, full-bleed Custom HTML sections
   that own their internal spacing. WordPress' default block gap injects sand
   bands between them (and pushes the hero down so the transparent header lands
   on a sand strip, hiding the white nav). Zero the inter-block margins. */
.wp-block-post-content { margin: 0; }
.wp-block-post-content > * { margin-block: 0 !important; }
main.wp-block-group { margin-block: 0; padding: 0; }
/* Header stays legible the instant the page loads, before scroll JS runs. */
.site-header:not(.is-scrolled) .main-nav a,
.site-header:not(.is-scrolled) .site-header__logo { text-shadow: 0 1px 6px rgba(19,5,1,0.45); }

/* Hero with a real Featured Image: hide the placeholder caption. The inline
   background-image (added by functions.php) overrides the gradient; the
   ::before protection gradient stays for text legibility. */
.ph--has-photo .ph__cap { display: none; }

/* WordPress admin bar (logged-in only): drop the fixed header below it so it
   doesn't sit half-hidden under the toolbar at the top of the page. */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ---- Fluent Forms — wear the brand ------------------------------------- */
/* The enquiry form is rendered by Fluent Forms, which ships its own button +
   input styling. Re-skin its submit button as our primary button and make its
   text use the body font. !important overrides Fluent Forms' inline styles. */
.fluentform .ff-btn-submit,
.fluentform button[type="submit"] {
  font-family: var(--font-body) !important; font-weight: var(--w-semi) !important;
  font-size: 1.0625rem !important; letter-spacing: 0 !important; text-transform: none !important;
  background: var(--color-sun) !important; color: var(--color-ink) !important;
  border: none !important; border-radius: var(--radius) !important;
  padding: 16px 32px !important; line-height: 1 !important; cursor: pointer;
  box-shadow: none !important; transition: background var(--dur) var(--ease-out); }
.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover { background: var(--color-sun-deep) !important; }
.fluentform, .fluentform input, .fluentform select, .fluentform textarea,
.fluentform label, .fluentform .ff-el-input--label label {
  font-family: var(--font-body); }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--color-bark); color: var(--color-sand); }
.site-footer__top { max-width: var(--max-content); margin: 0 auto; padding: var(--s8) var(--gutter) var(--s6);
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(24px, 4vw, 56px); }
.site-footer__brand img { height: 92px; }
.site-footer__brand p { font-size: var(--text-small); color: rgba(255,248,243,0.7); max-width: 32ch; margin-top: 18px; }
.site-footer__social { display:flex; gap:12px; margin-top:20px; }
.site-footer__social a { width:38px; height:38px; border-radius: var(--radius-pill); border:1px solid var(--border-on-dark);
  display:grid; place-items:center; color: var(--color-sand); }
.site-footer__social a:hover { border-color: var(--color-sun-deep); color: var(--color-sun-deep); }
.site-footer h4 { font-size: var(--text-small); letter-spacing: var(--track-label); text-transform: uppercase;
  color: rgba(255,248,243,0.6); margin: 0 0 18px; font-weight: var(--w-semi); font-family: var(--font-body); }
.site-footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.site-footer ul a { font-size: var(--text-body); color: rgba(255,248,243,0.85); text-decoration:none; transition: color var(--dur); }
.site-footer ul a:hover { color: var(--color-sun-deep); }
.site-footer ul a.is-disabled { opacity: 0.4; pointer-events:none; }
.site-footer__contact { font-size: var(--text-small); color: rgba(255,248,243,0.75); line-height: var(--lead-body); }
.site-footer__bar { max-width: var(--max-content); margin: 0 auto; padding: 24px var(--gutter);
  border-top: 1px solid var(--border-on-dark); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.site-footer__bar span { font-size: var(--text-tiny); color: rgba(255,248,243,0.55); }

/* ---- WhatsApp FAB ------------------------------------------------------ */
.wa-fab { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 58px; height: 58px;
  border-radius: var(--radius-pill); background: #25D366; color:#fff; display:grid; place-items:center; box-shadow: var(--shadow-lift); }

/* ---- Skip link (a11y) -------------------------------------------------- */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--color-ink); color: var(--color-sand);
  padding: 10px 18px; border-radius: var(--radius); font-weight: var(--w-semi); text-decoration: none; transition: top var(--dur) var(--ease-out); }
.skip-link:focus { top: 16px; }

/* ---- Full-screen mobile menu ------------------------------------------ */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--color-bark); color: var(--color-sand);
  display: flex; flex-direction: column; padding: 22px var(--gutter) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur); }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.mobile-menu__top img { height: 38px; filter: brightness(0) invert(1); }
.mobile-menu__close { width: 44px; height: 44px; border: 1px solid var(--border-on-dark); border-radius: var(--radius-pill);
  background: none; color: var(--color-sand); cursor: pointer; display: grid; place-items: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: clamp(24px, 6vh, 56px); }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.6rem); color: var(--color-sand);
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border-on-dark); transition: color var(--dur); }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--color-sun-deep); }
.mobile-menu__foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu__foot .btn { justify-content: center; }
.mobile-menu__contact { font-size: var(--text-small); color: rgba(255,248,243,0.72); line-height: var(--lead-body); }

/* ---- Sticky mobile action bar ----------------------------------------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 58; display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: var(--color-sand);
  border-top: 1px solid var(--border-default); box-shadow: 0 -4px 20px rgba(19,5,1,0.10); }
.mobile-bar .btn { flex: 1; justify-content: center; }
.mobile-bar__wa { flex: 0 0 52px; width: 52px; border-radius: var(--radius); background: #25D366; color: #fff;
  display: grid; place-items: center; text-decoration: none; }

/* ---- Accreditation logo slots ----------------------------------------- */
.accr-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px); margin-top: 32px; }
.accr-logos .logo-slot { height: 64px; min-width: 130px; padding: 0 22px; border: 1px dashed var(--border-default);
  border-radius: var(--radius-md); display: grid; place-items: center; background: var(--color-sand);
  font-family: var(--font-display); font-size: 1.1rem; color: var(--color-clay); text-align: center; line-height: 1.15; }
.accr-logos .logo-slot small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--color-clay-soft); margin-top: 4px; }

/* ---- Client scrapbook collage ----------------------------------------- */
.scrapbook { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(80px, 9vw, 130px); gap: clamp(10px, 1.4vw, 18px); }
.scrapbook figure { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.scrapbook figure .ph { position: absolute; inset: 0; transition: transform var(--dur-slow) var(--ease-out); }
.scrapbook figure:hover .ph { transform: scale(1.05); }
.scrapbook figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 14px 16px;
  font-size: var(--text-small); color: var(--color-sand); }
.scrapbook .sb-a { grid-column: span 5; grid-row: span 3; }
.scrapbook .sb-b { grid-column: span 4; grid-row: span 2; }
.scrapbook .sb-c { grid-column: span 3; grid-row: span 2; }
.scrapbook .sb-d { grid-column: span 4; grid-row: span 2; }
.scrapbook .sb-e { grid-column: span 3; grid-row: span 2; }
.scrapbook figure[class*="sb-"] { transform: rotate(var(--tilt, 0deg)); }

/* ---- Real-photo gallery (WordPress Gallery block, styled as scrapbook) --
   Drop a Gallery block inside a .ss-gallery group. The CSS auto-composes by
   image count (1 = cinematic frame; 2–5 = tilted scrapbook). With NO images
   the whole section — heading included — hides itself. Caps display at 5. */
.ss-gallery:not(:has(figure.wp-block-image)) { display: none; }

.ss-gallery .wp-block-gallery.has-nested-images {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 20vw, 240px);
  gap: clamp(12px, 1.6vw, 20px); margin: 0; }
.ss-gallery .wp-block-gallery figure.wp-block-image {
  position: relative; margin: 0; height: 100%; overflow: hidden;
  border-radius: var(--radius-md); box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease-out); }
.ss-gallery .wp-block-gallery figure.wp-block-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out); }
.ss-gallery .wp-block-gallery figure.wp-block-image:hover { transform: rotate(0deg) scale(1.01); }
.ss-gallery .wp-block-gallery figure.wp-block-image:hover img { transform: scale(1.05); }
.ss-gallery .wp-block-gallery figure.wp-block-image figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0; z-index: 3;
  padding: 24px 16px 12px; font-size: var(--text-small); color: var(--color-sand);
  background: linear-gradient(to top, rgba(19,5,1,0.74), rgba(19,5,1,0)); }
/* never show beyond the 5th */
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(n+6) { display: none; }

/* 1 image → single cinematic frame, no tilt */
.ss-gallery .wp-block-gallery.has-nested-images:not(:has(figure.wp-block-image:nth-of-type(2))) {
  grid-template-columns: 1fr; grid-auto-rows: auto; }
.ss-gallery .wp-block-gallery.has-nested-images:not(:has(figure.wp-block-image:nth-of-type(2))) figure.wp-block-image {
  aspect-ratio: 3 / 2; height: auto; border-radius: var(--radius-lg); transform: none; }

/* tilts for the scattered look (2–5) */
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(1) { transform: rotate(-1deg); }
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(2) { transform: rotate(1.2deg); }
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(3) { transform: rotate(-1.5deg); }
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(4) { transform: rotate(1deg); }
.ss-gallery .wp-block-gallery figure.wp-block-image:nth-of-type(5) { transform: rotate(-0.8deg); }

/* 2 images → 6 + 6 */
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(2)):not(:has(figure.wp-block-image:nth-of-type(3))) figure.wp-block-image { grid-column: span 6; }
/* 3 images → 4 + 4 + 4 */
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(3)):not(:has(figure.wp-block-image:nth-of-type(4))) figure.wp-block-image { grid-column: span 4; }
/* 4 images → 6 + 6 / 6 + 6 */
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(4)):not(:has(figure.wp-block-image:nth-of-type(5))) figure.wp-block-image { grid-column: span 6; }
/* 5 images → 7 + 5 / 4 + 4 + 4 */
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) figure.wp-block-image:nth-of-type(1) { grid-column: span 7; }
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) figure.wp-block-image:nth-of-type(2) { grid-column: span 5; }
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) figure.wp-block-image:nth-of-type(3),
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) figure.wp-block-image:nth-of-type(4),
.ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) figure.wp-block-image:nth-of-type(5) { grid-column: span 4; }

@media (max-width: 700px) {
  .ss-gallery .wp-block-gallery.has-nested-images,
  .ss-gallery .wp-block-gallery.has-nested-images:has(figure.wp-block-image:nth-of-type(5)) { grid-template-columns: 1fr; grid-auto-rows: clamp(180px, 56vw, 260px); }
  .ss-gallery .wp-block-gallery figure.wp-block-image { grid-column: 1 / -1 !important; transform: none !important; }
}

/* ---- Enquiry drawer ---------------------------------------------------- */
.drawer-scrim { position: fixed; inset: 0; z-index: 70; background: var(--overlay-deep);
  opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease-out); }
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top:0; right:0; bottom:0; z-index: 71; width: min(520px, 100vw);
  background: var(--color-sand); box-shadow: var(--shadow-lift); transform: translateX(100%);
  transition: transform var(--dur) var(--ease-out); display:flex; flex-direction:column; overflow-y:auto; }
.drawer.is-open { transform: translateX(0); }
.drawer__head { position: relative; height: 160px; flex-shrink: 0; }
.drawer__head .ph { position:absolute; inset:0; }
.drawer__close { position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius: var(--radius-pill);
  background: rgba(255,248,243,0.92); border:none; cursor:pointer; display:grid; place-items:center; color: var(--color-ink); z-index:4; }
.drawer__head-label { position:absolute; left:28px; bottom:18px; z-index:4; }
.drawer__form { padding: 28px; display:flex; flex-direction:column; gap:18px; }
.drawer__about { margin: 18px 28px -6px; padding: 12px 16px; border-radius: var(--radius); background: rgba(244,123,32,0.12); border: 1px solid rgba(244,123,32,0.34); font-size: var(--text-small); color: var(--color-bark); }
.drawer__about b { font-weight: var(--w-semi); color: var(--color-ink); }
.drawer__about[hidden] { display: none; }
.field { display:flex; flex-direction:column; gap:8px; }
.field label { font-size: var(--text-small); font-weight: var(--w-med); color: var(--color-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-body); color: var(--color-ink);
  padding: 12px 14px; border: 1.5px solid var(--border-default); border-radius: var(--radius);
  background: var(--color-sand); transition: border-color var(--dur), box-shadow var(--dur); width:100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--color-sun); box-shadow: var(--shadow-focus); }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field-hint { font-weight: var(--w-reg); color: var(--color-clay-soft); text-transform: none; letter-spacing: 0; font-size: var(--text-tiny); }
.field-legend { font-size: var(--text-small); font-weight: var(--w-med); color: var(--color-ink); }
.checks { display:flex; flex-wrap:wrap; gap:10px; }
.check { display:inline-flex; align-items:center; gap:9px; cursor:pointer; padding:9px 16px; border-radius: var(--radius-pill);
  border:1.5px solid var(--border-default); background:transparent; transition: border-color var(--dur-fast), background var(--dur-fast); font-size: var(--text-small); }
.check input { accent-color: var(--color-sun); width:16px; height:16px; margin:0; }
.check:has(input:checked) { border-color: var(--color-sun); background: rgba(244,123,32,0.10); }
.check:focus-within { box-shadow: var(--shadow-focus); }
.enquiry-recap { width:100%; margin: 6px 0 4px; padding: 18px 20px; border:1px solid var(--border-default); border-radius: var(--radius-md);
  background: var(--color-sand-shade); text-align:left; display:flex; flex-direction:column; gap:8px; }
.enquiry-recap div { display:grid; grid-template-columns: 130px 1fr; gap:12px; align-items:baseline; }
.enquiry-recap dt { font-size: var(--text-tiny); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--color-clay-soft); margin:0; }
.enquiry-recap dd { font-size: var(--text-small); color: var(--color-ink); margin:0; }
.chips { display:flex; gap:10px; flex-wrap:wrap; }
.chip { padding:9px 16px; border-radius: var(--radius-pill); cursor:pointer; font-family: var(--font-body);
  font-size: var(--text-small); font-weight:500; border:1.5px solid var(--border-default); background:transparent; color: var(--color-ink); transition: all var(--dur-fast); }
.chip.is-on { border-color: var(--color-sun); background: var(--color-sun); }
.drawer__sent { padding:40px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; margin:auto; }
.drawer__sent-badge { width:56px; height:56px; border-radius: var(--radius-pill); background: var(--color-sun); color: var(--color-ink); display:grid; place-items:center; }

/* ---- Reveal on scroll (visible by default; JS arms it) ----------------- */
.reveal.is-armed { opacity: 0; transform: translateY(20px); }
.reveal.is-armed.is-in { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }

/* ---- Image accordion (Why us) ----------------------------------------- */
.acc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.acc__items { display: flex; flex-direction: column; }
.acc__item { border-top: 1px solid var(--border-default); }
.acc__item:last-child { border-bottom: 1px solid var(--border-default); }
.acc__head { display: grid; grid-template-columns: 56px 1fr 28px; align-items: center; gap: 18px;
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: clamp(22px, 2.6vw, 30px) 0; font-family: inherit; color: var(--color-ink); }
.acc__head .ed-index { font-family: var(--font-display); font-size: var(--text-h2); font-weight: var(--w-reg);
  color: var(--color-clay-soft); transition: color var(--dur); font-feature-settings: "tnum"; }
.acc__item.is-open .acc__head .ed-index { color: var(--color-sun); }
.acc__head h3 { font-size: var(--text-h3); font-weight: var(--w-semi); line-height: var(--lead-tight);
  color: var(--color-clay); transition: color var(--dur); }
.acc__item.is-open .acc__head h3 { color: var(--color-ink); }
.acc__plus { width: 22px; height: 22px; position: relative; justify-self: end; color: var(--color-clay); }
.acc__plus::before, .acc__plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; transition: transform var(--dur) var(--ease-out), opacity var(--dur); }
.acc__plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.acc__plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.acc__item.is-open .acc__plus { color: var(--color-sun); }
.acc__item.is-open .acc__plus::after { transform: scaleY(0); opacity: 0; }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-out); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel-inner { overflow: hidden; }
.acc__panel-inner p { padding: 0 0 28px 74px; max-width: 60ch; color: var(--color-clay); }
.acc__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow); }
.acc__media [data-layer] { position: absolute; inset: 0; opacity: 0; transform: scale(1.04);
  transition: opacity var(--dur-slow) var(--ease-out), transform 1.2s var(--ease-out); }
.acc__media [data-layer].is-active { opacity: 1; transform: scale(1); }
@media (max-width: 900px) {
  .acc { grid-template-columns: 1fr; }
  .acc__media { min-height: 300px; order: -1; }
  .acc__panel-inner p { padding-left: 74px; }
}

/* ---- Concept switcher (review aid; removed in final build) ------------- */
.concept-switch { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 80;
  display: flex; gap: 4px; padding: 5px; border-radius: var(--radius-pill);
  background: rgba(19,5,1,0.86); backdrop-filter: blur(8px); box-shadow: var(--shadow-lift); }
.concept-switch a { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-decoration: none;
  color: rgba(255,248,243,0.7); padding: 9px 16px; border-radius: var(--radius-pill); white-space: nowrap;
  display: flex; align-items: center; gap: 7px; transition: background var(--dur), color var(--dur); }
.concept-switch a small { font-weight: 400; opacity: 0.7; }
.concept-switch a:hover { color: var(--color-sand); }
.concept-switch a.is-active { background: var(--color-sun); color: var(--color-ink); }
.concept-switch a.is-active small { opacity: 0.85; }

/* ---- Responsive -------------------------------------------------------- */
/* Nav → hamburger at 960px (5-item bar fits comfortably above that). */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
/* Phones: show the sticky action bar, hide the floating FAB (avoids overlap),
   and pad the page so the bar never covers the footer's last line. */
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  .wa-fab { display: none; }
  body { padding-bottom: 76px; }
  .scrapbook { grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(96px, 22vw, 150px); }
  .scrapbook .sb-a { grid-column: span 6; grid-row: span 2; }
  .scrapbook .sb-b, .scrapbook .sb-c, .scrapbook .sb-d, .scrapbook .sb-e { grid-column: span 3; grid-row: span 1; }
  .scrapbook figure[class*="sb-"] { transform: none; }
}
@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .concept-switch a small { display: none; }
}
/* Phones: swap the full wordmark for the compact acacia mark so logo + CTA +
   hamburger fit comfortably down to 320px. */
@media (max-width: 520px) {
  .site-header__logo .full { display: none; }
  .site-header__logo .mark { display: block; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-armed { opacity: 1 !important; transform: none !important; }
  .marquee__track, .hero__scroll svg { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================================
   SHARED INNER-PAGE PATTERNS (About, Packages, Destinations, Experiences,
   itinerary template, Travel Guide, Terms). Page-specific layout still lives
   in each page's <style> block; everything reused across pages lives here.
   ========================================================================= */

/* ---- Inner-page hero (header sits transparent over it) ----------------- */
.page-hero { position: relative; min-height: 62vh; min-height: 62svh; display: grid; place-items: center; text-align: center; }
.page-hero--short { min-height: 46svh; }
.page-hero > .ph { position: absolute; inset: 0; }
.page-hero__inner { position: relative; z-index: 3; padding: 128px var(--gutter) 72px; max-width: 880px; margin: 0 auto; }
.page-hero .eyebrow { display: inline-block; }

/* ---- Measure helpers --------------------------------------------------- */
.measure { max-width: var(--max-prose); }
.measure-narrow { max-width: 60ch; }

/* ---- Lead-in intro band (eyebrow + heading + supporting prose) --------- */
.intro-head { max-width: 60ch; }
.intro-head .h1 { color: var(--color-ink); margin-top: 14px; }
.intro-head .lead { margin-top: 18px; }

/* ---- Alternating image / text feature rows (destinations, experiences) - */
.feature-rows { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 104px); }
.feature-row { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature-row__media { position: relative; }
.feature-row__media .ph { aspect-ratio: 5 / 4; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row__body h2 { color: var(--color-ink); margin: 12px 0 0; }
.feature-row__body .prose { margin-top: 18px; }
.feature-row__body .prose p + p { margin-top: 14px; }
.tag-set { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.feature-row__cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---- Package group (hub page) ------------------------------------------ */
.pkg-group { margin-top: clamp(40px, 5vw, 64px); }
.pkg-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 1px solid var(--border-default); margin-bottom: clamp(24px, 3vw, 36px); }
.pkg-group__head h2 { color: var(--color-ink); }
.pkg-group__head p { color: var(--color-clay); max-width: 52ch; font-size: var(--text-small); }
.pkg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.package-card .pc-foot { margin-top: 6px; }
.package-card.is-static { transform: none; }

/* ---- Itinerary timeline (package pages) -------------------------------- */
.itin { display: flex; flex-direction: column; }
.itin__day { display: grid; grid-template-columns: 132px 1fr; gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 3.4vw, 40px) 0; border-top: 1px solid var(--border-default); }
.itin__day:last-child { border-bottom: 1px solid var(--border-default); }
.itin__marker { display: flex; flex-direction: column; gap: 6px; }
.itin__marker .day-no { font-family: var(--font-display); font-size: var(--text-h2); color: var(--color-sun); line-height: 1; }
.itin__marker .day-lbl { font-size: var(--text-tiny); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--color-clay-soft); }
.itin__body h3 { font-size: var(--text-h3); font-weight: var(--w-semi); color: var(--color-ink); margin-bottom: 12px; }
.itin__body .prose { color: var(--color-clay); }
.itin__body .prose p + p { margin-top: 12px; }
.itin__stay { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 9px 16px;
  border-radius: var(--radius-pill); background: var(--color-sand-shade); color: var(--color-clay);
  font-size: var(--text-small); }
.itin__stay svg { color: var(--color-sun-deep); flex-shrink: 0; }

/* ---- Includes / excludes lists ----------------------------------------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.incl-col h3 { font-size: var(--text-h3); font-weight: var(--w-semi); color: var(--color-ink); margin-bottom: 8px; }
.incl-col .eyebrow { display: block; margin-bottom: 18px; }
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.incl-list li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; color: var(--color-clay); }
.incl-list li .ico { width: 24px; height: 24px; border-radius: var(--radius-pill); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.incl-list--yes li .ico { background: rgba(244,123,32,0.14); color: var(--color-sun-deep); }
.incl-list--no li .ico { background: var(--color-sand-shade); color: var(--color-clay-soft); }

/* ---- Quick fact strip (package / destination summary) ------------------ */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-default);
  border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.facts__item { background: var(--color-sand); padding: 22px 24px; }
.facts__item .k { font-size: var(--text-tiny); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--color-clay-soft); }
.facts__item .v { font-family: var(--font-display); font-size: var(--text-h3); color: var(--color-ink); margin-top: 6px; line-height: 1.15; }

/* ---- Document / legal + travel-guide sections -------------------------- */
.doc { max-width: 760px; }
.doc__section { padding: clamp(28px, 3vw, 40px) 0; border-top: 1px solid var(--border-default); }
.doc__section:first-child { border-top: 0; padding-top: 0; }
.doc__section h2 { font-size: var(--text-h2); color: var(--color-ink); margin-bottom: 16px; }
.doc__section h3 { font-size: var(--text-h3); font-weight: var(--w-semi); color: var(--color-ink); margin: 22px 0 8px; }
.doc__num { font-family: var(--font-display); color: var(--color-sun); margin-right: 12px; font-feature-settings: "tnum"; }
.doc__section .prose { color: var(--color-clay); }
.doc__section .prose p + p { margin-top: 14px; }
.doc__section ul { color: var(--color-clay); padding-left: 20px; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.doc__toc { position: sticky; top: 102px; align-self: start; }
.doc__toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.doc__toc a { display: block; padding: 9px 14px; border-radius: var(--radius); text-decoration: none; color: var(--color-clay);
  font-size: var(--text-small); border-left: 2px solid transparent; transition: color var(--dur), border-color var(--dur), background var(--dur); }
.doc__toc a:hover { color: var(--color-ink); background: var(--color-sand-shade); }
.doc__toc a.is-active { color: var(--color-sun-deep); border-left-color: var(--color-sun); background: var(--color-sand-shade); font-weight: var(--w-med); }
.doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

/* ---- Team grid (About) ------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.team-card .ph { aspect-ratio: 4 / 5; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.team-card h3 { font-size: var(--text-body-lg); font-weight: var(--w-semi); color: var(--color-ink); margin: 14px 0 2px; font-family: var(--font-body); }
.team-card p { font-size: var(--text-small); color: var(--color-clay); }

/* ---- Generic CTA band (reused on every inner page) --------------------- */
.cta-band { border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 80px); text-align: center; }
.cta-band .h1 { color: var(--color-ink); max-width: 24ch; margin: 16px auto 0; }
.cta-band .lead { max-width: 56ch; margin: 18px auto 30px; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }
  .feature-row--flip .feature-row__media { order: 0; }
  .pkg-cards { grid-template-columns: 1fr 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc__toc { position: static; display: none; }
}
@media (max-width: 720px) {
  .itin__day { grid-template-columns: 1fr; gap: 14px; }
  .itin__marker { flex-direction: row; align-items: baseline; gap: 12px; }
}
@media (max-width: 560px) {
  .pkg-cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
