/* =========================================================================
   TravelBug — Tropical Pop
   ------------------------------------------------------------------------
   CONTRAST RULE (please keep to it):
   The bright colours all fail WCAG against white text — turquoise is 2.3:1,
   coral 3.0:1. So bright fills always carry --ink text:
       turquoise + ink  5.9:1      coral + ink   4.6:1
       sunshine  + ink  9.5:1      lime  + ink   8.7:1
   --deep-teal is the ONLY coloured surface that takes white text (6.4:1).
   --lime and --sunshine are fill-only: never use them as a text colour.

   Sections: tokens · base · layout · waves · buttons · header · heroes
             trips · stats · steps · included · about · quotes · gallery
             itinerary · newsletter · forms · footer
   ========================================================================= */

/* ------------------------------- tokens -------------------------------- */
:root {
  --turquoise:   #00BFA6;
  --turquoise-d: #00A891;
  --coral:       #FF5D73;
  --coral-d:     #F0455C;
  --lime:        #A8E10C;
  --sunshine:    #FFD23F;

  --ink:         #10322F;
  --ink-soft:    #4A6360;
  --ink-faint:   #7C918E;
  --deep-teal:   #006B5E;
  --deep-teal-d: #00524A;

  --white:       #FFFFFF;
  --mist:        #F2FBF9;   /* barely-there tint for alternating sections */
  --line:        #DCEAE7;

  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap:        1180px;
  --wrap-narrow: 780px;

  --r-sm: 10px;
  --r:    18px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 6px rgba(16,50,47,.06), 0 10px 24px rgba(16,50,47,.07);
  --shadow-md: 0 4px 10px rgba(16,50,47,.07), 0 22px 48px rgba(16,50,47,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 74px;
}

/* -------------------------------- base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.32rem; letter-spacing: -.015em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--deep-teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--turquoise-d); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -110%);
  z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ------------------------------- layout -------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
.section-mist { background: var(--mist); }
.section-teal { background: var(--deep-teal); color: #EAF7F4; }
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal a { color: var(--sunshine); }
.section-tight { padding-top: clamp(2.5rem, 5vw, 4rem); }

.note-centred {
  margin: 2.4rem auto 0;
  max-width: 56ch;
  text-align: center;
  color: var(--ink-soft);
  font-size: .99rem;
}

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem); }
.section-head.is-centred { margin-inline: auto; text-align: center; }
.section-head .lede { color: var(--ink-soft); font-size: 1.1rem; }
.section-teal .section-head .lede { color: rgba(234,247,244,.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin: 0 0 1rem;
  transform: rotate(-1.2deg);
}
.section-teal .eyebrow { background: var(--sunshine); }

/* squiggly underline used on a word or two inside a heading */
.squiggle {
  background-image: linear-gradient(var(--sunshine), var(--sunshine));
  background-size: 100% .3em;
  background-position: 0 88%;
  background-repeat: no-repeat;
  padding: 0 .06em;
}

/* reveal-on-scroll (JS adds .is-in) */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------- waves -------------------------------- */
/* Section divider. The SVG fills its lower half, so the wave needs TWO
   colours: its own background = the section above, --wave-fill = the section
   below. Compose them, e.g. <div class="wave on-mist wave-teal">.
   Inside a .hero it self-positions over the photo instead. */
.wave { display: block; line-height: 0; }
.wave svg { display: block; width: 100%; height: clamp(38px, 5vw, 74px); }
.wave svg path { fill: var(--wave-fill, var(--white)); }

.wave-white { --wave-fill: var(--white); }
.wave-mist  { --wave-fill: var(--mist); }
.wave-teal  { --wave-fill: var(--deep-teal); }
.wave-ink   { --wave-fill: var(--ink); }

.on-white { background: var(--white); }
.on-mist  { background: var(--mist); }
.on-teal  { background: var(--deep-teal); }

.hero > .wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; background: none; }

/* ------------------------------- buttons ------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s var(--ease), background-color .18s, border-color .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* bright fills carry ink text — see the contrast rule at the top */
.btn-primary { background: var(--turquoise); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--turquoise-d); color: var(--ink); }

.btn-coral { background: var(--coral); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-coral:hover { background: var(--coral-d); color: var(--ink); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-on-photo { background: var(--white); color: var(--ink); box-shadow: var(--shadow-md); }
.btn-on-photo:hover { background: var(--sunshine); color: var(--ink); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: var(--white); color: var(--white); }

.btn-sm { padding: .58rem 1.15rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* ------------------------------- stickers ------------------------------ */
.sticker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .02em;
  padding: .34rem .78rem;
  border-radius: 999px;
  color: var(--ink);
  white-space: nowrap;
}
.sticker-coral    { background: var(--coral); }
.sticker-sunshine { background: var(--sunshine); }
.sticker-lime     { background: var(--lime); }
.sticker-white    { background: var(--white); }
.sticker-tilt     { transform: rotate(-2deg); }

/* ------------------------------- header -------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 8px 26px rgba(16,50,47,.07);
  padding: .55rem 0;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--white); text-decoration: none;
  transition: color .3s var(--ease);
}
.site-header.is-stuck .brand { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--turquoise);
  border-radius: 11px;
  transform: rotate(-4deg);
}
.brand-mark svg { width: 19px; height: 19px; color: var(--ink); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.035em;
}

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  color: rgba(255,255,255,.94);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .98rem; font-weight: 600;
  transition: color .2s;
}
.nav a:hover { color: var(--sunshine); }
.nav a[aria-current="page"] { color: var(--sunshine); }
.site-header.is-stuck .nav a { color: var(--ink-soft); }
.site-header.is-stuck .nav a:hover,
.site-header.is-stuck .nav a[aria-current="page"] { color: var(--deep-teal); }
.nav a.btn, .site-header.is-stuck .nav a.btn { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  color: var(--white);
}
.site-header.is-stuck .nav-toggle { color: var(--ink); }
.nav-toggle-bars { display: grid; gap: 5px; width: 23px; }
.nav-toggle-bars i {
  display: block; height: 2.5px; border-radius: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 100% .75rem auto .75rem;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-md);
    padding: .5rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a, .site-header.is-stuck .nav a {
    color: var(--ink); padding: .85rem 1rem; border-radius: var(--r-sm);
  }
  .nav a:hover, .nav a[aria-current="page"] { background: var(--mist); color: var(--deep-teal); }
  .nav a.btn { margin-top: .4rem; justify-content: center; }
}

/* -------------------------------- heroes ------------------------------- */
.hero { position: relative; isolation: isolate; color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Montage clips sit over the poster and cross-fade between themselves.
   Both start at 0 so the poster shows until a clip can actually play. */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s var(--ease);
  pointer-events: none;
}
.hero-video.is-live { opacity: 1; }

/* Location label for whatever clip is showing. */
.hero-caption {
  position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: clamp(4.5rem, 9vw, 6.5rem);
  z-index: 2;
  margin: 0;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(3,26,24,.6);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.hero-caption.is-live { opacity: 1; }
.hero-caption::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex: none;
}
@media (max-width: 700px) { .hero-caption { display: none; } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,32,29,.62) 0%, rgba(4,32,29,.3) 42%, rgba(4,32,29,.72) 100%);
}

.hero-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  min-height: min(88vh, 760px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(4.5rem, 10vh, 7rem);
}
.hero h1 { margin-bottom: .9rem; text-shadow: 0 2px 26px rgba(3,26,24,.4); }
.hero h1 em { font-style: normal; color: var(--sunshine); }
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(255,255,255,.94);
  margin-bottom: 1.9rem;
  text-shadow: 0 1px 14px rgba(3,26,24,.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-actions.is-centred { justify-content: center; }
.hero .eyebrow { color: var(--ink); }

/* shorter hero for inner pages */
.page-hero .hero-inner {
  min-height: min(52vh, 440px);
  padding-bottom: clamp(3rem, 6vh, 4.5rem);
}
.page-hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
.page-hero .hero-sub { margin-bottom: 0; }

/* trip-page hero carries the price/dates bar */
.trip-hero .hero-inner { min-height: min(66vh, 560px); }
.trip-hero-meta {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.1rem;
}

/* ------------------------------ trip cards ----------------------------- */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}

/* Only one departure open: a lone card sitting in the first of three tracks
   reads as a layout bug, so give it its own centred column instead. */
.trip-grid.is-single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.trip-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.trip-card > a { display: block; color: inherit; text-decoration: none; height: 100%; }

.trip-card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.trip-card:hover .trip-card-media img { transform: scale(1.05); }
.trip-card-media .sticker { position: absolute; top: .9rem; right: .9rem; box-shadow: var(--shadow-sm); }
.trip-card-media .trip-card-level {
  position: absolute; left: .9rem; bottom: .9rem;
  background: rgba(8,40,37,.78);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .68rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}

.trip-card-body { padding: 1.4rem 1.35rem 1.5rem; }
.trip-card-where {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--turquoise-d);
  margin: 0 0 .25rem;
}
.trip-card-body h3 { margin-bottom: .5rem; }
.trip-card-blurb { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; }

.trip-card-meta {
  list-style: none; margin: 0 0 1rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem .9rem;
  font-size: .89rem; color: var(--ink-soft);
}
.trip-card-meta li { display: inline-flex; align-items: center; gap: .4rem; }
.trip-card-meta li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--turquoise); flex: none;
}

.trip-card-foot {
  /* flex-end, not baseline: the price block leads with a small "from" label and
     baseline alignment would hang the link off that instead of the number. */
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.trip-card-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em;
}
.trip-card-price span {
  display: block;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.trip-card-go {
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem;
  color: var(--deep-teal);
}
.trip-card:hover .trip-card-go { color: var(--turquoise-d); }

/* -------------------------------- stats -------------------------------- */
.stats {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4rem); font-weight: 800; line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: .3rem;
}
.stats li:nth-child(1) .stat-num { color: var(--sunshine); }
.stats li:nth-child(2) .stat-num { color: var(--lime); }
.stats li:nth-child(3) .stat-num { color: var(--coral); }
.stats li:nth-child(4) .stat-num { color: var(--turquoise); }
.stat-label { font-size: .93rem; color: rgba(234,247,244,.82); }

/* -------------------------------- steps -------------------------------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem 1.8rem;
}
.step { position: relative; }
.step-num {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--sunshine);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  margin-bottom: 1rem;
  transform: rotate(-3deg);
}
.step:nth-child(2) .step-num { background: var(--lime); transform: rotate(2deg); }
.step:nth-child(3) .step-num { background: var(--coral); transform: rotate(-2deg); }
.step:nth-child(4) .step-num { background: var(--turquoise); transform: rotate(3deg); }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ------------------------------- included ------------------------------ */
.included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.included-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
}
.included-col h3 { margin-bottom: .9rem; font-size: 1.15rem; }
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.tick-list li {
  position: relative; padding-left: 1.9rem;
  font-size: .95rem; color: var(--ink-soft);
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .3em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310322F' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l6 6L20 5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.cross-list li::before {
  background: #FFE1E5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C23B4F' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* -------------------------------- about -------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* Long-copy variant (the About page): centring the photo against several
   hundred words leaves a hole above it, so pin it to the top and let it
   follow the reader down instead. */
.about-grid.is-top { align-items: start; }
.about-grid.is-top .about-photo { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 860px) {
  .about-grid.is-top .about-photo { position: static; }
}

.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-photo .sticker {
  position: absolute; bottom: 1rem; left: 1rem;
  box-shadow: var(--shadow-sm);
}

/* ------------------------------- quotes -------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.quote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.7rem 1.7rem;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute; top: .5rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  color: var(--turquoise);
}
.quote blockquote { margin: 0 0 1.1rem; font-size: 1.04rem; }
.quote figcaption {
  font-family: var(--font-display);
  font-size: .87rem; font-weight: 600;
  color: var(--ink-faint);
}

/* ------------------------------- gallery ------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery img { border-radius: var(--r); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery-spaced { margin: 2rem 0 2.6rem; }

/* breathing room before a second heading inside the trip body */
.trip-main h2 + .gallery-spaced { margin-top: 1.4rem; }
.trip-main .itinerary + h2,
.trip-main .gallery + h2 { margin-top: 2.6rem; }

/* past-journeys grid: photo + caption */
.past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.past-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.past-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .55s var(--ease); }
.past-card:hover img { transform: scale(1.05); }
.past-card-body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgba(6,32,30,.92) 18%, rgba(6,32,30,.5) 58%, transparent);
  color: var(--white);
}
.past-card-body h3 { margin: 0 0 .1rem; color: var(--white); font-size: 1.15rem; }
.past-card-body p { margin: 0; font-size: .87rem; color: rgba(255,255,255,.8); }

/* ------------------------------ trip layout ---------------------------- */
.trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 940px) { .trip-layout { grid-template-columns: 1fr; } }

.trip-aside {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 940px) { .trip-aside { position: static; } }
.trip-aside-price {
  font-family: var(--font-display);
  font-size: 2.3rem; font-weight: 800; letter-spacing: -.04em;
  line-height: 1; margin: 0 0 .2rem;
}
.trip-aside-price span {
  display: block; font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
}
.trip-facts { list-style: none; margin: 1.3rem 0; padding: 1.3rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .75rem; }
.trip-facts li { display: flex; justify-content: space-between; gap: 1rem; font-size: .94rem; }
.trip-facts dt, .trip-facts .k { color: var(--ink-faint); }
.trip-facts .v { font-weight: 600; text-align: right; }
.trip-aside-note { margin-top: .9rem; font-size: .84rem; color: var(--ink-faint); text-align: center; }

/* itinerary */
.itinerary { list-style: none; margin: 0; padding: 0; }
.itin-day {
  position: relative;
  padding: 0 0 1.9rem 3.4rem;
}
.itin-day::before {
  content: ""; position: absolute; left: 15px; top: 2.2rem; bottom: 0;
  border-left: 2px dashed var(--line);
}
.itin-day:last-child { padding-bottom: 0; }
.itin-day:last-child::before { display: none; }
.itin-num {
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 800;
}
.itin-day h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.itin-day p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ------------------------------ newsletter ----------------------------- */
.newsletter { text-align: center; }
.newsletter-form {
  display: flex; flex-wrap: wrap; gap: .7rem;
  max-width: 480px; margin: 1.6rem auto 0;
}
.newsletter-form input {
  flex: 1 1 220px;
  font: inherit;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(234,247,244,.6); }
.newsletter-form input:focus { outline: none; border-color: var(--sunshine); background: rgba(255,255,255,.16); }

/* -------------------------------- forms -------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 1.2rem;
}
.field { margin: 0 0 1.15rem; display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-display); font-size: .92rem; font-weight: 600; }

.field input, .field textarea, .field select {
  width: 100%;
  font: inherit; font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: .78rem .9rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--turquoise); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0,191,166,.18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--coral-d); }

.form-note { margin: .9rem 0 0; min-height: 1.4em; font-size: .92rem; color: var(--ink-soft); }
.form-note.is-error { color: var(--coral-d); font-weight: 600; }
.section-teal .form-note { color: rgba(234,247,244,.85); }
.section-teal .form-note.is-error { color: var(--sunshine); }

/* --------------------------------- faq --------------------------------- */
.faq { border-top: 2px solid var(--line); }
.faq details { border-bottom: 2px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.3rem 2.5rem 1.3rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 11px; height: 11px;
  border-right: 3px solid var(--turquoise); border-bottom: 3px solid var(--turquoise);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details p { margin: 0; padding: 0 2.5rem 1.4rem 0; color: var(--ink-soft); font-size: .97rem; }

/* -------------------------------- footer ------------------------------- */
.site-footer { background: var(--ink); color: rgba(234,247,244,.72); padding: 3.4rem 0 1.8rem; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { max-width: 300px; }
.footer-brand .brand { color: var(--white); margin-bottom: .5rem; }
.footer-brand p { margin: 0; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; }
.footer-nav a { color: rgba(234,247,244,.72); text-decoration: none; font-size: .94rem; }
.footer-nav a:hover { color: var(--sunshine); }

.footer-social { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; }
.footer-social a {
  color: var(--ink);
  background: var(--sunshine);
  padding: .3rem .8rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700;
}
.footer-social a:hover { background: var(--lime); color: var(--ink); }
.footer-base {
  padding-top: 1.4rem; font-size: .85rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
}
.footer-base p { margin: 0; }
