/* ==========================================================================
   Boston Ghost Tours — styles.css
   Palette: Aged Parchment / Foggy Stone / Lantern Gold / Cemetery Slate / Blood Burgundy
   Fonts: Bebas Neue (display) · Roboto (body)
   ========================================================================== */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #6B2737;  /* Blood Burgundy — CTAs, brand accent */
  --c-primary-deep:   #4E1C28;  /* Deeper burgundy — headings on light, button hover */
  --c-accent:         #C89B3C;  /* Lantern Gold — stars, decorative fills */
  --c-accent-bright:  #E6B84C;  /* Brighter gold — hero CTA bg + dark-bg eyebrow text */
  --c-accent-bright-deep: #D9A93F;  /* Hover shade for the yellow CTA */
  --c-cream:          #F4F0E8;  /* Aged Parchment — base light bg */
  --c-cream-soft:     #E8ECEC;  /* Foggy Stone — section-alt + card on cream */
  --c-travertine:     #D8D2C4;  /* Warm light surface / borders */
  --c-travertine-soft:#EAE3D2;  /* Light tan — Categories bg + featured-card outer */
  --c-olive:          #2F3E46;  /* Cemetery Slate — Why-choose, FAQ, Final CTA bg */
  --c-olive-deep:     #243036;  /* Deeper slate — hover/border on olive */
  --c-charcoal:       #1A2429;  /* Very dark slate — Gallery bg, FOOTER bg, body text */
  --c-charcoal-mute:  #4F5A62;  /* Supporting text on cream (>=4.5:1 on parchment) */
  --c-white:          #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Bebas Neue", "Oswald", Georgia, "Times New Roman", serif;
  --font-body:    "Roboto", -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 (literal hex per SKILL §8c) === */
  --c-ice:           #F4F0E8;
  --c-navy:          #2F3E46;
  --c-ocean:         #4E1C28;
  --c-slate:         #4F5A62;
  --c-amber:         #E6B84C;
  --c-amber-bright:  #E6B84C;
  --c-gold:          #C89B3C;
}

/* ========================= RESET / BASE ========================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0 0 var(--space-md);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; line-height: 1.25; }
p  { margin: 0 0 var(--space-md); }
strong { color: var(--c-primary-deep); }

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

/* ========================= LAYOUT HELPERS ========================= */
.container { width: var(--container); max-width: var(--max-width); 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); }
.section--tan   { background: var(--c-travertine-soft); }

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--olive h1, .section--olive h2, .section--olive h3, .section--olive h4 { color: var(--c-cream); }
.section--dark p, .section--olive p { color: rgba(244,240,232,0.90); }
.section--dark strong, .section--olive strong { color: var(--c-white); }

/* Section head — centered, prose rail */
.section-head { text-align: center; max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.section-head__sub { color: var(--c-charcoal-mute); font-size: 1.05rem; margin-top: var(--space-xs); margin-bottom: 0; }
.section--dark .section-head__sub, .section--olive .section-head__sub { color: rgba(244,240,232,0.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
/* Eyebrow on dark sections -> bright gold */
.section--dark .eyebrow, .section--olive .eyebrow,
.hero .eyebrow, .why-choose .eyebrow, .gallery .eyebrow,
.cta-banner .eyebrow, .faq .eyebrow { color: var(--c-accent-bright); }

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  padding: 0.9rem 1.7rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; transition: var(--transition);
  text-align: center; line-height: 1.2;
}
.btn--primary { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }
.btn--primary:hover { background: var(--c-primary-deep); border-color: var(--c-primary-deep); }
.btn--secondary { background: transparent; color: var(--c-cream); border-color: rgba(244,240,232,0.6); }
.btn--secondary:hover { background: rgba(244,240,232,0.12); border-color: var(--c-cream); }
.btn--block { width: 100%; }

/* ========================= HEADER ========================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,36,41,0.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244,240,232,0.10);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }
.brand { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--c-cream); text-decoration: none; line-height: 1; }
.brand span { color: var(--c-accent-bright); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: rgba(244,240,232,0.88); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.nav a:hover { color: var(--c-accent-bright); }
.nav .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--c-cream); margin: 5px 0; transition: var(--transition); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-charcoal); padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid rgba(244,240,232,0.10);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 0.25rem; border-bottom: 1px solid rgba(244,240,232,0.08); }
  .nav .btn { margin-top: 0.6rem; }
}

/* ========================= HERO ========================= */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  padding-block: var(--space-2xl); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,20,22,0.55) 0%, rgba(15,20,22,0.18) 55%, rgba(15,20,22,0.05) 100%),
    linear-gradient(180deg, rgba(15,20,22,0.55) 0%, rgba(15,20,22,0.15) 40%, rgba(15,20,22,0.50) 100%);
}
.hero-content { width: var(--container); max-width: 760px; margin: 0 auto; text-align: left; }

.hero-overlay {
  background: rgba(26,34,40,0.30);
  -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(26,34,40,0.66); }
}
.hero .eyebrow { color: var(--c-accent-bright); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.hero h1 { color: var(--c-cream); text-shadow: 0 2px 10px rgba(0,0,0,0.35); margin-bottom: var(--space-md); }
.hero strong { color: inherit; }
.hero-lede {
  color: rgba(244,240,232,0.95); font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55; text-shadow: 0 1px 6px rgba(0,0,0,0.4); margin-bottom: var(--space-md);
}
.hero-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin: 0; color: var(--c-cream); font-size: 1rem; }
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 0.08em; font-size: 1.1rem; }
.hero-rating .score { font-weight: 700; }
.hero-rating span:last-child { color: rgba(244,240,232,0.85); }

.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-md); }
.hero-pills span {
  background: rgba(26,34,40,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(244,240,232,0.22); color: var(--c-cream);
  padding: 0.45rem 0.95rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
}
.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: var(--c-accent-bright-deep); border-color: var(--c-accent-bright-deep); }

@media (max-width: 640px) {
  .hero { min-height: 90vh; }
  .hero-overlay { padding-bottom: clamp(1.4rem, 4vw, 1.8rem); }
}

/* ========================= FACTS STRIP ========================= */
.facts { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding: clamp(1rem, 2vw, 1.4rem) 0; }
.facts__row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 0.5rem; }
.facts__item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0.3rem 0.6rem; }
.facts__value { font-family: var(--font-display); color: var(--c-primary-deep); font-size: clamp(1.4rem, 2.6vw, 1.8rem); line-height: 1.05; letter-spacing: 0.02em; }
.facts__label { font-family: var(--font-body); color: var(--c-charcoal-mute); font-size: clamp(0.92rem, 1.3vw, 1.02rem); margin-top: 0.2rem; }
@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 + SUMMARY GRID ========================= */
.intro__body { max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.intro__body p:last-child { margin-bottom: 0; }

.experience-summary__grid {
  max-width: var(--w-wide); margin: 0 auto var(--space-xl);
  display: grid; grid-template-columns: 1fr; gap: var(--space-md);
}
@media (min-width: 720px) { .experience-summary__grid { grid-template-columns: 1fr 1fr; } }
.experience-summary__col {
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 { margin-bottom: var(--space-sm); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--c-travertine); color: var(--c-primary-deep); }
.experience-summary__col ul { list-style: none; margin: 0; padding: 0; }
.experience-summary__col li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; }
.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;
}
.experience-summary__cta { text-align: center; margin: 0; }

/* ========================= ITINERARY (experience + any numbered list) ========================= */
.itinerary__list { max-width: var(--w-wide); margin: 0 auto var(--space-xl); list-style: none; padding: 0; counter-reset: none; }
.itinerary__item { display: flex; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--c-travertine); }
.itinerary__item:last-child { border-bottom: 0; }
.itinerary__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--c-primary); flex: 0 0 auto; min-width: 2.4rem; }
.itinerary__item h3 { margin-bottom: 0.4rem; }
.itinerary__item p { margin: 0; }

/* ========================= GUIDED TOUR (featured card + widget) ========================= */
.guided { background: var(--c-travertine-soft); }
.guided__grid { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-xl); align-items: start; }
@media (min-width: 1024px) { .guided__grid { grid-template-columns: 1.05fr 0.95fr; } }
.guided__text .eyebrow { color: var(--c-primary-deep); }
.guided__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.9rem; margin: 0 0 var(--space-md); font-weight: 600; color: var(--c-charcoal); }
.guided__meta .stars { color: var(--c-accent); }
.guided__pill { background: var(--c-primary); color: var(--c-white); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.guided__list { list-style: none; margin: 0 0 var(--space-md); padding: 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; }
.guided__note { font-style: italic; color: var(--c-charcoal-mute); font-size: 0.95rem; }
.guided__widget { background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: 0.75rem; box-shadow: var(--shadow-sm); min-height: 320px; }

/* ========================= CARD GRID (highlights / why-choose) ========================= */
.card-grid { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm);
}
.card .eyebrow { margin-bottom: 0.4rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--c-charcoal); }
.why-choose .card { background: rgba(244,240,232,0.06); border-color: rgba(244,240,232,0.16); }
.why-choose .card h3 { color: var(--c-cream); }
.why-choose .card p { color: rgba(244,240,232,0.88); }
.why-choose .card .eyebrow { color: var(--c-accent-bright); }
.intro-lead { max-width: var(--w-read); margin: 0 auto var(--space-lg); text-align: center; }

/* ========================= STATS STRIP (Boston dark-history) ========================= */
.bos-stats { background: var(--c-travertine-soft); border-top: 1px solid var(--c-travertine); border-bottom: 1px solid var(--c-travertine); }
.bos-stats__row { list-style: none; margin: 0 auto; padding: 0; max-width: var(--w-wide); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (min-width: 720px) { .bos-stats__row { grid-template-columns: repeat(4, 1fr); } }
.bos-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-md); display: flex; flex-direction: column; align-items: center; text-align: center; }
.bos-stats__value { font-family: var(--font-display); color: var(--c-primary-deep); font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1; letter-spacing: 0.02em; }
.bos-stats__label { color: var(--c-charcoal-mute); font-size: 0.95rem; margin-top: 0.5rem; }

/* ========================= GALLERY (full-width) ========================= */
.gallery { background: var(--c-charcoal); color: var(--c-cream); }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: rgba(244,240,232,0.82); }
.gallery__wrapper { position: relative; margin-top: var(--space-lg); }
.gallery__wrapper--full { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.gallery__wrapper::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 12px; width: 80px; pointer-events: none;
  background: linear-gradient(90deg, rgba(26,36,41,0) 0%, var(--c-charcoal) 100%); z-index: 2;
}
.gallery__strip {
  display: flex; flex-wrap: nowrap; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--c-accent) rgba(244,240,232,0.15);
}
.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(244,240,232,0.12); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__item { flex: 0 0 78vw; max-width: 520px; scroll-snap-align: start; border-radius: var(--radius-md); overflow: hidden; background: rgba(0,0,0,0.3); }
@media (min-width: 720px) { .gallery__item { flex: 0 0 42vw; } }
@media (min-width: 1080px) { .gallery__item { flex: 0 0 30vw; } }
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(244,240,232,0.92); color: var(--c-charcoal); font-size: 1.6rem; line-height: 1;
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.gallery__arrow--prev { left: max(0.5rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow--next { right: max(0.5rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow:hover { background: var(--c-white); }
@media (min-width: 1080px) and (hover: hover) { .gallery__arrow { display: flex; } }

/* ========================= INCLUDED (2-col lists) ========================= */
.included__grid { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 720px) { .included__grid { grid-template-columns: 1fr 1fr; } }
.included__col { background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm); }
.included__col h3 { margin-bottom: var(--space-sm); }
.included__col ul { list-style: none; margin: 0; padding: 0; }
.included__col li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; }
.included__col--yes li::before { content: "✓"; color: var(--c-primary); }
.included__col--no li::before { content: "✕"; color: var(--c-charcoal-mute); }
.included__col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }

/* ========================= VS TABLE (3-col comparison) ========================= */
.vs-table__wrap { max-width: var(--w-wide); margin: 0 auto var(--space-md); 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; min-width: 560px; }
.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-olive); color: var(--c-cream); font-family: var(--font-body); font-weight: 700; }
.vs-table tbody th { background: var(--c-cream-soft); font-weight: 700; color: var(--c-primary-deep); white-space: nowrap; }
.vs-table td:first-of-type, .vs-table .vs-pick { color: var(--c-primary-deep); font-weight: 600; }
.vs-table tr:last-child td, .vs-table tbody tr:last-child th { border-bottom: 0; }
.vs-table__note { max-width: var(--w-read); margin: 0 auto; text-align: center; color: var(--c-charcoal-mute); }
.vs-table__note strong { color: var(--c-primary-deep); }

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

/* ========================= PRACTICAL INFO ========================= */
.practical__grid { max-width: var(--w-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@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 { margin-bottom: 0.4rem; }
.practical-card p { margin: 0; }

/* ========================= FAQ ========================= */
.faq__list { max-width: var(--w-wide); margin: 0 auto; }
.faq__item { border: 1px solid rgba(244,240,232,0.18); border-radius: var(--radius-md); margin-bottom: 0.7rem; background: rgba(244,240,232,0.05); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 1.1rem 1.3rem; 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.5rem; color: var(--c-accent-bright); line-height: 1; flex: 0 0 auto; }
.faq__item[open] summary::after { content: "–"; }
.faq__item .faq__a { padding: 0 1.3rem 1.2rem; color: rgba(244,240,232,0.90); }
.faq__item .faq__a p { margin: 0; color: rgba(244,240,232,0.90); }

/* ========================= ALSO (categories) ========================= */
.also { background: var(--c-travertine-soft); }
.also__grid { max-width: var(--w-wide); margin: 0 auto; 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: var(--space-lg); text-decoration: none; color: var(--c-charcoal);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.category-card .eyebrow { margin-bottom: 0.3rem; }
.category-card h3 { color: var(--c-primary-deep); margin-bottom: 0.5rem; }
.category-card p { color: var(--c-charcoal); margin-bottom: var(--space-sm); }
.category-card__featured { display: block; font-size: 0.88rem; color: var(--c-charcoal-mute); margin-bottom: 0.8rem; }
.category-card__cta { margin-top: auto; font-weight: 700; color: var(--c-primary); }
.category-card__cta::after { content: " →"; }

/* ========================= CTA BANNER ========================= */
.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-cream); }
.cta-banner__bullets { list-style: none; margin: 0 auto var(--space-md); padding: 0; display: inline-flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.cta-banner__bullets li { position: relative; padding-left: 1.6rem; color: rgba(244,240,232,0.92); }
.cta-banner__bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--c-accent-bright); 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: var(--c-accent-bright-deep); border-color: var(--c-accent-bright-deep); }
.cta-banner__disclosure { font-size: 0.82rem; color: rgba(244,240,232,0.7); margin-top: var(--space-md); margin-bottom: 0; }

/* ========================= FOOTER ========================= */
.site-footer { background: var(--c-charcoal); color: rgba(244,240,232,0.82); padding-block: var(--space-2xl) var(--space-lg); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: var(--c-cream); font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.site-footer .brand { display: inline-block; margin-bottom: var(--space-sm); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(244,240,232,0.82); text-decoration: none; }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer__bottom { border-top: 1px solid rgba(244,240,232,0.12); padding-top: var(--space-md); font-size: 0.82rem; color: rgba(244,240,232,0.62); display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between; }
.site-footer__bottom p { margin: 0; }

/* ========================= LEGAL PAGES ========================= */
.legal { padding-block: var(--section-py); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h1 { color: var(--c-primary-deep); margin-bottom: var(--space-sm); }
.legal__inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: var(--space-xl); }
.legal__updated { color: var(--c-charcoal-mute); font-size: 0.9rem; margin-bottom: var(--space-xl); }
.legal__inner a { color: var(--c-primary); }

/* 404 */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--section-py) 1rem; }
.notfound h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--c-primary); margin-bottom: 0.4rem; }

/* ========================= UTIL ========================= */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
