/* ============================================================
   sintrafromlisbontour.com — styles.css
   Palette: Deep Portuguese Green + Palace Terracotta + warm yellow accent
   Fonts: Playfair Display (display) + Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #B6602E;  /* Palace terracotta — CTAs, brand accent */
  --c-primary-deep:   #934A1F;  /* Deeper terracotta — headings on light, button hover, links */
  --c-accent:         #C27A42;  /* Secondary accent (gold/amber-like) — stars, decorative */
  --c-accent-bright:  #F2BD5C;  /* Hero-CTA yellow + dark-bg eyebrow + dark-bg drop cap */
  --c-accent-deep:    #A8501F;  /* Deep orange — step numbers + drop caps on LIGHT bg (AA-large pass) */
  --c-cream:          #F8F5EF;  /* Warm Ivory Mist — base light bg */
  --c-cream-soft:     #FBF0E6;  /* Light Peach Parchment — section-alt + card on cream */
  --c-travertine:     #D9DFEA;  /* Subtle blue-grey surface / borders */
  --c-travertine-soft:#EFE7DA;  /* Warm ivory tint — Categories bg + featured-card outer */
  --c-olive:          #31496B;  /* Deep Atlantic Blue — Why-choose / FAQ / Final-CTA bg */
  --c-olive-deep:     #233650;  /* Deeper Atlantic — hover / border */
  --c-charcoal:       #25292F;  /* Cool charcoal — body text, gallery + footer bg */
  --c-charcoal-mute:  #5F6873;  /* Secondary text — ≥4.5:1 on cream */
  --c-white:          #FFFFFF;  /* Pure white — intro grid cards */
  --c-atlantic:       #5A7FA8;  /* Atlantic Blue — decorative tints / accent */
  --c-atlantic-deep:  #3F628A;  /* Deep Atlantic — blue text/links if needed (AA pass) */
  --c-heading:        #3F628A;  /* Deep Atlantic — section/card headings on light bg */

  /* === TYPOGRAPHY === */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

  /* === LAYOUT === */
  --max-width:        1240px;
  --container:        min(1240px, 100% - 2rem);
  --container-narrow: min(820px, 100% - 2rem);
  --w-wide:           min(980px, 100% - 2rem);
  --w-read:           min(720px, 100% - 2rem);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --transition: 220ms ease;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 10px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(0, 0, 0, 0.35);

  /* === LEGACY/AUDIT ALIASES (literal hex for contrast_audit.py) === */
  --c-ice:           #F8F5EF;
  --c-navy:          #25292F;
  --c-ocean:         #31496B;  /* = real dark-section bg (--c-olive); audit models why-choose bg with this */
  --c-slate:         #5F6873;
  --c-amber:         #F2BD5C;
  --c-amber-bright:  #F2BD5C;
  --c-gold:          #FFFFFF;  /* = real footer-heading colour (white); audit models footer h3 with this */
}

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

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--c-heading); line-height: 1.18; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin-bottom: var(--space-md); }
strong { font-weight: 700; }
ul { list-style: none; padding: 0; }

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

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

/* === EYEBROW === */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
.section--dark .eyebrow, .section--olive .eyebrow,
.cta-banner .eyebrow, .hero .eyebrow, .why-choose .eyebrow,
.gallery .eyebrow { color: var(--c-accent-bright); }

/* === SECTION HEAD (centered) === */
.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-bottom: 0; }
.section--dark .section-head__sub, .section--olive .section-head__sub { color: var(--c-cream); opacity: .9; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); text-align: center; line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-deep); }
.btn--secondary { background: transparent; color: var(--c-cream); border-color: rgba(250,247,242,.6); }
.btn--secondary:hover { background: rgba(255,255,255,.12); border-color: var(--c-cream); }
.btn--ghost { background: var(--c-white); color: var(--c-primary-deep); border-color: var(--c-travertine); }
.btn--ghost:hover { border-color: var(--c-primary); background: var(--c-cream); }
.section--dark .btn--primary, .section--olive .btn--primary, .cta-banner .btn--primary { color: var(--c-white); }

/* === HEADER / NAV === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,245,239,.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  min-height: 64px;
}
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--c-primary-deep); white-space: nowrap; }
.brand:hover { text-decoration: none; }
.site-header nav { display: flex; justify-content: flex-end; gap: 22px; font-size: 17px; font-weight: 700; }
.site-header nav a { color: var(--c-charcoal); }
.site-header nav a:hover { color: var(--c-primary-deep); text-decoration: none; }
.site-header .nav-cta { justify-self: end; }
.nav .btn--primary, .site-header .nav-cta.btn--primary { color: var(--c-white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--c-charcoal); display: block; transition: var(--transition); }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto; }
  .nav-toggle { display: flex; }
  .site-header nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-cream); border-bottom: 1px solid var(--c-travertine);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .site-header nav.is-open { max-height: 420px; }
  .site-header nav a { padding: 14px 1rem; border-top: 1px solid var(--c-travertine); }
  .nav-cta { display: none; }
}

/* === HERO (two-zone, frosted panel) === */
.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; z-index: 0; }
/* No-panel hero variant (deviation from §7d rule #14): deeper two-axis gradient
   compensates for the removed frosted panel so the left-aligned text stays legible. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,24,36,.66) 0%, rgba(16,24,36,.34) 48%, rgba(16,24,36,.06) 100%),
    linear-gradient(180deg, rgba(16,24,36,.50) 0%, rgba(16,24,36,.20) 40%, rgba(16,24,36,.46) 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,.55); }
.hero h1 {
  color: var(--c-white); font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 2px 16px rgba(0,0,0,.45);
}
.hero strong { color: inherit; }
.hero-lede {
  color: var(--c-cream); font-size: clamp(1.05rem, 1.8vw, 1.22rem); margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 1px 10px rgba(0,0,0,.4);
}
.hero-rating { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; color: var(--c-cream); font-weight: 600; margin-bottom: 0; text-shadow: 0 1px 2px rgba(0,0,0,.55); }
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 2px; }
.hero-rating .score { font-weight: 700; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--space-lg); }
.hero-pills span {
  background: rgba(26,38,56,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--c-cream); border: 1px solid rgba(250,247,242,.22);
  padding: .4rem .85rem; border-radius: 999px; font-size: .9rem; font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero .btn--primary { background: var(--c-accent-bright); color: var(--c-charcoal); border-color: var(--c-accent-bright); }
.hero .btn--primary:hover { background: #e9ad44; border-color: #e9ad44; }
@media (max-width: 640px) { .hero-content { padding-bottom: 5rem; } }

/* === FACTS STRIP === */
.facts { background: var(--c-cream-soft); border-bottom: 1px solid var(--c-travertine); padding: clamp(1rem, 2vw, 1.4rem) 0; }
.facts__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem .5rem; max-width: var(--w-wide); margin-inline: auto; text-align: center; }
.facts__item { display: flex; flex-direction: column; gap: .1rem; padding: .4rem .6rem; }
.facts__value { font-family: var(--font-display); font-weight: 700; color: var(--c-primary-deep); font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.facts__label { font-family: var(--font-body); color: var(--c-charcoal-mute); font-size: clamp(.92rem, 1.3vw, 1.02rem); }
.facts__value .star { color: var(--c-accent); }
@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 + HUB === */
.intro__body { max-width: var(--w-read); margin: 0 auto var(--space-xl); }
.intro__body > p:first-of-type::first-letter,
.intro-lead::first-letter {
  font-family: var(--font-display); font-weight: 600; font-size: 2.2em; line-height: 1; color: var(--c-accent-deep);
}
.section--olive .intro-lead::first-letter, .section--dark .intro-lead::first-letter { color: var(--c-accent-bright); }

/* Visual hub */
.hub { max-width: var(--w-wide); margin: 0 auto var(--space-xl); }
.hub__head { text-align: center; margin-bottom: var(--space-lg); }
.hub__head .eyebrow { margin-bottom: .35rem; }
.hub__head h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--c-heading); }
.hub__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 600px) { .hub__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .hub__grid { grid-template-columns: 1fr 1fr 1fr; } }
.hub-card {
  display: flex; flex-direction: column; gap: .35rem;
  background: var(--c-white); border: 1px solid var(--c-travertine);
  border-left: 4px solid var(--c-primary); border-radius: var(--radius-md);
  padding: var(--space-md); box-shadow: var(--shadow-sm); color: var(--c-charcoal); transition: var(--transition);
}
a.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; border-left-color: var(--c-primary-deep); }
.hub-card__num { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--c-primary); }
.hub-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--c-heading); line-height: 1.25; }
.hub-card p { font-size: .96rem; color: var(--c-charcoal-mute); margin-bottom: 0; }
.hub-card__jump { margin-top: auto; padding-top: .3rem; font-weight: 700; font-size: .86rem; color: var(--c-primary-deep); }

/* Intro highlights/included grid */
.experience-summary__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-md);
  max-width: 1000px; margin: 0 auto var(--space-lg);
}
@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 { padding-bottom: .6rem; border-bottom: 2px solid var(--c-travertine); margin-bottom: var(--space-md); color: var(--c-heading); }
.experience-summary__col li { position: relative; padding-left: 1.8rem; margin-bottom: .7rem; }
.experience-summary__col li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white); font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.experience-summary__cta { text-align: center; margin: 0; }

/* === ITINERARY / EXPERIENCE (+ reality-check reuse) === */
.itinerary__list { max-width: var(--w-wide); margin: 0 auto var(--space-lg); display: grid; gap: var(--space-md); }
.itinerary__item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: start;
  background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md);
  padding: var(--space-lg); box-shadow: var(--shadow-sm);
}
.itinerary__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--c-primary); line-height: 1; }
.itinerary__item h3 { margin-bottom: .35rem; }
.itinerary__item p { margin-bottom: 0; color: var(--c-charcoal); }

/* === GUIDED merged card === */
.guided__grid {
  display: grid; grid-template-columns: 1fr; gap: 0; max-width: var(--w-wide); margin-inline: auto;
  background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.guided__mobilehead { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding: var(--space-md); border-bottom: 1px solid var(--c-travertine); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.guided__text { padding: var(--space-lg); }
.guided__widget { padding: var(--space-md); order: -1; border-bottom: 1px solid var(--c-travertine); background: var(--c-white); min-height: 320px; }
.guided__alltours { display: flex; width: 100%; margin-top: var(--space-md); border-color: var(--c-atlantic-deep); }
.guided__title-h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: .4rem 0 .6rem; color: var(--c-heading); }
.guided__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; margin-bottom: var(--space-md); font-weight: 600; }
.guided__meta .price { color: var(--c-primary-deep); font-weight: 700; }
.guided__meta .rating { color: var(--c-charcoal); }
.guided__meta .rating::before { content: "★ "; color: var(--c-accent); }
.guided__meta .dur { color: var(--c-charcoal-mute); }
.guided__meta .pill, .guided__mobilehead .pill { background: var(--c-cream-soft); color: var(--c-primary-deep); border: 1px solid var(--c-travertine); padding: .25rem .7rem; border-radius: 999px; font-size: .85rem; }
.guided__why { background: var(--c-cream-soft); border-left: 4px solid var(--c-accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: var(--space-md); margin-bottom: var(--space-md); }
.guided__why p { margin-bottom: 0; }
.guided__list { margin-bottom: var(--space-md); }
.guided__list li { position: relative; padding-left: 1.6rem; margin-bottom: .5rem; }
.guided__list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }
.guided__note { color: var(--c-charcoal-mute); font-size: .95rem; margin-bottom: 0; }
@media (min-width: 1024px) {
  .guided__grid { grid-template-columns: 1.05fr 0.95fr; }
  .guided__mobilehead { display: none; }
  .guided__widget { order: 0; border-bottom: 0; border-left: 1px solid var(--c-travertine); }
}
@media (max-width: 1023.98px) {
  .guided__title-h2, .guided__price-rating { display: none; }
  .guided__why { background: none; border-left: 0; padding: 0; border-radius: 0; }
}

/* === HIGHLIGHTS / card-grid === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  display: flex; flex-direction: column; gap: .4rem;
  background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md);
  padding: var(--space-lg); box-shadow: var(--shadow-sm); height: 100%;
}
.feature-card .eyebrow { margin-bottom: .2rem; font-size: 13px; }
.feature-card h3 { color: var(--c-heading); }
.feature-card p { margin-bottom: 0; color: var(--c-charcoal); font-size: .98rem; }
.section--dark .feature-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.section--dark .feature-card h3 { color: var(--c-cream); }
.section--dark .feature-card p { color: var(--c-cream); opacity: .92; }
.section--dark .feature-card .eyebrow { color: var(--c-accent-bright); }

/* === GALLERY === */
.gallery { background: var(--c-charcoal); color: var(--c-cream); }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: var(--c-cream); opacity: .85; }
.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, transparent, var(--c-charcoal));
}
.gallery__strip {
  display: flex; flex-wrap: nowrap; gap: .4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; scrollbar-width: thin; scrollbar-color: var(--c-accent) rgba(255,255,255,.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-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(255,255,255,.15); }
.gallery__item { margin: 0; flex: 0 0 78vw; max-width: 520px; scroll-snap-align: start; }
@media (min-width: 720px) { .gallery__item { flex-basis: 42vw; } }
@media (min-width: 1080px) { .gallery__item { flex-basis: 30vw; } }
.gallery__item img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-md); }
.gallery__item figcaption { font-size: .9rem; color: var(--c-cream); opacity: .8; padding-top: .45rem; }
.gallery__arrow {
  position: absolute; top: 40%; z-index: 3; display: none;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(248,245,239,.92); color: var(--c-charcoal); font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow-md);
}
.gallery__arrow--prev { left: max(1rem, calc((100vw - 1240px) / 2)); }
.gallery__arrow--next { right: max(1rem, calc((100vw - 1240px) / 2)); }
@media (min-width: 1080px) { .gallery__arrow { display: flex; align-items: center; justify-content: center; } }

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

/* === VS TABLE === */
.vs-table__wrap { max-width: var(--w-wide); margin: 0 auto; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-travertine); }
.vs-table { width: 100%; border-collapse: collapse; background: var(--c-white); min-width: 640px; }
.vs-table th, .vs-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--c-travertine); vertical-align: top; font-size: .98rem; }
.vs-table thead th { background: var(--c-cream-soft); font-family: var(--font-display); color: var(--c-heading); font-size: 1.05rem; }
.vs-table tbody th { font-weight: 700; color: var(--c-charcoal); background: var(--c-cream); width: 22%; }
.vs-table td:first-of-type, .vs-table .vs-feat { color: var(--c-primary-deep); font-weight: 700; }
.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-md) auto 0; text-align: center; color: var(--c-charcoal-mute); }
.vs-table__note strong { color: var(--c-primary-deep); }

/* === REVIEWS === */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin: 0 auto 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); display: flex; flex-direction: column; gap: .6rem; }
.review-card .stars { color: var(--c-accent); letter-spacing: 2px; }
.review-card p { margin-bottom: 0; font-size: .98rem; }
.review-card cite { font-style: normal; font-weight: 700; color: var(--c-primary-deep); font-size: .92rem; }
.reviews__provenance { text-align: center; color: var(--c-charcoal-mute); font-size: .92rem; max-width: var(--w-read); margin-inline: auto; }

/* === PRACTICAL INFO === */
.practical__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 720px) { .practical__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .practical__grid { grid-template-columns: repeat(3, 1fr); } }
.practical-card { background: var(--c-white); border: 1px solid var(--c-travertine); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm); }
.practical-card h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--c-heading); }
.practical-card p { margin-bottom: 0; font-size: .97rem; color: var(--c-charcoal); }

/* === FAQ === */
.faq__list { max-width: var(--w-wide); margin: 0 auto; display: grid; gap: .7rem; }
.faq__item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: var(--space-md); font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--c-cream); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--c-accent-bright); font-size: 1.4rem; line-height: 1; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 var(--space-md) var(--space-md); margin: 0; color: var(--c-cream); opacity: .92; }

/* === ALSO (Layout A) === */
.also { background: var(--c-travertine-soft); }
.also__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); max-width: var(--w-wide); margin-inline: auto; }
@media (min-width: 720px) { .also__grid { grid-template-columns: 1fr 1fr; } }
.category-card {
  display: flex; flex-direction: column; gap: .35rem;
  background: var(--c-cream-soft); border: 1px solid var(--c-travertine); border-radius: var(--radius-md);
  padding: var(--space-lg); box-shadow: var(--shadow-sm); color: var(--c-charcoal); transition: var(--transition); overflow: hidden;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); text-decoration: none; }
.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)) .6rem; transition: transform var(--transition);
}
.category-card:hover .category-card__img { transform: scale(1.04); }
.category-card .eyebrow { margin-bottom: .1rem; font-size: 13px; }
.category-card h3 { color: var(--c-heading); }
.category-card p { font-size: .96rem; color: var(--c-charcoal); margin-bottom: 0; }
.category-card__featured { font-size: .88rem; color: var(--c-charcoal-mute); }
.category-card__cta { margin-top: auto; padding-top: .4rem; font-weight: 700; color: var(--c-primary-deep); }

/* === FINAL CTA === */
.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 p { color: var(--c-cream); opacity: .92; }
.cta-banner ul { display: flex; flex-direction: column; width: max-content; max-width: 100%; margin: 0 auto var(--space-lg); text-align: left; gap: .5rem; }
.cta-banner ul li { position: relative; padding-left: 1.8rem; }
.cta-banner ul li::before { content: "✓"; position: absolute; left: 0; color: var(--c-accent-bright); font-weight: 700; }
.cta-banner .btn--primary { display: inline-flex; margin: 0 auto; }
.cta-banner__disclosure { font-size: .85rem; opacity: .8; margin: var(--space-md) auto 0; max-width: 560px; }

/* === FOOTER === */
.site-footer { background: var(--c-charcoal); color: var(--c-cream); padding-block: var(--space-2xl) var(--space-lg); }
.site-footer__grid { width: var(--container); margin-inline: auto; display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: var(--c-white); margin-bottom: var(--space-md); font-size: 1.1rem; }
.site-footer p, .site-footer li { color: var(--c-cream); opacity: .82; font-size: .95rem; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--c-cream); }
.site-footer a:hover { color: var(--c-accent-bright); text-decoration: none; }
.site-footer__bottom { width: var(--container); margin: var(--space-xl) auto 0; padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; opacity: .78; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__bottom .disclosure { line-height: 1.55; }

/* === STICKY CTA (mobile) === */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta {
    display: flex; position: fixed; inset: auto 0 0 0; z-index: 60;
    align-items: center; justify-content: space-between; gap: .75rem;
    padding: .6rem 1rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(26,38,56,.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(250,247,242,.16); box-shadow: 0 -8px 24px -12px rgba(0,0,0,.5);
    transform: translateY(100%); transition: transform .25s ease;
  }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta[hidden] { display: none; }
  .sticky-cta__meta { color: var(--c-cream); font-weight: 600; font-size: .9rem; white-space: nowrap; }
  .sticky-cta .btn--primary { flex: 0 0 auto; padding: .7rem 1.2rem; background: var(--c-accent-bright); color: var(--c-charcoal); border-color: var(--c-accent-bright); }
}

/* === LEGAL PAGES === */
.legal { padding-block: var(--section-py); }
.legal__inner { max-width: var(--w-read); margin: 0 auto; }
.legal__inner h1 { color: var(--c-heading); margin-bottom: var(--space-md); }
.legal__inner h2 { font-size: 1.4rem; margin: var(--space-lg) 0 var(--space-sm); }
.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 a { color: var(--c-primary-deep); text-decoration: underline; }
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--section-py) 1rem; }
.error-page h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--c-heading); }
