/* ==========================================================================
   Spark Shark Electric — site.css
   Design system + components for sparkshark.com
   Brand: #0C192B navy · #F28C28 orange · #4A9BA5 teal · #FFD700 yellow · #F0F5F9 off-white · white body
   Source of truth: SparkShark_BrandingGuidlines.pdf (p.6 Primary, p.8 Background)
   ========================================================================== */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { line-height: 1.6; font-family: var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

/* === DESIGN TOKENS === */
:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Surfaces */
  --bg: #ffffff;
  --bg-elev: #F0F5F9;             /* Brand off-white per Brand Guide p.6 (was #f7fafc Tailwind) */
  --bg-deep: #0C192B;             /* Brand navy per Brand Guide p.6 */
  --bg-deep-2: #0f2138;

  /* Brand — web-tactical hybrid (Path B, 2026-05-09) */
  /* Print/static design = Brand Guide p.6/p.8 muted seafoam. */
  /* Web/CTAs = Tailwind sky-300 / teal-500 for conversion energy on backlit screens. */
  --accent: #7DD3FC;            /* Tailwind sky-300 — borders, chip-hover bg, faq accents (was brand #86E2DD; reverted for screen vibrance) */
  --accent-deep: #0369A1;       /* Tactical link color — WCAG AA 5.55:1 on white */
  --accent-hover: #075985;      /* Sky-800 */

  /* CTA palette — per SparkShark Brand Guide p.6 (Primary) + p.8 (Background variants) */
  --orange: #F28C28;          /* Brand primary orange — Call CTA */
  --orange-deep: #D9751F;     /* Darker hover — navy-text 5.48:1 */
  --orange-glow: rgba(242, 140, 40, .35);
  --teal: #14B8A6;            /* Tailwind teal-500 — Book Now CTA. Brand teal #4A9BA5 reads dim on backlit screens; reverted for conversion energy (Path B 2026-05-09). 7.09:1 navy-text. */
  --teal-deep: #2DD4BF;       /* Tailwind teal-400 (lighter for navy-text-friendly hover) — 9.11:1 navy contrast */
  --yellow: #FFD700;          /* Brand yellow per p.8 — tagline + lightning bolt accent */
  --yellow-deep: #E6C200;

  /* Text */
  --text: #0F172A;
  --text-soft: #334155;
  --text-muted: #64748B;
  --text-on-dark: #E6EDF7;
  --muted-on-dark: #94A3B8;

  /* Semantic */
  --emerg: #DC2626;
  --emerg-deep: #991B1B;
  --emerg-bg: #FEF2F2;

  /* Borders */
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-on-dark: #1E3A5F;

  /* Spacing (8pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 80px; --s-10: 120px;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .14);

  /* Layout */
  --container: 1140px;
  --container-narrow: 760px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.95rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { font-size: 1rem; line-height: 1.7; color: var(--text-soft); }
.lede { font-size: 1.125rem; color: var(--text-soft); }
.eyebrow { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-deep); margin-bottom: var(--s-3); }

/* === LAYOUT === */
.wrap { max-width: var(--container); margin: 0 auto; padding-left: var(--s-5); padding-right: var(--s-5); }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding-left: var(--s-5); padding-right: var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-7) 0; }
.section-dark { background: var(--bg-deep); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-on-dark); }
.section-dark p { color: var(--muted-on-dark); }
.section-elev { background: var(--bg-elev); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2); padding: var(--s-3) var(--s-5); border-radius: var(--r-pill); font-weight: 700; font-size: 1rem; line-height: 1.2; transition: transform .12s ease, background .12s ease, box-shadow .12s ease; min-height: 48px; border: 0; cursor: pointer; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary, .btn--orange { background: var(--orange); color: #0C192B; box-shadow: 0 0 0 0 var(--orange-glow), var(--shadow-md); }      /* navy text on brand orange — 6.27:1 (was #fff, 2.8:1) */
.btn--primary:hover, .btn--orange:hover { background: var(--orange-deep); color: #0C192B; box-shadow: 0 0 0 8px var(--orange-glow), var(--shadow-md); }
/* Secondary CTA — outline (Hick's Law / decision-paralysis fix). Background-deep contexts only.
   Teal #14B8A6 on navy #0C192B = 6.42:1, well above WCAG AA. */
.btn--teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); box-shadow: none; }
.btn--teal:hover { background: var(--teal); color: #0C192B; border-color: var(--teal); box-shadow: var(--shadow-md); }
.btn--emerg { background: var(--emerg); color: #fff; box-shadow: var(--shadow-md); }
.btn--emerg:hover { background: var(--emerg-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { background: var(--bg-elev); color: var(--text); }
.btn--ghost-light { background: transparent; color: var(--text-on-dark); border: 1.5px solid rgba(230,237,247,.35); }
.btn--ghost-light:hover { background: rgba(230,237,247,.08); color: var(--text-on-dark); }
.btn--lg { padding: var(--s-4) var(--s-6); font-size: 1.05rem; min-height: 56px; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-3) 0; }
.site-logo { display: flex; align-items: center; gap: var(--s-3); color: var(--text); font-weight: 700; font-size: 1.05rem; }
.site-logo:hover { text-decoration: none; color: var(--text); }
.site-logo img { height: 40px; width: auto; }
.site-nav { display: none; gap: var(--s-5); align-items: center; }
.site-nav a { color: var(--text-soft); font-weight: 500; font-size: .95rem; }
.site-nav a:hover { color: var(--accent-deep); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: var(--s-3); }
.header-cta__phone { display: none; color: var(--text); font-weight: 700; }
.header-cta .btn { padding: var(--s-2) var(--s-4); min-height: 40px; font-size: .9rem; }
.menu-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-md); color: var(--text); }
.menu-toggle:hover { background: var(--bg-elev); }
.menu-toggle svg { width: 24px; height: 24px; fill: currentColor; }
@media (min-width: 768px) {
  .site-nav { display: flex; }
  .header-cta__phone { display: inline; }
  .menu-toggle { display: none; }
}
.mobile-menu { display: none; padding: var(--s-4) var(--s-5) var(--s-6); border-top: 1px solid var(--border); background: var(--bg); }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: var(--s-3); }
.mobile-menu a { color: var(--text); font-weight: 500; padding: var(--s-2) 0; display: block; }

/* === HERO === */
.hero { background: var(--bg-deep); color: var(--text-on-dark); padding: var(--s-9) 0 var(--s-10); position: relative; overflow: hidden; }
.hero__inner { display: grid; gap: var(--s-7); position: relative; }
.hero__text { max-width: 640px; }
.hero h1 { color: var(--text-on-dark); margin-bottom: var(--s-4); font-size: clamp(1.65rem, 5vw, 3.25rem); line-height: 1.1; text-wrap: balance; overflow-wrap: break-word; hyphens: auto; }
.hero h1 .accent { color: var(--yellow); }
.hero__eyebrow { color: var(--yellow); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; margin-bottom: var(--s-3); display: block; }
.hero__eyebrow .alt { color: #fff; }
.hero__sub { font-size: 1.125rem; color: var(--muted-on-dark); margin-bottom: var(--s-6); max-width: 580px; overflow-wrap: break-word; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); color: var(--muted-on-dark); font-size: .92rem; }
.hero__trust li { display: flex; align-items: center; gap: var(--s-2); }
.hero__trust li::before { content: "✓"; color: var(--yellow); font-weight: 700; }
.hero__mascot { text-align: center; }
.hero__mascot img { width: 100%; max-width: 380px; height: auto; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.hero__bolt { position: absolute; left: -8px; top: var(--s-9); width: 36px; height: 56px; pointer-events: none; }
.hero__bolt svg { width: 100%; height: 100%; }
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1fr 380px; align-items: center; }
}

/* === COMPACT TRUST LINE under hero === */
.trust-line { background: var(--bg-deep-2); color: var(--muted-on-dark); padding: var(--s-3) 0; border-top: 1px solid var(--border-on-dark); border-bottom: 1px solid var(--border-on-dark); text-align: center; font-size: .9rem; }
.trust-line__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-4); align-items: center; }
.trust-line__star { color: var(--yellow); font-weight: 700; }
.trust-line__sep { color: var(--border-on-dark); }

/* === PROOF BAR === */
.proof { background: var(--bg-elev); padding: var(--s-5) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-3) var(--s-6); text-align: center; font-size: .9rem; color: var(--text-soft); font-weight: 600; }
.proof__list li { display: flex; align-items: center; gap: var(--s-2); }
.proof__list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); flex-shrink: 0; }

/* === EMERGENCY CALLOUT === */
.emerg { padding: var(--s-7) 0; }
.emerg__card { background: var(--emerg-bg); border: 2px solid var(--emerg); border-radius: var(--r-xl); padding: var(--s-6) var(--s-5); display: grid; gap: var(--s-4); align-items: center; }
.emerg__bolt { font-size: 2.2rem; line-height: 1; }
.emerg__eyebrow { display: inline-block; background: var(--emerg); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: var(--s-1) var(--s-3); border-radius: var(--r-pill); margin-bottom: var(--s-2); }
.emerg__h2 { font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--emerg-deep); margin-bottom: 0; }
@media (min-width: 720px) {
  .emerg__card { grid-template-columns: 60px 1fr auto; padding: var(--s-6); }
}

/* === SERVICES GRID === */
.services { padding: var(--s-9) 0; }
.services__head { text-align: center; max-width: 640px; margin: 0 auto var(--s-7); }
.services__grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 600px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.svc-card { display: block; padding: var(--s-5); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bg); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; color: var(--text); }
.svc-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--text); }
.svc-card__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: var(--s-4); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.svc-card p { font-size: .92rem; color: var(--text-muted); }

/* === WHY US === */
.why { padding: var(--s-9) 0; background: var(--bg-elev); }
.why__head { text-align: center; max-width: 640px; margin: 0 auto var(--s-7); }
.why__grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 720px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }
.why__item h3 { font-size: 1rem; margin-bottom: var(--s-2); }
.why__item p { font-size: .92rem; }
.why__num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--r-pill); background: var(--accent-deep); color: #fff; font-weight: 700; margin-bottom: var(--s-3); }

/* === SERVICE AREA === */
.area { padding: var(--s-9) 0; }
.area__head { text-align: center; max-width: 640px; margin: 0 auto var(--s-6); }
.chip-row { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; }
.chip { padding: var(--s-2) var(--s-4); border: 1px solid var(--border-strong); border-radius: var(--r-pill); font-size: .9rem; color: var(--text-soft); background: var(--bg); }
.chip--link { color: var(--accent-deep); border-color: var(--accent); }
.chip--link:hover { background: var(--accent); color: #0C192B; text-decoration: none; }    /* navy on brand light teal — 11.26:1 (was #fff, ~1.5:1 fail) */

/* === FINAL CTA === */
.final-cta { background: var(--bg-deep); color: var(--text-on-dark); padding: var(--s-10) 0; position: relative; overflow: hidden; }
.final-cta__inner { display: grid; gap: var(--s-6); position: relative; align-items: center; }
.final-cta__eyebrow { color: var(--yellow); font-weight: 700; font-size: 1.05rem; margin-bottom: var(--s-3); display: block; }
.final-cta__eyebrow .alt { color: #fff; }
.final-cta h2 { color: var(--text-on-dark); margin-bottom: var(--s-4); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; }
.final-cta p { color: var(--muted-on-dark); margin-bottom: var(--s-5); }
.final-cta__rating { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }
.final-cta__rating .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 0.05em; }
.final-cta__rating .num { color: #fff; font-weight: 700; font-size: 1.05rem; }
.final-cta__rating .reviews { color: var(--muted-on-dark); font-size: .92rem; }
.final-cta__rating a { color: var(--yellow); font-weight: 600; font-size: .92rem; text-decoration: underline; }
.final-cta__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }
.final-cta__lic { font-size: .82rem; color: var(--muted-on-dark); }
.final-cta__mascot img { width: 100%; max-width: 280px; height: auto; margin: 0 auto; }
@media (min-width: 880px) {
  .final-cta__inner { grid-template-columns: 1fr 320px; }
}

/* === FOOTER === */
.site-footer { background: #060d1a; color: var(--muted-on-dark); padding: var(--s-7) 0 var(--s-5); border-top: 1px solid var(--border-on-dark); }
.site-footer__inner { display: grid; gap: var(--s-6); margin-bottom: var(--s-6); }
@media (min-width: 720px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--text-on-dark); font-size: .95rem; margin-bottom: var(--s-3); }
.site-footer ul { display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer a { color: var(--muted-on-dark); font-size: .9rem; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.site-footer__brand p { color: var(--muted-on-dark); font-size: .9rem; margin-top: var(--s-3); line-height: 1.6; }
.site-footer__bottom { border-top: 1px solid var(--border-on-dark); padding-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; font-size: .82rem; color: var(--muted-on-dark); }
.site-footer__social { display: flex; gap: var(--s-3); }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--r-pill); border: 1px solid var(--border-on-dark); color: var(--muted-on-dark); }
.site-footer__social a:hover { background: var(--bg-deep-2); color: var(--accent); }

/* === GENERIC PAGE === */
.page-hero { background: var(--bg-deep); color: var(--text-on-dark); padding: var(--s-8) 0 var(--s-7); }
.page-hero h1 { color: var(--text-on-dark); margin-bottom: var(--s-3); }
.page-hero p { color: var(--muted-on-dark); font-size: 1.1rem; max-width: 720px; }
.page-hero__cta { margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3); }
.page-body { padding: var(--s-8) 0; }
.page-body h2 { margin: var(--s-7) 0 var(--s-3); }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { margin: var(--s-5) 0 var(--s-2); }
.page-body p, .page-body ul, .page-body ol { margin-bottom: var(--s-4); }
.page-body ul, .page-body ol { padding-left: var(--s-5); }
.page-body li { font-size: 1rem; line-height: 1.7; color: var(--text-soft); margin-bottom: var(--s-2); }
.page-body ul li { list-style: disc; }
.page-body ol li { list-style: decimal; }
.page-body strong { color: var(--text); }

/* === FAQ === */
.faq { padding: var(--s-9) 0; }
.faq__list { display: flex; flex-direction: column; gap: var(--s-3); max-width: 800px; margin: 0 auto; }
.faq details { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-4) var(--s-5); }
.faq details[open] { border-color: var(--accent); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; padding-right: var(--s-5); position: relative; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.5rem; line-height: 1; color: var(--accent-deep); transition: transform .15s; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: var(--s-3); color: var(--text-soft); }

/* === REVIEW STARS === */
.stars { color: #FBBF24; font-size: 1.2rem; letter-spacing: .12em; }

/* === FORM === */
.form { display: grid; gap: var(--s-4); max-width: 560px; }
.form label { font-weight: 600; font-size: .9rem; color: var(--text); display: block; margin-bottom: var(--s-2); }
.form input, .form textarea { width: 100%; padding: var(--s-3) var(--s-4); border: 1.5px solid var(--border-strong); border-radius: var(--r-md); font: inherit; color: var(--text); background: var(--bg); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(2,132,199,.15); }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; }

/* === ACCESSIBILITY === */
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; border-radius: var(--r-sm); }
.skip-link { position: absolute; top: -50px; left: 0; padding: var(--s-3); background: var(--bg-deep); color: var(--text-on-dark); z-index: 100; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === STICKY MOBILE CTA BAR === */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--bg-deep); border-top: 1px solid var(--border-on-dark); padding: var(--s-2); padding-bottom: calc(var(--s-2) + env(safe-area-inset-bottom)); box-shadow: 0 -4px 16px rgba(0,0,0,.18); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: var(--s-2); padding: var(--s-3); border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; min-height: 48px; margin: var(--s-1); }
  .mobile-cta__call { background: var(--orange); color: #0C192B; }      /* navy text — WCAG AA 6.27:1 */
  .mobile-cta__book { background: var(--teal); color: #0C192B; }        /* navy text — WCAG AA 6.43:1 */
  .mobile-cta a:hover { text-decoration: none; }
  /* Body padding so sticky bar doesn't cover footer */
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: var(--s-7); }
}

/* === REVIEWS CAROUSEL === */
.reviews-rating-line { text-align: center; font-size: 1.4rem; margin: 0 0 var(--s-2); }
.reviews-rating-line .stars { color: #FBBF24; letter-spacing: .12em; margin-right: var(--s-2); }
.reviews-rating-line strong { color: var(--text); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
  margin: var(--s-7) 0 var(--s-5);
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.review-card__stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: .12em; line-height: 1; }
.review-card__quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  font-style: normal;
  quotes: "\201C" "\201D";
}
.review-card__quote::before { content: open-quote; color: var(--text-muted); margin-right: 2px; }
.review-card__quote::after  { content: close-quote; color: var(--text-muted); margin-left: 2px; }
.review-card__cite { font-size: .9rem; color: var(--text-muted); }
.review-card__cite strong { color: var(--text-soft); font-weight: 600; }
.review-card__when { color: var(--text-muted); }
.review-platforms { margin-top: var(--s-6); display: flex; flex-direction: column; gap: var(--s-2); max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* === REDUCE MOTION === */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
