/* ════════════════════════════════════════════════════════════════
   waterionizer.com.sg — design system
   ──────────────────────────────────────────────────────────────────
   Editorial / magazine aesthetic. Calm authority, not salesy.
   Different palette + typography from Prime Water on purpose —
   signals "independent" review site to visitors.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --ink:        #1c1917;       /* near-black, body text */
  --ink-2:      #44403c;       /* muted body */
  --ink-faint:  #78716c;       /* metadata */
  --paper:      #fafaf9;       /* warm off-white background */
  --paper-2:    #f5f5f4;       /* card surfaces */
  --line:       #e7e5e4;       /* hairline divider */
  --teal:       #0e7490;       /* primary accent — ocean */
  --teal-dark:  #155e75;
  --teal-soft:  #ecfeff;       /* tint */
  --gold:       #f59e0b;       /* stars / ratings */
  --gold-soft:  #fef3c7;       /* tint */
  --rose:       #be123c;       /* warnings / disclosure */
  --green:      #15803d;       /* recommendation */

  /* Typography */
  --serif:      'Source Serif 4', 'Source Serif Pro', 'Iowan Old Style', 'Times New Roman', serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:       'JetBrains Mono', 'SF Mono', Monaco, Consolas, monospace;

  /* Spacing scale */
  --gutter: 24px;
  --max-w:  1100px;
}

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ─────────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 760px; }
.wrap--wide   { max-width: 1320px; }

section { padding: 64px 0; }
section.section-tight { padding: 36px 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.018em; color: var(--ink); margin: 0 0 0.5em; }
h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.18; }
h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.3; }
h4 { font-size: 17px; line-height: 1.4; }
p  { margin: 0 0 1.1em; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
p strong { color: var(--ink); }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-2); }
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
a { color: var(--teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal-dark); }
a.underline { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(14,116,144,0.35); }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,249,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter); max-width: var(--max-w); margin: 0 auto;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 19px;
  letter-spacing: -0.015em; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.brand__logo {
  height: 38px; width: 38px;            /* square tile */
  object-fit: cover;                     /* crops to perfect square if image is wider */
  display: block;
  border-radius: 9px;                    /* premium rounded-square */
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12), 0 1px 2px rgba(10, 37, 64, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover .brand__logo {
  transform: translateY(-1px) rotate(-2deg);  /* subtle playful lift */
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.18), 0 2px 4px rgba(10, 37, 64, 0.10);
}
.brand__wordmark {
  display: inline-flex; align-items: baseline;
  line-height: 1;
}
.brand__wordmark .dot {
  color: var(--ink-faint); font-weight: 400; margin-left: 1px;
}
/* Footer logo — slightly larger drop-shadow for the dark bg */
footer .brand__logo {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
/* Legacy small mark (still used in float button + exit modal) */
.brand__mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--mono); font-size: 13px; font-weight: 700;
}
@media (max-width: 600px) {
  .brand__logo { height: 34px; width: 34px; border-radius: 8px; }
  .brand { font-size: 17px; gap: 9px; }
}
.nav {
  display: flex; gap: 26px; align-items: center;
}
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active { color: var(--ink); border-bottom-color: var(--teal); }
.nav__cta {
  background: var(--ink); color: #fff !important;
  padding: 9px 16px !important; border-radius: 999px;
  font-size: 13.5px !important; border-bottom: 0 !important;
}
.nav__cta:hover { background: var(--teal); color: #fff; }
@media (max-width: 720px) {
  /* Hide the desktop nav entirely on mobile — the hamburger drawer
     (injected by js/mobile-nav.js) replaces it. */
  .nav { display: none; }
}

/* ── Mobile hamburger button + drawer (injected by js/mobile-nav.js) ── */
.mob-hamb {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}
@media (max-width: 720px) {
  .mob-hamb { display: inline-flex; align-items: center; justify-content: center; }
}
.mob-hamb svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2; fill: none; }

#mob-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
#mob-drawer.is-open { opacity: 1; pointer-events: auto; }
#mob-drawer .mob-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(86vw, 360px); height: 100%;
  background: #fff;
  padding: 26px 24px 32px;
  box-shadow: -16px 0 40px rgba(10,37,64,0.25);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .26s cubic-bezier(.2,.85,.3,1);
  overflow-y: auto;
}
#mob-drawer.is-open .mob-drawer__panel { transform: translateX(0); }
.mob-drawer__close {
  background: transparent; border: 0;
  padding: 6px; margin: 0 0 18px auto;
  cursor: pointer; color: var(--ink-faint);
  display: flex; font-size: 24px; line-height: 1;
}
.mob-drawer__close:hover { color: var(--ink); }
.mob-drawer__brand {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--ink); margin: 0 0 4px;
}
.mob-drawer__sub {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 22px;
}
.mob-drawer__links { display: flex; flex-direction: column; gap: 2px; }
.mob-drawer__links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.mob-drawer__links a:hover { color: var(--teal-dark); }
.mob-drawer__links a.is-active { color: var(--teal-dark); font-weight: 600; }
.mob-drawer__links a::after {
  content: '→'; color: var(--ink-faint); font-size: 16px;
  transition: transform .15s, color .15s;
}
.mob-drawer__links a:hover::after { transform: translateX(3px); color: var(--teal); }
.mob-drawer__foot {
  margin-top: auto; padding-top: 22px;
  font-size: 12px; color: var(--ink-faint); line-height: 1.55;
}
.mob-drawer__foot a { color: var(--brand); text-decoration: underline; }

/* Compare-table mobile readability: smaller padding on tight screens */
@media (max-width: 600px) {
  .compare-table { font-size: 13px; }
  .compare-table thead th { padding: 10px 8px; font-size: 10px; }
  .compare-table td { padding: 10px 8px; }
  .compare-table .brand-cell strong { font-size: 14px; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 64px;
  background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
  border-bottom: 1px solid var(--line);
}
.hero__tagline {
  display: inline-block;
  background: var(--teal-soft); color: var(--teal-dark);
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { max-width: 880px; }
.hero__lede { max-width: 660px; font-size: 21px; color: var(--ink-2); }
.hero__meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-faint); text-transform: uppercase;
}
.hero__meta strong { color: var(--ink); font-weight: 600; }

/* ── Top picks band ─────────────────────────────────────────── */
.picks { background: #fff; border-bottom: 1px solid var(--line); padding: 40px 0; }
.picks__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.picks__title {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 600;
}
.picks__updated { font-size: 12px; color: var(--ink-faint); font-family: var(--mono); }
.picks__grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pick {
  border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
}
.pick:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,25,23,0.07); border-color: var(--teal); }
.pick__badge {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700;
  padding: 5px 10px; border-radius: 6px;
}
.pick__badge--best  { background: var(--gold-soft); color: #92400e; }
.pick__badge--value { background: #dcfce7; color: #166534; }
.pick__badge--premium { background: #ede9fe; color: #5b21b6; }
.pick__brand { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.pick__name { font-family: var(--serif); font-size: 23px; font-weight: 700; line-height: 1.2; color: var(--ink); margin: 0; }
.pick__price { font-size: 14.5px; color: var(--ink-2); }
.pick__price strong { color: var(--ink); font-weight: 600; }
.pick__why { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 4px 0 0; }
.pick__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.pick__rating .stars { color: var(--gold); letter-spacing: 1px; }

/* ── Article grid ───────────────────────────────────────────── */
.articles { padding: 64px 0; }
.articles__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.articles__head a { font-size: 14px; font-weight: 500; }
.articles__grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.article-card {
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--line); padding-bottom: 22px;
  transition: border-color .2s;
}
.article-card:hover { border-bottom-color: var(--teal); }
.article-card:hover h3 { color: var(--teal); }
.article-card__kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.article-card h3 { font-size: 22px; margin: 0; transition: color .15s; }
.article-card p { font-size: 14.5px; margin: 0; }
.article-card__meta { font-size: 12.5px; color: var(--ink-faint); font-family: var(--mono); letter-spacing: 0.04em; }

/* ── Comparison preview / table ────────────────────────────── */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead th {
  background: var(--paper-2); text-align: left;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 600;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.compare-table thead th.num { text-align: right; }
.compare-table td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table td.num { text-align: right; font-family: var(--mono); font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--paper-2); }
.compare-table .brand-cell { display: flex; flex-direction: column; gap: 2px; }
.compare-table .brand-cell strong { font-size: 15.5px; color: var(--ink); }
.compare-table .brand-cell span { font-size: 12px; color: var(--ink-faint); }
.compare-table .badge-best { background: var(--gold-soft); color: #92400e; padding: 3px 8px; border-radius: 4px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; }

/* ── Singapore band ─────────────────────────────────────────── */
.sg-band {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  color: #fff; padding: 72px 0;
}
.sg-band h2 { color: #fff; }
.sg-band p { color: rgba(255,255,255,0.85); }
.sg-band .eyebrow { color: #67e8f9; }
.sg-band a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
.sg-band a:hover { border-bottom-color: #fff; }
.sg-band__grid {
  display: grid; gap: 26px;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
}
@media (max-width: 720px) { .sg-band__grid { grid-template-columns: 1fr; } }
.sg-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px; padding: 22px;
}
.sg-stat__v { font-family: var(--serif); font-size: 34px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.sg-stat__l { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; }

/* ── Newsletter / capture ──────────────────────────────────── */
.capture {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 40px 36px;
  margin: 48px 0; text-align: center;
}
.capture h3 { margin-top: 0; }
.capture form { display: flex; gap: 8px; max-width: 440px; margin: 16px auto 0; }
.capture input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14.5px; font-family: inherit; outline: none;
}
.capture input:focus { border-color: var(--teal); }
.capture button {
  background: var(--ink); color: #fff; border: 0; padding: 0 22px;
  border-radius: 10px; font-weight: 600; cursor: pointer; font-family: inherit;
  font-size: 14.5px;
}
.capture button:hover { background: var(--teal); }

/* ── Footer ────────────────────────────────────────────────── */
body > footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 56px 0 40px; }
body > footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 720px) { body > footer .wrap { grid-template-columns: 1fr 1fr; } }
body > footer h4 { color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
body > footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
body > footer a { color: rgba(255,255,255,0.75); font-size: 14px; }
body > footer a:hover { color: #fff; }
body > footer .foot-brand p { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; }
body > footer .foot-brand .brand { color: #fff; }
body > footer .disclosure {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 40px; padding-top: 20px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: var(--mono); letter-spacing: 0.04em; line-height: 1.6;
}

/* ── Article (review / guide page) ─────────────────────────── */
.article-head {
  padding: 56px 0 36px;
  background: linear-gradient(180deg, #fafaf9 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.article-head .breadcrumb {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-faint); margin-bottom: 18px;
}
.article-head .breadcrumb a { color: var(--ink-faint); }
.article-head .breadcrumb a:hover { color: var(--teal); }
.article-head h1 { max-width: 780px; }
.article-head .lede { max-width: 720px; }
.article-head__meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-faint);
  margin-top: 20px;
}
.article-head__meta strong { color: var(--ink); font-weight: 600; }

.article-body { padding: 48px 0 72px; }
.article-body p, .article-body li { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.article-body h2, .article-body h3 { margin-top: 1.4em; }
.article-body h2 { margin-bottom: 12px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 1.4em; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 1.6em 0; padding: 18px 24px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  font-style: italic; color: var(--ink);
  border-radius: 0 8px 8px 0;
}

/* ── Verdict card (top of brand review) ──────────────────── */
.verdict {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 30px; margin: 0 0 40px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 28px;
}
@media (max-width: 720px) { .verdict { grid-template-columns: 1fr; padding: 22px; } }
.verdict__rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.verdict__score {
  font-family: var(--serif); font-size: 44px; font-weight: 700;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.verdict__score-out { font-size: 18px; color: var(--ink-faint); font-weight: 500; margin-left: 4px; }
.verdict__stars { font-size: 18px; color: var(--gold); letter-spacing: 2px; }
.verdict__tag {
  display: inline-block; background: var(--green); color: #fff;
  padding: 5px 12px; border-radius: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.verdict__summary { color: var(--ink-2); font-size: 16px; line-height: 1.65; margin: 0; }
.verdict__buy {
  border-left: 1px solid var(--line); padding-left: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 720px) { .verdict__buy { border-left: 0; padding-left: 0; padding-top: 22px; border-top: 1px solid var(--line); } }
.verdict__price-row { display: flex; align-items: baseline; gap: 10px; }
.verdict__price { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); }
.verdict__price-strike { font-size: 14px; color: var(--ink-faint); text-decoration: line-through; }
.verdict__buy a {
  display: block; text-align: center; padding: 12px 22px;
  border-radius: 999px; font-weight: 600; font-size: 14.5px;
  text-decoration: none; transition: all .15s;
}
.verdict__buy .primary { background: var(--ink); color: #fff; }
.verdict__buy .primary:hover { background: var(--teal); }
.verdict__buy .secondary { color: var(--ink); border: 1.5px solid var(--line); }
.verdict__buy .secondary:hover { border-color: var(--teal); color: var(--teal); }

/* ── Pros / Cons ────────────────────────────────────────────── */
.proscons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 32px 0;
}
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }
.procon { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; }
.procon h4 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700;
  margin: 0 0 14px; padding-bottom: 10px;
}
.procon--pro h4 { color: var(--green); border-bottom: 2px solid var(--green); }
.procon--con h4 { color: var(--rose); border-bottom: 2px solid var(--rose); }
.procon ul { margin: 0; padding-left: 22px; list-style: none; }
.procon li { position: relative; padding-left: 16px; margin-bottom: 8px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.procon--pro li::before {
  content: '✓'; position: absolute; left: -8px; top: 0;
  color: var(--green); font-weight: 700;
}
.procon--con li::before {
  content: '−'; position: absolute; left: -6px; top: 0;
  color: var(--rose); font-weight: 700;
}

/* ── Spec rows (inline brand reviews) ──────────────────────── */
.spec-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 600;
  padding-top: 2px;
}
.spec-row dd { margin: 0; color: var(--ink); font-weight: 500; }
@media (max-width: 600px) {
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ── Callout / sponsored / disclosure ──────────────────────── */
.callout {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: 16px 22px; border-radius: 0 8px 8px 0;
  margin: 32px 0; font-size: 14.5px;
}
.callout strong { color: #92400e; }
.disclosure-banner {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 22px;
  margin: 0 0 32px; font-size: 13.5px; color: var(--ink-2);
}
.disclosure-banner strong { color: var(--ink); }

/* ── "Skip the research" — site-wide CTA to Prime Water ─────── */
.skip-cta {
  background: linear-gradient(135deg, #0a2540 0%, #1e5ba8 100%);
  border-radius: 16px; padding: 32px 36px; margin: 56px 0;
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.skip-cta::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.skip-cta__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #67e8f9; font-weight: 700;
  margin-bottom: 12px;
}
.skip-cta h3 {
  color: #fff; font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.skip-cta p {
  color: rgba(255,255,255,0.85); max-width: 540px;
  margin: 0 auto 22px; font-size: 15px; line-height: 1.6;
}
.skip-cta__btn {
  display: inline-block; background: #fff; color: #0a2540;
  padding: 13px 28px; border-radius: 999px; font-weight: 600;
  font-size: 15px; text-decoration: none; transition: all .15s;
}
.skip-cta__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); color: #0a2540; }
.skip-cta__sub {
  display: block; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ── Hub-page index cards ──────────────────────────────────── */
.hub-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 36px 0;
}
.hub-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: all .2s ease;
}
.hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(28,25,23,0.06);
}
.hub-card__tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal-dark);
}
.hub-card__tag--gold  { background: var(--gold-soft); color: #92400e; }
.hub-card__tag--rose  { background: #fce7f3; color: #9f1239; }
.hub-card__tag--green { background: #dcfce7; color: #166534; }
.hub-card h3 {
  font-size: 21px; margin: 4px 0 6px; line-height: 1.3;
}
.hub-card__meta {
  font-size: 12.5px; color: var(--ink-faint);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.hub-card p { font-size: 14.5px; margin: 0; }

/* ── "Coming soon" badge (for stub pages) ───────────────────── */
.stub {
  background: var(--paper-2); border: 1px dashed var(--line);
}
.stub .hub-card__tag { background: #e5e5e4; color: var(--ink-faint); }
.stub h3 { color: var(--ink-2); }

/* ── Hub hero (lighter than article hero) ─────────────────── */
.hub-hero {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
}
.hub-hero h1 { max-width: 760px; }
.hub-hero .lede { max-width: 640px; }

/* ── Related cards strip (bottom of articles) ──────────────── */
.related-strip {
  background: var(--paper-2); border-top: 1px solid var(--line);
  padding: 56px 0;
}
.related-strip__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 8px;
}


/* ══════════════════════════════════════════════════════════════
   SMART FUNNEL — auto-injected by js/funnel.js
   ══════════════════════════════════════════════════════════════ */

/* ── 1. Sticky top bar (disclosure + soft CTA) ─────────────── */
.pw-bar {
  position: sticky; top: 0; z-index: 101;
  background: linear-gradient(90deg, #0a2540, #1e5ba8);
  color: #fff; font-size: 13px;
  padding: 8px 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--sans);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pw-bar__txt { opacity: 0.92; }
.pw-bar__txt strong { color: #67e8f9; font-weight: 600; }
.pw-bar__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-weight: 600; font-size: 12.5px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all .15s ease;
}
.pw-bar__cta:hover {
  background: #fff; color: #0a2540;
  transform: translateX(2px);
}
.pw-bar__close {
  background: none; border: 0; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 18px; line-height: 1;
  padding: 2px 6px; border-radius: 4px;
  margin-left: 4px;
}
.pw-bar__close:hover { color: #fff; background: rgba(255,255,255,0.10); }
@media (max-width: 720px) {
  .pw-bar { font-size: 11.5px; padding: 7px 10px; gap: 10px; }
  .pw-bar__txt { display: none; }
}

/* When .pw-bar is sitting above .site-header, override the header's
   `top: 0` so they stack rather than overlap */
body.has-pw-bar .site-header { top: 38px; }
@media (max-width: 720px) { body.has-pw-bar .site-header { top: 36px; } }

/* ── 2. Floating action button (right side, persistent) ────── */
.pw-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0;
  transform: translateY(100px); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.85,.3,1), opacity .3s;
}
.pw-float.is-visible { transform: translateY(0); opacity: 1; }
.pw-float__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #0a2540, #1e5ba8);
  color: #fff; padding: 14px 22px;
  border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 10px 30px rgba(10,37,64,0.30), 0 4px 12px rgba(10,37,64,0.20);
  transition: all .18s ease;
  position: relative;
}
.pw-float__btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 40px rgba(10,37,64,0.40), 0 6px 16px rgba(10,37,64,0.30);
}
.pw-float__btn::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  z-index: -1; opacity: 0.45;
  animation: pwPulse 2.4s ease-in-out infinite;
}
@keyframes pwPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%      { transform: scale(1.06); opacity: 0; }
}
.pw-float__mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
}
.pw-float__close {
  align-self: flex-end;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(28,25,23,0.85); color: #fff;
  border: 0; cursor: pointer; font-size: 16px; line-height: 1;
  margin-bottom: 6px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s;
}
.pw-float:hover .pw-float__close { opacity: 1; }
/* Escalated state — after 3+ pageviews (teal accent, still on-brand) */
.pw-float.is-hot .pw-float__btn {
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  font-size: 14.5px; padding: 15px 26px;
}
.pw-float.is-hot .pw-float__btn::before {
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  opacity: 0.55;
}
.pw-float.is-hot .pw-float__mark {
  background: linear-gradient(135deg, #fff, #ecfeff);
  color: #0e7490;
}
@media (max-width: 600px) {
  .pw-float { bottom: 16px; right: 16px; }
  .pw-float__btn { padding: 12px 18px; font-size: 13.5px; }
}

/* ── 3. Exit-intent modal ─────────────────────────────────── */
.pw-exit {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,37,64,0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  font-family: var(--sans);
}
.pw-exit.is-open { display: flex; animation: pwFade .25s ease both; }
@keyframes pwFade { from { opacity: 0 } to { opacity: 1 } }

.pw-exit__panel {
  background: #fff; max-width: 480px; width: 100%;
  border-radius: 18px; padding: 36px 32px 30px;
  position: relative; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.40);
  animation: pwSlide .3s cubic-bezier(.2,.85,.3,1) both;
}
@keyframes pwSlide { from { transform: translateY(24px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.pw-exit__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: 0; font-size: 28px; line-height: 1;
  color: var(--ink-faint); cursor: pointer; padding: 4px 10px;
  border-radius: 50%;
}
.pw-exit__close:hover { background: var(--paper-2); color: var(--ink); }
.pw-exit__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); font-weight: 700;
  margin-bottom: 10px;
}
.pw-exit h2 {
  font-family: var(--serif); font-size: 24px; margin: 0 0 12px;
  line-height: 1.25; color: var(--ink);
}
.pw-exit p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.pw-exit__product {
  background: var(--paper-2); border-radius: 12px;
  padding: 16px 18px; margin: 14px 0 20px;
  text-align: left; display: flex; gap: 14px; align-items: center;
}
.pw-exit__product-mark {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, #0a2540, #1e5ba8);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--mono); font-weight: 700; font-size: 18px;
}
.pw-exit__product-info { flex: 1; }
.pw-exit__product-name { font-weight: 700; color: var(--ink); font-size: 15px; margin: 0 0 2px; }
.pw-exit__product-meta { font-size: 12.5px; color: var(--ink-faint); margin: 0; font-family: var(--mono); }
.pw-exit__btn {
  display: block; background: linear-gradient(135deg, #0a2540, #1e5ba8);
  color: #fff; padding: 14px 24px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 14.5px;
  text-align: center; margin-bottom: 10px;
  transition: all .15s;
}
.pw-exit__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,37,64,0.30); color: #fff; }
.pw-exit__skip {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  color: var(--ink-faint); font-size: 13px; padding: 8px;
  text-decoration: underline; text-underline-offset: 3px;
}
.pw-exit__skip:hover { color: var(--ink); }
.pw-exit__disclosure {
  margin: 16px 0 0; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--ink-faint); line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   COST CALCULATOR — tools/cost-calculator.html
   ══════════════════════════════════════════════════════════════ */
.calc {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 36px;
  margin: 32px 0;
  box-shadow: 0 4px 22px rgba(28,25,23,0.04);
}
@media (max-width: 640px) { .calc { padding: 24px 22px; border-radius: 14px; } }

.calc__head { text-align: center; margin-bottom: 32px; }
.calc__eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 10px;
}
.calc__title {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  margin: 0 0 8px; color: var(--ink); letter-spacing: -0.02em;
}
.calc__sub { color: var(--ink-2); font-size: 14.5px; margin: 0; max-width: 540px; margin: 0 auto; }

/* Inputs grid */
.calc__inputs {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 30px;
}
.calc__field { display: flex; flex-direction: column; gap: 7px; }
.calc__field label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600;
}
.calc__field select,
.calc__field input {
  padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14.5px; font-family: inherit;
  outline: none; background: #fff;
  transition: border-color .15s;
  color: var(--ink); font-weight: 500;
  width: 100%;
}
.calc__field select:focus,
.calc__field input:focus { border-color: var(--teal); }

/* Versus marker between two brand selectors */
.calc__vs {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--ink-faint); height: 100%;
  padding-top: 18px;
}

/* Results */
.calc__results {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}
@media (max-width: 720px) { .calc__results { grid-template-columns: 1fr; } }
.calc__card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px;
  position: relative;
  transition: all .25s ease;
}
.calc__card.is-winner {
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 100%);
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(14,116,144,0.12);
}
.calc__card-badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--teal); color: #fff;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  padding: 4px 11px; border-radius: 6px;
  display: none;
}
.calc__card.is-winner .calc__card-badge { display: inline-block; background: linear-gradient(135deg, #0e7490, #155e75); }
.calc__card.is-our .calc__card-badge { display: inline-block; background: linear-gradient(135deg, #0a2540, #1e5ba8); }
.calc__card-brand {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  margin: 6px 0 4px;
}
.calc__card-name {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--ink); margin: 0 0 16px; letter-spacing: -0.02em;
}
.calc__big {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--ink); margin: 0 0 4px; letter-spacing: -0.025em;
  line-height: 1;
}
.calc__big-lbl { font-size: 13px; color: var(--ink-faint); margin: 0 0 18px; }

.calc__row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-top: 1px dashed var(--line);
  font-size: 13.5px;
}
.calc__row dt { color: var(--ink-2); }
.calc__row dd { margin: 0; color: var(--ink); font-weight: 600; font-family: var(--mono); }
.calc__row--total {
  border-top: 2px solid var(--ink); margin-top: 8px;
  padding-top: 12px; font-size: 15px;
}
.calc__row--total dd { font-size: 16px; }

/* Savings callout */
.calc__savings {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b; border-radius: 14px;
  padding: 22px 26px; margin: 26px 0 0;
  text-align: center;
}
.calc__savings--big {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-color: #15803d;
}
.calc__savings p { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.calc__savings strong { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #155e75; }
.calc__savings--big strong { color: #14532d; }
.calc__savings-cta {
  display: inline-block; margin-top: 14px;
  background: var(--ink); color: #fff;
  padding: 11px 22px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: all .15s;
}
.calc__savings-cta:hover { background: var(--teal); color: #fff; }

.calc__foot {
  margin-top: 22px; font-size: 12px; color: var(--ink-faint);
  text-align: center; line-height: 1.55;
}
.calc__foot a { color: var(--teal); }


/* ══════════════════════════════════════════════════════════════
   GLOSSARY / FAQ / METHODOLOGY — content pages
   ══════════════════════════════════════════════════════════════ */

/* Glossary — A-Z grid */
.gloss-nav {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 18px 0 0; margin: 0 0 36px;
  border-bottom: 1px solid var(--line); padding-bottom: 24px;
}
.gloss-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--paper-2); color: var(--ink-2);
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .15s ease;
}
.gloss-nav a:hover { background: var(--teal); color: #fff; }
.gloss-nav a.is-dim { opacity: 0.3; cursor: default; pointer-events: none; }

.gloss-letter {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--teal); margin: 36px 0 18px;
  padding-bottom: 8px; border-bottom: 2px solid var(--teal);
  width: 48px;
}

.gloss-term {
  margin: 0 0 22px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.gloss-term:last-of-type { border-bottom: 0; }
.gloss-term__name {
  font-family: var(--serif); font-size: 21px; font-weight: 700;
  color: var(--ink); margin: 0 0 4px; letter-spacing: -0.01em;
}
.gloss-term__abbrev {
  font-family: var(--mono); font-size: 12px; color: var(--ink-faint);
  font-weight: 500; margin-left: 8px;
}
.gloss-term__def { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin: 0 0 6px; }
.gloss-term__see {
  font-size: 12.5px; color: var(--ink-faint);
  font-family: var(--mono); margin: 0;
}
.gloss-term__see a { color: var(--teal); }

/* FAQ — accordion */
.faq-list { margin: 32px 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 10px; background: #fff;
  overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: var(--teal); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer;
  list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--ink); line-height: 1.35;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--mono); font-size: 24px;
  color: var(--teal); transition: transform .25s, color .15s;
  flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--teal); }
.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 1em; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* FAQ category groupings */
.faq-cat {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); font-weight: 700;
  margin: 36px 0 14px;
}
.faq-cat:first-of-type { margin-top: 18px; }

/* Methodology — step grid + photo slots */
.method-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.method-step:last-of-type { border-bottom: 0; }
.method-step__num {
  font-family: var(--serif); font-size: 44px; font-weight: 700;
  color: var(--teal); line-height: 1; letter-spacing: -0.03em;
}
.method-step h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; }
.method-step p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; }
.method-step ul { padding-left: 20px; margin: 8px 0 0; }
.method-step li { font-size: 15px; line-height: 1.65; margin-bottom: 6px; }

.method-photo {
  background: var(--paper-2); border: 2px dashed var(--line);
  border-radius: 12px; padding: 60px 24px;
  text-align: center; margin: 18px 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px; gap: 10px;
}
.method-photo__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.method-photo__lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 600;
}
.method-photo__caption {
  font-size: 13px; color: var(--ink-2); max-width: 420px;
  margin: 0; line-height: 1.5;
}
.method-photo img {
  max-width: 100%; height: auto; border-radius: 8px;
  display: block;
}

.method-tools {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 28px 0;
}
.method-tool {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
}
.method-tool h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); font-weight: 700;
  margin: 0 0 6px;
}
.method-tool p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.method-tool strong { color: var(--ink); font-weight: 600; }

@media (max-width: 600px) {
  .method-step { grid-template-columns: 1fr; gap: 8px; }
  .method-step__num { font-size: 32px; }
}


/* ── 4. Inline "Featured: Prime Water" card (manual embed) ── */
.pw-featured {
  background: linear-gradient(135deg, #fafcff, #f4f8fd);
  border: 1.5px solid #cfdcef; border-radius: 14px;
  padding: 24px 26px; margin: 32px 0;
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px;
  align-items: center;
}
.pw-featured__badge {
  background: linear-gradient(135deg, #0a2540, #1e5ba8);
  color: #fff; padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  position: absolute; top: -10px; left: 24px;
}
.pw-featured { position: relative; }
.pw-featured__mark {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.pw-featured__body h4 {
  margin: 0 0 4px; font-size: 17px; color: var(--ink); font-weight: 700;
  font-family: var(--serif);
}
.pw-featured__body p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.pw-featured__btn {
  background: var(--ink); color: #fff; padding: 11px 20px;
  border-radius: 999px; font-weight: 600; font-size: 13.5px;
  text-decoration: none; white-space: nowrap;
  transition: all .15s;
}
.pw-featured__btn:hover { background: var(--teal); color: #fff; }
@media (max-width: 640px) {
  .pw-featured { grid-template-columns: auto 1fr; gap: 16px; padding: 22px; }
  .pw-featured__btn { grid-column: 1 / -1; text-align: center; }
}

/* ── Sticky left-side TOC (auto-injected on review pages) ─── */
.page-toc {
  position: fixed;
  top: 140px;
  /* Position to the LEFT of the .wrap container (1100px max width) plus a 30px gap.
     wrap left edge = 50vw - 550px. TOC right edge must be < wrap left - 30px.
     TOC width 200px, so TOC left = 50vw - 550 - 30 - 200 = 50vw - 780. */
  left: calc(50vw - 780px);
  width: 200px;
  z-index: 5;
  font-family: var(--sans);
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  /* Safety: solid background prevents any edge-case content bleed */
  background: var(--paper);
  padding: 4px 0;
}
.page-toc__title {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-faint);
  margin: 0 0 14px;
  padding-left: 14px;
}
.page-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--line);
}
.page-toc li {
  margin: 0;
}
.page-toc a {
  display: block;
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  padding: 7px 0 7px 14px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.page-toc a:hover {
  color: var(--teal);
  border-left-color: var(--line);
}
.page-toc a.is-active {
  color: var(--teal);
  border-left-color: var(--teal);
  font-weight: 500;
}
/* Hide TOC at viewports too narrow to fit it without overlapping the wider .wrap.
   Math: TOC left = 50vw - 780px must be >= 20px (margin from edge), so vw >= 1600. */
@media (max-width: 1600px) {
  .page-toc { display: none; }
}
.page-toc::-webkit-scrollbar { width: 6px; }
.page-toc::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }


/* ── Brand review page · revamped layout ──────────────────── */
.article-head {
  background: linear-gradient(180deg, #fafaf9 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
}
.article-head h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 12px 0 18px;
  max-width: 880px;
}
.article-head .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 24px;
}
.article-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-faint);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.article-head__meta span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-head__meta strong {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.article-head__meta a {
  color: var(--teal);
  font-weight: 500;
}

/* Verdict card — cleaner, more modern */
.verdict {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
}
@media (max-width: 820px) {
  .verdict { grid-template-columns: 1fr; gap: 24px; }
}

.verdict__tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.verdict__rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.verdict__score {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.verdict__summary {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* Right-side buy box */
.verdict__buy {
  background: var(--paper-2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}
.verdict__price-row {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.verdict__price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.verdict__buy .primary {
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background .15s;
}
.verdict__buy .primary:hover { background: var(--teal); color: #fff; }
.verdict__buy .secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: border-color .15s;
}
.verdict__buy .secondary:hover { border-color: var(--teal); color: var(--teal); }


/* Quick-stats strip — between hero + verdict */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 32px;
}
.quick-stat {
  background: #fff;
  padding: 22px 18px;
  text-align: center;
}
.quick-stat__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.quick-stat__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.quick-stat--accent .quick-stat__num { color: var(--teal); }


/* Pros/cons — more visual */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 36px;
}
@media (max-width: 720px) {
  .proscons { grid-template-columns: 1fr; }
}
.procon {
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid var(--line);
}
.procon--pro {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.procon--con {
  background: #fef2f2;
  border-color: #fecaca;
}
.procon h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid currentColor;
  border-color: inherit;
}
.procon--pro h4 { color: var(--green); }
.procon--con h4 { color: var(--rose); }
.procon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.procon li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}
.procon li:last-child { border-bottom: 0; }
.procon--pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.procon--con li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--rose);
  font-weight: 700;
  font-size: 14px;
}
.procon li strong { color: var(--ink); }


/* Spec rows — bigger, cleaner */
.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  align-self: center;
}
.spec-row dd {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.spec-row dd a {
  color: var(--teal);
  border-bottom: 1px solid rgba(14, 116, 144, 0.3);
}

/* H2 / H3 spacing in articles */
.article-body > .wrap > h2,
.article-body > .wrap--narrow > h2,
.article-body .wrap > h2 {
  margin: 56px 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  scroll-margin-top: 90px;
}
.article-body > .wrap > h3,
.article-body > .wrap--narrow > h3,
.article-body .wrap > h3 {
  margin: 36px 0 14px;
  font-size: 20px;
  scroll-margin-top: 90px;
}
/* Prose paragraphs and lists — scoped to direct children of .wrap inside .article-body
   so we DON'T accidentally restyle text inside coloured panels (e.g. dark navy standout panel) */
.article-body > .wrap > p,
.article-body > .wrap--narrow > p,
.article-body .wrap > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.article-body > .wrap > ul,
.article-body > .wrap--narrow > ul,
.article-body .wrap > ul {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  padding-left: 22px;
  margin: 0 0 24px;
}
.article-body > .wrap > ul > li,
.article-body > .wrap--narrow > ul > li,
.article-body .wrap > ul > li {
  padding: 4px 0;
}


/* ── Arena page system (battle cards · podiums) ──────────────── */
.wrap--arena {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 700px) {
  .wrap--arena { padding: 0 18px; }
}

.bc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
@media (min-width: 1100px) {
  .bc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1500px) {
  .bc-grid { grid-template-columns: repeat(4, 1fr); }
}

.bc {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.bc:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(28,25,23,0.08);
  border-color: var(--ink-faint);
}
.bc--ours {
  border: 2px solid var(--teal);
  background: linear-gradient(180deg, #f0fdff 0%, #fff 60%);
}
.bc--ours:hover { box-shadow: 0 14px 36px rgba(14,116,144,0.18); }

.bc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.bc__origin {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.bc--ours .bc__origin { color: var(--teal); }
.bc__chip {
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.bc__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 4px 0 14px;
  line-height: 1.15;
}
.bc__sig {
  font-style: italic;
  color: var(--ink-2);
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.5;
  border-left: 3px solid var(--ink-faint);
  padding-left: 14px;
}
.bc--ours .bc__sig { border-left-color: var(--teal); }

.bc__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.bc__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.bc__stat:last-child { border-bottom: 0; }
.bc__stat-label {
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 600;
  flex-shrink: 0;
}
.bc__stat-val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  font-size: 13.5px;
}

.bc__models {
  font-size: 12.5px;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  line-height: 1.45;
}
.bc__models strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 4px;
}

.bc__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.bc__badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
}

.bc__price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-2);
}
.bc__price strong {
  color: var(--ink);
  font-size: 14px;
}


/* ── Podium block (for spec battle podiums) ─────────────────── */
.podium {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.podium h3 {
  font-size: 14px;
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.podium__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 13px;
  border-radius: 7px;
  margin-bottom: 7px;
  font-size: 14px;
}
.podium__row:last-child { margin-bottom: 0; }
.podium__row--1 { background: #fef3c7; }
.podium__row--2 { background: #f5f5f4; }
.podium__row--3 { background: #fafaf9; }
.podium__row strong { color: var(--ink); }
.podium__val {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-align: right;
}
.podium__note {
  font-size: 11px;
  color: var(--ink-faint);
  margin: 12px 0 0;
  font-style: italic;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}
@media (min-width: 1100px) {
  .podium-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ── Signature moves wall ──────────────────────────────────── */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 12px;
}
@media (min-width: 1100px) {
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1500px) {
  .sig-grid { grid-template-columns: repeat(3, 1fr); }
}
.sig-row {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  transition: border-color .12s, transform .12s;
}
.sig-row:hover {
  border-color: var(--teal);
  transform: translateX(2px);
}
.sig-row strong { color: var(--ink); }
.sig-row em { color: var(--ink-2); font-style: italic; }
.sig-row .ours { color: var(--teal); font-size: 11px; font-weight: 600; }


/* ── Brand-profile card · "What Stands Out" (editorial redesign) ── */
.standout {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 44px;
  margin: 32px 0 48px;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.04);
  position: relative;
  overflow: hidden;
}
.standout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, #67e8f9 50%, var(--teal-dark) 100%);
}
@media (max-width: 640px) {
  .standout { padding: 28px 24px; border-radius: 16px; }
}

.standout__head {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.standout__eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.standout__signature {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.018em;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 820px;
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

.standout__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 820px) {
  .standout__grid { grid-template-columns: 1fr; gap: 24px; }
}

.standout__col { position: relative; }
.standout__col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid;
}
.standout__col--sells .standout__col-head { border-bottom-color: var(--teal); }
.standout__col--wins  .standout__col-head { border-bottom-color: var(--gold); }
.standout__col--gaps  .standout__col-head { border-bottom-color: var(--rose); }

.standout__col-icon { font-size: 18px; line-height: 1; }
.standout__col-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.standout__col--sells .standout__col-label { color: var(--teal-dark); }
.standout__col--wins  .standout__col-label { color: #92400e; }
.standout__col--gaps  .standout__col-label { color: var(--rose); }

.standout__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.standout__list li {
  position: relative;
  padding: 8px 0 10px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.standout__list li:last-child { border-bottom: 0; padding-bottom: 4px; }
.standout__list li strong { color: var(--ink); font-weight: 600; }

/* Per-column custom bullet markers */
.standout__list--sells li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  transform: rotate(45deg);
}
.standout__list--wins li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}
.standout__list--gaps li::before {
  content: '−';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--rose);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.standout__foot {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.standout__foot-note {
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  margin: 0;
}
.standout__foot-link {
  font-size: 13.5px;
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 116, 144, 0.3);
  transition: border-color .15s;
}
.standout__foot-link:hover { border-bottom-color: var(--teal); }


/* ════════════════════════════════════════════════════════════════
   PRODUCTION POLISH · brand page final touch-ups
   - Tighter section spacing
   - Better spec-row table layout
   - Cleaner pros/cons
   - Responsive everywhere
   ════════════════════════════════════════════════════════════════ */

/* Re-shrink section padding so brand pages feel less "stuffy" */
.article-body { padding: 32px 0 64px; }
.article-head { padding: 40px 0 36px; }

/* Hero meta — chip-style display so it looks like a data badge row */
.article-head__meta {
  gap: 10px;
  border-top: 0;
  padding-top: 0;
  margin-top: 20px;
}
.article-head__meta span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  flex-direction: row;
  gap: 6px;
  font-size: 13px;
  align-items: center;
}
.article-head__meta strong {
  margin: 0;
  font-size: 9.5px;
}

/* Eyebrow above H1 */
.article-head .eyebrow {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.article-head .breadcrumb {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

/* H2 with subtle teal underline */
.article-body > .wrap > h2,
.article-body > .wrap--narrow > h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* Spec rows — give them a cleaner data-table feel */
.spec-row {
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 24px;
  padding: 14px 0;
}
.spec-row dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  align-self: center;
}
.spec-row dd {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .spec-row dd { font-size: 14.5px; }
}

/* Pros/cons cards · final polish */
.proscons {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 18px 0 40px;
}
.procon {
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid;
}
.procon--pro {
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  border-color: #bbf7d0;
}
.procon--con {
  background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
  border-color: #fecaca;
}
.procon h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid currentColor;
}
.procon--pro h4 { color: var(--green); }
.procon--con h4 { color: var(--rose); }
.procon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.procon li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.procon li:last-child { border-bottom: 0; padding-bottom: 4px; }
.procon li strong { color: var(--ink); font-weight: 600; }
.procon--pro li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M6.5 11.5 3 8l1-1 2.5 2.5L12 4l1 1z"/></svg>');
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.procon--con li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--rose);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path stroke="white" stroke-width="2" stroke-linecap="round" d="M5 5l6 6M11 5l-6 6"/></svg>');
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .proscons { grid-template-columns: 1fr; }
  .procon { padding: 22px 22px; }
}

/* Related-strip · use narrower wrap so it aligns with article body */
.related-strip .wrap {
  max-width: 760px;
}
.related-strip {
  padding: 56px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

/* Quick-stats strip — touch-up */
.quick-stats {
  margin: 0 0 36px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.quick-stat {
  padding: 24px 18px;
}
.quick-stat__num {
  font-size: 32px;
}
@media (max-width: 640px) {
  .quick-stat { padding: 18px 14px; }
  .quick-stat__num { font-size: 22px; }
  .quick-stat__label { font-size: 9.5px; }
}

/* Verdict card — soften */
.verdict {
  padding: 28px 32px;
  margin: 28px 0 36px;
  box-shadow: 0 4px 18px rgba(28,25,23,0.04);
  border-color: var(--line);
}
.verdict__price { font-size: 32px; }
@media (max-width: 820px) {
  .verdict { padding: 24px 22px; }
  .verdict__price { font-size: 28px; }
}

/* Disclosure banner (Prime Water self-disclosure callout) */
.disclosure-banner {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 16px 22px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 28px;
  font-size: 14.5px;
  color: #78350f;
  line-height: 1.6;
}
.disclosure-banner strong { color: #92400e; }

