/* =================================================================
   vancouverwhalewatchingtours.com — styles.css
   Single-tour affiliate pattern (new-site-simple) · Mode B
   Palette: Pacific blue / coastal evergreen / sunset orange
   ================================================================= */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #0F5D7A;  /* Deep Pacific blue — CTAs, links */
  --c-primary-deep:   #0A4459;  /* Deeper Pacific — eyebrows on light, headings, hover */
  --c-accent:         #2F7D5C;  /* Coastal evergreen */
  --c-accent-bright:  #F29F3D;  /* Sunset orange — hero CTA + dark-bg eyebrow */
  --c-cream:          #F5F9FA;  /* Misty coastal white — base bg */
  --c-cream-soft:     #EAF4F2;  /* Seafoam — section-alt + cards on cream */
  --c-travertine:     #D3E2E4;  /* Subtle surface / borders */
  --c-travertine-soft:#E4EFEC;  /* Categories bg + featured-card outer */
  --c-olive:          #1E4D3E;  /* Deep evergreen — why-choose / faq / final-cta bg */
  --c-olive-deep:     #153A2E;  /* Deeper variant for hover/border */
  --c-charcoal:       #1F2D38;  /* Very dark slate — gallery/footer bg, body text on light */
  --c-charcoal-mute:  #55636D;  /* Supporting text on light (≥4.5:1 on cream) */
  --c-white:          #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Montserrat", "Segoe UI", Tahoma, sans-serif;
  --font-body:    "Open Sans", -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(0, 0, 0, 0.08);
  --shadow-md:  0 10px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(0, 0, 0, 0.35);

  /* === LEGACY/AUDIT ALIASES (contrast_audit.py — direct hex, see SKILL §8c) === */
  --c-ice:          #F5F9FA;
  --c-navy:         #1F2D38;
  --c-ocean:        #0A4459;
  --c-slate:        #55636D;
  --c-amber:        #F29F3D;
  --c-amber-bright: #F29F3D;
  --c-gold:         #F29F3D;
}

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

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.18;
  margin: 0 0 var(--space-md);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.8vw, 2.35rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + 0.6vw, 1.4rem); }
p  { margin: 0 0 var(--space-md); }
strong { color: var(--c-primary-deep); }

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

/* === SECTION SHELL === */
.section { padding-block: var(--section-py); }
.section--alt   { background: var(--c-cream-soft); }
.section--dark  { background: var(--c-charcoal); color: var(--c-cream); }
.section--olive { background: var(--c-olive);    color: var(--c-cream); }
.section--dark h2, .section--dark h3,
.section--olive h2, .section--olive h3 { color: var(--c-white); }
.section--dark p, .section--olive p { color: rgba(245, 249, 250, 0.9); }
.section--dark strong, .section--olive strong { color: var(--c-white); }

/* === SECTION HEAD (centered block, two-rail width) === */
.section-head {
  text-align: center;
  max-width: var(--w-read);
  margin: 0 auto var(--space-xl);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
.section-head__sub {
  color: var(--c-charcoal-mute);
  font-size: 1.02rem;
  margin: 0;
}
/* Eyebrow contrast overrides on dark sections */
.section--dark .eyebrow, .section--olive .eyebrow,
.cta-banner .eyebrow, .hero .eyebrow,
.why-choose .eyebrow, .gallery .eyebrow,
.faq .eyebrow { color: var(--c-accent-bright); }
.section--dark .section-head__sub, .section--olive .section-head__sub,
.gallery .section-head__sub { color: rgba(245, 249, 250, 0.82); }

/* === 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;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  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--secondary {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 0.14); color: var(--c-white); }
.btn--ghost {
  background: var(--c-white);
  color: var(--c-primary-deep);
  border-color: var(--c-travertine);
}
.btn--ghost:hover { border-color: var(--c-primary); color: var(--c-primary-deep); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 249, 250, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-primary-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand:hover { text-decoration: none; }
.brand span { color: var(--c-accent); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-charcoal);
}
.nav a:hover { color: var(--c-primary); text-decoration: none; }
.nav .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.nav a.btn--primary { color: var(--c-white); }
.nav a.btn--primary:hover { color: var(--c-white); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--c-primary-deep);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav {
    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: 0.5rem 1rem 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0.25rem; border-bottom: 1px solid var(--c-travertine); }
  .nav .btn { margin-top: 0.6rem; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  padding-block: var(--space-2xl);
  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(180deg, rgba(20, 34, 43, 0.55) 0%, rgba(20, 34, 43, 0.18) 45%, rgba(20, 34, 43, 0.42) 100%);
}
.hero-content {
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
/* Left-align the hero text block on wider screens (margin-based, so it
   pins toward the left edge with a small inset and never overflows the gutter) */
@media (min-width: 900px) {
  .hero-content { margin-left: clamp(1rem, 12vw, 13rem); margin-right: auto; }
}
.hero-overlay {
  background: rgba(31, 45, 56, 0.16);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(245, 249, 250, 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(31, 45, 56, 0.55); }
}
.hero .eyebrow { color: var(--c-accent-bright); margin-bottom: var(--space-sm); }
.hero h1 {
  color: var(--c-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--space-md);
}
.hero strong { color: inherit; }
.hero-lede {
  color: rgba(245, 249, 250, 0.96);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  margin-bottom: var(--space-md);
}
.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--c-white);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 1px; }
.hero-rating .score { font-family: var(--font-display); font-weight: 700; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.hero-pills span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  background: rgba(31, 45, 56, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 249, 250, 0.18);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
/* Hero-only yellow primary CTA */
.hero .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  box-shadow: var(--shadow-md);
}
.hero .btn--primary:hover { background: #e08f2c; color: var(--c-charcoal); }
@media (max-width: 640px) {
  .hero-overlay { padding-bottom: clamp(1.4rem, 4vw, 1.8rem); }
}

/* =================================================================
   FACTS STRIP (#facts)
   ================================================================= */
.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; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1rem;
  width: var(--container);
  margin-inline: auto;
}
.facts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.4rem 0.3rem;
}
.facts__value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.1;
}
.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); }
}

/* =================================================================
   INTRO (#intro)
   ================================================================= */
.intro__body { max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.experience-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin-inline: auto;
}
@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 {
  color: var(--c-primary-deep);
  border-bottom: 2px solid var(--c-travertine);
  padding-bottom: 0.6rem;
  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: 0.7rem;
}
.experience-summary__col li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.05rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-accent);
  border-radius: 50%;
}
.experience-summary__cta { text-align: center; margin: var(--space-xl) 0 0; }

/* =================================================================
   ITINERARY / numbered lists (#experience, #reality-check)
   ================================================================= */
.itinerary__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--w-wide);
}
.itinerary__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--c-travertine);
}
.itinerary__item:last-child { border-bottom: 0; }
.itinerary__num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--c-primary-deep);
  line-height: 1;
  min-width: 2.4rem;
}
.itinerary__item h3 { margin-bottom: 0.4rem; }
.itinerary__item p { margin: 0; color: var(--c-charcoal-mute); }

/* =================================================================
   FEATURED TOUR CARD (#guided-tour)
   ================================================================= */
.guided { background: var(--c-travertine-soft); }
.guided__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--w-wide);
  margin-inline: auto;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.guided__mobilehead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: var(--space-md);
  border-bottom: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.guided__mobilehead .eyebrow { margin: 0; color: var(--c-primary-deep); }
.guided__mobilehead .pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-accent);
  background: var(--c-cream-soft);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.guided__text { padding: var(--space-lg); }
.guided__text .eyebrow { color: var(--c-primary-deep); }
.guided__widget {
  padding: var(--space-md);
  order: -1;
  border-bottom: 1px solid var(--c-travertine);
}
.guided__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
  color: var(--c-charcoal);
}
.guided__meta .price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-primary-deep); }
.guided__meta .rating { color: var(--c-charcoal-mute); }
.guided__meta .pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-accent);
  background: var(--c-cream-soft);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.guided__why {
  background: var(--c-cream-soft);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.guided__why p { margin: 0; }
.guided__list { list-style: none; margin: 0 0 var(--space-md); padding: 0; }
.guided__list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6rem;
}
.guided__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0.05rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--c-white); background: var(--c-accent); border-radius: 50%;
}
.guided__note { font-style: italic; color: var(--c-charcoal-mute); margin: 0; font-size: 0.95rem; }

@media (min-width: 1024px) {
  .guided__grid { grid-template-columns: 1.05fr 0.95fr; }
  .guided__mobilehead { display: none; }
  .guided__widget { order: 0; border-bottom: 0; border-left: 1px solid var(--c-travertine); }
}
@media (max-width: 1023px) {
  .guided__title-h2, .guided__price-rating { display: none; }
  .guided__why {
    background: none; border-left: 0; padding: 0;
    border-radius: 0;
  }
}

/* =================================================================
   CARD GRID (#highlights, #why-choose, #reviews)
   ================================================================= */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: var(--w-wide);
  margin-inline: auto;
}
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(2, 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);
}
.card .eyebrow { color: var(--c-primary-deep); margin-bottom: 0.4rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--c-charcoal-mute); }
/* cards on dark sections */
.section--olive .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.section--olive .card h3 { color: var(--c-white); }
.section--olive .card p { color: rgba(245, 249, 250, 0.88); }
.section--olive .card .eyebrow { color: var(--c-accent-bright); }

/* Reviews thematic cards */
.review-card cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-accent);
}
.reviews__provenance {
  text-align: center;
  max-width: var(--w-read);
  margin: var(--space-lg) auto 0;
  font-size: 0.92rem;
  color: var(--c-charcoal-mute);
}

/* =================================================================
   STATS STRIP (#stats) — 4 tiles
   ================================================================= */
.stats { background: var(--c-travertine-soft); border-top: 1px solid var(--c-travertine); border-bottom: 1px solid var(--c-travertine); }
.stats__row {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 960px;
}
@media (min-width: 720px) { .stats__row { grid-template-columns: repeat(4, 1fr); } }
.stats__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}
.stats__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--c-primary-deep);
  line-height: 1.05;
  margin-bottom: 0.3rem;
}
.stats__label { font-size: 0.92rem; color: var(--c-charcoal-mute); }

/* =================================================================
   GALLERY (#gallery) — full width
   ================================================================= */
.gallery { background: var(--c-charcoal); }
.gallery h2 { color: var(--c-white); }
.gallery__wrapper { position: relative; margin-top: var(--space-lg); }
.gallery__wrapper--full {
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__wrapper::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 14px;
  width: 60px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(31, 45, 56, 0) 0%, var(--c-charcoal) 100%);
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) rgba(255,255,255,0.1);
  padding-bottom: 14px;
  padding-left:  max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__item {
  margin: 0;
  flex: 0 0 78vw;
  max-width: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) { .gallery__item { flex-basis: 42vw; } }
@media (min-width: 1080px) { .gallery__item { flex-basis: 30vw; } }
.gallery__item img { width: 100%; height: 280px; object-fit: cover; }
.gallery__arrow {
  display: none;
  position: absolute;
  top: calc(50% - 14px);
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--c-white);
  color: var(--c-primary-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gallery__arrow:hover { background: var(--c-accent-bright); color: var(--c-charcoal); }
.gallery__arrow--prev { left: max(1rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow--next { right: max(1rem, calc((100vw - 1240px) / 2)); }
@media (min-width: 1080px) { .gallery__arrow { display: flex; align-items: center; justify-content: center; } }

/* =================================================================
   INCLUDED (#included)
   ================================================================= */
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: var(--w-wide);
  margin-inline: auto;
}
@media (min-width: 720px) { .included__grid { grid-template-columns: 1fr 1fr; } }
.included__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);
}
.included__col h3 { display: flex; align-items: center; gap: 0.5rem; }
.included__col ul { list-style: none; margin: 0; padding: 0; }
.included__col li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; color: var(--c-charcoal-mute); }
.included__col li::before {
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.included__col--yes li::before { content: "✓"; color: var(--c-accent); }
.included__col--no  li::before { content: "✕"; color: #b4543a; }

/* =================================================================
   VS TABLE (#vs-other)
   ================================================================= */
.table-wrap { max-width: var(--w-wide); margin-inline: auto; overflow-x: auto; }
.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: 0.98rem;
}
.vs-table th, .vs-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-travertine);
  vertical-align: top;
}
.vs-table thead th {
  background: var(--c-primary-deep);
  color: var(--c-white);
  font-family: var(--font-display);
}
.vs-table tbody th[scope="row"] { font-family: var(--font-display); color: var(--c-primary-deep); width: 26%; }
.vs-table td:nth-child(2) { color: var(--c-primary-deep); font-weight: 600; }
.vs-table tr:last-child th, .vs-table tr:last-child td { border-bottom: 0; }
.table-note {
  max-width: var(--w-read);
  margin: var(--space-md) auto 0;
  text-align: center;
  color: var(--c-charcoal-mute);
}

/* =================================================================
   PRACTICAL INFO (#practical-info)
   ================================================================= */
.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: var(--w-wide);
  margin-inline: auto;
}
@media (min-width: 720px) { .practical__grid { grid-template-columns: 1fr 1fr; } }
.practical__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);
}
.practical__card h3 { color: var(--c-primary-deep); margin-bottom: 0.5rem; font-size: 1.12rem; }
.practical__card p { margin: 0; color: var(--c-charcoal-mute); }

/* =================================================================
   FAQ (#faq)
   ================================================================= */
.faq__list { max-width: var(--w-wide); margin: 0 auto; }
.faq__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  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;
  color: var(--c-white);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; color: var(--c-accent-bright); transition: var(--transition); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__answer { padding: 0 var(--space-lg) var(--space-md); color: rgba(245, 249, 250, 0.9); }
.faq__answer p { margin: 0; color: inherit; }

/* =================================================================
   CATEGORIES (#also)
   ================================================================= */
.also { background: var(--c-travertine-soft); }
.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: var(--w-wide);
  margin-inline: auto;
}
@media (min-width: 720px) { .also__grid { grid-template-columns: 1fr 1fr; } }
.category-card {
  display: block;
  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);
  overflow: hidden;
  transition: var(--transition);
}
.category-card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.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.9rem;
  transition: transform var(--transition);
}
.category-card:hover .category-card__img { transform: scale(1.04); }
.category-card .eyebrow { color: var(--c-primary-deep); margin-bottom: 0.3rem; }
.category-card h3 { margin-bottom: 0.5rem; }
.category-card p { color: var(--c-charcoal-mute); margin-bottom: var(--space-md); }
.category-card__featured {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}
.category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary-deep);
}
.category-card__cta::after { content: "→"; transition: var(--transition); }
.category-card:hover .category-card__cta::after { transform: translateX(4px); }

/* =================================================================
   FINAL CTA (#book-now) — olive
   ================================================================= */
.cta-banner { background: var(--c-olive); color: var(--c-cream); }
.cta-banner__inner { max-width: var(--w-read); margin: 0 auto; text-align: center; }
.cta-banner h2 { color: var(--c-white); }
.cta-banner p { color: rgba(245, 249, 250, 0.92); }
.cta-banner__bullets {
  list-style: none;
  margin: var(--space-lg) auto;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}
.cta-banner__bullets li { position: relative; padding-left: 1.9rem; }
.cta-banner__bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--c-charcoal); background: var(--c-accent-bright); border-radius: 50%;
}
.cta-banner .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.cta-banner .btn--primary:hover { background: #e08f2c; color: var(--c-charcoal); }
.cta-banner__disclosure { font-size: 0.82rem; color: rgba(245, 249, 250, 0.72); margin: var(--space-md) 0 0; }
.cta-banner__disclosure a { color: rgba(245, 249, 250, 0.92); }

/* =================================================================
   FOOTER — charcoal
   ================================================================= */
.site-footer { background: var(--c-charcoal); color: rgba(245, 249, 250, 0.82); }
.site-footer__grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl) var(--space-xl);
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: var(--c-white); font-size: 1rem; margin-bottom: var(--space-md); }
.site-footer p { color: rgba(245, 249, 250, 0.7); font-size: 0.92rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(245, 249, 250, 0.82); font-size: 0.92rem; }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer__brand .brand { color: var(--c-white); margin-bottom: var(--space-md); }
.site-footer__brand .brand span { color: var(--c-accent-bright); }
.site-footer__bottom {
  border-top: 1px solid rgba(245, 249, 250, 0.14);
  padding-block: var(--space-md);
}
.site-footer__bottom-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245, 249, 250, 0.6);
}
.site-footer__bottom-inner .disclosure { max-width: 60ch; }

/* =================================================================
   LEGAL PAGES (shared shell)
   ================================================================= */
.legal { padding-block: var(--section-py); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h1 { color: var(--c-primary-deep); }
.legal__inner h2 { font-size: 1.4rem; margin-top: var(--space-xl); }
.legal__inner p, .legal__inner li { color: var(--c-charcoal-mute); }
.legal__updated { color: var(--c-charcoal-mute); font-size: 0.9rem; font-style: italic; }

/* =================================================================
   MISC / accessibility
   ================================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary-deep);
  color: var(--c-white);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--c-accent-bright); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
