/* ============================================================
   Year Around Holidays — Refined Tropical Editorial
   Deep tea-country green + heritage gold on warm ivory.
   Fraunces (display serif) + Hanken Grotesk (humanist sans).
   Mobile-first, progressive enhancement.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --forest:      #123a2c;
  --forest-700:  #0d2c21;
  --forest-900:  #081d16;
  --forest-500:  #1d4f3d;
  --accent:      #3a7e7e;   /* teal accent (was heritage gold) */
  --accent-600:  #2f6767;   /* darker — for text on light */
  --accent-100:  #ffffff;   /* text on dark surfaces — plain white */
  --cream:       #ffffff;
  --sand:        #f2f3f0;
  --paper:       #ffffff;
  --ink:         #1b211a;
  --muted:       #5f6a5c;
  --muted-cream: #ffffff;   /* was #cbd6c6 — green-tinted off-white */
  --line:        #c2c7bf;
  --line-dark:   rgba(169,214,214,.2);
  --field-bg:    #f6f7f4;
  --line-strong: #8f978b;   /* itinerary day dividers */

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.15rem, 5vw, 4rem);
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(18,58,44,.06);
  --shadow-md: 0 18px 40px -20px rgba(18,58,44,.28);
  --shadow-lg: 0 40px 80px -30px rgba(12,44,33,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation-duration:.001ms!important; transition-duration:.001ms!important; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input,textarea,select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--forest); overflow-wrap: break-word; }
p { overflow-wrap: break-word; }
.display { font-size: clamp(2.6rem, 7vw, 5.1rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--muted); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.25rem); color: var(--ink); opacity:.86; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-600);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 26px; height: 1.5px; background: var(--accent); display:inline-block; }
.eyebrow.center::after { content:""; width: 26px; height: 1.5px; background: var(--accent); display:inline-block; }

.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--accent-600); font-weight: 400; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem,5vw,3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: repeat(2,1fr); }
@media (min-width: 680px){ .cols-2{ grid-template-columns:repeat(2,1fr);} .cols-3{ grid-template-columns:repeat(2,1fr);} }
@media (min-width: 960px){ .cols-3{ grid-template-columns:repeat(3,1fr);} .cols-4{ grid-template-columns:repeat(4,1fr);} }

.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1,.bg-forest h2,.bg-forest h3 { color: var(--paper); }
.bg-forest p { color: var(--muted-cream); }
.bg-paper { background: var(--paper); }
.bg-sand { background: linear-gradient(180deg, var(--cream), var(--sand)); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--forest); --fg: var(--paper);
  display: inline-flex; align-items: center; justify-content:center; gap: .55rem;
  padding: .95rem 1.6rem; min-height: 50px;
  background: var(--bg); color: var(--fg);
  border-radius: 100px; font-weight: 600; font-size: .96rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  box-shadow: 0 10px 22px -12px rgba(18,58,44,.5);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(18,58,44,.55); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--gold { --bg: var(--accent); --fg: var(--paper); box-shadow: 0 10px 22px -10px rgba(58,126,126,.6); }
.btn--ghost { --bg: transparent; --fg: var(--forest); border: 2px solid var(--line); box-shadow:none; }
.btn--ghost:hover { border-color: var(--forest); }
/* ghost/secondary button on any dark surface — must not inherit the dark forest text colour */
.bg-forest .btn--ghost,
.bg-brand .btn--ghost,
.plan-bar .btn--ghost,
.hero .btn--ghost,
.cta-band .btn--ghost,
.inquire .btn--ghost,
.page-hero .btn--ghost { --fg: var(--cream); border-color: rgba(169,214,214,.5); }
.bg-forest .btn--ghost:hover,
.bg-brand .btn--ghost:hover,
.plan-bar .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.inquire .btn--ghost:hover,
.page-hero .btn--ghost:hover { border-color: var(--accent); --fg: var(--accent-100); }
.btn--light { --bg: var(--paper); --fg: var(--forest); }
.btn--sm { padding: .6rem 1.1rem; min-height: 42px; font-size:.86rem; }
.textlink { display:inline-flex; align-items:center; gap:.4rem; font-weight:600; color: var(--forest); border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; transition: gap .3s var(--ease); }
.textlink:hover { gap: .7rem; }
.bg-forest .textlink { color: var(--accent-100); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  padding-block: 1.1rem;
}
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); padding-block: .6rem; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; color: var(--paper); }
/* the logo is a single-colour SVG painted through a mask, so it recolours with
   `color` — white over the hero photo, brand teal once the header goes solid */
.brand-logo {
  display: block; height: 40px; width: 169px;   /* 4.23:1 lockup */
  background-color: currentColor;
  -webkit-mask: url("../assets/img/logo-h.svg") no-repeat center / contain;
          mask: url("../assets/img/logo-h.svg") no-repeat center / contain;
}
@media(max-width:520px){ .brand-logo { height: 34px; width: 144px; } }
.site-header.scrolled .brand, body.solid-header .brand { color: var(--accent); }
body.nav-open .brand { color: var(--paper); }
.footer-brand .brand { color: var(--paper); }

.nav-links { display: none; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.nav-links a { color: var(--cream); font-weight: 500; font-size: .96rem; position: relative; padding-block: .4rem; opacity:.92; }
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--accent); transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width:100%; }
.nav-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction:column; gap:5px; width:46px; height:46px; align-items:center; justify-content:center; border-radius:6px; z-index: 120; }
.nav-toggle span { width:24px; height:2px; background: var(--paper); border-radius:2px; transition: transform .35s var(--ease), opacity .3s; }
.site-header.scrolled .nav-toggle span { background: var(--forest); }
/* the header creates its own stacking context, so the toggle's z-index can't
   lift it above the drawer — raise the whole header while the nav is open */
body.nav-open .site-header { z-index: 120; background: transparent; box-shadow: none; }
body.nav-open .nav-toggle span { background: var(--paper); }
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 drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: var(--forest-700);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s, visibility .4s;
}
body.nav-open .mobile-nav { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .15rem; }
.mobile-nav a { font-family: var(--font-display); font-size: clamp(1.35rem,5.2vw,1.75rem); color: var(--cream); padding-block: .35rem; display:flex; align-items:baseline; gap:1rem; transition: color .3s, padding-left .3s var(--ease); }
.mobile-nav a .idx { font-family: var(--font-body); font-size:.7rem; color: var(--accent-100); font-weight:700; }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--accent); padding-left: .5rem; }
/* the drawer's link hover turns text teal, which disappears on the teal CTA */
.mobile-nav .m-cta:hover, .mobile-nav .m-cta[aria-current="page"] { color: var(--paper); padding-left: 0; }
.mobile-nav .m-contact { margin-top: 2.2rem; color: var(--muted-cream); font-size:.95rem; line-height:2; }
.mobile-nav .m-contact a { font-family: var(--font-body); font-size: 1rem; color: var(--accent-100); display:inline; padding:0; }

@media (min-width: 940px){
  .nav-toggle, .mobile-nav { display: none; }
  .nav-links, .nav-cta { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
/* only the visible frame animates, so each slide gets its own ken burns run */
.hero__bg img.on { opacity: 1; animation: kenburns 9s ease-out both; }
@media (prefers-reduced-motion: reduce){
  .hero__bg img { transition: none; }
  .hero__bg img.on { animation: none; }
}
@keyframes kenburns { from{ transform: scale(1.05); } to{ transform: scale(1); } }
/* Scrim strength is set by measurement, not taste: white text over the
   brightest pixels of these five photos needs ~.60 combined alpha to hold
   4.5:1. On phones the copy spans the full width, so the vertical gradient
   carries it alone; from 900px the copy is left-aligned and a horizontal
   scrim does the work, leaving the right of the photo far more visible. */
.hero__bg::after { content:""; position:absolute; inset:0; background:
  linear-gradient(180deg, rgba(8,29,22,.34) 0%, rgba(8,29,22,.42) 35%, rgba(8,29,22,.7) 70%, rgba(8,29,22,.93) 100%); }
@media(min-width:900px){
  .hero__bg::after { background:
    linear-gradient(90deg, rgba(8,29,22,.38) 0%, rgba(8,29,22,.32) 50%, rgba(8,29,22,.08) 100%),
    linear-gradient(180deg, rgba(8,29,22,.2) 0%, rgba(8,29,22,.24) 45%, rgba(8,29,22,.54) 72%, rgba(8,29,22,.88) 100%); }
}
.hero__inner { position: relative; z-index: 2; width:100%; min-width:0; padding-bottom: clamp(3rem, 8vw, 6rem); padding-top: 8rem; }
.hero .eyebrow { color: var(--accent-100); }
.hero .eyebrow::before { background: var(--accent-100); }
.hero h1 { color: var(--paper); margin: 1rem 0 1.3rem; max-width: min(15ch, 100%); text-shadow: 0 2px 30px rgba(0,0,0,.3);
  font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
.hero h1 em { font-style: italic; color: var(--accent-100); }
.hero p { color: rgba(255,255,255,.92); max-width: min(48ch, 100%); font-size: clamp(1.05rem,1.6vw,1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__meta { display: flex; flex-wrap:wrap; gap: clamp(1.2rem,4vw,3rem); margin-top: clamp(2.4rem,5vw,3.6rem); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero__meta div { min-width: 90px; }
.hero__meta b { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); font-weight:500; color: var(--paper); display:block; line-height:1; }
.hero__meta span { font-size: .82rem; letter-spacing:.05em; color: rgba(255,255,255,.75); text-transform:uppercase; }
.scroll-hint { position:absolute; bottom:1.4rem; left:50%; transform:translateX(-50%); z-index:2; color:rgba(255,255,255,.7); font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.scroll-hint::after { content:""; width:1px; height:36px; background: linear-gradient(var(--accent),transparent); animation: scrolldrop 1.8s infinite; }
@keyframes scrolldrop { 0%{ transform:scaleY(0); transform-origin:top; } 50%{ transform:scaleY(1); transform-origin:top; } 51%{ transform-origin:bottom; } 100%{ transform:scaleY(0); transform-origin:bottom; } }

/* page hero (interior) */
/* one height for every inner-page hero, whatever the copy length */
.page-hero { position: relative; padding: clamp(8rem,14vw,10rem) 0 clamp(2.6rem,5vw,3.6rem);
  color: var(--paper); overflow:hidden; min-height: 58vh; display: flex; align-items: flex-end; }
.page-hero > .container { width: 100%; }
.page-hero__bg { position:absolute; inset:0; z-index:0; }
.page-hero__bg img{ width:100%; height:100%; object-fit:cover; }
.page-hero__bg::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,29,22,.34) 0%, rgba(8,29,22,.46) 45%, rgba(8,29,22,.72) 100%); }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { color: var(--paper); font-size: clamp(2.4rem,6vw,4rem); margin-top:.8rem; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 54ch; margin-top: 1rem; }

/* ============================================================
   INTRO / VALUES
   ============================================================ */
.intro-split { display:grid; gap: clamp(2rem,5vw,4rem); align-items:center; grid-template-columns:1fr; }
@media(min-width:900px){ .intro-split{ grid-template-columns: 1.05fr .95fr; } }
.intro-media { position:relative; }
.intro-media img { border-radius: var(--radius-lg); width:100%; aspect-ratio: 4/3; object-fit:cover; box-shadow: var(--shadow-md); }
.intro-media .badge {
  position:absolute; bottom:-22px; left:-14px; background: var(--accent); color: var(--paper);
  border-radius: 16px; padding: 1rem 1.3rem; box-shadow: var(--shadow-md); max-width: 210px;
}
.intro-media .badge b { font-family:var(--font-display); font-size:2rem; display:block; line-height:1; }
.intro-media .badge span { font-size:.82rem; font-weight:600; }
@media(min-width:900px){ .intro-media .badge{ left:-32px; } }
@media(max-width:899px){ .intro-media .badge{ background:rgba(58,126,126,.82); backdrop-filter:blur(6px); } }

.value-row { display:grid; gap:1.4rem; grid-template-columns:1fr; margin-top:2rem; }
@media(min-width:560px){ .value-row{ grid-template-columns:1fr 1fr; } }
.value { display:flex; gap:.9rem; }
.value .ic { flex:none; width:46px; height:46px; border-radius:6px; background: rgba(58,126,126,.14); color: var(--accent-600); display:grid; place-items:center; }
.value h4 { font-family:var(--font-body); font-weight:700; font-size:1.02rem; color:var(--ink); margin-bottom:.2rem; }
.value p { font-size:.92rem; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tour-card {
  position: relative; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 2px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display:flex; flex-direction:column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tour-card__media { position: relative; aspect-ratio: 3/2.35; overflow: hidden; }
.tour-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.07); }
.tag { position:absolute; top:1rem; left:1rem; background: rgba(255,255,255,.92); color: var(--forest); backdrop-filter: blur(4px); padding: .34rem .8rem; border-radius: 100px; font-size:.74rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.tour-card__body { padding: 1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.tour-card__meta { display:flex; align-items:center; gap:.5rem; font-size:.82rem; color:var(--accent-600); font-weight:700; letter-spacing:.03em; text-transform:uppercase; margin-bottom:.5rem; }
.tour-card h3 { font-size:1.32rem; margin-bottom:.5rem; }
.tour-card p { font-size:.94rem; flex:1; }
.tour-card__foot { display:flex; align-items:center; justify-content:space-between; margin-top:1.1rem; padding-top:1.1rem; border-top:2px solid var(--line); }
.tour-card__foot .dur { font-size:.86rem; color:var(--muted); display:flex; align-items:center; gap:.4rem; }

/* filter chips */
.filters { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom: 2.4rem; }
.chip { padding:.55rem 1.1rem; border-radius:100px; border:2px solid var(--line); font-weight:600; font-size:.9rem; color:var(--muted); transition: all .3s var(--ease); min-height:42px; }
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.active { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.tour-card.hide { display:none; }

/* itinerary accordion (tours page) */
.itin { border-top:2px solid var(--line); margin-top:1.1rem; }
.itin__toggle { display:flex; align-items:center; justify-content:space-between; width:100%; padding:.9rem 0; font-weight:600; color:var(--forest); }
.itin__toggle .plus { width:24px; height:24px; border-radius:50%; border:1.5px solid var(--accent); display:grid; place-items:center; color:var(--accent-600); transition: transform .4s var(--ease); flex:none; }
.itin.open .itin__toggle .plus { transform: rotate(45deg); }
.itin__panel { display:grid; grid-template-rows:0fr; transition: grid-template-rows .45s var(--ease); }
.itin.open .itin__panel { grid-template-rows:1fr; }
.itin__inner { overflow:hidden; }
.itin__day { display:flex; gap:1rem; padding:.7rem 0; border-top:1px dashed var(--line); font-size:.92rem; }
.itin__day:first-child { border-top:none; }
.itin__day b { color:var(--forest); font-family:var(--font-body); flex:none; width:64px; }
.itin__day span { color:var(--muted); }
.itin-map { width:100%; border-radius:6px; margin:.5rem 0 1.1rem; border:2px solid var(--line); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-grid { display:grid; gap:1rem; grid-template-columns:1fr 1fr; }
@media(min-width:760px){ .dest-grid{ grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; grid-auto-flow: dense; } }
.dest {
  position:relative; border-radius: var(--radius); overflow:hidden; min-height: 180px;
  display:flex; align-items:flex-end; color:var(--paper); box-shadow: var(--shadow-sm);
}
.dest img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); z-index:0; }
.dest::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(8,29,22,.85)); z-index:1; }
.dest:hover img { transform: scale(1.08); }
.dest span { position:relative; z-index:2; padding:1rem 1.1rem; font-family:var(--font-display); font-size:1.15rem; font-weight:500; }
.dest span small { display:block; font-family:var(--font-body); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--accent-100); font-weight:700; }
@media(min-width:760px){
  .dest.tall { grid-row: span 2; }
  .dest.wide { grid-column: span 2; }
}

/* ============================================================
   BLOG
   ============================================================ */
.post-card { background: var(--paper); border-radius: var(--radius-lg); overflow:hidden; border:2px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s; display:flex; flex-direction:column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; overflow:hidden; }
.post-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding:1.3rem 1.4rem 1.5rem; }
.post-card time { font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:var(--accent-600); font-weight:700; }
.post-card h3 { font-size:1.2rem; margin:.5rem 0 .7rem; }
.post-card p { font-size:.92rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position:relative; overflow:hidden; text-align:center; }
.cta-band__bg { position:absolute; inset:0; z-index:0; }
.cta-band__bg img { width:100%; height:100%; object-fit:cover; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(rgba(9,29,22,.58), rgba(9,29,22,.64)); }
.cta-band .container { position:relative; z-index:2; }
.cta-band h2 { color: var(--paper); max-width: 20ch; margin-inline:auto; }
.cta-band p { color: var(--muted-cream); max-width: 46ch; margin: 1rem auto 2rem; }
.cta-actions { display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid { display:grid; gap: clamp(2rem,5vw,3.5rem); grid-template-columns:1fr; }
@media(min-width:900px){ .contact-grid{ grid-template-columns: .9fr 1.1fr; } }
.contact-info .ci { display:flex; gap:1rem; padding:1.1rem 0; border-bottom:1px solid var(--line-dark); }
.contact-info .ci .ic { flex:none; width:46px; height:46px; border-radius:6px; background:rgba(236,220,184,.12); color:var(--accent); display:grid; place-items:center; }
.contact-info .ci b { display:block; color:var(--paper); font-family:var(--font-body); font-weight:700; margin-bottom:.15rem; }
.contact-info .ci a, .contact-info .ci p { color: var(--muted-cream); }
.contact-info .ci a:hover { color: var(--accent-100); }
.socials { display:flex; gap:.7rem; margin-top:1.6rem; }
.socials a { width:44px; height:44px; border-radius:6px; border:1px solid var(--line-dark); display:grid; place-items:center; color:var(--cream); transition: all .3s var(--ease); }
.socials a:hover { background: var(--accent); color: var(--paper); border-color:var(--accent); transform: translateY(-2px); }

.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.4rem,4vw,2.4rem); box-shadow: var(--shadow-md); border:2px solid var(--line); }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-size:.85rem; font-weight:600; color:var(--forest); margin-bottom:.4rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.85rem 1rem; border:2px solid var(--line); border-radius:6px; background: var(--field-bg);
  transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--accent); background: var(--paper); }
.field textarea { resize: vertical; min-height: 160px; }
.form-row { display:grid; gap:1.1rem; grid-template-columns:1fr; }
@media(min-width:560px){ .form-row{ grid-template-columns:1fr 1fr; } }
.form-note { font-size:.82rem; color:var(--muted); margin-top:.4rem; }

/* map */
.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); border:2px solid var(--line); line-height:0; }
.map-embed iframe { width:100%; height:100%; min-height:300px; border:0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-900); color: var(--muted-cream); padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer-top { display:grid; gap:2.4rem; grid-template-columns:1fr; padding-bottom:3rem; border-bottom:1px solid var(--line-dark); }
@media(min-width:720px){ .footer-top{ grid-template-columns: 1.6fr 1fr 1fr; } }
@media(min-width:960px){ .footer-top{ grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand .brand { color: var(--paper); margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; font-size:.93rem; }
.footer-col h5 { font-family:var(--font-body); font-weight:700; color:var(--accent-100); letter-spacing:.06em; text-transform:uppercase; font-size:.8rem; margin-bottom:1rem; }
.footer-col a, .footer-col li { display:block; padding:.32rem 0; font-size:.94rem; transition: color .25s, padding-left .25s var(--ease); }
.footer-col a:hover { color: var(--accent-100); padding-left:.3rem; }
.footer-bottom { display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; padding-block:1.6rem; font-size:.84rem; color:rgba(255,255,255,.72); }
.footer-bottom a:hover { color: var(--accent-100); }

/* ============================================================
   FLOATING WHATSAPP + MOBILE CTA BAR
   ============================================================ */
.wa-float { position:fixed; right:1.1rem; bottom: 1.1rem; z-index:90; width:56px; height:56px; border-radius:50%; background:#25d366; color:#fff; display:grid; place-items:center; box-shadow: 0 12px 26px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }



/* ---------- scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s;} .reveal.d2{ transition-delay:.16s;} .reveal.d3{ transition-delay:.24s;} .reveal.d4{ transition-delay:.32s;} .reveal.d5{ transition-delay:.4s;}

/* grain overlay for warmth */
body::after { content:""; position:fixed; inset:0; pointer-events:none; z-index:200; opacity:.028; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.mt-1{margin-top:1rem;} .mt-2{margin-top:2rem;} .center{text-align:center;} .mx-auto{margin-inline:auto;}

/* ============================================================
   v2 — professional additions
   ============================================================ */

/* skip link (a11y) */
.skip-link { position:absolute; left:1rem; top:0; transform:translateY(-200%); z-index:300; background:var(--accent); color:var(--paper); padding:.7rem 1.1rem; border-radius:6px; font-weight:700; transition:top .25s var(--ease); }
.skip-link:focus { transform:translateY(1rem); }

/* trust bar */
.trust-bar { background: var(--forest-900); }
.trust-bar .container { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem 1rem; padding-block: clamp(1.6rem,4vw,2.2rem); }
@media(min-width:820px){ .trust-bar .container{ grid-template-columns:repeat(4,1fr); } }
.trust { display:flex; align-items:center; gap:.8rem; color:var(--cream); }
.trust .ic { flex:none; width:42px; height:42px; border-radius:11px; background:rgba(58,126,126,.16); color:var(--accent); display:grid; place-items:center; }
.trust b { display:block; font-family:var(--font-body); font-weight:700; color:var(--paper); font-size:.98rem; line-height:1.2; }
.trust span { font-size:.82rem; color:var(--muted-cream); }

/* testimonials */
.reviews-head { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:1rem; margin-bottom:2.4rem; }
.review-card { background:var(--paper); border:2px solid var(--line); border-radius:var(--radius-lg); padding:1.6rem 1.5rem; display:flex; flex-direction:column; gap:1rem; box-shadow:var(--shadow-sm); }
.review-card .stars { color:var(--accent); letter-spacing:2px; font-size:1rem; }
.review-card p { color:var(--ink); opacity:.9; font-size:1.02rem; line-height:1.6; font-style:italic; font-family:var(--font-display); }
.review-card .who { display:flex; align-items:center; gap:.8rem; margin-top:auto; }
.review-card .av { width:44px; height:44px; border-radius:50%; background:var(--forest); color:var(--accent-100); display:grid; place-items:center; font-family:var(--font-display); font-weight:600; flex:none; }
.review-card .who b { color:var(--forest); font-family:var(--font-body); display:block; font-size:.95rem; }
.review-card .who span:not(.av) { font-size:.82rem; color:var(--muted); }
/* .av is a span inside .who, so the rule above was repainting the initials
   grey on their dark circle (2.22:1) */

/* faq */
.faq { max-width:820px; margin-inline:auto; }
.faq-item {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  padding-inline: 1.3rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:1rem; width:100%; text-align:left; padding:1.3rem 0; font-family:var(--font-display); font-size:clamp(1.1rem,2vw,1.32rem); color:var(--forest); }
.faq-q .plus { flex:none; width:26px; height:26px; border-radius:50%; border:1.5px solid var(--accent); color:var(--accent-600); display:grid; place-items:center; transition:transform .4s var(--ease); }
.faq-item.open .faq-q .plus { transform:rotate(45deg); }
.faq-a { display:grid; grid-template-rows:0fr; transition:grid-template-rows .45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows:1fr; }
.faq-a > div { overflow:hidden; }
.faq-a p { padding-bottom:1.3rem; padding-right:2.4rem; }

/* what's included (tours) */
.included { display:grid; gap:.5rem .9rem; grid-template-columns:1fr; margin:.4rem 0 1.1rem; }
@media(min-width:420px){ .included{ grid-template-columns:1fr 1fr; } }
.included li { display:flex; gap:.5rem; font-size:.86rem; color:var(--muted); align-items:flex-start; }
.included li::before { content:""; flex:none; width:16px; height:16px; margin-top:2px; border-radius:50%; background:rgba(58,126,126,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232f6767' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.price-note { font-size:.82rem; color:var(--accent-600); font-weight:700; }

/* prose (legal / article pages) */
.prose { max-width:760px; margin-inline:auto; }
.prose h2 { font-size:clamp(1.4rem,2.4vw,1.9rem); margin:2.2rem 0 .8rem; }
.prose h3 { font-size:1.2rem; margin:1.6rem 0 .5rem; color:var(--forest-500); }
.prose p, .prose li { color:var(--ink); opacity:.85; margin-bottom:1rem; line-height:1.75; }
.prose ul { list-style:disc; padding-left:1.3rem; margin-bottom:1rem; }
.prose li { margin-bottom:.4rem; }
.prose a { color:var(--accent-600); border-bottom:1px solid var(--accent); }
.prose .updated { font-size:.85rem; color:var(--muted); font-style:italic; }

/* 404 */
.err { min-height:80vh; display:flex; align-items:center; text-align:center; }
.err h1 { font-size:clamp(4rem,18vw,9rem); color:var(--accent); line-height:.9; }

/* back to top */
.to-top { position:fixed; left:1.1rem; bottom:1.1rem; z-index:87; width:46px; height:46px; border-radius:50%; background:var(--forest); color:var(--cream); display:grid; place-items:center; box-shadow:var(--shadow-md); opacity:0; visibility:hidden; transform:translateY(10px); transition:opacity .3s,transform .3s,visibility .3s,background .3s; }
.to-top.show { opacity:1; visibility:visible; transform:none; }
.to-top:hover { background:var(--accent); color:var(--paper); }


/* footer legal row */
.footer-legal { display:flex; flex-wrap:wrap; gap:1.2rem; }
.footer-legal a { font-size:.84rem; }

/* form states */
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color:#c0563e; background:#fdf3f0; }
.field .err-msg { color:#c0563e; font-size:.78rem; margin-top:.3rem; display:none; }
.field.show-err .err-msg { display:block; }
.form-status.ok { color:var(--forest); }
.form-status.bad { color:#c0563e; }

/* tours "what's included" band */
.includes-band { background:var(--forest); color:var(--cream); border-radius:var(--radius-lg); padding:1.3rem 1.6rem; margin-bottom:2.4rem; display:flex; flex-wrap:wrap; gap:.8rem 1.6rem; align-items:center; box-shadow:var(--shadow-sm); }
.includes-band b { color:var(--paper); font-family:var(--font-display); font-weight:500; font-size:1.1rem; }
.includes-band ul { display:flex; flex-wrap:wrap; gap:.5rem 1.3rem; }
.includes-band li { display:flex; align-items:center; gap:.4rem; font-size:.9rem; color:var(--muted-cream); }
.includes-band li::before { content:""; width:16px; height:16px; flex:none; border-radius:50%; background:rgba(58,126,126,.22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23a9d6d6' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }

/* solid header (for pages whose top section is light, e.g. 404/legal without a hero) */
body.solid-header .site-header { background:rgba(255,255,255,.95); backdrop-filter:blur(12px); box-shadow:0 1px 0 var(--line), var(--shadow-sm); }
body.solid-header .brand { color:var(--forest); }
body.solid-header .nav-links a { color:var(--ink); }
body.solid-header .nav-toggle span { background:var(--forest); }

/* ============================================================
   Homepage flow additions — counters, offer grid, inquire band
   ============================================================ */

/* 3. counters */
.counters { background: var(--forest); color: var(--cream); }
.counter-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.8rem 1rem; text-align:center; }
@media(min-width:820px){ .counter-grid{ grid-template-columns:repeat(4,1fr); } }
.counter { position:relative; }
@media(min-width:820px){
  .counter + .counter::before { content:""; position:absolute; left:0; top:12%; height:76%; width:1px; background:var(--line-dark); }
}
.counter b { display:block; font-family:var(--font-display); font-weight:500; line-height:1; color:var(--paper); font-size:clamp(2.2rem,5vw,3.4rem); font-variant-numeric:tabular-nums; }
.counter span { display:block; margin-top:.55rem; font-size:.84rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-cream); }

/* 4. what we offer */
.offer-grid { display:grid; gap:clamp(1rem,2.2vw,1.5rem); grid-template-columns:1fr; }
@media(min-width:600px){ .offer-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .offer-grid{ grid-template-columns:repeat(3,1fr); } }
.offer {
  background:var(--paper); border:2px solid var(--line); border-radius:var(--radius);
  padding:2.1rem 1.9rem 1.9rem; display:flex; flex-direction:column;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.offer:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.offer .ic { width:68px; height:68px; flex:none; border-radius:8px; background:rgba(58,126,126,.14); color:var(--accent-600); display:grid; place-items:center; margin-bottom:1.3rem; }
.offer .ic svg { width:32px; height:32px; }
.offer h3 { font-size:1.32rem; margin-bottom:.6rem; }
.offer p { font-size:.97rem; line-height:1.7; color:var(--muted); flex:1; margin-bottom:1.3rem; }
.offer .textlink { font-size:.9rem; }

/* 10. inquire now */
.inquire { position:relative; overflow:hidden; }
.inquire__bg { position:absolute; inset:0; z-index:0; }
.inquire__bg img { width:100%; height:100%; object-fit:cover; }
.inquire__bg::after { content:""; position:absolute; inset:0; background:linear-gradient(rgba(9,29,22,.6), rgba(9,29,22,.66)); }
.inquire__inner { position:relative; z-index:2; display:grid; gap:clamp(2rem,5vw,3.5rem); align-items:center; grid-template-columns:1fr; }
@media(min-width:900px){ .inquire__inner{ grid-template-columns:.95fr 1.05fr; } }
.inquire__copy h2 { color:var(--paper); margin-top:.8rem; max-width:18ch; }
.inquire__copy p { color:var(--muted-cream); margin-top:1rem; max-width:46ch; }
.inquire__contact { display:flex; flex-direction:column; gap:.7rem; margin-top:2rem; padding-top:1.6rem; border-top:1px solid var(--line-dark); }
.inquire__contact a { display:flex; align-items:center; gap:.7rem; color:var(--accent-100); font-weight:600; font-size:.95rem; }
.inquire__contact a:hover { color:var(--accent); }
.inquire__contact span { color:var(--accent-100); }
.inquire__form { background:var(--paper); border-radius:var(--radius-lg); padding:clamp(1.4rem,3vw,2.2rem); box-shadow:var(--shadow-lg); }
.inquire__form .form-note { font-size:.8rem; color:var(--muted); margin-top:.9rem; text-align:center; }

/* ============================================================
   Single itinerary page (tour-*.html)
   ============================================================ */

.page-hero .tour-dur { font-family:var(--font-display); font-size:clamp(1.1rem,2.4vw,1.5rem); color:var(--accent-100); margin-top:.6rem; }

/* gallery */
.tour-gallery { display:grid; gap:clamp(.6rem,1.4vw,1rem); grid-template-columns:1fr; }
@media(min-width:700px){ .tour-gallery{ grid-template-columns:2fr 1fr 1fr; } }
.tour-gallery figure { margin:0; border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-sm); }
@media(min-width:700px){ .tour-gallery figure:first-child{ aspect-ratio:auto; } }
.tour-gallery img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.tour-gallery figure:hover img { transform:scale(1.05); }

/* facts bar */
.facts { display:grid; gap:2px; background:var(--line); border:2px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; grid-template-columns:1fr; }
@media(min-width:640px){ .facts{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .facts{ grid-template-columns:repeat(4,1fr); } }
.fact { background:var(--paper); padding:1.1rem 1.3rem; }
.fact span { display:block; font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:.35rem; }
.fact b { font-family:var(--font-display); font-weight:500; font-size:1.02rem; color:var(--forest); line-height:1.35; }
.fact--price { background:var(--forest); grid-column:1/-1; }
.fact--price span { color:var(--muted-cream); }
.fact--price b { color:var(--paper); font-size:1.35rem; }
.fact--price small { display:block; margin-top:.4rem; font-size:.84rem; color:var(--muted-cream); line-height:1.55; max-width:70ch; }

/* inclusions */
.inc-grid { display:grid; gap:clamp(2rem,4vw,3.5rem); grid-template-columns:1fr; }
@media(min-width:860px){ .inc-grid{ grid-template-columns:1fr 1fr; } }
.inc h2 { font-size:clamp(1.4rem,2.6vw,1.9rem); margin-top:.7rem; margin-bottom:1.3rem; }
.ticks { display:grid; gap:.7rem; }
/* Not flex: a flex li makes the bold lead-in and the sentence separate flex
   items, so "Travel insurance." ends up stacked in its own narrow column. */
.ticks li { position:relative; padding-left:1.9rem; font-size:.95rem; line-height:1.6; color:var(--ink); }
.ticks li b { font-weight:700; }
.ticks li::before {
  content:""; position:absolute; left:0; top:.2rem; width:20px; height:20px; border-radius:50%;
  background:rgba(18,58,44,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23123a2c' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.ticks--gold li::before { background:rgba(58,126,126,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f6767' stroke-width='3'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat; }
.inc-note { margin-top:1.4rem; padding-top:1.2rem; border-top:2px solid var(--line); font-size:.86rem; color:var(--muted); line-height:1.6; }

/* day by day */
/* an <ol>: display:grid does not drop the default list indent, so clear it */
.days { display:grid; gap:clamp(1.6rem,3.5vw,2.6rem); counter-reset:day; list-style:none; padding-inline-start:0; margin:0; }
.day { display:grid; gap:clamp(1rem,2.5vw,2rem); grid-template-columns:1fr; align-items:center; }
@media(min-width:800px){
  .day { grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); }
  .day:nth-child(even) .day__media { order:2; }
}
.day__media { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-md); }
.day__media img { width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.day:hover .day__media img { transform:scale(1.05); }
.day__no {
  position:absolute; left:1rem; top:1rem; z-index:2;
  background:var(--accent); color:var(--paper);
  font-family:var(--font-display); font-weight:600; font-size:.9rem;
  letter-spacing:.06em; text-transform:uppercase;
  padding:.4rem .85rem; border-radius:100px; box-shadow:var(--shadow-sm);
}
.day__body h3 { font-size:clamp(1.25rem,2.4vw,1.65rem); margin-bottom:.7rem; }
.day__body p { color:var(--muted); line-height:1.75; }
.day__stay {
  margin-top:1.1rem;
  font-size:.92rem; font-weight:600; color:var(--forest-500) !important;
  /* called out as a block so the overnight stop is scannable down the day list */
  background:rgba(58,126,126,.09);
  border-left:4px solid var(--accent);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:.75rem 1rem;
}

.cta-back { margin-top:1.6rem; }

/* ---------- plus glyphs: draw as two bars so they centre exactly ----------
   The "+" text glyph sits ~2.7px below the optical centre of its circle
   (font baseline + inherited line-height). Hide it and stroke it instead. */
.faq-q .plus, .itin__toggle .plus { position:relative; font-size:0; line-height:0; }
.faq-q .plus::before, .faq-q .plus::after,
.itin__toggle .plus::before, .itin__toggle .plus::after {
  content:""; position:absolute; top:50%; left:50%;
  background:currentColor; border-radius:2px; transform:translate(-50%,-50%);
}
.faq-q .plus::before  { width:11px; height:1.6px; }
.faq-q .plus::after   { width:1.6px; height:11px; }
.itin__toggle .plus::before { width:10px; height:1.6px; }
.itin__toggle .plus::after  { width:1.6px; height:10px; }

/* ============================================================
   Sri Lanka hub + destination pages
   ============================================================ */

/* destination cards */
.dest-cards { display:grid; gap:clamp(1.1rem,2.4vw,1.8rem); grid-template-columns:1fr; }
@media(min-width:640px){ .dest-cards{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .dest-cards{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:1000px){ .dest-cards--sm{ grid-template-columns:repeat(4,1fr); } }
.dest-card {
  display:flex; flex-direction:column; background:var(--paper);
  border:2px solid var(--line); border-radius:var(--radius); overflow:hidden;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.dest-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.dest-card__media { aspect-ratio:3/2; overflow:hidden; }
.dest-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.dest-card:hover .dest-card__media img { transform:scale(1.07); }
.dest-card__body { padding:1.2rem 1.3rem 1.4rem; display:flex; flex-direction:column; flex:1; }
.dest-card__body small { font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--accent-600); font-weight:700; }
.dest-card__body h3 { font-size:1.3rem; margin:.35rem 0 .5rem; }
.dest-card__body p { font-size:.92rem; color:var(--muted); flex:1; margin-bottom:1rem; }
.dest-cards--sm .dest-card__body { padding-bottom:1.2rem; }
.dest-cards--sm .dest-card__body h3 { margin-bottom:0; }

/* ways-to-travel cards */
.exp { background:var(--paper); border:2px solid var(--line); border-radius:var(--radius); padding:1.5rem 1.4rem; }
.exp h3 { font-size:1.15rem; margin-bottom:.5rem; }
.exp p { font-size:.92rem; }

/* things to do */
.things { display:grid; gap:clamp(1rem,2.2vw,1.5rem); grid-template-columns:1fr; }
@media(min-width:700px){ .things{ grid-template-columns:repeat(2,1fr); } }
.thing { display:flex; gap:1.1rem; align-items:flex-start; background:var(--paper); border:2px solid var(--line); border-radius:var(--radius); padding:1.3rem 1.4rem; transition:border-color .4s var(--ease), box-shadow .4s var(--ease); }
.thing:hover { border-color:transparent; box-shadow:var(--shadow-md); }
.thing__no { flex:none; font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--accent-600); background:rgba(58,126,126,.14); width:38px; height:38px; border-radius:50%; display:grid; place-items:center; }
.thing h3 { font-size:1.08rem; margin-bottom:.35rem; }
.thing p { font-size:.92rem; color:var(--muted); }

/* facts bar links */
.fact b a { color:var(--forest); }

/* ============================================================
   Hero planner bar + custom itinerary request form
   ============================================================ */

/* hero planner bar */
.planner {
  margin-top: clamp(1rem, 2vw, 1.25rem);
  background: rgba(255,255,255,.985);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: clamp(.8rem, 1.6vw, 1rem);
  box-shadow: var(--shadow-lg);
  display: grid; gap: .7rem;
  grid-template-columns: 1fr;
  max-width: 900px;
}
@media(min-width:760px){
  .planner { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; gap: .5rem; }
}
.planner__field { display: flex; flex-direction: column; gap: .3rem; padding: .1rem .6rem; min-width: 0; }
@media(min-width:760px){
  .planner__field + .planner__field { border-left: 2px solid var(--line); }
}
.planner__field label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.planner__field select {
  border: none; background: transparent; padding: .25rem 0;
  font-size: .98rem; font-weight: 600; color: var(--forest);
  width: 100%; min-width: 0; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a7e7e' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .55rem center; padding-right: 1.6rem;
}
.planner__field select:focus { outline: none; }
.planner__field:focus-within label { color: var(--accent-600); }
.planner__go { white-space: nowrap; }
@media(max-width:759px){ .planner__go { width: 100%; } }

/* narrow container for form pages */
.container--narrow { max-width: 860px; }

/* request card */
.request-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.form-legend {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-600); font-family: var(--font-body);
  margin: 2rem 0 1.1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--line);
}
.form-legend:first-of-type { margin-top: 0; }
.field .opt { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
.field .hint { display: block; margin-top: .35rem; font-size: .78rem; color: var(--muted); }

.prefill-note {
  background: rgba(58,126,126,.12); border: 1px solid rgba(58,126,126,.35);
  border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1.4rem;
  font-size: .88rem; color: var(--forest-500); font-weight: 600;
}

/* checkbox pills */
.field-group { margin-bottom: 1.1rem; }
.field-group__label { display: block; font-size: .85rem; font-weight: 600; color: var(--forest); margin-bottom: .6rem; }
.checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.check { position: relative; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .95rem; border: 2px solid var(--line); border-radius: 100px;
  font-size: .88rem; font-weight: 600; color: var(--muted); cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
.check span::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%; flex: none;
  border: 2px solid var(--line); transition: background .25s, border-color .25s;
}
.check:hover span { border-color: var(--accent); color: var(--forest); }
.check input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.check input:checked + span::before {
  border-color: var(--accent);
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%23081d16' stroke-width='4'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}
.check input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* planner bar — compact two-up layout on phones so the hero still reads as one screen,
   and keep every control at a 44px tap target */
@media(max-width:759px){
  .planner { grid-template-columns: 1fr 1fr; gap: .45rem; padding: .7rem;
             background: var(--paper); backdrop-filter: none; }
  .planner__field { padding: .35rem .55rem; border-radius: 6px; background: rgba(18,58,44,.04); }
  .planner__field:first-child { grid-column: 1 / -1; }
  .planner__field label { font-size: .66rem; }
  .planner__field select { min-height: 30px; font-size: .92rem; }
  .planner__go { grid-column: 1 / -1; min-height: 48px; }
}

/* ============================================================
   Pure-white pass — itinerary dividers, day markers, mobile gallery
   ============================================================ */

/* day-to-day divider: sits BELOW the italic overnight line, full width */
.days .day { padding-bottom: clamp(1.6rem, 3.5vw, 2.6rem); border-bottom: 2px solid var(--line-strong); }
.days .day:last-child { padding-bottom: 0; border-bottom: none; }

/* day marker — stronger, so scanning the itinerary is easy */
.day__no {
  position: static; display: inline-block; align-self: center;
  margin-bottom: .9rem;
  font-size: 1rem; letter-spacing: .08em;
  padding: .5rem 1.2rem;
  box-shadow: 0 6px 18px -6px rgba(18,58,44,.5);
}

/* single-tour gallery — swipeable strip on phones */
@media(max-width:699px){
  .tour-gallery {
    display: flex; gap: .7rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed to the screen edges so the next image peeks in */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: .4rem;
  }
  .tour-gallery::-webkit-scrollbar { display: none; }
  .tour-gallery figure {
    flex: 0 0 82%; scroll-snap-align: center; aspect-ratio: 4/3;
  }
}

/* ============================================================
   Tour package carousel (homepage)
   ============================================================ */
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: clamp(1rem, 2.2vw, 1.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  /* bleed to the screen edges so the next card peeks in */
  margin-inline: calc(var(--gutter) * -1);
  padding: .5rem var(--gutter) 1.4rem;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media(min-width:700px){ .carousel__track { grid-auto-columns: 46%; } }
@media(min-width:1040px){
  .carousel__track { grid-auto-columns: calc((100% - 2 * clamp(1rem,2.2vw,1.6rem)) / 3); margin-inline: 0; padding-inline: 0; }
}
.carousel__track > * { scroll-snap-align: center; }

.carousel__arrow {
  position: absolute; top: 42%; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(18,58,44,.55);
  transition: background .3s, transform .3s var(--ease), opacity .3s;
}
.carousel__arrow:hover { background: var(--accent); color: var(--paper); transform: scale(1.08); }
.carousel__arrow--prev { left: calc(var(--gutter) * -1 + .2rem); }
.carousel__arrow--next { right: calc(var(--gutter) * -1 + .2rem); }
@media(min-width:1040px){
  .carousel__arrow--prev { left: -22px; }
  .carousel__arrow--next { right: -22px; }
}
.carousel__arrow[disabled] { opacity: .3; pointer-events: none; }
@media(max-width:520px){ .carousel__arrow { display: none; } }

/* card body in carousel form */
.carousel .tour-card__meta {
  color: var(--accent-600); font-size: .8rem; letter-spacing: .1em;
}
.carousel .tour-card h3 { font-size: 1.45rem; margin-bottom: 0; }
.carousel .tour-card__body { padding: 1.4rem 1.5rem 1.5rem; }
.carousel .tour-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1.3rem; padding-top: 1.3rem; border-top: 2px solid var(--line);
}
.tour-card__price b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 1.35rem; color: var(--forest-500); line-height: 1.1;
}
.tour-card__price small {
  display: block; margin-top: .2rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.tour-card__go {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--paper);
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 8px 20px -8px rgba(58,126,126,.8);
  transition: transform .3s var(--ease), background .3s;
}
.tour-card:hover .tour-card__go { transform: translateX(3px) scale(1.06); }

/* review slider: cards are shorter than tour cards, so equalise heights */
.carousel__track--reviews > * { height: 100%; }
.carousel__track--reviews { align-items: stretch; }

/* ---- ninth "what we offer" card: brand-coloured CTA, desktop only ---- */
.offer--cta { display: none; background: var(--accent); border-color: var(--accent); color: var(--paper); }
@media(min-width:1000px){ .offer--cta { display: flex; } }
.offer--cta h3 { color: var(--paper); }
.offer--cta p { color: rgba(255,255,255,.9); }
.offer--cta .ic { background: rgba(255,255,255,.18); color: var(--paper); }
.offer--cta .textlink { color: var(--paper); border-bottom-color: rgba(255,255,255,.6); }
.offer--cta:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }

/* ---- offers: swipeable with arrows on phones, plain grid on desktop ---- */
@media(max-width:699px){
  .carousel--offers .offer-grid {
    display: grid; grid-auto-flow: column; grid-auto-columns: 82%;
    gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: .3rem var(--gutter) 1rem;
  }
  .carousel--offers .offer-grid::-webkit-scrollbar { display: none; }
  .carousel--offers .offer-grid > * { scroll-snap-align: center; }
  .carousel--offers .carousel__arrow { display: grid; top: 40%; width: 40px; height: 40px; }
  .carousel--offers .carousel__arrow--prev { left: .2rem; }
  .carousel--offers .carousel__arrow--next { right: .2rem; }
}
@media(min-width:700px){ .carousel--offers .carousel__arrow { display: none; } }

/* keep slider arrows available on phones for tours and reviews too */
@media(max-width:520px){
  .carousel__arrow { display: grid; width: 40px; height: 40px; }
  .carousel__arrow--prev { left: .2rem; }
  .carousel__arrow--next { right: .2rem; }
}

/* footer review links */
.footer-reviews { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.2rem; }
.rev-btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.5rem .9rem; border:2px solid var(--line-dark); border-radius:100px;
  font-size:.84rem; font-weight:600; color:var(--paper);
  transition:border-color .25s, background .25s, transform .25s var(--ease);
}
.rev-btn:hover { border-color:var(--accent); background:rgba(58,126,126,.25); transform:translateY(-2px); }

/* ---- tour packages: photographic background behind the section ----
   Without these rules the <img> just renders inline above the content. */
.tours-band { position: relative; overflow: hidden; }
.tours-band__bg { position: absolute; inset: 0; z-index: 0; }
.tours-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.tours-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,29,22,.62), rgba(8,29,22,.56));
}
.tours-band > .container { position: relative; z-index: 2; }
.tours-band h2 { color: var(--paper); }
.tours-band .section-head p { color: var(--muted-cream); }
.tours-band .eyebrow { color: var(--accent-100); }
.tours-band .eyebrow::before,
.tours-band .eyebrow.center::after { background: var(--accent-100); }

/* ---- itinerary day: badge above the photo, content centred ---- */
.day { text-align: center; }
.day__media { display: flex; flex-direction: column; }
.days .day .day__no { order: -1; }
.day__body { display: flex; flex-direction: column; align-items: center; }
.day__body p { max-width: 62ch; }
@media(min-width:800px){
  .day { text-align: left; }
  .day__media { align-items: flex-start; }
  .day__body { align-items: flex-start; }
}

/* ---- select caret clear of the field edge ---- */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a7e7e' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.2rem;
}

/* ---- tighter vertical rhythm on desktop ---- */
@media(min-width:1000px){
  .section { padding-block: clamp(3.2rem, 5.5vw, 5rem); }
  .section--tight { padding-block: clamp(2.4rem, 3.5vw, 3.2rem); }
  .section-head { margin-bottom: clamp(1.8rem, 3vw, 2.4rem); }
}

/* ---- sri-lanka.html: the two-up "before you fly / where to start" block ---- */
@media(min-width:860px){
  .inc-grid { align-items: start; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .inc { background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 2.6vw, 2.2rem); }
  .inc h2 { font-size: clamp(1.35rem, 2.1vw, 1.75rem); }
  .inc .ticks li { font-size: .95rem; }
}

/* ---- mobile nav CTA ---- */
.m-cta { margin-top: 2rem; width: 100%; }
@media(min-width:940px){ .m-cta { display: none; } }
/* close (X) stays white over the dark drawer */
body.nav-open .nav-toggle span { background: #fff !important; }

/* ---- duration cell stands out on phones ---- */
@media(max-width:639px){
  .fact:first-child { background: var(--forest); }
  .fact:first-child span { color: var(--muted-cream); }
  .fact:first-child b { color: var(--paper); font-size: 1.2rem; }
}

/* ---- destination hero: photos cross-fade automatically ---- */
.dest-slider { position: absolute; inset: 0; z-index: 0; }
.dest-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s var(--ease);
}
.dest-slider img.on { opacity: 1; }
@media (prefers-reduced-motion: reduce){
  .dest-slider img { transition: none; }
}

/* ---- hero: "or" divider under the search bar, then the secondary CTA ---- */
/* The rule used to span the full 900px of the search bar while the button
   under it was ~300px, leaving a long line floating over a small control.
   Both now share one width so they read as a single secondary block. */
.hero-alt { display: flex; align-items: center; gap: .9rem; max-width: 340px; margin: .75rem 0 .65rem; }
.hero-alt__rule { flex: 1; height: 1px; background: rgba(255,255,255,.32); }
.hero-alt__or {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.hero-alt__cta { max-width: 340px; }
.hero-alt__cta .btn { width: 100%; }
@media(max-width:759px){ .hero-alt__cta .btn { width: 100%; } }

/* ---- tours page: banner shown when arriving from the hero search ---- */
.tours-search-note {
  background: rgba(58,126,126,.12); border: 2px solid rgba(58,126,126,.35);
  border-radius: var(--radius); padding: .8rem 1.1rem; margin-bottom: 1.2rem;
  font-size: .92rem; color: var(--forest);
}
.tours-search-note b { color: var(--accent-600); }
.tours-search-note .textlink { font-size: .88rem; margin-left: .4rem; }

/* ---- things-to-do cards with a photo ---- */
.thing--photo { display: block; padding: 0; overflow: hidden; }
.thing--photo .thing__media { aspect-ratio: 16/10; overflow: hidden; }
.thing--photo .thing__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.thing--photo:hover .thing__media img { transform: scale(1.06); }
.thing--photo .thing__text { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 1.4rem 1.5rem; }
/* cards without a photo keep the original inline layout */
.thing:not(.thing--photo) .thing__text { display: flex; gap: 1.1rem; align-items: flex-start; }

/* ---- itinerary days that are text-only (no per-day photo) ---- */
.days--text .day { grid-template-columns: 1fr; text-align: left; padding-bottom: clamp(1.6rem,3.5vw,2.4rem); }
.days--text .day__body { align-items: flex-start; }
.days--text .day__no { position: static; align-self: flex-start; margin-bottom: .8rem; }
.days--text .day__body h3 { margin-bottom: .9rem; }
.days--text .day__body h4 {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-600);
  margin: 1.4rem 0 .5rem;
}
.days--text .day__body p { margin-bottom: .8rem; max-width: 68ch; }
.day__list { margin: .2rem 0 1rem; padding-left: 0; }
.day__list li {
  position: relative; padding-left: 1.2rem; margin-bottom: .4rem;
  font-size: .95rem; color: var(--muted); line-height: 1.65;
}
.day__list li::before {
  content: ""; position: absolute; left: 0; top: .62rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}


/* ============================================================
   Collapsible itinerary days (phones) + slider extras
   ============================================================ */

/* Generated tour days have no photo column, so they must stay single-column;
   the 2-col rule above would otherwise put the toggle beside its panel. */
.day:has(.day__toggle) { grid-template-columns: 1fr; gap: 0; align-items: start; }

.day__toggle {
  width: 100%; background: none; border: 0; padding: 0; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  column-gap: 1rem; row-gap: 0; text-align: left; color: inherit; font: inherit;
}
.day__toggle .day__no { grid-column: 1; justify-self: start; margin-bottom: .55rem; }
.day__toggle h3 { grid-column: 1; font-size: clamp(1.15rem,2.4vw,1.65rem); margin: 0; }
.day__chev {
  grid-column: 2; grid-row: 2; align-self: start; margin-top: .1rem;
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--line-strong); position: relative;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.day__chev::before, .day__chev::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 9px; height: 2px; background: currentColor; border-radius: 2px;
}
.day__chev::before { transform: translate(-72%,-50%) rotate(45deg); }
.day__chev::after  { transform: translate(-28%,-50%) rotate(-45deg); }
.day__toggle[aria-expanded="true"] .day__chev { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* collapse with a grid row so the panel keeps its natural height */
.day__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.day__panel > .day__body { overflow: hidden; min-height: 0; }
.day:has(.day__toggle[aria-expanded="true"]) > .day__panel { grid-template-rows: 1fr; }
.day__panel .day__body > :first-child { margin-top: 1rem; }
/* a collapsed day hides its photo too, or the phone list is all pictures */
@media(max-width:899px){
  .day__toggle[aria-expanded="false"] + .day__pic { display: none; }
}

/* on wider screens everything is open and the header is inert */
@media(min-width:800px){
  .day__toggle { cursor: default; pointer-events: none; display: block; }
  .day__chev { display: none; }
  .day__panel { grid-template-rows: 1fr !important; }
  .day__panel > .day__body { overflow: visible; }
}

/* tour gallery as a slider */
.carousel--gallery { margin-top: 0; }
.carousel--gallery .gal { margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; box-shadow: var(--shadow-sm); border: 2px solid var(--line); }
.carousel--gallery .gal img { width: 100%; height: 100%; object-fit: cover; }
/* a 3-up desktop grid would fit exactly and never slide, so show two and a peek */
@media(min-width:1040px){ .carousel--gallery .carousel__track { grid-auto-columns: 58%; margin-inline: 0; padding-inline: 0; } }

/* manual controls on the destination hero slider */
.dest-slider__nav {
  position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(1.2rem,3vw,2.2rem);
  display: flex; gap: .6rem;
}
.dest-slider__nav button {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(6px); transition: background .3s, transform .3s var(--ease);
}
.dest-slider__nav button:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }


/* ---- a photo for the days we have one for ---- */
.day__inner { display: grid; gap: clamp(1rem,2.4vw,1.8rem); grid-template-columns: 1fr; }
.day__pic {
  margin: 1rem 0 0; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-md); border: 2px solid var(--line);
}
.day__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.day--pic:hover .day__pic img { transform: scale(1.05); }
@media(min-width:800px){
  .day--pic .day__inner { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: start; }
  .day--pic:nth-child(even) .day__pic { order: 2; }
  .day__pic { margin-top: 0; }
  .day__panel .day__body > :first-child { margin-top: 0; }
}

/* ---- hairline where a dark band meets the footer ---- */
.inquire,
.cta-band { border-bottom: 3px solid rgba(255,255,255,.5); }



/* ---- tour gallery sits tight to the title above and the facts bar below ----
   Two stacked section paddings put 112px between the photos and the duration
   row; the gallery gives up its own and the facts bar runs on a reduced top. */
.section--tight:has(> .container > .carousel--gallery) { padding-top: 1.25rem; padding-bottom: 0; }
.section--tight:has(> .container > .carousel--gallery) + .section--tight { padding-top: 1.5rem; }
.carousel--gallery .carousel__track { padding-top: .25rem; padding-bottom: .9rem; }


/* ---- tighter run from the facts bar into the inclusions ----
   Adjacent section paddings were stacking: 98px under the price box and 139px
   above "What's included". Scoped by .facts / .inc-grid, so tour pages only. */
.section--tight:has(.facts) { padding-bottom: 1.5rem; }
.section--tight:has(.facts) + .section--tight { padding-top: 1.5rem; padding-bottom: 1.75rem; }
.section:has(> .container > .inc-grid) { padding-top: 2.25rem; }


/* ============================================================
   Tour day-by-day on desktop: two real columns, sticky left block
   ============================================================ */
@media(min-width:900px){
  /* .days scopes this above .day:has(.day__toggle), which sets a single column;
     without it the second column is implicit and auto-sizes to the text. */
  .days .day--pic {
    grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
    column-gap: clamp(1.6rem,3vw,2.8rem);
    align-items: start;
  }
  /* title, day number and photo travel together as one block */
  .days .day--pic .day__side {
    position: sticky; top: var(--day-stick, 96px); align-self: start;
  }
  .days .day--pic .day__pic { margin: .9rem 0 0; }
  .days .day--pic .day__panel { grid-column: 2; grid-row: 1; }
  .days .day--pic .day__body { overflow: visible; }
  .days .day--pic .day__body > :first-child { margin-top: 0; }

  /* the column is the reading measure now */
  .days--text .day--pic .day__body p { max-width: none; }

  /* less air: the section and the run between days */
  .section:has(.days--text) { padding-top: 3rem; padding-bottom: 3rem; }
  .days { gap: 2rem; }
  .days .day { padding-bottom: 2rem; }
}


/* ---- planner band, lifted out of the hero ---- */
.plan-bar { background: var(--forest); padding-block: clamp(1.5rem,3.2vw,2.3rem); }
.plan-bar .planner { margin: 0 auto; }
.plan-bar .hero-alt { margin: 1rem auto .8rem; }
.plan-bar .hero-alt__rule { background: rgba(255,255,255,.32); }
.plan-bar .hero-alt__or { color: rgba(255,255,255,.85); }
.plan-bar .hero-alt__cta { margin: 0 auto; }


/* A landscape photo in a portrait viewport is mostly cropped away; a shorter
   hero brings the container ratio closer to the image and shows far more of it.
   Room for this came from moving the planner out of the hero. */
@media(max-width:700px){
  .hero { min-height: 76vh; }
}


/* ---- brand-green bands: the logo colour (#3a7e7e), not the dark forest ---- */
.bg-brand { background: var(--accent); color: var(--cream); }
/* :where() keeps these at zero specificity so component styles still win.
   Without it .bg-brand p beat .review-card p and painted the quotes white on
   white cards. */
.bg-brand :where(h1, h2, h3) { color: var(--paper); }
.bg-brand :where(p) { color: var(--muted-cream); }
/* cards sit on the green but are white surfaces: keep their own text colours */
.bg-brand .review-card p { color: var(--ink); }
.bg-brand .eyebrow { color: var(--accent-100); }
.bg-brand .eyebrow::before,
.bg-brand .eyebrow.center::after { background: var(--accent-100); }
.plan-bar { background: var(--accent); }
.counters { background: var(--accent); }
/* white at 85% drops to 3.9:1 on this lighter green, so take it to full white */
.plan-bar .hero-alt__or { color: #fff; }
.plan-bar .hero-alt__rule { background: rgba(255,255,255,.45); }
/* the shared ghost hover turns the border teal, which vanishes on a teal band */
.bg-brand .btn--ghost:hover,
.plan-bar .btn--ghost:hover { border-color: #fff; --fg: #fff; }
