/* ============================================================================
   rhinefallsfromzurich.com — styles.css
   Palette: Swiss/Rhine (teal + deep river blue + Swiss gold accent)
   Fonts:   Sora (display), Inter (body)
   ============================================================================ */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #007A8A;   /* Rhine water teal — CTAs */
  --c-primary-deep:   #1E5A6A;   /* Deep river blue — headings, button hover */
  --c-accent:         #D8A24A;   /* Swiss gold — secondary accent, badges */
  --c-accent-bright:  #F2BE4E;   /* Hero CTA yellow (brighter Swiss gold) */
  --c-cream:          #F6F8F7;   /* Soft mist white — base bg */
  --c-cream-soft:     #E7EFED;   /* Pale river mist — alt section bg */
  --c-travertine:     #D6DEDC;   /* Subtle surface / borders */
  --c-travertine-soft:#E2EAE7;   /* Light tan/cream — Categories bg */
  --c-olive:          #1E5A6A;   /* Deep river blue — Why-choose, FAQ, Final CTA */
  --c-olive-deep:     #163E48;   /* Darker variant for hover/border */
  --c-charcoal:       #1F2A2E;   /* Deep slate — Gallery bg, footer bg, body text */
  --c-charcoal-mute:  #4F5961;   /* Supporting text on light (5.5:1 on #F6F8F7) */
  --c-white:          #FFFFFF;

  /* === LEGACY/AUDIT ALIASES (contrast_audit.py compatibility) === */
  --c-ice:           var(--c-cream);
  --c-navy:          var(--c-primary-deep);
  --c-ocean:         var(--c-primary-deep);
  --c-slate:         var(--c-charcoal-mute);
  --c-amber:         var(--c-accent);
  --c-amber-bright:  var(--c-accent-bright);
  --c-gold:          var(--c-accent);

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

  /* === SPACING === */
  --section-py: clamp(2rem, 4vw, 3.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);
  --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);
}

/* ============================================================================
   RESET / BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2rem; margin: 0 0 var(--space-md); }
li { margin-bottom: 0.35rem; }
p { margin: 0 0 var(--space-md); }
strong { color: var(--c-primary-deep); font-weight: 700; }

a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; transition: color var(--transition); }
a:hover { color: var(--c-primary-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.1rem; }

.container { width: var(--container); margin-inline: auto; }

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

.skip-link {
  position: absolute; left: 0; top: -40px;
  background: var(--c-primary-deep); color: var(--c-cream);
  padding: 0.5rem 1rem; z-index: 1000; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

.section { padding-block: var(--section-py); }
.section--alt { background: var(--c-cream-soft); padding-block: var(--section-py); }
.section--dark { background: var(--c-charcoal); color: var(--c-cream); padding-block: var(--section-py); }
.section--olive { background: var(--c-olive); color: var(--c-cream); padding-block: var(--section-py); }

/* ============================================================================
   EYEBROW / SECTION HEADS
   ============================================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
/* Dark-bg overrides (avoid invisible eyebrow text on olive/charcoal/hero) */
.section--olive .eyebrow,
.section--dark .eyebrow,
.cta-banner .eyebrow,
.hero .eyebrow,
.why-choose .eyebrow,
.gallery .eyebrow,
.faq .eyebrow,
.section-head--inverse .eyebrow { color: var(--c-accent-bright); }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-xl);
}
.section-head h2 { margin-bottom: var(--space-sm); }
.section-head__sub {
  color: var(--c-charcoal-mute);
  font-size: 1.05rem;
  margin: 0;
}
.section-head--inverse h2 { color: var(--c-cream); }
.section-head--inverse .section-head__sub { color: rgba(246, 248, 247, 0.78); }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-cream);
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
  color: var(--c-cream);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(246, 248, 247, 0.55);
}
.btn--secondary:hover {
  background: rgba(246, 248, 247, 0.12);
  color: var(--c-cream);
  border-color: var(--c-cream);
}
.section--alt .btn--secondary,
.section .btn--secondary {
  color: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
}
.section--alt .btn--secondary:hover,
.section .btn--secondary:hover {
  background: var(--c-primary-deep);
  color: var(--c-cream);
}

/* Hero-only override: yellow primary CTA */
.hero .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}
.hero .btn--primary:hover {
  background: var(--c-accent);
  color: var(--c-charcoal);
  border-color: var(--c-accent);
}

/* ============================================================================
   SITE HEADER (sticky)
   ============================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 247, 0.92);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: 1.05rem;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--c-primary);
  color: var(--c-cream);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.brand__name { white-space: nowrap; }

.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a {
  text-decoration: none;
  color: var(--c-primary-deep);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color var(--transition);
}
.primary-nav a:hover { color: var(--c-primary); }
.primary-nav__cta {
  background: var(--c-primary);
  color: var(--c-cream) !important;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.primary-nav__cta:hover {
  background: var(--c-primary-deep);
  color: var(--c-cream) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-primary-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--c-travertine);
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }
  .primary-nav.is-open { max-height: 480px; }
  .primary-nav a {
    padding: 0.95rem var(--space-md);
    border-top: 1px solid var(--c-travertine);
  }
  .primary-nav__cta {
    margin: var(--space-md);
    border-radius: var(--radius-sm);
    text-align: center;
  }
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 6vh, 4.5rem) var(--space-2xl);
  overflow: hidden;
  color: var(--c-cream);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 46, 0.65) 0%, rgba(31, 42, 46, 0.35) 55%, rgba(31, 42, 46, 0) 100%);
  z-index: -1;
}
.hero-content {
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.65);
}
.hero strong { color: inherit; }
.hero .eyebrow { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.hero-lede {
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  color: var(--c-cream);
  margin-bottom: var(--space-lg);
  max-width: 60ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.55);
}
.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--c-cream);
  margin: 0 0 var(--space-lg);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 0.05em; }
.hero-rating .score { font-weight: 700; color: var(--c-cream); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  background: rgba(31, 42, 46, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--c-cream);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 248, 247, 0.30);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ============================================================================
   FACTS STRIP  #facts
   ============================================================================ */
.facts {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-travertine);
  padding-block: clamp(1rem, 2vw, 1.4rem);
}
.facts__row {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.facts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0.5rem 0;
}
.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;
  margin-bottom: 0.25rem;
}
.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 { padding-inline: 1rem; border-left: 1px solid var(--c-travertine); }
  .facts__item:first-child { padding-left: 0; border-left: 0; }
}

/* ============================================================================
   INTRO (combined) — Highlights / What's Included grid
   ============================================================================ */
.intro__body { max-width: 820px; margin: 0 auto; }
.intro__body p { font-size: 1.06rem; }

.experience-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) auto var(--space-md);
  max-width: 1000px;
}
@media (min-width: 720px) {
  .experience-summary__grid { grid-template-columns: 1fr 1fr; }
}
.experience-summary__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 {
  margin: 0 0 var(--space-md);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-travertine);
  font-size: 1.18rem;
}
.experience-summary__col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.experience-summary__col li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.55;
}
.experience-summary__col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 18px; height: 18px;
  background: var(--c-primary);
  border-radius: 50%;
  background-image: linear-gradient(45deg, transparent 38%, var(--c-cream) 38%, var(--c-cream) 46%, transparent 46%, transparent 54%, var(--c-cream) 54%, var(--c-cream) 70%, transparent 70%);
}
.experience-summary__cta {
  text-align: center;
  margin: var(--space-lg) 0 0;
}

/* ============================================================================
   EXPERIENCE / ITINERARY LIST (also reused by #rhine-falls-reality-check)
   ============================================================================ */
.itinerary__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
  max-width: 880px;
}
.itinerary__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.itinerary__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.itinerary__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.itinerary__item p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.6;
}

/* ============================================================================
   FEATURED TOUR (#guided-tour)
   ============================================================================ */
.guided-tour {
  background: var(--c-travertine-soft);
  padding-block: var(--section-py);
}
.guided-tour__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 1024px) {
  .guided-tour__grid { grid-template-columns: 1.15fr 1fr; }
}
.guided-tour__text {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.guided-tour__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.97rem;
  color: var(--c-charcoal-mute);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--c-travertine);
}
.guided-tour__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-primary-deep);
  font-size: 1.35rem;
}
.guided-tour__rating { font-weight: 600; color: var(--c-primary-deep); }
.guided-tour__meta .dot { color: var(--c-travertine); }
.guided-tour__pill {
  margin-left: auto;
  background: var(--c-accent);
  color: var(--c-charcoal);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
}
.guided-tour__scene { font-size: 1rem; }
.guided-tour__reviews-summary {
  font-size: 0.95rem;
  color: var(--c-charcoal-mute);
}
.guided-tour__meeting {
  font-size: 0.92rem;
  color: var(--c-charcoal-mute);
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 18px; height: 18px;
  background: var(--c-primary);
  border-radius: 50%;
  background-image: linear-gradient(45deg, transparent 38%, var(--c-cream) 38%, var(--c-cream) 46%, transparent 46%, transparent 54%, var(--c-cream) 54%, var(--c-cream) 70%, transparent 70%);
}
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cross-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: 0.98rem;
}
.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-charcoal-mute);
  font-weight: 700;
  font-size: 1rem;
  width: 18px; text-align: center;
}

.guided-tour__widget {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  box-shadow: var(--shadow-sm);
  min-height: 380px;
}

/* ============================================================================
   CARDS GRID (Highlights + Why-choose + Reviews)
   ============================================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .cards-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.12rem; }
.card p { margin: 0; font-size: 0.97rem; line-height: 1.6; }
.card__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.4rem;
}
.card--inverse {
  background: rgba(246, 248, 247, 0.08);
  border-color: rgba(246, 248, 247, 0.22);
  color: var(--c-cream);
}
.card--inverse h3 { color: var(--c-cream); }
.card--inverse strong { color: var(--c-accent-bright); }
.card--inverse .card__eyebrow { color: var(--c-accent-bright); }

/* ============================================================================
   RHINE-FALLS-STATS (optional · 4 light-bg tiles)
   ============================================================================ */
.skywalk-stats {
  background: var(--c-travertine-soft);
  border-top: 1px solid var(--c-travertine);
  border-bottom: 1px solid var(--c-travertine);
  padding-block: var(--section-py);
}
.skywalk-stats__row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 720px) {
  .skywalk-stats__row { grid-template-columns: repeat(4, 1fr); }
}
.skywalk-stats__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.skywalk-stats__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--c-accent);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.skywalk-stats__label {
  font-size: 0.96rem;
  color: var(--c-charcoal-mute);
  line-height: 1.45;
}

/* ============================================================================
   GALLERY (full-width)
   ============================================================================ */
.gallery { padding-block: var(--section-py); }
.gallery__wrapper {
  position: relative;
  margin-top: var(--space-md);
}
.gallery__wrapper--full {
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-md);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) var(--c-charcoal);
  -webkit-overflow-scrolling: touch;
  padding-block: 0.5rem 1.2rem;
}
.gallery__wrapper--full .gallery__strip {
  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.08); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__item {
  flex: 0 0 78vw;
  max-width: 760px;
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(0, 0, 0, 0.25);
}
@media (min-width: 720px) { .gallery__item { flex-basis: 56vw; } }
@media (min-width: 1080px) { .gallery__item { flex-basis: 42vw; } }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.gallery__wrapper::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 5rem; height: 100%;
  background: linear-gradient(90deg, transparent, var(--c-charcoal));
  pointer-events: none;
  z-index: 2;
}
.gallery__arrow {
  display: none;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(216, 162, 74, 0.92);
  color: var(--c-charcoal);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  transition: background var(--transition);
}
.gallery__arrow:hover { background: var(--c-accent-bright); }
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }
@media (min-width: 1080px) and (hover: hover) {
  .gallery__arrow { display: flex; align-items: center; justify-content: center; }
}

/* ============================================================================
   INCLUDED / NOT INCLUDED
   ============================================================================ */
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  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: clamp(1.2rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow-sm);
}
.included__col h3 {
  margin-top: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-travertine);
  font-size: 1.15rem;
}

/* ============================================================================
   VS-NIAGARA (decision comparison table)
   ============================================================================ */
.vs-other { padding-block: var(--section-py); }
.vs-table__wrap { 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;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.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-cream-soft);
  color: var(--c-primary-deep);
  font-family: var(--font-display);
  font-weight: 700;
}
.vs-table tbody th[scope="row"] {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  width: 28%;
}
.vs-table tbody td:nth-child(2) {
  color: var(--c-primary-deep);
  font-weight: 600;
}
.vs-table tbody tr:last-child th,
.vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table__note {
  font-size: 0.97rem;
  color: var(--c-charcoal-mute);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================================
   REVIEWS
   ============================================================================ */
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}
.review-card__stars {
  color: var(--c-accent);
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  letter-spacing: 0.05em;
}
.review-card blockquote {
  margin: 0 0 0.8rem;
  font-style: italic;
  color: var(--c-charcoal);
  font-size: 1rem;
  line-height: 1.6;
}
.review-card__attr {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-charcoal-mute);
}

/* ============================================================================
   PRACTICAL INFO
   ============================================================================ */
.practical-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}
.practical-card h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.practical-card p { margin: 0; font-size: 0.96rem; }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq__list { display: grid; gap: 0.7rem; max-width: 980px; margin: 0 auto; }
.faq__item {
  background: rgba(246, 248, 247, 0.07);
  border: 1px solid rgba(246, 248, 247, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-cream);
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--c-accent-bright);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 1.2rem 1.05rem;
  color: rgba(246, 248, 247, 0.92);
  font-size: 0.97rem;
}
.faq__body p { margin: 0; line-height: 1.65; }

/* ============================================================================
   CATEGORIES (#also) — light bg, 2×2 grid of card-style anchors
   ============================================================================ */
.also {
  background: var(--c-travertine-soft);
  padding-block: var(--section-py);
}
.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 720px) {
  .also__grid { grid-template-columns: 1fr 1fr; }
}
.category-card {
  display: flex;
  flex-direction: column;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  text-decoration: none;
  color: var(--c-charcoal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--c-charcoal);
}
.category-card .eyebrow { color: var(--c-primary); }
.category-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.18rem;
}
.category-card p {
  margin: 0 0 var(--space-md);
  font-size: 0.97rem;
  color: var(--c-charcoal);
}
.category-card__featured {
  display: block;
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-travertine);
  font-size: 0.9rem;
  color: var(--c-primary-deep);
  font-weight: 600;
}
.category-card__cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.55rem 1.05rem;
  background: var(--c-primary);
  color: var(--c-cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
  align-self: flex-start;
}
.category-card:hover .category-card__cta { background: var(--c-primary-deep); }

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.cta-banner { text-align: center; }
.cta-banner .section-head { max-width: 760px; }
.cta-banner__lede {
  max-width: 720px;
  margin: 0 auto var(--space-md);
  font-size: 1.08rem;
  color: rgba(246, 248, 247, 0.95);
}
.cta-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--space-md);
  max-width: 600px;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}
.cta-banner__bullets li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(246, 248, 247, 0.95);
  font-size: 0.98rem;
}
.cta-banner__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-accent-bright);
  font-weight: 700;
}
.cta-banner__bullets strong { color: var(--c-accent-bright); }
.cta-banner__disclosure {
  max-width: 640px;
  margin: 0 auto var(--space-md);
  font-size: 0.85rem;
  color: rgba(246, 248, 247, 0.78);
}
.cta-banner__disclosure a { color: var(--c-accent-bright); }
.cta-banner__action { margin: 0; }
.cta-banner .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.cta-banner .btn--primary:hover {
  background: var(--c-accent);
  color: var(--c-charcoal);
  border-color: var(--c-accent);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(246, 248, 247, 0.88);
  padding-top: var(--space-2xl);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-cream);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}
.site-footer__brand p {
  font-size: 0.96rem;
  color: rgba(246, 248, 247, 0.78);
}
.site-footer__nav h3 {
  color: var(--c-accent-bright);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-sm);
}
.site-footer__nav ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer__nav li { margin-bottom: 0.45rem; }
.site-footer__nav a {
  color: rgba(246, 248, 247, 0.88);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--c-accent-bright); }

.site-footer__bar {
  background: #15191C;
  padding-block: var(--space-md);
  border-top: 1px solid rgba(246, 248, 247, 0.12);
}
.site-footer__bar-inner {
  display: grid;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(246, 248, 247, 0.70);
}
.site-footer__bar-inner p { margin: 0; }
.site-footer__bar a { color: rgba(246, 248, 247, 0.88); }
.site-footer__bar a:hover { color: var(--c-accent-bright); }
@media (min-width: 780px) {
  .site-footer__bar-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
  .site-footer__bar-inner p:last-child { text-align: right; }
}

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

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