/* ==========================================================================
   Grand Canyon Helicopter Tours from Las Vegas — styles.css
   Palette: terracotta / slate-blue / gold-sand on warm cream (colors-fonts.txt)
   Fonts: DM Sans (display) / Source Sans 3 (body)
   ========================================================================== */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #A64B2A;  /* Rich terracotta — CTAs, brand headings inverse */
  --c-primary-deep:   #7E3620;  /* Deeper terracotta — headings on light, button hover */
  --c-accent:         #C89B53;  /* Gold sand — secondary accent, decorative stars */
  --c-accent-bright:  #EBAE3C;  /* Hero-CTA amber + dark-bg eyebrow/initial */
  --c-accent-deep:    #B04A1E;  /* Deep orange — step numbers + drop caps on LIGHT bg (AA-large on cream) */
  --c-cream:          #FDFBF8;  /* Light background — base */
  --c-cream-soft:     #F5F0E7;  /* Light background — section-alt + card on cream */
  --c-travertine:     #E4D8C4;  /* Subtle surface / borders */
  --c-travertine-soft:#EFE7D7;  /* Light tan — Categories bg + Featured-card outer */
  --c-olive:          #2B4257;  /* Deep slate blue (dark) — Why-choose, Final CTA bg (AA: amber + cream pass) */
  --c-olive-deep:     #1E2F3E;  /* Deeper slate — hover/border */
  --c-faq:            #2E4A64;  /* Deep slate — FAQ bg (one step lighter than Final CTA) */
  --c-charcoal:       #2A2220;  /* Espresso — Gallery bg, FOOTER bg, body text on light */
  --c-charcoal-mute:  #6B5F58;  /* Supporting text on light — ≥4.5:1 on cream */
  --c-white:          #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "DM Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Source Sans 3", -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 compatibility — literal hex, 0 real uses) ===
     Mapped to the ROLE each plays in THIS layout (§8c): c-navy / c-ocean model the real
     deep-slate dark-section background (#2B4257) where amber eyebrows + cream text actually sit. */
  --c-ice:          #FDFBF8;
  --c-navy:         #2B4257;
  --c-ocean:        #2B4257;
  --c-slate:        #6B5F58;
  --c-amber:        #EBAE3C;
  --c-amber-bright: #EBAE3C;
  --c-gold:         #C89B53;
}

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

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-charcoal);
  background: var(--c-cream);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary-deep); 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; font-weight: 700; }
strong { font-weight: 700; }
section[id] { scroll-margin-top: 5.5rem; }

.container { width: var(--container); margin: 0 auto; }
.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); }

/* === Eyebrow === */
.eyebrow {
  display: inline-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-sm);
}
.section--olive .eyebrow, .section--dark .eyebrow,
.cta-banner .eyebrow, .hero .eyebrow, .why-choose .eyebrow,
.gallery .eyebrow, .faq .eyebrow { color: var(--c-accent-bright); }

/* === Section head (centered block) === */
.section-head { text-align: center; max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: var(--space-sm); }
.section-head__sub { color: var(--c-charcoal-mute); font-size: 1.05rem; }
.section--olive .section-head__sub, .section--dark .section-head__sub,
.gallery .section-head__sub, .faq .section-head__sub { color: rgba(253,251,248,0.85); }
.section--olive h2, .section--dark h2, .why-choose h2, .faq h2, .cta-banner h2 { color: var(--c-cream); }
.gallery h2 { color: var(--c-white); }

/* Enlarged first letter — one consistent inline treatment */
.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);
  padding-right: .04em;
}
.section--olive .intro-lead::first-letter { color: var(--c-accent-bright); }

/* Highlight swash for load-bearing phrases */
.hl {
  font-weight: 700; color: var(--c-primary-deep);
  background-image: linear-gradient(transparent 58%, rgba(200,155,83,0.34) 58%);
  padding: 0 .08em; border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); text-align: center; line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.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: transparent; color: var(--c-cream); border-color: rgba(253,251,248,0.6); }
.btn--secondary:hover { background: rgba(253,251,248,0.14); color: var(--c-cream); }
.btn--ghost { background: var(--c-white); color: var(--c-primary-deep); border-color: var(--c-travertine); }
.btn--ghost:hover { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,251,248,0.94);
  -webkit-backdrop-filter: blur(10px); 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);
  width: var(--container); margin: 0 auto; padding: .7rem 0;
}
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--c-primary-deep); line-height: 1.15; }
.brand:hover { text-decoration: none; }
.brand span { display: block; font-size: .74rem; font-weight: 600; color: var(--c-charcoal-mute); letter-spacing: .02em; }
.site-header nav { display: flex; justify-content: flex-end; align-items: center; gap: 22px; font-size: 17px; font-weight: 700; font-family: var(--font-display); }
.site-header nav a { color: var(--c-charcoal); }
.site-header nav a:hover { color: var(--c-primary); text-decoration: none; }
.header-cta { display: flex; justify-content: flex-end; }
.nav .btn--primary, .site-header .header-cta .btn--primary { color: var(--c-white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--c-primary-deep); border-radius: 2px; margin: 5px 0; transition: var(--transition); }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .site-header 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: .5rem 1rem 1rem;
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: .8rem .4rem; border-bottom: 1px solid var(--c-travertine); }
  .header-cta { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.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,20,18,0.55) 0%, rgba(24,20,18,0.18) 55%, rgba(24,20,18,0.05) 100%),
    linear-gradient(180deg, rgba(24,20,18,0.42) 0%, rgba(24,20,18,0.10) 40%, rgba(24,20,18,0.30) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: var(--container); max-width: 760px; margin: 0 auto; text-align: left;
  padding-block: var(--space-2xl);
}
.hero-overlay {
  background: rgba(42,34,32,0.16);
  -webkit-backdrop-filter: blur(14px) saturate(115%); backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(250,247,242,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(42,34,32,0.66); }
}
.hero .eyebrow { color: var(--c-accent-bright); }
.hero h1 {
  color: var(--c-cream); font-size: clamp(2rem, 5vw, 3.15rem);
  margin-bottom: var(--space-md); text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.hero strong { color: inherit; }
.hero-lede {
  color: var(--c-cream); font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  margin-bottom: var(--space-md); text-shadow: 0 1px 2px rgba(0,0,0,0.4); max-width: 62ch;
}
.hero-rating { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; color: var(--c-cream); font-weight: 600; }
.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: .6rem; margin-bottom: var(--space-md); }
.hero-pills span {
  font-size: .88rem; font-weight: 600; color: var(--c-cream);
  background: rgba(42,34,32,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(250,247,242,0.2); border-radius: 999px; padding: .4rem .9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); }
.hero .btn--primary:hover { background: #f6bd54; color: var(--c-charcoal); }
@media (max-width: 640px) { .hero-content { padding-bottom: 5rem; } }

/* ==========================================================================
   CATEGORY QUICK-NAV (hub)
   ========================================================================== */
.cat-nav { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding: clamp(.85rem, 2vw, 1.2rem) 0; }
.facts__cats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem; max-width: var(--w-wide); margin: 0 auto; }
.facts__cats-label { font-weight: 700; font-size: .92rem; color: var(--c-charcoal-mute); font-family: var(--font-display); }
.facts__cat {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--c-primary-deep);
  background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: 999px; padding: .4rem .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-cream); border-bottom: 1px solid var(--c-travertine); padding: clamp(1rem, 2vw, 1.4rem) 0; }
.facts__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md);
  list-style: none; padding: 0; max-width: var(--w-wide); margin: 0 auto;
}
.facts__item { display: flex; flex-direction: column; gap: .15rem; text-align: center; padding: .4rem .6rem; }
.facts__value { font-family: var(--font-display); font-weight: 700; color: var(--c-primary-deep); font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.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__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
}

/* ==========================================================================
   INTRO (combined) + shared grid cards
   ========================================================================== */
.intro__body { max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.intro__body p { margin-bottom: var(--space-md); }
.intro__body p:last-child { margin-bottom: 0; }

.two-col-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
  max-width: var(--w-wide); margin: 0 auto;
}
@media (min-width: 720px) { .two-col-grid { grid-template-columns: 1fr 1fr; } }
.info-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);
}
.info-card h3 { font-size: 1.2rem; padding-bottom: .6rem; margin-bottom: var(--space-md); border-bottom: 2px solid var(--c-travertine); color: var(--c-primary-deep); }
.info-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.info-card li { position: relative; padding-left: 1.7rem; }
.info-card li::before {
  content: "✓"; position: absolute; left: 0; top: .05rem;
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--c-primary); color: #fff; font-size: .72rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.info-card--excl li::before { content: "×"; background: var(--c-charcoal-mute); }
.cta-center { text-align: center; margin-top: var(--space-xl); }

/* Intro featured availability widget (bare GYG widget, between intro paragraphs) */
/* Matches the intro body text rail (--w-read), so it lines up with the paragraphs above/below. */
.intro-widget { width: 100%; max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.intro__body--cont { margin-top: 0; }

/* ==========================================================================
   ITINERARY / EXPERIENCE + REALITY-CHECK (shared numbered list)
   ========================================================================== */
.itinerary__list { list-style: none; padding: 0; max-width: var(--w-wide); margin: 0 auto; display: flex; flex-direction: column; 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: 700; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--c-accent-deep); line-height: 1; }
.itinerary__item h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.itinerary__item p { color: var(--c-charcoal); }

/* ==========================================================================
   GUIDED / FEATURED TOUR CARD (merged with widget)
   ========================================================================== */
.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: .6rem; padding: var(--space-md); border-bottom: 1px solid var(--c-travertine); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.guided__text { padding: var(--space-lg); }
.guided__widget { padding: var(--space-md); order: -1; border-bottom: 1px solid var(--c-travertine); background: var(--c-white); min-height: 320px; }
.guided__title-h2 { font-size: 1.4rem; margin-bottom: var(--space-sm); color: var(--c-primary-deep); }
.guided__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; margin-bottom: var(--space-md); font-weight: 700; }
.guided__meta .price { color: var(--c-primary-deep); }
.guided__meta .rating { color: var(--c-primary-deep); }
.guided__meta .rating::before { content: "★ "; color: var(--c-accent); }
.guided__meta .dur { color: var(--c-charcoal-mute); font-weight: 600; }
.guided__meta .pill, .pill {
  font-size: .82rem; font-weight: 700; color: var(--c-primary-deep);
  background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: 999px; padding: .25rem .7rem;
}
.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 strong { color: var(--c-primary-deep); }
.guided__list { list-style: none; padding: 0; margin: var(--space-md) 0; display: flex; flex-direction: column; gap: .55rem; }
.guided__list li { position: relative; padding-left: 1.6rem; }
.guided__list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }
.guided__note { color: var(--c-charcoal-mute); font-size: .95rem; font-style: italic; }
@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: 1023.98px) {
  .guided__title-h2, .guided__price-rating { display: none; }
  .guided__why { background: none; border-left: 0; padding: 0; border-radius: 0; }
}

/* ==========================================================================
   HIGHLIGHTS / WHY-CHOOSE — card grids
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
.feature-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); }
.feature-card .eyebrow { font-size: 13px; margin-bottom: .4rem; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.feature-card p { color: var(--c-charcoal); }
.intro-lead { max-width: var(--w-read); margin: 0 auto var(--space-xl); text-align: center; color: var(--c-charcoal); }

.why-choose { background: var(--c-olive); color: var(--c-cream); }
.why-choose .feature-card { background: rgba(253,251,248,0.08); border-color: rgba(253,251,248,0.18); }
.why-choose .feature-card h3 { color: var(--c-cream); }
.why-choose .feature-card p { color: rgba(253,251,248,0.9); }
.why-choose .feature-card .eyebrow { color: var(--c-accent-bright); }

/* ==========================================================================
   ALSO — Layout B category rows
   ========================================================================== */
.also { background: var(--c-white); }
.also__list { display: grid; gap: var(--space-lg); max-width: var(--w-wide); margin-inline: auto; }
.cat-row { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-lg); }
.cat-row[id] { scroll-margin-top: 6rem; }
@media (min-width: 860px) { .cat-row { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); } }
.also__list .cat-row:nth-of-type(odd)  { background: var(--c-cream); }
.also__list .cat-row:nth-of-type(even) { background: var(--c-travertine-soft); }
.cat-row__desc .eyebrow { color: var(--c-primary-deep); }
.cat-row__desc h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.cat-row__desc p { color: var(--c-charcoal); margin-bottom: var(--space-md); }
.cat-row__more { font-weight: 700; color: var(--c-primary-deep); font-family: var(--font-display); }
.also .tour-card { background: transparent; border: 0; box-shadow: none; display: flex; flex-direction: column; overflow: hidden; }
.also .tour-card:hover { text-decoration: none; }
.also .tour-card__img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.also .tour-card:hover .tour-card__img { transform: scale(1.03); }
.also .tour-card__body { padding-top: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.tour-card__cat { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--c-primary-deep); margin-bottom: .3rem; }
.tour-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--c-primary-deep); margin-bottom: .3rem; }
.tour-card__meta { color: var(--c-charcoal-mute); font-size: .95rem; margin-bottom: var(--space-md); }
.tour-card__meta .star { color: var(--c-accent); }
.also .tour-card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   MORE EXPERIENCES (auto widget)
   ========================================================================== */
.more-experiences__widget { max-width: var(--max-width); margin: var(--space-xl) auto 0; }
.more-experiences__widget:empty { margin-top: 0; }

/* ==========================================================================
   GALLERY (full-width)
   ========================================================================== */
.gallery { background: var(--c-charcoal); color: var(--c-cream); padding-block: var(--section-py); }
.gallery .section-head { margin-bottom: var(--space-lg); }
.gallery__wrapper { position: relative; }
.gallery__wrapper--full { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.gallery__wrapper--full::after { content: ""; position: absolute; top: 0; right: 0; bottom: 12px; width: 80px; pointer-events: none; background: linear-gradient(90deg, rgba(42,34,32,0) 0%, var(--c-charcoal) 100%); }
.gallery__strip {
  display: flex; flex-wrap: nowrap; gap: .4rem; overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--c-accent) rgba(255,255,255,0.15);
  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.15); 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: 620px; }
@media (min-width: 720px) { .gallery__item { flex-basis: 46vw; } }
@media (min-width: 1080px) { .gallery__item { flex-basis: 30vw; } }
.gallery__item img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-md); }
.gallery__item figcaption { font-size: .9rem; color: rgba(253,251,248,0.8); margin-top: .5rem; }
.gallery__arrow { display: none; position: absolute; top: calc(50% - 20px); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(253,251,248,0.9); color: var(--c-charcoal); font-size: 1.5rem; cursor: pointer; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.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: inline-flex; } }

/* ==========================================================================
   VS-OTHER table
   ========================================================================== */
.vs-table__wrap { max-width: var(--w-wide); margin: 0 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; }
.vs-table th, .vs-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--c-travertine); vertical-align: top; font-size: .98rem; }
.vs-table thead th { background: var(--c-cream-soft); font-family: var(--font-display); color: var(--c-primary-deep); }
.vs-table tbody th { font-family: var(--font-body); font-weight: 700; color: var(--c-charcoal); }
.vs-table td:nth-child(2) { color: var(--c-primary-deep); font-weight: 700; }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table__note { max-width: var(--w-read); margin: var(--space-md) auto 0; text-align: center; color: var(--c-charcoal); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); max-width: var(--w-wide); margin: 0 auto var(--space-lg); }
@media (min-width: 720px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
.review-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; }
.review-card__stars { color: var(--c-accent); letter-spacing: 1px; margin-bottom: .5rem; }
.review-card blockquote { font-size: 1.02rem; margin-bottom: var(--space-md); }
.review-card cite { margin-top: auto; font-style: normal; font-weight: 700; color: var(--c-charcoal-mute); font-size: .92rem; }
.reviews__provenance { text-align: center; color: var(--c-charcoal-mute); font-size: .95rem; max-width: var(--w-read); margin: 0 auto; }

/* ==========================================================================
   PRACTICAL INFO
   ========================================================================== */
.practical__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); max-width: var(--w-wide); margin: 0 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 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--c-primary-deep); }
.practical-card p { color: var(--c-charcoal); font-size: .98rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--c-faq); color: var(--c-cream); }
.faq__list { max-width: var(--w-wide); margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq__item { background: rgba(253,251,248,0.07); border: 1px solid rgba(253,251,248,0.16); border-radius: var(--radius-md); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 1rem 1.2rem; font-family: var(--font-display); font-weight: 700; color: var(--c-cream); list-style: none; 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); flex: 0 0 auto; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 1.2rem 1.1rem; color: rgba(253,251,248,0.92); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-banner { background: var(--c-olive); color: var(--c-cream); text-align: center; }
.cta-banner__inner { max-width: var(--w-read); margin: 0 auto; }
.cta-banner h2 { color: var(--c-cream); margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(253,251,248,0.92); margin-bottom: var(--space-md); }
.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; gap: .5rem; }
.cta-banner li { position: relative; padding-left: 1.7rem; color: var(--c-cream); }
.cta-banner li::before { content: "✓"; 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: #f6bd54; color: var(--c-charcoal); }
.cta-banner__disclosure { margin-top: var(--space-md); font-size: .85rem; color: rgba(253,251,248,0.75); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-charcoal); color: rgba(253,251,248,0.8); padding-block: var(--space-2xl) var(--space-lg); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); max-width: var(--container); margin: 0 auto var(--space-xl); }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: var(--c-cream); font-size: 1rem; margin-bottom: var(--space-md); }
.site-footer .brand { color: var(--c-cream); }
.site-footer p { font-size: .95rem; margin-bottom: var(--space-sm); }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: rgba(253,251,248,0.8); }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer__bar { border-top: 1px solid rgba(253,251,248,0.15); padding-top: var(--space-lg); max-width: var(--container); margin: 0 auto; font-size: .85rem; color: rgba(253,251,248,0.6); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ==========================================================================
   LEGAL / TEXT PAGES
   ========================================================================== */
.legal { padding-block: var(--section-py); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--space-md); }
.legal__inner h2 { font-size: 1.3rem; margin: var(--space-xl) 0 var(--space-sm); color: var(--c-primary-deep); }
.legal__inner p, .legal__inner li { margin-bottom: var(--space-sm); }
.legal__inner ul { padding-left: 1.4rem; margin-bottom: var(--space-md); }
.legal__updated { color: var(--c-charcoal-mute); font-size: .9rem; margin-bottom: var(--space-lg); }

/* ==========================================================================
   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: .75rem;
    padding: .6rem 1rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(42,34,32,0.96);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(250,247,242,0.16);
    box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.5);
    transform: translateY(100%); transition: transform .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: .8rem; opacity: .72; }
  .sticky-cta .btn--primary { flex: 0 0 auto; padding: .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); }
  /* No footer bottom-padding clearance needed: legal/utility pages don't carry the bar,
     and on content pages the bar auto-hides over #book-now/the footer. */
}

/* Visually-hidden utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
