/* Hot Springs Guide - Spring page styles, v3 (beautified).
   Design language adapted from the Waterfalls Guide cascade-field-guide template:
   Fraunces display + Source Serif 4 body + Inter UI + JetBrains Mono numerics. */

:root {
  --ink: #111c1a;
  --ink-soft: #2a3a35;
  --ink-muted: #5e6e69;
  --mist: #f4f5ee;
  --paper: #ffffff;
  --paper-soft: #ede9da;
  --white: #ffffff;
  --night: #06090a;
  --night-2: #121915;
  --pool: #0d8f94;
  --pool-dark: #0a5d62;
  --pool-darker: #063b3e;
  --pool-bright: #4eb8ba;
  --water: #3f8fa6;
  --water-bright: #7cd6e7;
  --steam: #c9e3df;
  --clay: #b75e32;
  --clay-dark: #7d3c1a;
  --sun: #d9a83f;
  --sun-soft: #fbe7c4;
  --line: rgba(16, 22, 20, 0.13);
  --line-dark: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.74);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 80px rgba(6, 9, 7, 0.18);
  --shadow-soft: 0 14px 36px rgba(6, 9, 7, 0.10);
  --display: "Fraunces", "Source Serif Pro", Georgia, serif;
  --body: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1180px;
  --wide: 1480px;
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; background: var(--night); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.62;
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: var(--pool-dark); text-decoration: underline; text-decoration-color: currentColor; text-underline-offset: 3px; }
a:hover { color: var(--clay-dark); }
button, input { font: inherit; }
button { border: 0; cursor: pointer; color: inherit; }
p { margin: 0 0 14px; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
::selection { background: rgba(13, 143, 148, 0.28); }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper); color: var(--ink);
  padding: 10px 14px; border-radius: var(--radius);
  font-family: var(--ui); font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

/* Sticky glass nav */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  color: #fff;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  color: var(--ink);
  background: rgba(244, 245, 238, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: var(--wide); margin: 0 auto;
  min-height: 66px; padding: 10px 28px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 26px; align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: inherit; text-decoration: none;
  font-family: var(--ui); font-size: 13px; font-weight: 800;
  letter-spacing: 0; text-transform: uppercase;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #cdf4ef 0 22%, var(--pool) 23% 58%, var(--pool-darker) 59% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
  flex: 0 0 auto;
}
.brand span { display: grid; line-height: 1.05; }
.brand .b1 { font-weight: 800; }
.brand .b2 { font-weight: 600; opacity: 0.84; }
.nav-links {
  justify-self: center;
  display: flex; gap: 22px; align-items: center;
  font-family: var(--ui); font-size: 13px; font-weight: 700;
}
.nav-links a { color: inherit; text-decoration: none; opacity: 0.86; }
.nav-links a:hover { opacity: 1; color: inherit; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; min-height: 46px; padding: 11px 18px;
  border-radius: var(--radius);
  font-family: var(--ui); font-size: 14px; font-weight: 800;
  text-decoration: none; line-height: 1;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pool), var(--pool-darker));
  box-shadow: 0 14px 36px rgba(10, 93, 98, 0.30);
}
.btn-primary:hover { color: #fff; box-shadow: 0 20px 44px rgba(10, 93, 98, 0.36); }
.btn-secondary {
  color: var(--ink); background: var(--paper); border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink-muted); }
.btn-dark {
  color: #fff; background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.btn-dark:hover { color: #fff; background: rgba(255, 255, 255, 0.22); }
.btn-arrow::after { content: " →"; font-weight: 700; }

.affiliate-disclosure {
  margin: 12px 0 0;
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-muted);
}
.affiliate-disclosure a {
  color: inherit;
  text-decoration-thickness: 1px;
}

/* Hero */
.hero {
  position: relative; min-height: 92svh; color: #fff;
  overflow: hidden; background: var(--night); isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: var(--hero-position, center 42%);
  filter: saturate(1.06) contrast(1.04);
}
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 16%, rgba(124, 214, 231, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(3,8,6,.82) 0%, rgba(3,8,6,.32) 48%, rgba(3,8,6,.06) 100%),
    linear-gradient(180deg, rgba(3,8,6,.74) 0%, transparent 34%, rgba(3,8,6,.88) 100%);
}
.hero::after {
  z-index: 0;
  background: linear-gradient(180deg, transparent 76%, var(--mist) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--wide); margin: 0 auto;
  min-height: 92svh; padding: 122px 28px 56px;
  display: grid; align-content: end; gap: 30px;
}
.hero-copy { max-width: 880px; display: grid; gap: 18px; }

.crumbs {
  font-family: var(--ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em; color: rgba(255,255,255,.72);
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.crumbs a { color: rgba(255,255,255,.92); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs .sep { color: rgba(255,255,255,.42); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ui); font-size: 12px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--pool-dark);
}
.eyebrow.on-dark { color: var(--steam); }
.eyebrow svg { width: 14px; height: 14px; }

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-wrap: balance;
  max-width: 940px;
}

.hero-dek {
  max-width: 720px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
  font-family: var(--body);
  text-wrap: pretty;
}

.verified {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  color: rgba(255,255,255,.78);
  font-family: var(--ui); font-size: 13px; font-weight: 700;
}
.verified span { display: inline-flex; align-items: center; gap: 7px; }
.verified svg { width: 16px; height: 16px; color: var(--pool-bright); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

/* Hero dock (planner chips on a glass card) */
.hero-dock {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0,0,0,.28);
}
.dock-cell {
  min-height: 104px; padding: 18px;
  background: rgba(8,11,9,.42);
}
.dock-label {
  display: block; margin-bottom: 7px;
  color: rgba(255,255,255,.62);
  font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.dock-value {
  display: block; color: #fff;
  font-family: var(--ui); font-size: 17px; line-height: 1.18; font-weight: 800;
}
.dock-value.mono { font-family: var(--mono); font-size: 18px; }
.dock-note {
  display: block; margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-family: var(--ui); font-size: 12px; line-height: 1.35;
}

/* Section foundation */
.section {
  position: relative;
  padding: 80px 28px;
}
.section.dark { color: #fff; background: var(--night); }
.section.soft { background: var(--paper-soft); }
.section + .section { padding-top: 0; }
.wide-wrap { max-width: var(--wide); margin: 0 auto; }
.wrap { max-width: var(--max); margin: 0 auto; }

/* Answer + Plan two-column block */
.answer-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px;
  align-items: start;
}
.answer-panel, .plan-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.answer-panel { padding: 34px; }
.answer-label {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pool-dark);
}
.answer-panel h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.answer-body {
  font-family: var(--body);
  font-size: 18px; line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.answer-body strong { color: var(--ink); font-weight: 600; }
.check-list { display: grid; gap: 8px; margin: 14px 0 0; }
.check-list li {
  position: relative; padding-left: 26px;
  font-family: var(--ui); font-size: 14px; line-height: 1.45;
  color: var(--ink-soft); font-weight: 500;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--pool); font-weight: 800;
}
.verification-row {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-family: var(--ui); font-size: 12px; color: var(--ink-muted); font-weight: 600;
}

.plan-panel { display: grid; }
.plan-photo { position: relative; aspect-ratio: 4/3; background: #222; overflow: hidden; }
.plan-photo img { width: 100%; height: 100%; object-fit: cover; }
.plan-photo-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
  color: #fff; font-family: var(--ui); font-size: 12px; line-height: 1.4; font-weight: 500;
}
.plan-body { padding: 22px; display: grid; gap: 16px; }
.status-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.status-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--mist); border: 1px solid var(--line);
  font-family: var(--ui); font-size: 12px; font-weight: 700; color: var(--ink-soft);
}
.status-chip svg { width: 14px; height: 14px; color: var(--pool); }
.plan-actions { display: grid; gap: 8px; }

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec {
  background: var(--paper); padding: 24px 22px;
}
.spec svg { width: 22px; height: 22px; color: var(--pool); margin-bottom: 14px; }
.spec-label {
  display: block;
  font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 6px;
}
.spec-value {
  display: block; color: var(--ink);
  font-family: var(--ui); font-size: 18px; font-weight: 800; line-height: 1.2;
}
.spec-note {
  display: block; margin-top: 6px;
  font-family: var(--ui); font-size: 12px; line-height: 1.45;
  color: var(--ink-muted);
}

/* Body section headers */
.block-heading { display: grid; gap: 8px; margin-bottom: 28px; max-width: 760px; }
.block-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.block-heading p.lede {
  margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.55;
}

/* Verdict cards */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.verdict-card {
  padding: 28px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.verdict-card.worth { border-top: 5px solid var(--pool); }
.verdict-card.skip { border-top: 5px solid var(--clay); }
.verdict-card h3 {
  margin: 0 0 14px;
  font-family: var(--ui); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted);
}
.verdict-card ul { display: grid; gap: 12px; }
.verdict-card li {
  padding-left: 26px; position: relative;
  font-family: var(--body); font-size: 17px; line-height: 1.5;
  color: var(--ink-soft);
}
.verdict-card.worth li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pool);
}
.verdict-card.skip li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 14px; height: 3px;
  background: var(--clay);
}

/* Pool cards */
.pools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pool-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid; gap: 8px; align-content: start;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pool-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pool-card-head {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.pool-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--steam); color: var(--pool-dark);
}
.pool-icon svg { width: 16px; height: 16px; }
.pool-category {
  font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted);
}
.pool-card h3 {
  margin: 0;
  font-family: var(--display); font-size: 22px; line-height: 1.18;
  font-weight: 700; color: var(--ink);
}
.pool-card .pool-temp {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  background: var(--steam); color: var(--pool-darker);
  justify-self: start;
}
.pool-card .pool-temp.hot { background: var(--sun-soft); color: var(--clay-dark); }
.pool-card .pool-temp.cold { background: #d5e6ee; color: #2a4756; }
.pool-card .pool-spec {
  font-family: var(--ui); font-size: 13px; color: var(--ink-muted);
}
.pool-card .pool-best {
  margin: 6px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
}

/* Pricing panel */
.pricing-panel {
  padding: 30px;
  background: linear-gradient(180deg, var(--sun-soft) 0%, #fff 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.pricing-panel h3 {
  margin: 0 0 10px;
  font-family: var(--ui); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--clay-dark);
}
.pricing-panel p { margin: 0 0 14px; color: var(--ink-soft); font-size: 16px; }
.pricing-cta { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Drive table */
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.drive-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  font-family: var(--ui); box-shadow: var(--shadow-soft);
}
.drive-table th, .drive-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.drive-table thead th {
  background: var(--paper-soft);
  color: var(--ink-muted); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.drive-table tbody tr:last-child td { border-bottom: 0; }
.drive-table td:nth-child(2),
.drive-table td:nth-child(3) { font-family: var(--mono); color: var(--ink); font-weight: 600; }

/* Nearby */
.nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nearby-card {
  padding: 22px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  display: grid; gap: 10px; align-content: start;
}
.nearby-tag {
  display: inline-block; padding: 4px 10px;
  font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pool-dark); background: var(--steam);
  border-radius: 999px; justify-self: start;
}
.nearby-card h3 {
  margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.15;
  font-weight: 700; color: var(--ink);
}
.nearby-card p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.nearby-card a.btn { margin-top: 4px; font-size: 13px; min-height: 38px; padding: 8px 14px; }

/* Compare list */
.compare-list { display: grid; gap: 14px; }
.compare-item {
  padding: 22px 24px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  font-family: var(--body); font-size: 17px; line-height: 1.55; color: var(--ink-soft);
  display: grid; gap: 8px;
}
.compare-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  font-family: var(--ui);
}
.compare-item strong {
  font-family: var(--ui); color: var(--ink); font-weight: 800; font-size: 16px;
}
.compare-meta {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--ink-muted); letter-spacing: 0.02em;
}
.compare-item p { margin: 0; }

/* Story drop-cap and lede styling */
.story-body { max-width: 760px; }
.story-body p { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }
.story-body p.story-lede::first-letter {
  font-family: var(--display);
  font-weight: 700;
  float: left;
  font-size: 4.2em;
  line-height: 0.9;
  padding: 6px 14px 0 0;
  color: var(--pool-darker);
}
.story-body p.story-lede { font-size: 19px; }

/* On-this-page jump nav */
.on-this-page {
  position: sticky; top: 66px; z-index: 40;
  background: rgba(244, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; gap: 22px; overflow-x: auto;
  padding: 12px 28px;
  font-family: var(--ui); font-size: 13px; font-weight: 700;
  white-space: nowrap;
  scrollbar-width: thin;
  display: none;
}
@media (min-width: 1024px) {
  .on-this-page { display: flex; }
}
.on-this-page a {
  color: var(--ink-muted); text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.on-this-page a:hover { color: var(--ink); border-bottom-color: var(--pool); }

/* Sources block grouped */
.source-block { padding: 28px 30px; }
.source-meta { margin: 0 0 18px; font-size: 14px; color: var(--ink-muted); font-family: var(--ui); }
.source-meta a { color: var(--pool-dark); }
.source-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.source-group-head {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 10px;
  font-family: var(--ui); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.source-group-head svg { width: 16px; height: 16px; color: var(--pool); }
.source-group ul { display: grid; gap: 4px; margin: 0; padding: 0; }
.source-group li {
  list-style: none; padding-left: 14px; position: relative;
  font-family: var(--ui); font-size: 14px; line-height: 1.45;
}
.source-group li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--ink-muted);
}
.source-group a { color: var(--pool-dark); }

/* FAQ */
.faq-list { display: grid; gap: 0; }
details.faq {
  background: var(--paper); border: 1px solid var(--line); border-bottom: 0;
  padding: 18px 24px; font-family: var(--ui);
}
details.faq:first-of-type { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
details.faq:last-of-type { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: 1px solid var(--line); }
details.faq[open] { background: var(--paper-soft); }
details.faq summary {
  cursor: pointer; font-family: var(--ui); font-weight: 700;
  color: var(--ink); font-size: 17px; list-style: none;
  padding-right: 32px; position: relative;
}
details.faq summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 26px; font-weight: 300; color: var(--ink-muted);
  transition: transform 200ms ease;
}
details.faq[open] summary::after { content: "−"; }
details.faq p { margin: 12px 0 0; font-family: var(--body); font-size: 17px; color: var(--ink-soft); line-height: 1.55; }

/* Sidebar removed - everything is full-width now */

/* Source block */
.source-block {
  padding: 22px 26px;
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--pool);
  font-family: var(--ui); font-size: 14px; color: var(--ink-soft);
}
.source-block strong { color: var(--ink); }
.source-block ul { margin: 12px 0 0; padding-left: 20px; }
.source-block li { margin: 6px 0; list-style: disc; color: var(--ink-soft); }

/* Related rail */
.related-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: grid; gap: 8px; padding: 22px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  text-decoration: none; color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.related-tag {
  display: block; font-family: var(--ui); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pool-dark);
}
.related-card h3 { margin: 0; font-family: var(--display); font-size: 19px; font-weight: 700; line-height: 1.15; color: var(--ink); }
.related-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg); background: #222;
  box-shadow: var(--shadow-soft);
}
.gallery .g-1 { grid-row: 1 / span 2; grid-column: 1; }
.gallery .g-2 { grid-row: 1; grid-column: 2; }
.gallery .g-3 { grid-row: 1; grid-column: 3; }
.gallery .g-4 { grid-row: 2; grid-column: 2 / span 2; }
.image-note { margin-top: 12px; font-family: var(--ui); font-size: 12px; color: var(--ink-muted); }

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 56px 28px 60px;
  background: var(--night);
  color: rgba(255,255,255,.74);
  font-family: var(--ui); font-size: 14px;
}
.footer-inner {
  max-width: var(--wide); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { box-shadow: inset 0 0 0 2px rgba(255,255,255,.16); }
.site-footer h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; font-weight: 800; }
.site-footer ul { margin: 0; padding: 0; }
.site-footer li { margin: 7px 0; }
.site-footer a { color: rgba(255,255,255,.74); text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .answer-grid { grid-template-columns: 1fr; }
  .related-rail { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-dock { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero { min-height: 86svh; }
  .hero-inner { padding: 100px 22px 34px; }
  .hero h1 { font-size: clamp(38px, 8.6vw, 58px); overflow-wrap: anywhere; }
  .hero-dock { grid-template-columns: 1fr 1fr; }
  .verdict-grid, .pools-grid, .nearby-grid { grid-template-columns: 1fr; }
  .related-rail { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery .g-1 { grid-row: 1; grid-column: 1 / span 2; }
  .gallery .g-2 { grid-row: 2; grid-column: 1; }
  .gallery .g-3 { grid-row: 2; grid-column: 2; }
  .gallery .g-4 { grid-row: 3; grid-column: 1 / span 2; }
  .section { padding: 56px 22px; }
  .answer-panel { padding: 24px; }
  .nav-inner { padding: 10px 18px; gap: 12px; }
  .drive-table { min-width: 680px; }
}
