/* ==========================================================================
   columbiaicefieldtours.com — single stylesheet
   Palette: Glacier Blue / Alpine Gold / Mountain Copper / Alpine Navy
   Fonts:   Manrope (display) + Inter (body)
   ========================================================================== */

:root {
  /* === COLOUR ROLES === */
  --c-primary:         #397B9D;  /* Glacier Blue — CTAs, icon fills */
  --c-primary-deep:    #245A76;  /* headings on light, eyebrow on light, button hover */
  --c-accent:          #D0A052;  /* Alpine Gold — decorative only (stars, rules). NEVER text on light */
  --c-accent-bright:   #F7CC80;  /* hero CTA bg + eyebrow on dark (4.61:1 on olive, 7.59:1 on charcoal) */
  --c-accent-deep:     #B85427;  /* Mountain Copper, deepened — step numbers + drop caps on LIGHT bg */
  --c-cream:           #FBFDFD;  /* Glacier White — base section bg */
  --c-cream-soft:      #EAF3F5;  /* section-alt bg + card on cream */
  --c-travertine:      #D3E2E8;  /* borders / subtle surface */
  --c-travertine-soft: #F6EADA;  /* pale sandstone — warm bands */
  --c-olive:           #275F7C;  /* mid-dark band — why-choose, faq, final CTA */
  --c-olive-deep:      #1B4459;  /* deeper variant — hover/border */
  --c-charcoal:        #293C47;  /* Alpine Navy — gallery bg, FOOTER bg, body text on light */
  --c-charcoal-mute:   #4E6674;  /* supporting text on light (5.92:1 on cream) */
  --c-white:           #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Manrope", "Segoe UI", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* === SPACING === */
  --section-py: clamp(3rem, 6vw, 5rem);
  --space-xs:   0.5rem;
  --space-sm:   0.875rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4.5rem;

  /* === LAYOUT === */
  --max-width:        1240px;
  --container:        min(1240px, 100% - 2rem);
  --container-narrow: min(820px, 100% - 2rem);
  --w-wide:           min(980px, 100% - 2rem);
  --w-read:           min(720px, 100% - 2rem);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --transition: 220ms ease;
  --shadow-sm:  0 2px 8px rgba(41, 60, 71, 0.08);
  --shadow-md:  0 10px 28px rgba(41, 60, 71, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(41, 60, 71, 0.35);

  /* === AUDIT ALIASES (contrast_audit.py) — literal hex, mapped to this layout's real roles === */
  --c-ice:          #FBFDFD;
  --c-navy:         #245A76;
  --c-ocean:        #245A76;
  --c-slate:        #4E6674;
  --c-amber:        #F7CC80;
  --c-amber-bright: #F7CC80;
  --c-gold:         #F7CC80;
}

/* Phone rail-collapse — .container already supplies the 1rem gutter */
@media (max-width: 600px) {
  :root { --w-wide: 100%; --w-read: 100%; }
}

/* ==========================================================================
   BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  color: var(--c-primary-deep);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3.1vw, 2.25rem); }
h3 { font-size: clamp(1.14rem, 1.9vw, 1.35rem); font-weight: 700; }

p { margin: 0 0 var(--space-md); }

a { color: var(--c-primary-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 700; color: var(--c-primary-deep); }

ul, ol { margin: 0 0 var(--space-md); padding-left: 1.15rem; }
li { margin-bottom: 0.42rem; }

:focus-visible {
  outline: 3px solid var(--c-accent-deep);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.container { width: var(--container); margin: 0 auto; }
.section   { padding-block: var(--section-py); }
.section--alt   { background: var(--c-cream-soft); }
.section--warm  { background: var(--c-travertine-soft); }
.section--olive { background: var(--c-olive); color: var(--c-cream); }
.section--dark  { background: var(--c-charcoal); color: var(--c-cream); }

section[id] { scroll-margin-top: 5.5rem; }

.section--olive h2, .section--olive h3,
.section--dark h2,  .section--dark h3  { color: var(--c-white); }
.section--olive p,  .section--dark p   { color: var(--c-cream); }
.section--olive a,  .section--dark a   { color: var(--c-accent-bright); }
.section--olive strong, .section--dark strong { color: var(--c-white); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Highlight swash for load-bearing decision phrases in the intro */
.hl {
  font-weight: 700;
  color: var(--c-primary-deep);
  background-image: linear-gradient(transparent 58%, rgba(57, 123, 157, 0.26) 58%);
  padding: 0 .08em;
  border-radius: 2px;
}

/* ==========================================================================
   SECTION HEADS + CONTENT RAILS (7d rule #15 / 7g contract)
   ========================================================================== */
.section-head { text-align: center; max-width: var(--w-read); margin: 0 auto var(--space-xl); }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-xs);
}
.section--olive .eyebrow,
.section--dark  .eyebrow,
.cta-banner     .eyebrow,
.hero           .eyebrow,
.why-choose     .eyebrow,
.gallery        .eyebrow { color: var(--c-accent-bright); }

.section-head__sub { color: var(--c-charcoal-mute); margin: 0; font-size: 1.05rem; }
.section--olive .section-head__sub,
.section--dark  .section-head__sub { color: var(--c-cream); opacity: .92; }

.intro__body            { max-width: var(--w-read); margin: 0 auto; }
.callout, .table-note   { max-width: var(--w-read); margin-inline: auto; }
.table-note             { text-align: center; }
.cta-banner__inner      { max-width: var(--w-read); margin: 0 auto; }
.text-block, .legal__inner { max-width: var(--w-read); margin: 0 auto; }

.experience-summary__grid, .included__grid { max-width: var(--w-wide); margin-inline: auto; }
.itinerary__list  { max-width: var(--w-wide); margin: 0 auto; }
.faq__list        { max-width: var(--w-wide); margin: 0 auto; }
.card-grid, .split, .table-wrap, .rules-grid, .status__inner,
.also__grid, .reviews__grid, .explore__grid { max-width: var(--w-wide); margin-inline: auto; }

/* Vertical rhythm between sibling content blocks — the rails ship zero vertical margin */
:is(.card-grid, .split, .table-wrap, .rules-grid, .status__inner, .experience-summary__grid,
    .included__grid, .itinerary__list, .faq__list, .table-note, .callout, .also__grid,
    .reviews__grid, .explore__grid, .intro__body)
+ :is(.card-grid, .split, .table-wrap, .rules-grid, .status__inner, .experience-summary__grid,
      .included__grid, .itinerary__list, .faq__list, .also__grid, .reviews__grid,
      .explore__grid, .intro__body) { margin-top: var(--space-lg); }

/* Enlarged first letter on each section's lead paragraph */
.intro__body > p:first-of-type::first-letter,
.intro-lead::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2em;
  line-height: 1;
  color: var(--c-accent-deep);
}
.section--olive .intro-lead::first-letter,
.section--dark  .intro-lead::first-letter { color: var(--c-accent-bright); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  padding: .85rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--c-primary); color: var(--c-white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--c-primary-deep); color: var(--c-white); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.08rem; }

.btn--secondary {
  background: rgba(251, 253, 253, 0.14);
  color: var(--c-white);
  border-color: rgba(251, 253, 253, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn--secondary:hover { background: rgba(251, 253, 253, 0.26); color: var(--c-white); }

.btn--ghost {
  background: transparent;
  color: var(--c-primary-deep);
  border-color: var(--c-primary);
}
.btn--ghost:hover { background: var(--c-primary); color: var(--c-white); }

/* Dark-bg buttons keep white text — .nav a would otherwise out-specify .btn--primary */
.nav .btn--primary { color: var(--c-white); }
.section--olive .btn--primary, .section--dark .btn--primary, .cta-banner .btn--primary { color: var(--c-white); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 253, 253, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  min-height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-primary-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand:hover { text-decoration: none; }
.brand span { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-charcoal-mute); }

.nav { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.nav a { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--c-charcoal); white-space: nowrap; }
.nav a:hover { color: var(--c-primary-deep); }
.site-header__cta { display: flex; justify-content: flex-end; }
/* The nav carries its own CTA for the mobile drawer only — at desktop the header
   column already renders it, and showing both duplicates the button. */
@media (min-width: 981px) { .nav > .btn--primary { display: none; } }
@media (max-width: 1180px) and (min-width: 981px) { .nav { gap: 15px; } .nav a { font-size: 16px; } }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--c-travertine);
  border-radius: var(--radius-sm);
  padding: .5rem .7rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--c-primary-deep);
}

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .site-header__cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    padding: var(--space-sm) 1rem var(--space-md);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .2rem; border-bottom: 1px solid var(--c-travertine); }
  .nav .btn--primary { margin-top: var(--space-sm); border-bottom: 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 82vh, 780px);
  padding-block: var(--space-2xl);
  overflow: hidden;
  background: var(--c-charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 40, 50, 0.62) 0%, rgba(24, 40, 50, 0.30) 52%, rgba(24, 40, 50, 0.10) 100%),
    linear-gradient(180deg, rgba(24, 40, 50, 0.52) 0%, rgba(24, 40, 50, 0.18) 42%, rgba(24, 40, 50, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.hero-overlay {
  background: rgba(41, 60, 71, 0.30);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(251, 253, 253, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.55);
  margin-bottom: var(--space-lg);
}
.hero-overlay > :last-child { margin-bottom: 0; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-overlay { background: rgba(41, 60, 71, 0.66); }
}

.hero h1 { color: var(--c-white); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); margin-bottom: var(--space-sm); }
.hero .eyebrow { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.hero strong { color: inherit; }

.hero-lede {
  color: var(--c-cream);
  font-size: clamp(1.03rem, 1.5vw, 1.16rem);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--space-md);
}
.hero-rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  color: var(--c-cream); font-size: .98rem; margin-bottom: var(--space-sm);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: .06em; }
.hero-rating .score { font-family: var(--font-display); font-weight: 800; color: var(--c-white); }

.hero-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem; margin: 0;
  color: var(--c-cream); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.hero-price__from { font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.hero-price__amount { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--c-white); }
.hero-price__unit { font-size: .95rem; opacity: .92; }

.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--space-lg); }
.hero-pills span {
  background: rgba(41, 60, 71, 0.52);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(251, 253, 253, 0.28);
  border-radius: 999px;
  padding: .4rem .95rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-cream);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Hero primary CTA is the one yellow button on the site */
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.hero .btn--primary:hover { background: #FFD98F; color: var(--c-charcoal); }

@media (max-width: 640px) {
  .hero { min-height: 0; padding-block: var(--space-xl) 5rem; }
}

/* ==========================================================================
   FACTS STRIP
   ========================================================================== */
.facts {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-travertine);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}
.facts__row {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-md);
  max-width: var(--w-wide);
}
.facts__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .12rem; }
.facts__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 800;
  color: var(--c-primary-deep);
  line-height: 1.1;
}
.facts__label { font-size: clamp(.92rem, 1.3vw, 1.02rem); color: var(--c-charcoal-mute); }

@media (min-width: 720px) { .facts__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) {
  .facts__row { grid-template-columns: repeat(5, 1fr); }
  .facts__row--4 { grid-template-columns: repeat(4, 1fr); max-width: 860px; }
  .facts__row--3 { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
  .facts__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
}

/* ==========================================================================
   INTRO — verdict paragraph + highlights/included grid
   ========================================================================== */
.experience-summary__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-md);
  max-width: 1000px;
}
@media (min-width: 720px) { .experience-summary__grid { grid-template-columns: 1fr 1fr; } }

.experience-summary__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 {
  border-bottom: 1px solid var(--c-travertine);
  padding-bottom: .6rem;
  margin-bottom: var(--space-md);
}
.experience-summary__col ul { list-style: none; padding: 0; margin: 0; }
.experience-summary__col li { position: relative; padding-left: 1.7rem; margin-bottom: .7rem; }
.experience-summary__col li::before {
  content: "";
  position: absolute; left: 0; top: .52em;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background: var(--c-primary) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center/68% no-repeat;
}
.experience-summary__cta { text-align: center; margin: var(--space-lg) 0 0; }

/* ==========================================================================
   BOOKING / AVAILABILITY
   ========================================================================== */
.booking-section { background: var(--c-cream-soft); }  /* must differ from #intro (cream) above and #experience (cream) below */
.booking-widget-wrapper { width: 100%; margin-inline: auto; }
/* Un-box: the GYG frame brings its own chrome */
.booking-section .gyg-widget {
  max-width: none; background: none; border: 0; border-radius: 0;
  padding: 0; box-shadow: none; min-height: 0;
}
.featured-proof {
  display: grid; grid-template-columns: 1fr; gap: var(--space-sm);
  margin: var(--space-lg) auto 0;
}
@media (min-width: 760px) { .featured-proof { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); } }
.featured-proof__item {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: 1.05rem; line-height: 1.4; color: var(--c-charcoal);
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.featured-proof__item strong { color: var(--c-primary-deep); font-weight: 800; font-size: 1.15em; }
.featured-proof__item svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--c-primary); }
.featured-proof__star { color: var(--c-accent); }


/* Lead line + widget spacing on the decision/verdict pages (replaces inline styles) */
.widget-lead { text-align: center; max-width: var(--w-read); margin: var(--space-lg) auto 0; }
.booking-widget-wrapper--inline { margin-top: var(--space-md); }

/* ==========================================================================
   ITINERARY / NUMBERED LISTS  (#experience, #reality-check)
   ========================================================================== */
.itinerary__list { list-style: none; padding: 0; margin: 0 auto; }
.itinerary__item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}
.itinerary__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-accent-deep);
  line-height: 1;
}
.itinerary__item h3 { margin-bottom: .35rem; }
.itinerary__item p  { margin-bottom: 0; }

/* ==========================================================================
   GALLERY — full-width scroll strip
   ========================================================================== */
.gallery { background: var(--c-charcoal); color: var(--c-cream); padding-block: var(--section-py); }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: var(--c-cream); opacity: .92; }

.gallery__wrapper { position: relative; }
.gallery__wrapper--full {
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__wrapper--full .gallery__strip {
  padding-left:  max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
}
.gallery__wrapper::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 12px;
  width: 90px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(41, 60, 71, 0) 0%, var(--c-charcoal) 100%);
}
.gallery__strip {
  display: flex; flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) rgba(251, 253, 253, 0.15);
}
.gallery__strip::-webkit-scrollbar { height: 9px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(251, 253, 253, 0.15); border-radius: 999px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 999px; }

.gallery__item {
  margin: 0;
  flex: 0 0 78vw;
  scroll-snap-align: start;
}
@media (min-width: 720px)  { .gallery__item { flex: 0 0 46vw; } }
@media (min-width: 1080px) { .gallery__item { flex: 0 0 31vw; max-width: 420px; } }

.gallery__item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-md); }
.gallery__item figcaption { font-size: .88rem; color: var(--c-cream); opacity: .82; padding-top: .5rem; }

.gallery__arrow {
  position: absolute; top: calc(50% - 30px);
  z-index: 3;
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(251, 253, 253, 0.4);
  background: rgba(41, 60, 71, 0.82);
  color: var(--c-cream);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.gallery__arrow:hover { background: var(--c-primary); }
.gallery__arrow--prev { left: max(1rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow--next { right: max(1rem, calc((100vw - 1240px) / 2)); }
@media (min-width: 1080px) and (hover: hover) { .gallery__arrow { display: block; } }

/* ==========================================================================
   CARD GRIDS  (#why-choose, #explore, #also)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 720px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card .eyebrow { font-size: 13px; }

.section--olive .card {
  background: rgba(251, 253, 253, 0.07);
  border-color: rgba(251, 253, 253, 0.22);
  box-shadow: none;
}
.section--olive .card h3 { color: var(--c-white); }
.section--olive .card p  { color: var(--c-cream); }
.section--olive .card .eyebrow { color: var(--c-accent-bright); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 760px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
.review {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--c-accent); letter-spacing: .08em; margin-bottom: .5rem; }
.review blockquote { margin: 0 0 var(--space-md); font-size: 1.04rem; line-height: 1.6; }
.review cite { margin-top: auto; font-style: normal; font-weight: 700; font-size: .92rem; color: var(--c-charcoal-mute); }
.reviews__note { font-size: .9rem; color: var(--c-charcoal-mute); text-align: center;
  max-width: var(--w-read); margin: var(--space-lg) auto 0; }

/* ==========================================================================
   ALTERNATIVES (#also)
   ========================================================================== */
.also { background: var(--c-travertine-soft); }
.also__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 760px) { .also__grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  color: var(--c-charcoal);
  transition: var(--transition);
}
.category-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.category-card__img {
  width: calc(100% + 2 * var(--space-lg));
  max-width: none;
  height: 180px;
  object-fit: cover;
  object-position: center;
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) 0.8rem;
  transition: transform var(--transition);
}
.category-card:hover .category-card__img { transform: scale(1.04); }
.category-card h3 { margin-bottom: .45rem; }
.category-card p { color: var(--c-charcoal); }
.category-card__featured {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-charcoal-mute);
  padding: .55rem 0 0;
  border-top: 1px solid var(--c-travertine);
  margin-bottom: .7rem;
}
.category-card__cta {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--c-primary-deep);
}

/* ==========================================================================
   TABLES
   ========================================================================== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: .97rem;
}
.vs-table th, .vs-table td {
  padding: .8rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--c-travertine);
  vertical-align: top;
}
.vs-table thead th {
  background: var(--c-cream-soft);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-primary-deep);
  white-space: nowrap;
}
.vs-table tbody th { font-weight: 700; color: var(--c-charcoal); white-space: nowrap; }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table .is-featured { background: rgba(57, 123, 157, 0.08); }
.vs-table .is-featured td, .vs-table .is-featured th { font-weight: 700; color: var(--c-primary-deep); }
.vs-table .strike { text-decoration: line-through; opacity: .65; font-size: .9em; display: block; }
.vs-table__note { font-size: .9rem; color: var(--c-charcoal-mute); }

.tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: .16rem .5rem;
  border-radius: 999px; white-space: nowrap; }
.tag--yes { background: rgba(57, 123, 157, 0.14); color: var(--c-primary-deep); }
.tag--no  { background: rgba(184, 84, 39, 0.14);  color: var(--c-accent-deep); }

/* ==========================================================================
   CALLOUT
   ========================================================================== */
.callout {
  background: var(--c-travertine-soft);
  border-left: 4px solid var(--c-accent-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) auto 0;
}
.callout p:last-child { margin-bottom: 0; }
/* A callout inside a warm band would otherwise be the same colour as the band */
.section--warm .callout { background: var(--c-white); border-color: var(--c-accent-deep); }
.callout strong { color: var(--c-accent-deep); }

/* ==========================================================================
   GUIDE (editorial body)
   ========================================================================== */
.guide__body h3 { margin-top: var(--space-lg); }
.guide__body h3:first-child { margin-top: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list { display: block; }
.faq__item {
  background: rgba(251, 253, 253, 0.07);
  border: 1px solid rgba(251, 253, 253, 0.22);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--c-white);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--c-accent-bright); line-height: 1; flex-shrink: 0; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item[open] summary { border-bottom: 1px solid rgba(251, 253, 253, 0.18); }
.faq__answer { padding: var(--space-md) var(--space-lg); }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer p { color: var(--c-cream); }
.faq__answer a { color: var(--c-accent-bright); }

/* FAQ olive is one shade lighter than the final-CTA olive so the two dark bands separate */
#faq.section--olive { background: #2E6C8C; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-banner { background: var(--c-olive); color: var(--c-cream); text-align: center; }
.cta-banner h2 { color: var(--c-white); }
.cta-banner ul {
  display: flex; flex-direction: column;
  width: max-content; max-width: 100%;
  margin: 0 auto var(--space-lg);
  text-align: left;
  list-style: none; padding: 0;
}
.cta-banner li { position: relative; padding-left: 1.6rem; color: var(--c-cream); }
.cta-banner li::before { content: "\2713"; position: absolute; left: 0; color: var(--c-accent-bright); font-weight: 700; }
.cta-banner .btn--primary { display: inline-flex; margin: 0 auto; }
.cta-banner__disclosure { font-size: .86rem; opacity: .88; margin: var(--space-md) auto 0; max-width: var(--w-read); }

/* ==========================================================================
   MORE EXPERIENCES (auto widget)
   ========================================================================== */
.more-experiences { background: var(--c-cream); padding-block: var(--section-py); }
.more-experiences .section-sub { max-width: var(--w-read); color: var(--c-charcoal-mute); }
.more-experiences__widget { max-width: var(--w-wide); margin: var(--space-xl) auto 0; }
.more-experiences__widget:empty { margin-top: 0; }

/* ==========================================================================
   EXPLORE grid
   ========================================================================== */
.explore__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); list-style: none; padding: 0; margin: 0 auto; }
@media (min-width: 720px) { .explore__grid { grid-template-columns: repeat(2, 1fr); } }
.explore__grid li { margin: 0; }
.explore__grid a {
  display: flex; flex-direction: column; gap: .3rem; height: 100%;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.explore__grid a:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.explore__grid strong { font-family: var(--font-display); font-size: 1.08rem; color: var(--c-primary-deep); }
.explore__grid span { font-size: .95rem; color: var(--c-charcoal-mute); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-charcoal); color: var(--c-cream); padding-block: var(--space-xl) var(--space-lg); }
.site-footer a { color: var(--c-cream); }
.site-footer a:hover { color: var(--c-accent-bright); }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
  width: var(--container); margin: 0 auto;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--space-xl); } }
.footer__grid h3 { color: var(--c-white); font-size: 1rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: var(--space-sm); }
.footer__grid p { color: var(--c-cream); opacity: .88; font-size: .95rem; }
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: .45rem; font-size: .95rem; }
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--c-white); display: block; margin-bottom: .5rem; }
.footer__bottom {
  width: var(--container); margin: var(--space-xl) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(251, 253, 253, 0.18);
  font-size: .86rem; opacity: .82;
}
.footer__bottom p { margin-bottom: .4rem; color: var(--c-cream); }

/* ==========================================================================
   LEGAL / UTILITY PAGES
   ========================================================================== */
.legal { padding-block: var(--space-2xl) var(--space-xl); }
.legal__inner h2 { margin-top: var(--space-xl); }
.legal__inner h2:first-of-type { margin-top: var(--space-lg); }
.page-head { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding-block: var(--space-xl); }
.page-head .container { max-width: var(--w-read); text-align: center; }
.page-head p { color: var(--c-charcoal-mute); margin-bottom: 0; }
.breadcrumb { font-size: .9rem; color: var(--c-charcoal-mute); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--c-primary-deep); }

/* ==========================================================================
   MOBILE STICKY BOOKING BAR
   ========================================================================== */
.sticky-cta { display: none; }

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(41, 60, 71, 0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(251, 253, 253, 0.16);
    box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta[hidden] { display: none; }

  .sticky-cta__meta {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--c-cream);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-cta__unit { font-weight: 500; font-size: 0.8rem; opacity: 0.72; }
  .sticky-cta .btn--primary {
    flex: 0 0 auto;
    padding: 0.72rem 1.35rem;
    font-weight: 700;
    background: var(--c-accent-bright);
    color: var(--c-charcoal);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.35);
  }
  /* Clearance so the fixed bar never covers footer links on hero-less pages */
  .site-footer { padding-bottom: calc(var(--space-lg) + 4.5rem + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .btn:hover, .card:hover, .category-card:hover, .explore__grid a:hover { transform: none; }
}
