/* =================================================================
   banffgrizzlybeartours.com — styles.css
   Mode B destination guide. Palette: Evergreen / Cedar / Amber on
   Glacier White + Light Stone. Fonts: Oswald (display) / Inter (body).
   ================================================================= */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #1F4D3A;  /* Deep Evergreen — brand, dark sections */
  --c-primary-deep:   #163A2B;  /* darker evergreen — headings on light, button hover, eyebrow on light */
  --c-accent:         #C98A2E;  /* Wildlife Amber — fills/decorative, never text on light */
  --c-accent-bright:  #F0B94A;  /* hero-CTA yellow + eyebrow colour on dark bg */
  --c-cream:          #F7F9F7;  /* Glacier White — base light bg */
  --c-cream-soft:     #EEF2ED;  /* Light Stone — section-alt + card on cream */
  --c-travertine:     #D7DED5;  /* subtle surface / borders */
  --c-travertine-soft:#ECE5D8;  /* warm light tan — Categories bg + featured-card outer */
  --c-olive:          #1F4D3A;  /* mid-dark — Why-choose / FAQ / Final CTA bg (evergreen) */
  --c-olive-deep:     #163A2B;  /* deeper variant for hover/border */
  --c-cedar:          #7A5237;  /* Cedar Brown — warm tertiary accent / icons on light */
  --c-charcoal:       #241E1A;  /* warm espresso — Gallery bg, FOOTER bg */
  --c-charcoal-mute:  #5C5246;  /* supporting text on light — ≥4.5:1 on cream */
  --c-white:          #FFFFFF;

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

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

  /* === LAYOUT === */
  --max-width:        1240px;
  --container:        min(1240px, 100% - 2rem);
  --container-narrow: min(820px, 100% - 2rem);
  --w-wide:           min(980px, 100% - 2rem);  /* structural blocks */
  --w-read:           min(720px, 100% - 2rem);  /* single-column prose */
  --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 (literal hex — contrast_audit.py) === */
  --c-ice:          #F7F9F7;
  --c-navy:         #163A2B;
  --c-ocean:        #1F4D3A;
  --c-slate:        #5C5246;
  --c-amber:        #F0B94A;
  --c-amber-bright: #F0B94A;
  --c-gold:         #C98A2E;
}

/* ============================= 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.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary); }
ul { list-style: none; padding: 0; }
section[id] { scroll-margin-top: 5.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.2px;
}
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
strong { color: var(--c-primary-deep); font-weight: 700; }

/* ============================ LAYOUT ============================ */
.container { width: var(--container); margin-inline: 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); }
.section--tan  { background: var(--c-travertine-soft); }
.section--dark h2, .section--dark h3,
.section--olive h2, .section--olive h3 { color: var(--c-cream); }
.section--dark p, .section--olive p { color: rgba(247,249,247,0.92); }
.section--dark strong, .section--olive strong { color: var(--c-white); }

/* Centered section head + two-rail content widths */
.section-head { text-align: center; max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.section-head .eyebrow { display: block; margin-bottom: var(--space-sm); }
.section-head__sub { color: var(--c-charcoal-mute); margin-top: var(--space-sm); font-size: 1.02rem; }
.section--dark .section-head__sub, .section--olive .section-head__sub { color: rgba(247,249,247,0.85); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-primary-deep);
}
/* eyebrow on dark backgrounds */
.hero .eyebrow,
.section--dark .eyebrow,
.section--olive .eyebrow,
.why-choose .eyebrow,
.gallery .eyebrow,
.cta-banner .eyebrow { color: var(--c-accent-bright); }

/* ============================ BUTTONS =========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem; letter-spacing: 0.4px;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-deep); transform: translateY(-2px); }
.btn--secondary {
  background: transparent; color: var(--c-cream);
  border-color: rgba(247,249,247,0.55);
}
.btn--secondary:hover { background: rgba(247,249,247,0.12); border-color: var(--c-cream); }
/* secondary on light sections */
.section .btn--secondary, .section--alt .btn--secondary, .section--tan .btn--secondary {
  color: var(--c-primary-deep); border-color: var(--c-primary);
}
.section .btn--secondary:hover { background: rgba(31,77,58,0.08); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,249,247,0.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.7rem; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-primary-deep); text-decoration: none; letter-spacing: 0.4px; }
.brand span { color: var(--c-accent); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-family: var(--font-display); text-transform: uppercase; font-size: 0.98rem; letter-spacing: 0.6px; color: var(--c-primary-deep); text-decoration: none; transition: var(--transition); }
.nav a:hover { color: var(--c-accent); }
.nav .btn { padding: 0.6rem 1.2rem; font-size: 0.92rem; color: var(--c-white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--c-primary-deep); border-radius: 2px; transition: var(--transition); }

/* ============================== HERO ============================ */
.hero { position: relative; min-height: clamp(560px, 82vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; z-index: 0; }
@media (max-width: 720px) { .hero-bg { object-position: 78% 45%; } }
/* No-panel hero (§7g variant): two-axis gradient compensates for the removed frosted box */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,22,18,0.66) 0%, rgba(20,22,18,0.30) 48%, rgba(20,22,18,0.10) 100%),
    linear-gradient(180deg, rgba(20,22,18,0.55) 0%, rgba(20,22,18,0.12) 42%, rgba(20,22,18,0.40) 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 { margin-bottom: var(--space-lg); }
.hero-overlay > :last-child { margin-bottom: 0; }
.hero .eyebrow { color: var(--c-accent-bright); text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 0 14px rgba(0,0,0,0.4); }
.hero h1 {
  color: var(--c-white); font-size: clamp(2.1rem, 5.2vw, 3.3rem);
  margin: 0.6rem 0 0.9rem; text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 2px 18px rgba(0,0,0,0.45); font-weight: 700;
}
.hero strong { color: inherit; }
.hero-lede { color: var(--c-cream); font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin-bottom: 1.1rem; text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 1px 12px rgba(0,0,0,0.45); }
.hero-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: var(--c-cream); font-size: 1.12rem; margin: 0; text-shadow: 0 1px 2px rgba(0,0,0,0.55); }
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 2px; }
.hero-rating .score { font-family: var(--font-display); font-weight: 700; color: var(--c-white); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-md); }
.hero-pills span {
  font-size: 0.95rem; font-weight: 600; color: var(--c-cream);
  background: rgba(36,30,26,0.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(247,249,247,0.22); border-radius: 999px; padding: 0.4rem 0.95rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
/* Hero primary CTA = YELLOW (hero-only override) */
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); border-color: var(--c-accent-bright); }
.hero .btn--primary:hover { background: #ffc861; border-color: #ffc861; }

/* =========================== FACTS STRIP ======================== */
.facts { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding-block: clamp(1rem, 2vw, 1.4rem); }
.facts__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; max-width: var(--w-wide); margin-inline: auto; }
.facts__item { display: flex; flex-direction: column; gap: 0.2rem; text-align: center; padding: 0.3rem 0.4rem; }
.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); }

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

/* ===================== ITINERARY (experience + reality) ========= */
.itinerary__list { max-width: var(--w-wide); margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); counter-reset: step; }
.itinerary__item { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; 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-primary); line-height: 1; }
.itinerary__item h3 { margin-bottom: 0.4rem; color: var(--c-primary-deep); }
.itinerary__item p { color: var(--c-charcoal); margin: 0; }
.experience .experience-summary__cta { margin-top: var(--space-xl); }

/* ======================= GUIDED TOUR (split) =================== */
.guided { background: var(--c-travertine-soft); }
.guided__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); max-width: var(--w-wide); margin-inline: auto; align-items: start; }
.guided__text { background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: var(--space-xl); box-shadow: var(--shadow-sm); }
.guided__text h2 { margin: 0.3rem 0 0.8rem; }
.guided__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; margin-bottom: var(--space-md); font-size: 0.95rem; color: var(--c-charcoal-mute); }
.guided__meta .price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--c-primary-deep); }
.guided__meta .pill { background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: 999px; padding: 0.25rem 0.8rem; font-size: 0.82rem; color: var(--c-primary-deep); font-weight: 600; }
.guided__list { margin: var(--space-md) 0; }
.guided__list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; }
.guided__list li::before { content: "✓"; position: absolute; left: 0; top: 0.05rem; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--c-primary); color: var(--c-white); font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.guided__why { background: var(--c-cream-soft); border-left: 4px solid var(--c-accent); padding: var(--space-md); border-radius: var(--radius-sm); margin-bottom: var(--space-md); }
.guided__note { font-style: italic; color: var(--c-charcoal-mute); font-size: 0.92rem; }
.guided__widget { background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: 0.5rem; box-shadow: var(--shadow-sm); min-height: 320px; }
.guided__mobilehead { display: none; }   /* desktop: hidden — eyebrow + pill live inside .guided__text */

/* ====================== HIGHLIGHTS / CARD GRID ================= */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
.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); transition: var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .eyebrow { display: block; margin-bottom: 0.5rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--c-charcoal); }
/* cards on dark (why-choose) */
.section--olive .card, .section--dark .card { background: rgba(247,249,247,0.06); border-color: rgba(247,249,247,0.18); }
.section--olive .card h3, .section--dark .card h3 { color: var(--c-white); }
.section--olive .card p, .section--dark .card p { color: rgba(247,249,247,0.9); }
.section--olive .card .eyebrow, .section--dark .card .eyebrow { color: var(--c-accent-bright); }

/* ====================== GRIZZLY STATS (optional) =============== */
.grizzly-stats { background: var(--c-travertine-soft); border-block: 1px solid var(--c-travertine); }
.grizzly-stats__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); max-width: 960px; margin-inline: auto; }
.grizzly-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); text-align: left; display: flex; flex-direction: column; gap: 0.35rem; }
.grizzly-stats__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--c-primary-deep); line-height: 1; }
.grizzly-stats__label { font-size: 0.98rem; color: var(--c-charcoal-mute); }

/* ============================ GALLERY =========================== */
.gallery { background: var(--c-charcoal); color: var(--c-cream); }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: rgba(247,249,247,0.8); }
.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--full::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 14px; width: 80px; pointer-events: none;
  background: linear-gradient(90deg, rgba(36,30,26,0) 0%, var(--c-charcoal) 100%);
}
.gallery__strip {
  display: flex; flex-wrap: nowrap; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  padding-left: max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
  scrollbar-width: thin; scrollbar-color: var(--c-accent) rgba(247,249,247,0.15);
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(247,249,247,0.12); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__item { flex: 0 0 78vw; scroll-snap-align: start; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.gallery__item img { width: 100%; height: 260px; object-fit: cover; }
.gallery__item figcaption { font-size: 0.85rem; color: rgba(247,249,247,0.8); padding: 0.6rem 0.2rem 0; }
.gallery__arrow {
  position: absolute; top: calc(50% - 30px); transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(36,30,26,0.7); color: var(--c-cream); font-size: 1.6rem; line-height: 1;
  display: none; align-items: center; justify-content: center; transition: var(--transition);
}
.gallery__arrow:hover { background: var(--c-accent); color: var(--c-charcoal); }
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }

/* ============================ INCLUDED ========================== */
.included__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); max-width: var(--w-wide); margin-inline: auto; }
.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 { padding-bottom: 0.6rem; border-bottom: 2px solid var(--c-travertine); margin-bottom: var(--space-md); }
.included__col li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; line-height: 1.5; }
.included__col--yes li::before { content: "✓"; color: var(--c-primary); }
.included__col--no li::before  { content: "✕"; color: var(--c-cedar); }
.included__col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }

/* ================== WILD VS GUARANTEED (table) ================= */
.vs-table__wrap { max-width: var(--w-wide); margin-inline: auto; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-travertine); box-shadow: var(--shadow-sm); }
.vs-table { width: 100%; border-collapse: collapse; background: var(--c-white); min-width: 560px; }
.vs-table th, .vs-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--c-travertine); vertical-align: top; font-size: 0.98rem; }
.vs-table thead th { background: var(--c-primary); color: var(--c-white); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.4px; font-size: 0.85rem; }
.vs-table tbody th[scope="row"] { font-family: var(--font-display); color: var(--c-primary-deep); font-weight: 600; background: var(--c-cream-soft); }
.vs-table td:nth-child(2) strong { color: var(--c-primary-deep); }
.vs-table tr:last-child td, .vs-table tr:last-child th { border-bottom: 0; }
.vs-table__note { max-width: var(--w-read); margin: var(--space-lg) auto 0; text-align: center; background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: var(--radius-sm); padding: var(--space-md); }

/* ============================ REVIEWS =========================== */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
.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); }
.review-card .stars { color: var(--c-accent); letter-spacing: 2px; margin-bottom: 0.6rem; }
.review-card blockquote { margin: 0 0 0.8rem; font-style: italic; line-height: 1.6; }
.review-card cite { font-style: normal; font-weight: 600; color: var(--c-primary-deep); font-size: 0.9rem; }
.reviews__provenance { text-align: center; max-width: var(--w-read); margin: var(--space-lg) auto 0; color: var(--c-charcoal-mute); font-size: 0.92rem; }

/* ========================= PRACTICAL INFO ====================== */
.practical__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
.practical__item { 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__item h3 { margin-bottom: 0.5rem; color: var(--c-primary-deep); }
.practical__item p { margin: 0; }

/* ============================== FAQ ============================= */
.faq__list { max-width: var(--w-wide); margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq__item { background: rgba(247,249,247,0.06); border: 1px solid rgba(247,249,247,0.18); border-radius: var(--radius-md); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--c-white); 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.5rem; color: var(--c-accent-bright); flex: 0 0 auto; }
.faq__item[open] summary::after { content: "−"; }
.faq__item .faq__answer { padding: 0 1.4rem 1.2rem; color: rgba(247,249,247,0.92); }
.faq__item .faq__answer p { color: rgba(247,249,247,0.92); }

/* ====================== CATEGORIES (#also) ===================== */
.also__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
.category-card { display: flex; flex-direction: column; gap: 0.5rem; background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: var(--space-lg); text-decoration: none; color: var(--c-charcoal); box-shadow: var(--shadow-sm); transition: var(--transition); overflow: hidden; }
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-accent); }
.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.4rem; transition: transform var(--transition); }
.category-card:hover .category-card__img { transform: scale(1.04); }
.category-card[data-cta-key="wild-safari"] .category-card__img { object-position: top; }
.category-card h3 { color: var(--c-primary-deep); }
.category-card p { margin: 0; color: var(--c-charcoal); }
.category-card__featured { font-size: 0.88rem; color: var(--c-charcoal-mute); border-top: 1px solid var(--c-travertine); padding-top: 0.7rem; margin-top: auto; }
.category-card__cta { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; color: var(--c-primary); }
.category-card:hover .category-card__cta { color: var(--c-accent); }

/* ======================= CTA BANNER (#book-now) ================ */
.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(247,249,247,0.92); }
.cta-banner__bullets { display: flex; flex-direction: column; gap: 0.6rem; margin: var(--space-lg) 0; text-align: left; max-width: 460px; margin-inline: auto; }
.cta-banner__bullets li { position: relative; padding-left: 1.9rem; color: var(--c-cream); }
.cta-banner__bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.3rem; height: 1.3rem; border-radius: 50%; background: var(--c-accent-bright); color: var(--c-charcoal); font-size: 0.72rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cta-banner .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); border-color: var(--c-accent-bright); }
.cta-banner .btn--primary:hover { background: #ffc861; border-color: #ffc861; }
.cta-banner__disclosure { font-size: 0.82rem; color: rgba(247,249,247,0.7); margin-top: var(--space-md); }

/* ============================= FOOTER =========================== */
.site-footer { background: var(--c-charcoal); color: rgba(247,249,247,0.85); padding-top: var(--space-2xl); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); padding-bottom: var(--space-xl); }
.site-footer h4 { color: var(--c-white); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: var(--space-md); }
.site-footer a { color: rgba(247,249,247,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer__brand p { color: rgba(247,249,247,0.78); font-size: 0.95rem; }
.site-footer__links li { margin-bottom: 0.6rem; }
.site-footer__bottom { border-top: 1px solid rgba(247,249,247,0.16); padding-block: var(--space-lg); font-size: 0.82rem; color: rgba(247,249,247,0.65); display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__bottom a { text-decoration: underline; }

/* ====================== LEGAL / TEXT PAGES ===================== */
.legal { padding-block: var(--section-py); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h1 { margin-bottom: var(--space-md); }
.legal__inner h2 { margin: var(--space-xl) 0 var(--space-sm); font-size: 1.4rem; }
.legal__inner p, .legal__inner li { color: var(--c-charcoal); }
.legal__inner ul { list-style: disc; padding-left: 1.4rem; margin-bottom: var(--space-md); }
.legal__inner li { margin-bottom: 0.4rem; }
.text-block { max-width: var(--w-read); margin: 0 auto; }

/* ========================= RESPONSIVE =========================== */
@media (min-width: 600px) {
  .grizzly-stats__row { gap: var(--space-lg); }
}
@media (min-width: 720px) {
  .facts__row { grid-template-columns: repeat(3, 1fr); }
  .experience-summary__grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .grizzly-stats__row { grid-template-columns: repeat(4, 1fr); }
  .included__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .practical__grid { grid-template-columns: repeat(2, 1fr); }
  .also__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .gallery__item { flex: 0 0 46vw; }
  .gallery__item img { height: 300px; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .guided__grid { grid-template-columns: 1.15fr 1fr; }
}
/* Stacked widths: one merged card — header (eyebrow + free-cancel) → widget → text */
@media (max-width: 1023.98px) {
  .guided__grid { gap: 0; background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
  .guided__mobilehead { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; order: -2; padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--c-travertine); border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .guided__mobilehead .eyebrow { margin: 0; }
  .guided__mobilehead .pill { background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: 999px; padding: 0.25rem 0.8rem; font-size: 0.82rem; color: var(--c-primary-deep); font-weight: 600; }
  .guided__widget { order: -1; background: transparent; border: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid var(--c-travertine); }
  .guided__text { background: transparent; border: 0; border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: none; }
  /* hide what the widget already shows */
  .guided__text > .eyebrow,
  .guided__text > h2,
  .guided__text > .guided__meta { display: none; }
  /* un-box the recommendation line on mobile */
  .guided__why { background: transparent; border-left: 0; padding: 0; border-radius: 0; }
}
@media (min-width: 1080px) {
  .facts__row { grid-template-columns: repeat(5, 1fr); }
  .facts__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
  .gallery__arrow { display: flex; }
  .gallery__item { flex: 0 0 32vw; }
}
@media (max-width: 980px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(300px, 80vw); flex-direction: column; align-items: flex-start; gap: 1.2rem; background: var(--c-cream); padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--transition); }
  .nav.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 110; }
  .nav[aria-hidden="true"] { visibility: hidden; }
  .nav.is-open[aria-hidden="true"] { visibility: visible; }
}
@media (max-width: 600px) {
  /* Collapse both content rails to 100% on phones: the .container already supplies the side
     gutter, so the inner --w-wide/--w-read rails must NOT add a second one (that doubled the
     side margin and made every carded block look narrow). One rule widens every block —
     section heads, card grids, reviews, practical, #also, included, FAQ, intro, vs-table. */
  :root { --w-wide: 100%; --w-read: 100%; }
  /* number above the text so the description spans the full card width */
  .itinerary__item { grid-template-columns: 1fr; gap: 0.35rem; padding: var(--space-md); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
