/* =========================================================================
   teidenationalparktours.com — stylesheet
   Palette: warm volcanic tones + cool mountain blue (fonts-colors.txt)
   Fonts: Manrope (display/UI) + Inter (body)
   ========================================================================= */

:root {
  /* === COLOUR ROLES === */
  --c-primary:         #C04C27;  /* Teide terracotta, deepened so white button text clears AA (4.88:1) */
  --c-primary-deep:    #A8431F;  /* headings on light, eyebrows on light, button hover */
  --c-accent:          #356F8A;  /* Mountain Blue — links, icons, decorative stars */
  --c-accent-bright:   #F5C462;  /* hero CTA + dark-background eyebrows (4.86:1 on olive) */
  --c-accent-deep:     #C2521C;  /* step numbers + enlarged initials on light backgrounds */
  --c-cream:           #FAF8F4;  /* warm volcanic white — base background */
  --c-cream-soft:      #F2E9DC;  /* pale sand — alternate sections */
  --c-travertine:      #E4D9C6;  /* borders / hairlines */
  --c-travertine-soft: #EAF0F2;  /* soft sky grey — cool bands and cards */
  --c-olive:           #2A5670;  /* deep mountain blue — dark bands, final CTA */
  --c-olive-deep:      #1F4C63;  /* deeper variant — the cable-car/summit notice */
  --c-charcoal:        #292724;  /* volcanic charcoal — gallery, footer, body text */
  --c-charcoal-mute:   #5C554D;  /* supporting text on light (6.92:1 on cream) */
  --c-white:           #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-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, 39, 36, 0.08);
  --shadow-md:  0 10px 28px rgba(41, 39, 36, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(41, 39, 36, 0.35);

  /* === LEGACY/AUDIT ALIASES (contrast_audit.py — literal hex, 0 uses in real rules) ===
     The audit models a layout whose dark bands are "navy" and "ocean" and whose
     primary button is amber-with-dark-text. Mapped to the colours that actually
     play those roles here: navy = the charcoal gallery/footer band and the dark
     text on the amber hero CTA; ocean = the olive-deep notice band. */
  --c-ice:          #FAF8F4;
  --c-navy:         #292724;
  --c-ocean:        #1F4C63;
  --c-slate:        #5C554D;
  --c-amber:        #F5C462;
  --c-amber-bright: #F5C462;
  --c-gold:         #F5C462;
}

@media (max-width: 600px) { :root { --w-wide: 100%; --w-read: 100%; } }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.18;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.05rem, 5vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 800; }
h3 { font-size: clamp(1.14rem, 1.9vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

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

a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; color: var(--c-primary-deep); }

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

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

.container { width: var(--container); margin-inline: auto; }
.section    { padding-block: var(--section-py); }
section[id]  { scroll-margin-top: 5.5rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-primary-deep); color: var(--c-white);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Section background roles */
.section--cream      { background: var(--c-cream); }
.section--sand       { background: var(--c-cream-soft); }
.section--sky        { background: var(--c-travertine-soft); }
.section--olive      { background: var(--c-olive);      color: var(--c-cream); }
.section--olive-deep { background: var(--c-olive-deep); color: var(--c-cream); }
.section--dark       { background: var(--c-charcoal);   color: var(--c-cream); }

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

/* ============================ SECTION HEADS ============================ */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: 0.6rem;
}
.section--olive .eyebrow, .section--olive-deep .eyebrow,
.section--dark .eyebrow, .hero .eyebrow, .gallery .eyebrow,
.cta-banner .eyebrow { color: var(--c-accent-bright); }

.section-head { text-align: center; max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.section-head__sub { color: var(--c-charcoal-mute); font-size: 1.06rem; margin-bottom: 0; }
.section--olive .section-head__sub, .section--olive-deep .section-head__sub,
.section--dark .section-head__sub { color: rgba(250, 248, 244, 0.86); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary   { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-deep); color: var(--c-white); }
.btn--secondary { background: rgba(250, 248, 244, 0.14); color: var(--c-white); border-color: rgba(250, 248, 244, 0.62); backdrop-filter: blur(4px); }
.btn--secondary:hover { background: rgba(250, 248, 244, 0.24); 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); }
.btn--lg { font-size: 1.08rem; padding: 1rem 2rem; }

/* Nav link rules out-specify .btn--primary — re-assert white at (0,2,0) */
.nav .btn--primary { color: var(--c-white); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  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.2;
}
.brand:hover { text-decoration: none; }
.brand span { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--c-charcoal-mute); }

.nav { display: flex; justify-content: flex-end; align-items: center; gap: 22px; font-size: 17px; font-weight: 700; font-family: var(--font-display); }
.nav a { color: var(--c-charcoal); }
.nav a:hover { color: var(--c-primary-deep); text-decoration: none; }
.header-cta { display: flex; }
.header-cta .btn { padding: 0.62rem 1.15rem; font-size: 0.95rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--c-travertine);
  border-radius: var(--radius-sm); padding: 0.55rem 0.7rem; cursor: pointer;
  color: var(--c-charcoal); font-size: 1.05rem; line-height: 1;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav {
    display: none; position: absolute; inset: 100% 0 auto 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: 0.8rem 0.25rem; border-bottom: 1px solid var(--c-travertine); }
  .nav a:last-child { border-bottom: 0; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: clamp(560px, 84vh, 780px);
  padding-block: var(--space-2xl);
  background: var(--c-charcoal);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 24, 22, 0.62) 0%, rgba(26, 24, 22, 0.30) 52%, rgba(26, 24, 22, 0.10) 100%),
    linear-gradient(180deg, rgba(26, 24, 22, 0.52) 0%, rgba(26, 24, 22, 0.16) 38%, rgba(26, 24, 22, 0.72) 100%);
}
.hero-content { width: var(--container); max-width: 760px; margin: 0 auto; text-align: left; position: relative; }
.hero-overlay {
  background: rgba(41, 39, 36, 0.30);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(250, 248, 244, 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, 39, 36, 0.66); }
}
.hero h1 { color: var(--c-white); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42); margin-bottom: var(--space-sm); }
.hero strong { color: inherit; }
.hero-lede {
  color: rgba(250, 248, 244, 0.96); font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); margin-bottom: var(--space-md);
}
.hero-rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  color: rgba(250, 248, 244, 0.94); font-size: 0.98rem; margin-bottom: var(--space-sm);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 0.06em; }
.hero-rating .score { font-family: var(--font-display); font-weight: 800; color: var(--c-white); }
.hero-price { color: rgba(250, 248, 244, 0.94); font-size: 1rem; margin-bottom: 0; }
.hero-price__from { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; font-weight: 700; }
.hero-price__amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--c-accent-bright); }
.hero-price__unit { font-size: 0.92rem; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: var(--space-md); }
.hero-pills span {
  background: rgba(41, 39, 36, 0.52); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(250, 248, 244, 0.28); border-radius: 999px;
  padding: 0.4rem 0.9rem; font-size: 0.88rem; font-weight: 600; color: var(--c-white);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.hero .btn--primary:hover { background: #FAD68C; color: var(--c-charcoal); }

@media (max-width: 640px) { .hero { padding-bottom: 5rem; } }

/* ============================ CATEGORY QUICK-NAV ============================ */
.cat-nav { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding: clamp(0.85rem, 2vw, 1.2rem) 0; }
.facts__cats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.55rem; max-width: var(--w-wide); margin: 0 auto; }
.facts__cats-label { font-weight: 700; font-size: 0.92rem; color: var(--c-charcoal-mute); }
.facts__cat {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--c-primary-deep); background: var(--c-white);
  border: 1px solid var(--c-travertine); border-radius: 999px; padding: 0.4rem 0.9rem;
}
.facts__cat:hover { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); text-decoration: none; }

/* ============================ FACTS STRIP ============================ */
.facts { background: var(--c-travertine-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: 1fr 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; padding: 0.35rem 0.5rem; }
.facts__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.8rem); color: var(--c-primary-deep); line-height: 1.15; }
.facts__label { font-size: clamp(0.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__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
}

/* ============================ THE BIG NOTICE (cable car != summit) ============================ */
.notice { background: var(--c-olive-deep); color: var(--c-cream); padding-block: var(--section-py); }
.notice__inner { max-width: var(--w-wide); margin-inline: auto; }
.notice__card {
  background: rgba(250, 248, 244, 0.07);
  border: 1px solid rgba(250, 248, 244, 0.24);
  border-left: 6px solid var(--c-accent-bright);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.2vw, 2.2rem);
}
.notice h2 { color: var(--c-white); margin-bottom: var(--space-sm); }
.notice p { color: rgba(250, 248, 244, 0.94); }
/* .notice is a bespoke dark band, so the base `strong`/`.eyebrow` colours
   (terracotta, meant for light backgrounds) would land unreadable on it. */
.notice .eyebrow { color: var(--c-accent-bright); }
.notice strong { color: var(--c-accent-bright); }
.notice a:not(.btn) { color: var(--c-accent-bright); }
.notice__ladder {
  list-style: none; margin: var(--space-lg) 0 0; padding: 0;
  display: grid; gap: var(--space-sm); grid-template-columns: 1fr;
}
@media (min-width: 760px) { .notice__ladder { grid-template-columns: 1fr 1fr; gap: var(--space-md); } }
.notice__ladder li {
  background: rgba(250, 248, 244, 0.08); border: 1px solid rgba(250, 248, 244, 0.2);
  border-radius: var(--radius-md); padding: var(--space-md);
}
/* 1.2rem bold clears the AA large-text threshold, and the lighter amber keeps
   headroom over the doubly-translucent card background inside .notice. */
.notice__ladder b { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #FAD68C; margin-bottom: 0.2rem; }
.notice__ladder span { font-size: 0.98rem; color: rgba(250, 248, 244, 0.9); }
.notice__cta { margin-top: var(--space-lg); display: flex; flex-wrap: wrap; gap: 0.8rem; }
.notice .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.notice .btn--primary:hover { background: #FAD68C; color: var(--c-charcoal); }

/* ============================ INTRO ============================ */
.intro__body { max-width: var(--w-read); margin: 0 auto; }
.intro .intro__body:first-of-type > 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--olive-deep .intro-lead::first-letter { color: var(--c-accent-bright); }

/* Yellow highlighter swash, same hue as the hero CTA so the two rhyme.
   0.45 alpha keeps primary-deep bold text at 4.7:1 over the tinted band. */
.hl {
  font-weight: 700; color: var(--c-primary-deep);
  background-image: linear-gradient(transparent 58%, rgba(245, 196, 98, 0.45) 58%);
  padding: 0 0.08em; border-radius: 2px;
}
.section--olive .hl, .section--olive-deep .hl, .section--dark .hl, .notice .hl {
  color: var(--c-white);
  background-image: linear-gradient(transparent 58%, rgba(245, 196, 98, 0.40) 58%);
}

.experience-summary__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-md);
  max-width: var(--w-wide); margin-inline: auto; margin-top: var(--space-xl);
}
@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 { padding-bottom: var(--space-sm); border-bottom: 1px solid var(--c-travertine); margin-bottom: var(--space-md); }
.experience-summary__col ul { list-style: none; margin: 0; padding: 0; }
.experience-summary__col li { position: relative; padding-left: 1.9rem; margin-bottom: var(--space-sm); font-size: 1rem; }
.experience-summary__col li:last-child { margin-bottom: 0; }
.experience-summary__col li::before {
  content: "\2713"; position: absolute; left: 0; top: 0.12em;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  font-size: 0.78rem; font-weight: 700; display: grid; place-items: center;
}
.experience-summary__cta { text-align: center; margin-top: var(--space-xl); margin-bottom: 0; }

/* ============================ OPTIONS ROUTER (choose your experience) ============================ */
.options__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 620px) { .options__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .options__grid { grid-template-columns: repeat(4, 1fr); } }
.option-chip {
  display: flex; flex-direction: column; gap: 0.35rem;
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: var(--space-md);
  box-shadow: var(--shadow-sm); color: var(--c-charcoal); transition: var(--transition);
  overflow: hidden;
}
.option-chip:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.option-chip__img {
  width: calc(100% + 2 * var(--space-md)); max-width: none; height: 132px;
  object-fit: cover; margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) 0.55rem;
}
.option-chip__label { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--c-primary-deep); }
.option-chip__desc { font-size: 0.94rem; color: var(--c-charcoal-mute); }
.option-chip__best { font-size: 0.9rem; color: var(--c-charcoal); }
.option-chip__cta { margin-top: auto; padding-top: 0.55rem; font-weight: 700; font-size: 0.92rem; color: var(--c-primary-deep); }

/* ============================ BREADCRUMB (spoke pages) ============================ */
.breadcrumb {
  font-size: 0.86rem; font-weight: 600; margin-bottom: 0.75rem;
  color: rgba(250, 248, 244, 0.78);
}
.breadcrumb a { color: var(--c-accent-bright); }
.breadcrumb span[aria-hidden] { padding: 0 0.35rem; opacity: 0.6; }

/* ============================ CALLOUT NOTE ============================ */
.callout-note {
  max-width: var(--w-read); margin-inline: auto;
  background: var(--c-white); border: 1px solid var(--c-travertine);
  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);
  box-shadow: var(--shadow-sm);
}
.callout-note p { font-size: 1rem; margin-bottom: 0; }

/* ============================ BOOKING / AVAILABILITY ============================ */
.booking-section { background: var(--c-cream); }
/* Spoke pages may need the booking band on the alternate ground so no two
   adjacent sections share a background. (0,2,0) beats the rule above. */
.booking-section.section--sand { background: var(--c-cream-soft); }
.booking-section.section--sky  { background: var(--c-travertine-soft); }
.booking-widget-wrapper { width: 100%; margin-inline: auto; }
.booking-section .gyg-widget { max-width: none; background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none; min-height: 0; }
.gyg-widget { min-height: 300px; }

.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); }

.booking-note {
  max-width: var(--w-read); margin: var(--space-lg) auto 0;
  font-size: 0.96rem; color: var(--c-charcoal-mute); text-align: center;
}

/* ============================ COMPARISON TABLE ============================ */
.table-wrap { max-width: var(--w-wide); margin-inline: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--c-travertine); border-radius: var(--radius-md); background: var(--c-white); }
.vs-table { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 0.98rem; }
.vs-table th, .vs-table td { padding: 0.85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--c-travertine); }
.vs-table thead th { background: var(--c-cream-soft); font-family: var(--font-display); font-weight: 800; color: var(--c-primary-deep); font-size: 0.94rem; letter-spacing: 0.02em; }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table tbody th { font-family: var(--font-display); font-weight: 700; color: var(--c-charcoal); }
.vs-table .yes { color: #1F6B45; font-weight: 700; }
.vs-table .no  { color: var(--c-primary-deep); font-weight: 700; }
.vs-table .maybe { color: var(--c-charcoal-mute); font-weight: 700; }
.vs-table tr.is-featured th, .vs-table tr.is-featured td { background: rgba(53, 111, 138, 0.08); }
.vs-table a { font-weight: 700; color: var(--c-primary-deep); }
.table-note { max-width: var(--w-read); margin: var(--space-lg) auto 0; text-align: center; font-size: 0.95rem; color: var(--c-charcoal-mute); }

/* ============================ CARD GRIDS ============================ */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 700px)  { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.99rem; color: var(--c-charcoal-mute); }
.card p:last-of-type { margin-bottom: var(--space-sm); }
.card .card__link { margin-top: auto; font-weight: 700; color: var(--c-primary-deep); }
.section--olive .card, .section--dark .card, .section--olive-deep .card {
  background: rgba(250, 248, 244, 0.08); border-color: rgba(250, 248, 244, 0.2);
}
.section--olive .card p, .section--dark .card p, .section--olive-deep .card p { color: rgba(250, 248, 244, 0.9); }
.section--olive .card .card__link, .section--dark .card .card__link { color: var(--c-accent-bright); }

/* ============================ TOUR CARDS ============================ */
.tour-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 760px) { .tour-grid { grid-template-columns: 1fr 1fr; } }
.tour-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  color: var(--c-charcoal); transition: var(--transition);
}
.tour-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.tour-card__img { width: 100%; height: 172px; object-fit: cover; }
.tour-card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.tour-card__cat { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--c-primary-deep); margin-bottom: 0.3rem; }
.tour-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.09rem; color: var(--c-charcoal); line-height: 1.3; margin-bottom: 0.4rem; }
.tour-card__meta { font-size: 0.93rem; color: var(--c-charcoal-mute); margin-bottom: 0.5rem; }
.tour-card__meta .star { color: var(--c-accent); }
.tour-card__meta strong { color: var(--c-primary-deep); }
.tour-card__inc { font-size: 0.9rem; color: var(--c-charcoal); margin-bottom: var(--space-sm); }
.tour-card__inc b { color: var(--c-primary-deep); }
.tour-card .btn { margin-top: auto; display: inline-flex; align-self: flex-start; }
.section--olive .tour-card, .section--dark .tour-card { color: var(--c-charcoal); }

/* ============================ NUMBERED LISTS ============================ */
.itinerary__list { list-style: none; margin: 0 auto; padding: 0; max-width: var(--w-wide); display: grid; gap: var(--space-md); }
.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-lg); box-shadow: var(--shadow-sm);
}
.itinerary__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--c-accent-deep); line-height: 1; }
.itinerary__item h3 { margin-bottom: 0.4rem; }
.itinerary__item p { font-size: 0.99rem; color: var(--c-charcoal-mute); margin-bottom: 0; }
.section--olive .itinerary__item, .section--dark .itinerary__item {
  background: rgba(250, 248, 244, 0.08); border-color: rgba(250, 248, 244, 0.2);
}
.section--olive .itinerary__item p, .section--dark .itinerary__item p { color: rgba(250, 248, 244, 0.9); }
.section--olive .itinerary__num, .section--dark .itinerary__num { color: var(--c-accent-bright); }

/* ============================ GALLERY ============================ */
.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: rgba(250, 248, 244, 0.84); }
.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__strip {
  display: flex; flex-wrap: nowrap; gap: 0.4rem;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: rgba(250, 248, 244, 0.5) rgba(250, 248, 244, 0.12);
  padding-bottom: 0.9rem;
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(250, 248, 244, 0.12); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: rgba(250, 248, 244, 0.5); border-radius: 4px; }
.gallery__item { margin: 0; flex: 0 0 78vw; max-width: 520px; }
.gallery__item img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-md); }
.gallery__item figcaption { font-size: 0.9rem; color: rgba(250, 248, 244, 0.82); padding-top: 0.5rem; }
@media (min-width: 760px) { .gallery__item { flex: 0 0 44vw; } }
@media (min-width: 1080px) { .gallery__item { flex: 0 0 30vw; } }
.gallery__wrapper::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0.9rem; width: 90px;
  pointer-events: none; background: linear-gradient(90deg, rgba(41, 39, 36, 0) 0%, var(--c-charcoal) 100%);
}
.gallery__arrow {
  display: none; position: absolute; top: 40%; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(250, 248, 244, 0.92); color: var(--c-charcoal);
  border: 0; font-size: 1.6rem; line-height: 1; box-shadow: var(--shadow-md);
}
.gallery__arrow--prev { left: 1.2rem; }
.gallery__arrow--next { right: 1.2rem; }
@media (min-width: 1080px) and (hover: hover) { .gallery__arrow { display: grid; place-items: center; } }

/* ============================ FAQ ============================ */
.faq__list { max-width: var(--w-wide); margin: 0 auto; display: grid; gap: var(--space-sm); }
.faq__item {
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: 0 var(--space-lg); box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: var(--space-md) 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  color: var(--c-primary-deep); display: flex; justify-content: space-between; gap: var(--space-md); align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--c-accent); flex-shrink: 0; line-height: 1; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item > p { padding-bottom: var(--space-md); font-size: 1rem; color: var(--c-charcoal); margin-bottom: 0; }
.faq__item > p + p { padding-top: 0; }

/* ============================ EXPLORE GRID ============================ */
.explore__grid { list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: 1fr; gap: var(--space-sm); max-width: var(--w-wide); }
@media (min-width: 720px) { .explore__grid { grid-template-columns: 1fr 1fr; } }
.explore__grid a {
  display: block; height: 100%;
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: var(--space-md); color: var(--c-charcoal);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.explore__grid a:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.explore__grid strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--c-primary-deep); margin-bottom: 0.15rem; }
.explore__grid span { font-size: 0.94rem; color: var(--c-charcoal-mute); }

/* ============================ FINAL CTA ============================ */
.cta-banner { background: var(--c-olive); color: var(--c-cream); padding-block: var(--section-py); text-align: center; }
.cta-banner__inner { max-width: var(--w-read); margin: 0 auto; }
.cta-banner h2 { color: var(--c-white); }
.cta-banner p { color: rgba(250, 248, 244, 0.94); }
.cta-banner ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  width: max-content; max-width: 100%; margin: 0 auto var(--space-lg);
  padding: 0; text-align: left;
}
.cta-banner li { position: relative; padding-left: 1.7rem; color: rgba(250, 248, 244, 0.94); }
.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; background: var(--c-accent-bright); color: var(--c-charcoal); }
.cta-banner .btn--primary:hover { background: #FAD68C; color: var(--c-charcoal); }
.cta-banner .disclosure { margin-top: var(--space-md); font-size: 0.88rem; color: rgba(250, 248, 244, 0.82); margin-bottom: 0; }

/* ============================ 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; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--c-charcoal); color: rgba(250, 248, 244, 0.86); padding-top: var(--space-2xl); }
.site-footer h3 { color: var(--c-white); font-size: 1.05rem; margin-bottom: var(--space-sm); }
.site-footer a { color: rgba(250, 248, 244, 0.86); }
.site-footer a:hover { color: var(--c-accent-bright); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); padding-bottom: var(--space-xl); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-2xl); } }
.footer__grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; font-size: 0.96rem; }
.footer__brand p { font-size: 0.96rem; color: rgba(250, 248, 244, 0.78); }
.footer__bar {
  border-top: 1px solid rgba(250, 248, 244, 0.16);
  padding: var(--space-md) 0 var(--space-lg);
  font-size: 0.86rem; color: rgba(250, 248, 244, 0.7);
  display: grid; gap: 0.4rem;
}

/* ============================ STICKY MOBILE CTA ============================ */
.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, 39, 36, 0.96);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(250, 248, 244, 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);
  }
  .site-footer { padding-bottom: calc(var(--space-lg) + 4.5rem + env(safe-area-inset-bottom)); }
}

/* ============================ LEGAL / TEXT PAGES ============================ */
.page-head { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding-block: var(--space-2xl) var(--space-xl); }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.legal__inner, .text-block { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: var(--space-xl); }
.legal__inner h2:first-child { margin-top: 0; }
.legal__inner ul { padding-left: 1.2rem; }
.legal__inner li { margin-bottom: 0.45rem; }

/* ============================ VERTICAL RHYTHM BETWEEN SIBLING BLOCKS ============================ */
:is(.card-grid, .tour-grid, .table-wrap, .options__grid, .experience-summary__grid,
    .itinerary__list, .faq__list, .explore__grid, .intro__body, .callout-note,
    .table-note, .featured-proof, .booking-note)
+ :is(.card-grid, .tour-grid, .table-wrap, .options__grid, .experience-summary__grid,
      .itinerary__list, .faq__list, .explore__grid, .intro__body, .callout-note,
      .featured-proof) { margin-top: var(--space-lg); }
