/* ==========================================================================
   krakowgolfcarttours.com — single stylesheet
   Palette: deep burgundy + warm gold + ivory + stone
   Fonts:   Cormorant Garamond (display) + Inter (body)
   Pattern: new-site-simple (golfcartsinrome.com lineage)
   ========================================================================== */

/* ===== TOKENS ============================================================ */
:root {
  /* COLOUR ROLES */
  --c-primary:        #8E2C3A;  /* Deep burgundy — CTAs, brand-led headings inverse */
  --c-primary-deep:   #6E1F2B;  /* Deeper burgundy — headings on light bg, btn hover */
  --c-accent:         #D4A24C;  /* Warm gold/amber — accent borders & icons */
  --c-accent-bright:  #E8B547;  /* Hero-CTA yellow + dark-bg eyebrow colour */
  --c-cream:          #FAF7F2;  /* Warm ivory — base light bg */
  --c-cream-soft:     #F2EEE8;  /* Soft stone — section-alt + card on cream */
  --c-travertine:     #E5DDD0;  /* Subtle surface / borders */
  --c-travertine-soft:#EFE5D2;  /* Light warm tan — Categories bg + featured-card outer */
  --c-olive:          #364865;  /* Dark slate blue — Why-choose, FAQ, Final CTA bg (kept legacy name) */
  --c-olive-deep:     #2A3850;  /* Deeper slate — hover / border */
  --c-olive-light:    #506783;  /* Lighter slate — cards & accordion items within olive sections */
  --c-charcoal:       #2A2622;  /* Dark espresso — gallery + body text on light */
  --c-footer-bg:      #564147;  /* Muted wine — footer background only */
  --c-charcoal-mute:  #5C544D;  /* Supporting text on light — AA on cream */
  --c-white:          #FFFFFF;

  /* TYPOGRAPHY */
  --font-display: "Cormorant Garamond", 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,.08);
  --shadow-md: 0 10px 28px rgba(0,0,0,.12);
  --shadow-lg: 0 18px 40px -14px rgba(0,0,0,.35);

  /* 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);
}

/* ===== RESET ============================================================= */
*, *::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: 17px;
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: var(--c-primary-deep); }
strong { font-weight: 600; color: var(--c-primary-deep); }
.hero strong { color: inherit; }    /* don't inherit dark on dark hero */
button { font: inherit; cursor: pointer; }

/* ===== TYPOGRAPHY ======================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-primary-deep); }
p  { margin: 0 0 var(--space-md); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}

/* ===== LAYOUT ============================================================ */
.container { width: var(--container); margin-left: auto; margin-right: auto; }
.section   { padding-block: var(--section-py); }
.section--alt        { background: var(--c-cream-soft); }
.section--travertine { background: var(--c-travertine-soft); }
.section--olive      { background: var(--c-olive); color: var(--c-cream); }
.section--dark       { background: var(--c-charcoal); color: var(--c-cream); }

.section[id]   { scroll-margin-top: 5.5rem; }
.section-head  { text-align: center; max-width: 820px; margin: 0 auto var(--space-xl); }
.section-head__sub {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--c-charcoal-mute);
  margin: var(--space-sm) 0 0;
}

/* Dark sections: invert eyebrow + section-head__sub colours */
.section--olive .eyebrow,
.section--dark  .eyebrow,
.cta-banner    .eyebrow,
.hero          .eyebrow,
.why-choose    .eyebrow,
.gallery       .eyebrow {
  color: var(--c-accent-bright);
}
.section--olive h1, .section--olive h2, .section--olive h3, .section--olive h4,
.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4 {
  color: var(--c-cream);
}
.section-head--dark .section-head__sub { color: rgba(250, 247, 242, 0.78); }

/* ===== BUTTONS =========================================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn--sm  { padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn--lg  { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--primary {
  background: var(--c-primary);
  color: var(--c-cream);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-primary-deep);
  color: var(--c-cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(250, 247, 242, 0.6);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: rgba(250, 247, 242, 0.12);
  border-color: var(--c-cream);
  color: var(--c-cream);
}
/* HERO YELLOW CTA — locked override, hero-only */
.hero .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}
.hero .btn--primary:hover, .hero .btn--primary:focus-visible {
  background: var(--c-accent);
  color: var(--c-charcoal);
  border-color: var(--c-accent);
}

/* ===== HEADER ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4.6rem;
  gap: var(--space-md);
}
.site-header__brand {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--c-primary-deep);
  text-decoration: none;
}
.brand-mark { color: var(--c-accent); font-size: 1.1em; }
.brand-name { letter-spacing: -0.005em; }

.site-nav ul {
  display: flex; align-items: center; gap: var(--space-lg);
}
.site-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-charcoal);
}
.site-nav a:hover { color: var(--c-primary-deep); }
.site-nav .btn { color: var(--c-cream); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--c-charcoal);
  margin: 0.3rem auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0.5rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.5rem) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-sm) 0;
  }
  .site-nav li { border-top: 1px solid var(--c-travertine); }
  .site-nav li:first-child { border-top: 0; }
  .site-nav a { display: block; padding: 0.95rem 1.5rem; }
  .site-nav .btn {
    margin: var(--space-sm) 1.5rem;
    display: block;
  }
}

/* ===== HERO ============================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--c-cream);
  background: var(--c-charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42,38,34,0.85) 0%, rgba(42,38,34,0.45) 45%, rgba(42,38,34,0) 100%);
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-block: var(--space-2xl) 5.5rem;
  max-width: 760px;
}
.hero h1 {
  color: var(--c-cream);
  margin-bottom: var(--space-md);
}
.hero-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: var(--space-md);
  max-width: 60ch;
  line-height: 1.55;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 0.08em; font-size: 1.05rem; }
.hero-rating .score { font-weight: 600; color: var(--c-cream); }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
}
.hero-pills span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(250, 247, 242, 0.36);
  border-radius: 999px;
  background: rgba(20, 15, 10, 0.35);
  color: var(--c-cream);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 640px) {
  .hero { min-height: 86vh; }
  .hero-overlay { padding-block: var(--space-xl) 5.5rem; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ===== FACTS STRIP ======================================================= */
.facts {
  background: var(--c-cream-soft);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  border-bottom: 1px solid var(--c-travertine);
}
.facts__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-lg);
  align-items: stretch;
}
.facts__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem 0.6rem;
}
.facts__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--c-primary-deep);
  line-height: 1.1;
}
.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 + .facts__item { border-left: 1px solid var(--c-travertine); }
}

/* ===== INTRO ============================================================= */
.intro__body {
  max-width: 820px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
  color: var(--c-charcoal);
}
.intro__body p { margin-bottom: var(--space-md); }

.experience-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  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) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-travertine);
  margin-bottom: var(--space-md);
}
.experience-summary__col ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.9rem;
  font-size: 0.99rem;
  line-height: 1.55;
}
.experience-summary__col ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary);
  color: var(--c-cream);
  font-size: 0.78rem;
  border-radius: 50%;
}
.experience-summary__cta {
  text-align: center;
  margin: 0;
}

/* ===== EXPERIENCE / ITINERARY  (5-step Florence) ========================= */
.itinerary__list {
  list-style: none;
  counter-reset: itin;
  display: grid;
  gap: var(--space-lg);
  max-width: 880px;
  margin: 0 auto var(--space-xl);
}
.itinerary__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.itinerary__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1;
  padding-top: 0.15rem;
}
.itinerary__item h3 { margin-bottom: 0.4rem; font-size: 1.18rem; }
.itinerary__item p  { font-size: 0.99rem; color: var(--c-charcoal); margin: 0; }

/* ===== FEATURED TOUR CARD  #guided-tour ================================== */
.guided-tour__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 1024px) {
  .guided-tour__grid {
    grid-template-columns: 1fr 380px;
    gap: var(--space-xl);
  }
}
.guided-tour__text {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.guided-tour__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--c-charcoal-mute);
}
.guided-tour__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-primary-deep);
}
.guided-tour__meta .dot { opacity: 0.5; }
.pill {
  display: inline-block;
  padding: 0.18rem 0.62rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--c-cream-soft);
  color: var(--c-primary-deep);
  border: 1px solid var(--c-travertine);
}
.pill--accent {
  background: rgba(212, 162, 76, 0.18);
  border-color: var(--c-accent);
  color: var(--c-primary-deep);
}
.guided-tour__meeting {
  margin-top: var(--space-md);
  font-size: 0.92rem;
  color: var(--c-charcoal-mute);
}
.check-list { margin: var(--space-md) 0; }
.check-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.9rem;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary);
  color: var(--c-cream);
  font-size: 0.78rem;
  border-radius: 50%;
}
.cross-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.9rem;
  font-size: 0.98rem;
  color: var(--c-charcoal-mute);
}
.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-travertine);
  color: var(--c-charcoal);
  font-size: 0.76rem;
  border-radius: 50%;
}
.guided-tour__widget {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  min-height: 360px;
}
.guided-tour__widget > div { width: 100%; }

/* ===== HIGHLIGHTS  4-card grid =========================================== */
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px)  { .highlights__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .highlights__grid { grid-template-columns: repeat(4, 1fr); } }
.highlight-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-top: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.highlight-card p  { font-size: 0.96rem; color: var(--c-charcoal); margin: 0; }

/* ===== GALLERY  (full-width) ============================================= */
.gallery .section-head { margin-bottom: var(--space-lg); }
.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__wrapper--full::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4rem;
  background: linear-gradient(90deg, rgba(42, 38, 34, 0) 0%, var(--c-charcoal) 100%);
  pointer-events: none;
}
.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) transparent;
  padding-block: var(--space-sm);
  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(250, 247, 242, 0.08); }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; }
.gallery__item {
  flex: 0 0 78vw;
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .gallery__item { flex: 0 0 54vw; } }
@media (min-width: 1080px) { .gallery__item { flex: 0 0 36vw; max-width: 520px; } }
.gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.gallery__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.92);
  color: var(--c-charcoal);
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 3;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.gallery__arrow:hover { background: var(--c-cream); }
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }
@media (min-width: 1080px) { .gallery__arrow { display: flex; align-items: center; justify-content: center; } }
@media (hover: none) { .gallery__arrow { display: none !important; } }

/* ===== INCLUDED  2-col lists ============================================= */
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 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) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.included__col h3 {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-travertine);
  margin-bottom: var(--space-md);
}

/* ===== WHY CHOOSE  4-card compare on olive =============================== */
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px)  { .why-choose__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why-choose__grid { grid-template-columns: repeat(4, 1fr); } }
.compare-card {
  background: var(--c-olive-light);
  border: 1px solid var(--c-olive-deep);
  border-top: 4px solid var(--c-accent-bright);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  color: var(--c-cream);
}
.compare-card h3 { color: var(--c-cream); font-size: 1.15rem; margin-bottom: 0.6rem; }
.compare-card p  { font-size: 0.95rem; color: rgba(250, 247, 242, 0.86); margin: 0; }

/* ===== REVIEWS =========================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews__grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-card__stars {
  color: var(--c-accent);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.review-card blockquote {
  margin: 0 0 var(--space-md);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--c-charcoal);
  flex-grow: 1;
}
.review-card figcaption {
  font-size: 0.88rem;
  color: var(--c-charcoal-mute);
}
.review-card figcaption strong { color: var(--c-primary-deep); }

/* ===== PRACTICAL INFO ==================================================== */
.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px)  { .practical__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .practical__grid { grid-template-columns: repeat(3, 1fr); } }
.practical__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.practical__item h3 {
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-travertine);
  margin-bottom: var(--space-sm);
}
.practical__item p {
  font-size: 0.96rem;
  color: var(--c-charcoal);
  margin: 0;
}

/* ===== FAQ accordion ===================================================== */
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-sm);
}
.faq__item {
  background: var(--c-olive-light);
  border: 1px solid var(--c-olive-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--transition);
}
.faq__item[open] {
  background: var(--c-olive-light);
  box-shadow: inset 0 0 0 1px rgba(250, 247, 242, 0.12);
}
.faq__item summary {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--c-cream);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--c-accent-bright);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.96rem;
  color: rgba(250, 247, 242, 0.88);
  margin: 0;
  line-height: 1.6;
}

/* ===== CATEGORIES #also ================================================== */
.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px) { .also__grid { grid-template-columns: 1fr 1fr; } }
.category-card {
  display: block;
  background: var(--c-cream-soft);
  color: var(--c-charcoal);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.category-card:hover, .category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
  color: var(--c-charcoal);
}
.category-card .eyebrow { color: var(--c-primary-deep); margin-bottom: 0.4rem; }
.category-card h3 {
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}
.category-card p {
  font-size: 0.97rem;
  color: var(--c-charcoal);
  margin-bottom: var(--space-md);
}
.category-card__featured {
  display: block;
  font-size: 0.88rem;
  color: var(--c-charcoal-mute);
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--c-travertine);
  margin-bottom: var(--space-sm);
}
.category-card__cta {
  display: inline-block;
  font-weight: 600;
  color: var(--c-primary);
  padding-top: 0.4rem;
}
.category-card__cta::after {
  content: " →";
  transition: transform var(--transition);
}
.category-card:hover .category-card__cta { color: var(--c-primary-deep); }

/* ===== FINAL CTA BANNER ================================================== */
.cta-banner__inner {
  max-width: 820px;
  text-align: center;
}
.cta-banner h2 { color: var(--c-cream); }
.cta-banner p  { color: rgba(250, 247, 242, 0.92); }
.cta-banner__bullets {
  display: inline-block;
  margin: var(--space-md) 0 var(--space-lg);
  text-align: left;
}
.cta-banner__bullets li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.9rem;
  color: rgba(250, 247, 242, 0.94);
  font-size: 1rem;
}
.cta-banner__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 1.3rem; height: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
}
.cta-banner__disclosure {
  font-size: 0.83rem;
  opacity: 0.78;
  margin: var(--space-sm) auto var(--space-md);
  max-width: 60ch;
}
.cta-banner__cta { margin: 0; }
.cta-banner .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}
.cta-banner .btn--primary:hover, .cta-banner .btn--primary:focus-visible {
  background: var(--c-accent);
  color: var(--c-charcoal);
  border-color: var(--c-accent);
}

/* ===== FOOTER ============================================================ */
.site-footer {
  background: var(--c-footer-bg);
  color: var(--c-cream);
  padding-block: var(--space-2xl) var(--space-md);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(250, 247, 242, 0.14);
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); }
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-cream);
  margin: 0 0 var(--space-sm);
}
.site-footer__col p { color: rgba(250, 247, 242, 0.82); font-size: 0.94rem; }
.site-footer__col h4 { color: var(--c-accent-bright); margin-bottom: var(--space-sm); }
.site-footer__col ul { display: grid; gap: 0.45rem; }
.site-footer__col a {
  color: rgba(250, 247, 242, 0.86);
  font-size: 0.94rem;
}
.site-footer__col a:hover { color: var(--c-accent-bright); }
.site-footer__bar {
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: rgba(250, 247, 242, 0.66);
  text-align: center;
}
@media (min-width: 720px) {
  .site-footer__bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer__bar p { margin: 0; }

/* ===== ACCESSIBILITY ===================================================== */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 3px;
}
.hero .btn:focus-visible {
  outline-color: var(--c-accent-bright);
}

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