/* ============================================================
   RO Guide — Article Stylesheet
   Design tokens from design-tokens.md. No magic numbers.
   ============================================================ */

:root {
  /* --- Core palette (shared with styles.css) --- */
  --color-mineral-green:    #123A3A;
  --color-warm-ivory:       #F7F1E8;
  --color-charcoal-ink:     #17221F;
  --color-soft-sage:        #D8E4D5;
  --color-terracotta:       #A95538;
  --color-terracotta-hover: #8F472E;
  --color-muted-brass:      #C09A56;
  --color-porcelain:        #FFFDF8;
  --color-weathered-slate:  #5B6762;

  /* --- Article-specific tokens --- */
  --color-brass-dim:        #8A6A2E;  /* section § numbers on light bg */
  --color-badge-green:      #123A3A;  /* STRONG EVIDENCE FIT */
  --color-badge-gold:       #C09A56;  /* QUALIFIED / MANUFACTURER CLAIMED */
  --color-badge-terracotta: #A95538;  /* CONDITIONAL / OPEN */
  --color-badge-sage:       #D8E4D5;  /* NARROW SCOPE / PARKED */
  --color-badge-context:    #EDE8DC;  /* INDEPENDENTLY TESTED */

  /* --- Borders & shadows --- */
  --border-light:  rgba(18, 58, 58, 0.12);
  --border-dark:   rgba(255, 253, 248, 0.16);
  --border-brass:  #C09A56;
  --shadow-soft:   0 24px 70px rgba(18, 58, 58, 0.14);
  --shadow-card:   0 14px 45px rgba(18, 58, 58, 0.09);

  /* --- Typography --- */
  --font-heading: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* --- Spacing scale (8px base) --- */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* --- Layout --- */
  --content-max:    1200px;
  --content-gutter: 64px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--color-mineral-green);
  color: var(--color-warm-ivory);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-200%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-warm-ivory);
  color: var(--color-charcoal-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

p, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-frame {
  width: min(100% - (var(--content-gutter) * 2), var(--content-max));
  margin-inline: auto;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */

.site-header {
  background: var(--color-porcelain);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 42px;
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-mineral-green);
}

.wordmark:hover {
  color: var(--color-mineral-green);
}

.wordmark__mark {
  width: 37px;
  height: 37px;
  color: var(--color-mineral-green);
  flex-shrink: 0;
}

.wordmark__mark svg {
  width: 100%;
  height: 100%;
}

.wordmark__copy {
  display: grid;
  gap: 4px;
}

.wordmark__text {
  font-family: var(--font-heading);
  font-size: clamp(1.36rem, 1.65vw, 1.72rem);
  font-weight: 600;
  color: var(--color-mineral-green);
  line-height: 1;
  letter-spacing: 0;
}

.wordmark__subtext {
  font-family: var(--font-mono);
  font-size: clamp(0.54rem, 0.7vw, 0.66rem);
  font-weight: 700;
  color: rgba(91, 103, 98, 0.72);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
}

/* Primary navigation */
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.7vw, 42px);
}

.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-charcoal-ink);
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: var(--color-terracotta);
}

.primary-nav a.nav--active {
  text-decoration: underline;
  text-decoration-color: var(--color-muted-brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-cta {
  background: var(--color-mineral-green) !important;
  color: var(--color-warm-ivory) !important;
  text-decoration: none !important;
  padding: 8px 20px;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  margin-left: var(--sp-2);
  letter-spacing: 0.01em;
  display: inline-block;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--color-charcoal-ink) !important;
  color: var(--color-warm-ivory) !important;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .site-header__inner {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sp-4);
    padding: 14px 0;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .primary-nav a {
    font-size: 0.86rem;
  }

  .nav-cta {
    margin-left: 0;
    padding: 7px 14px;
  }
}

/* ============================================================
   BREADCRUMB BAR
   ============================================================ */

.breadcrumb-bar {
  background: var(--color-porcelain);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-bar__inner {
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  white-space: nowrap;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  opacity: 0.45;
}

.breadcrumb li:last-child {
  font-weight: 700;
  color: var(--color-charcoal-ink);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-terracotta);
}

/* ============================================================
   SECTION 01 — HERO
   ============================================================ */

.article-hero {
  background: var(--color-mineral-green);
  padding: var(--sp-24) 0 var(--sp-20);
  overflow: hidden;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: 1fr 43%;
  gap: var(--sp-12);
  align-items: start;
  overflow: visible;
}

/* — Left column — */
.article-hero__content {
  display: flex;
  flex-direction: column;
}

/* Section label (dash + eyebrow) */
.article-hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-6);
}

.label-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-muted-brass);
  flex-shrink: 0;
}

.label-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(192, 154, 86, 0.8);
  line-height: 1;
}

/* Headline */
.article-hero__title {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-warm-ivory);
  margin-bottom: var(--sp-8);
}

.article-hero__title em {
  font-style: italic;
}

/* Deck paragraphs */
.article-hero__deck {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.article-hero__deck p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(247, 241, 232, 0.72);
  margin: 0;
}

/* Stats strip */
.article-hero__stats {
  display: flex;
  gap: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 60px;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-muted-brass);
}

.stat-item__value {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-warm-ivory);
}

/* Text string values use body font so they render same colour as numeric values */
.stat-item__value--text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* — Right column — */
.article-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

/* .hero-circles removed */
.hero-circles {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

/* Outermost — dashed, largest, most subtle */
.hero-circle--outer {
  width: 160px;
  height: 160px;
  top: -100px;
  right: -100px;
  border: 1px dashed rgba(192, 154, 86, 0.25);
}

/* Middle — solid */
.hero-circle--mid {
  width: 110px;
  height: 110px;
  top: -72px;
  right: -72px;
  border: 1px solid rgba(192, 154, 86, 0.35);
}

/* Innermost — solid, most visible */
.hero-circle--inner {
  width: 60px;
  height: 60px;
  top: -46px;
  right: -46px;
  border: 1px solid rgba(192, 154, 86, 0.48);
}

.article-hero__image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 253, 248, 0.03) 0px,
    rgba(255, 253, 248, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  border: 1px solid rgba(192, 154, 86, 0.75);
}

.article-hero__image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.02) brightness(0.88);
}

/* Corner bracket marks — sit outside the image border */
.article-hero__image-placeholder::after {
  content: "";
  position: absolute;
  inset: -9px;
  pointer-events: none;
  z-index: 2;
  background:
    /* top-left — horizontal */
    linear-gradient(to right, rgba(192,154,86,0.72) 20px, transparent 20px) 0 0 / 20px 1px no-repeat,
    /* top-left — vertical */
    linear-gradient(to bottom, rgba(192,154,86,0.72) 20px, transparent 20px) 0 0 / 1px 20px no-repeat,
    /* top-right — horizontal */
    linear-gradient(to left, rgba(192,154,86,0.72) 20px, transparent 20px) 100% 0 / 20px 1px no-repeat,
    /* top-right — vertical */
    linear-gradient(to bottom, rgba(192,154,86,0.72) 20px, transparent 20px) 100% 0 / 1px 20px no-repeat,
    /* bottom-left — horizontal */
    linear-gradient(to right, rgba(192,154,86,0.72) 20px, transparent 20px) 0 100% / 20px 1px no-repeat,
    /* bottom-left — vertical */
    linear-gradient(to top, rgba(192,154,86,0.72) 20px, transparent 20px) 0 100% / 1px 20px no-repeat,
    /* bottom-right — horizontal */
    linear-gradient(to left, rgba(192,154,86,0.72) 20px, transparent 20px) 100% 100% / 20px 1px no-repeat,
    /* bottom-right — vertical */
    linear-gradient(to top, rgba(192,154,86,0.72) 20px, transparent 20px) 100% 100% / 1px 20px no-repeat;
}

.article-hero__caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(192, 154, 86, 0.55);
  margin: 0;
}

@media (max-width: 900px) {
  .article-hero {
    padding: var(--sp-16) 0;
  }

  .article-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .article-hero__title {
    font-size: 42px;
  }

  .article-hero__deck {
    margin-bottom: var(--sp-8);
  }

  .article-hero__stats {
    gap: var(--sp-6);
  }
}

/* Section 01 (hero) — checked against reference: dark green bg, two-col grid, brass-border image placeholder, label dash + tracked text, roman+italic h1, muted deck paragraphs, stats strip with border-top matched */

/* ============================================================
   SECTION 02 — AUTHOR / META STRIP
   ============================================================ */

.article-meta {
  background: var(--color-porcelain);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.article-meta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
  padding: 22px 0;
  flex-wrap: wrap;
}

/* Attribution side */
.article-meta__attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-soft-sage);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(192, 154, 86, 0.4);
}

.meta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.meta-byline {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-byline__text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--color-charcoal-ink);
  line-height: 1.5;
  margin: 0;
}

.meta-byline__link {
  color: var(--color-terracotta);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(169, 85, 56, 0.5);
}

.meta-byline__link:hover {
  color: var(--color-terracotta-hover);
}

.meta-byline__sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  line-height: 1;
  margin: 0;
}

/* Status side */
.article-meta__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: var(--sp-2);
}

.ownership-note {
  background: color-mix(in srgb, var(--color-soft-sage) 34%, var(--color-porcelain));
  border-bottom: 1px solid var(--border-light);
}

.ownership-note__inner {
  padding: 18px 0;
}

.ownership-note p {
  max-width: 920px;
  margin: 0;
  color: var(--color-charcoal-ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ownership-note strong {
  color: var(--color-mineral-green);
  font-weight: 700;
}

.meta-status-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  white-space: nowrap;
  line-height: 1;
}

.meta-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-muted-brass);
  margin: 0 16px;
  flex-shrink: 0;
}

/* Section 02 (meta strip) — checked against reference: porcelain bg, top/bottom borders, sage avatar circle, terracotta attribution link, brass separator dots, uppercase status items matched */

/* ============================================================
   SECTION 03 — EDITORIAL STANDARD
   ============================================================ */

.editorial-standard {
  background: var(--color-soft-sage);
  padding: var(--sp-20) 0 var(--sp-24);
}

.editorial-standard__inner {
  display: block;
  max-width: var(--content-max);
}

.editorial-standard__heading {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-mineral-green);
  margin: 0 0 var(--sp-5);
}

.editorial-standard__intro {
  max-width: 760px;
  margin-inline: auto;
}

.editorial-standard__intro p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-4);
}

.editorial-standard__intro p:last-child {
  margin-bottom: 0;
}

.editorial-standard-table-wrap {
  margin-top: var(--sp-10);
  border: 1px solid rgba(18, 58, 58, 0.16);
  background: var(--color-porcelain);
  box-shadow: 0 18px 54px rgba(18, 58, 58, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.editorial-standard-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.editorial-standard-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.editorial-standard-table thead tr {
  background: var(--color-mineral-green);
}

.editorial-standard-table th,
.editorial-standard-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-4) var(--sp-5);
}

.editorial-standard-table thead th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.72);
}

.editorial-standard-table tbody th {
  width: 34%;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-mineral-green);
  background: color-mix(in srgb, var(--color-soft-sage) 28%, var(--color-porcelain));
}

.editorial-standard-table tbody td {
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--color-charcoal-ink);
}

.editorial-standard-table tbody tr:last-child th,
.editorial-standard-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 980px) {
  .editorial-standard__inner {
    max-width: var(--content-max);
  }
}

@media (max-width: 640px) {
  .editorial-standard {
    padding: var(--sp-16) 0;
  }

  .editorial-standard__heading {
    font-size: 2rem;
  }

  .editorial-standard-table,
  .editorial-standard-table thead,
  .editorial-standard-table tbody,
  .editorial-standard-table tr,
  .editorial-standard-table th,
  .editorial-standard-table td {
    display: block;
    width: 100%;
  }

  .editorial-standard-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .editorial-standard-table tbody th {
    width: 100%;
    border-bottom: none;
    padding-bottom: var(--sp-2);
  }

  .editorial-standard-table tbody td {
    padding-top: 0;
  }
}

/* ============================================================
   SECTION 03 — REVIEW SNAPSHOT
   ============================================================ */

.review-snapshot {
  background: var(--color-soft-sage);
  padding: var(--sp-20) 0 var(--sp-24);
}

.review-snapshot .section-label .label-text {
  color: var(--color-terracotta);
}

.review-snapshot .label-dash {
  background: var(--color-terracotta);
}

.review-snapshot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 var(--sp-12);
  align-items: start;
}

/* Reusable section label for light backgrounds */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-5);
}

.section-label .label-text {
  color: var(--color-weathered-slate);
}

/* — Left column — */
.review-snapshot__intro {
  padding-right: 0;
}

.review-snapshot__heading {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-charcoal-ink);
  margin-bottom: var(--sp-4);
}

.review-snapshot__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-6);
}

/* Trust bar (DERIVED — compact 2-col table in left column) */
.trust-bar {
  border-top: 1px solid var(--border-light);
  margin-top: var(--sp-2);
}

.trust-bar__row {
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-bar__row-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-charcoal-ink);
  line-height: 1.35;
  margin: 0;
}

.trust-bar__row-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-weathered-slate);
  line-height: 1.5;
  margin: 0;
}

/* "Not sure" jump prompt (DERIVED) */
.review-snapshot__prompt {
  margin-top: var(--sp-5);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-weathered-slate);
  line-height: 1.55;
}

.review-snapshot__prompt a {
  color: var(--color-terracotta);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(169, 85, 56, 0.45);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.review-snapshot__prompt a:hover {
  color: var(--color-terracotta-hover);
}

/* — Bullet item columns — */
.review-snapshot__column {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  padding-top: 0;
}

.snapshot-item {}

.snapshot-item__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-charcoal-ink);
  line-height: 1.3;
  margin: 0 0 8px;
}

.snapshot-item__heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-muted-brass);
  flex-shrink: 0;
}

.snapshot-item__body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal-ink);
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .review-snapshot {
    padding: var(--sp-16) 0;
  }

  .review-snapshot__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .review-snapshot__column {
    gap: var(--sp-6);
  }
}

/* Section 03 (review snapshot) — checked against reference: 3-col grid, brass dash label, 32px Newsreader h2, terracotta circle bullets, trust bar rows, muted-prompt jump link matched */

/* ============================================================
   SECTION STRIP — §NN pattern (reused across all article sections)
   ============================================================ */

.section-strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--sp-8);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted-brass);
  letter-spacing: 0.05em;
}

.section-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
}

/* ============================================================
   EVIDENCE BADGES — reusable pill labels
   ============================================================ */

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1.4;
  white-space: nowrap;
}

.badge--strong {
  background: var(--color-badge-green);
  color: var(--color-warm-ivory);
}

.badge--qualified {
  background: var(--color-badge-gold);
  color: var(--color-warm-ivory);
}

.badge--conditional {
  background: var(--color-badge-terracotta);
  color: var(--color-warm-ivory);
}

.badge--narrow {
  background: var(--color-badge-sage);
  color: var(--color-charcoal-ink);
}

.badge--context {
  background: var(--color-badge-context);
  color: var(--color-charcoal-ink);
}

/* ============================================================
   SECTION 04 — OUR PICKS AT A GLANCE
   ============================================================ */

.picks-section {
  background: var(--color-warm-ivory);
  padding: var(--sp-16) 0 0;
}

.picks-heading {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-charcoal-ink);
  max-width: 760px;
  margin: 0 auto var(--sp-5);
}

.picks-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal-ink);
  max-width: 760px;
  margin: 0 auto var(--sp-8);
}

.picks-section .section-strip {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Picks table */
.picks-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.picks-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.picks-table thead tr {
  background: var(--color-mineral-green);
}

.picks-table thead th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.65);
  text-align: left;
  padding: 13px 16px;
  white-space: nowrap;
}

.picks-table tbody th,
.picks-table td {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-charcoal-ink);
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.picks-table tbody th {
  width: 190px;
  font-weight: 700;
  background: color-mix(in srgb, var(--color-soft-sage) 24%, var(--color-porcelain));
}

.picks-table td {
  font-weight: 400;
}

.picks-table tbody tr:nth-child(even) th,
.picks-table tbody tr:nth-child(even) td {
  background: rgba(18, 58, 58, 0.025);
}

.picks-table .col-pick {
  font-weight: 600;
  white-space: nowrap;
}

.picks-table .col-bestfit {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-charcoal-ink);
}

.picks-table .col-tradeoff {
  font-size: 0.88rem;
  color: var(--color-weathered-slate);
}

.picks-table .col-link {
  white-space: nowrap;
}

.picks-table .col-link a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(169, 85, 56, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.picks-table .col-link a:hover {
  color: var(--color-terracotta-hover);
}

@media (max-width: 760px) {
  .picks-table-wrap {
    overflow-x: visible;
  }

  .picks-table {
    min-width: 0;
    display: block;
  }

  .picks-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .picks-table tbody,
  .picks-table tr,
  .picks-table th,
  .picks-table td {
    display: block;
    width: 100%;
  }

  .picks-table tbody tr {
    margin-bottom: var(--sp-5);
    border: 1px solid var(--border-light);
    background: var(--color-porcelain);
  }

  .picks-table tbody th {
    width: 100%;
    padding: var(--sp-5);
    border-bottom: 1px solid var(--border-light);
    background: var(--color-mineral-green);
    color: var(--color-warm-ivory);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: none;
  }

  .picks-table tbody tr:nth-child(even) th {
    background: var(--color-mineral-green);
    color: var(--color-warm-ivory);
  }

  .picks-table tbody td {
    display: grid;
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    background: transparent;
    border-bottom: 1px solid var(--border-light);
  }

  .picks-table tbody td::before {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--color-weathered-slate);
  }

  .picks-table tbody td:nth-of-type(1)::before {
    content: "Pick";
  }

  .picks-table tbody td:nth-of-type(2)::before {
    content: "Why it fits";
  }

  .picks-table tbody td:nth-of-type(3)::before {
    content: "Main tradeoff";
  }

  .picks-table tbody td:nth-of-type(4)::before {
    content: "Claim to verify";
  }

  .picks-table--secondary tbody td:nth-of-type(1)::before {
    content: "Product";
  }

  .picks-table--secondary tbody td:nth-of-type(2)::before {
    content: "Why it may fit";
  }

  .picks-table--secondary tbody td:nth-of-type(4)::before {
    content: "Before buying";
  }

  .picks-table tbody td:last-child {
    border-bottom: none;
  }
}

/* Also Worth Knowing */
.also-worth {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-light);
}

.also-worth__heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal-ink);
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-3);
}

.also-worth__intro {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.68;
  color: var(--color-weathered-slate);
  max-width: 760px;
  margin: 0 auto var(--sp-5);
}

.also-worth__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.also-worth__item {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal-ink);
  padding-left: var(--sp-4);
  border-left: 2px solid var(--border-light);
}

.also-worth__name {
  font-weight: 700;
}

/* Pull quote block */
.pull-quote-block {
  background: var(--color-mineral-green);
  padding: 104px 0 112px;
  margin-top: var(--sp-16);
}

.pull-quote__text {
  position: relative;
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 400;
  line-height: 1.62;
  color: var(--color-porcelain);
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  padding: 0;
}

.pull-quote__text::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 80px;
  line-height: 0.85;
  height: auto;
  overflow: visible;
  color: var(--color-muted-brass);
  margin-bottom: 28px;
  user-select: none;
  text-align: center;
}

.pull-quote__text::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-muted-brass);
  opacity: 0.55;
  margin: 36px auto 0;
}

/* Section 04 (picks at a glance) — checked against reference: §NN strip, 44px Newsreader heading, table with dark-green header, evidence badge pills, pull-quote block matched */

/* ============================================================
   ARTICLE BODY — full-width article flow
   ============================================================ */

.article-body {
  background: var(--color-warm-ivory);
  padding: var(--sp-20) 0 var(--sp-24);
}

.article-body .site-frame {
  width: min(100% - (var(--content-gutter) * 2), var(--content-max));
}

.on-this-page-section {
  background: var(--color-warm-ivory);
  border-top: 1px solid rgba(18, 58, 58, 0.08);
  border-bottom: 1px solid rgba(18, 58, 58, 0.08);
  padding: clamp(56px, 6vw, 84px) 0;
}

.article-body__frame {
  display: block;
}

.on-this-page {
  margin: 0;
  padding: clamp(28px, 3vw, 36px);
  background: var(--color-porcelain);
  border: 1px solid rgba(18, 58, 58, 0.18);
  border-top: 3px solid var(--color-muted-brass);
  box-shadow: 0 18px 48px rgba(18, 58, 58, 0.08);
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.on-this-page .section-label {
  margin-bottom: var(--sp-4);
}

.toc__intro {
  min-width: 0;
}

.toc__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 58, 58, 0.13);
  color: var(--color-muted-brass);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.toc__meta i {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 14px;
  background: var(--color-terracotta);
  border-radius: 999px;
  vertical-align: 0.02em;
}

.toc__meta span:first-child {
  color: var(--color-terracotta);
}

.toc__heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 27px;
}

.toc__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--color-mineral-green);
  color: var(--color-porcelain);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(18, 58, 58, 0.08);
}

.toc__icon svg {
  width: 31px;
  height: 31px;
}

.on-this-page .toc__label {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--color-mineral-green);
  margin: 0 0 7px;
}

.toc__kicker {
  margin: 0;
  color: var(--color-muted-brass);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.45;
  text-transform: uppercase;
}

.toc__nav {
  min-width: 0;
}

.on-this-page .toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(30px, 4vw, 54px);
}

.on-this-page .toc__item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0 15px;
  border-bottom: 1px solid rgba(18, 58, 58, 0.1);
}

.on-this-page .toc__num,
.on-this-page .toc__dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(192, 154, 86, 0.5);
  color: var(--color-muted-brass);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.on-this-page .toc__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--color-mineral-green);
  text-decoration: none;
}

.on-this-page .toc__link:hover {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(169, 85, 56, 0.4);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.content-col {
  min-width: 0;
  width: 100%;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 86px;
}

@media (max-width: 1080px) {
  .site-frame {
    width: min(100% - 40px, var(--content-max));
  }

  .article-body .site-frame {
    width: min(100% - 40px, var(--content-max));
  }

  .article-body__frame {
    display: block;
  }

  .on-this-page {
    grid-template-columns: 1fr;
  }

  .on-this-page .toc__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .on-this-page-section {
    padding: var(--sp-10) 0;
  }

  .on-this-page {
    padding: var(--sp-6);
  }

  .on-this-page .toc__list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BODY SECTION — long-form content within .content-col
   ============================================================ */

.body-section {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-top: 1px solid var(--border-light);
  scroll-margin-top: 86px;
}

.body-section:first-child {
  border-top: none;
  padding-top: 0;
}

.body-h2 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 2.625rem; /* 42px per design tokens */
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-6);
}

.body-h3 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 1.5rem; /* 24px per design tokens */
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-charcoal-ink);
  margin: var(--sp-10) 0 var(--sp-3);
}

.body-p {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px per design tokens — article long-form */
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-5);
}

.body-list {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px — matches body-p */
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-5);
  padding-left: var(--sp-6);
}

.body-list li {
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-2);
}

.body-section > .body-h2,
.body-section > .body-h3,
.body-section > .body-p,
.body-section > .body-list,
.body-section > .decision-table-wrap,
.body-section > .question-table,
.body-section > .editor-note-box {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.body-section > .section-strip {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HOW TO CHOOSE — decision-support band
   ============================================================ */

.choose-section {
  background: var(--color-porcelain);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 0 0 100vmax var(--color-porcelain);
  clip-path: inset(0 -100vmax);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.choose-section .body-h2 {
  color: var(--color-mineral-green);
}

.choice-path {
  max-width: 1060px;
  margin: var(--sp-10) auto 0;
}

.choice-block {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: var(--sp-10);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(18, 58, 58, 0.16);
}

.choice-block:first-child {
  border-top: 2px solid var(--color-muted-brass);
}

.choice-block .body-h3 {
  grid-column: 1;
  grid-row: 1 / -1;
  max-width: none;
  margin: 0;
}

.choice-block .body-p,
.choice-block .body-list {
  grid-column: 2;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.choice-block .body-p:last-child,
.choice-block .body-list:last-child {
  margin-bottom: 0;
}

.choice-block--rule {
  display: block;
  background: color-mix(in srgb, var(--color-soft-sage) 86%, var(--color-porcelain));
  border: 1px solid rgba(18, 58, 58, 0.18);
  box-shadow: 0 12px 38px rgba(18, 58, 58, 0.06);
  padding: var(--sp-8);
  margin-top: var(--sp-8);
}

.choice-block--rule .body-h3,
.choice-block--rule .body-p,
.choice-block--rule .body-list {
  color: var(--color-charcoal-ink);
}

.choice-block--rule .body-h3 {
  margin-bottom: var(--sp-4);
}

.choice-block--rule .body-list li::marker {
  color: var(--color-muted-brass);
  font-weight: 700;
}

.treatment-table {
  min-width: 980px;
}

@media (max-width: 760px) {
  .choose-section {
    margin-inline: 0;
    padding-inline: 0;
  }

  .choice-block {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .choice-block .body-h3,
  .choice-block .body-p,
  .choice-block .body-list {
    grid-column: auto;
    grid-row: auto;
  }

  .choice-block--rule {
    padding: var(--sp-6);
  }
}

/* ============================================================
   HOW WE EVALUATED — evidence methodology cards
   ============================================================ */

.methodology-section {
  background: var(--color-warm-ivory);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.methodology-shell {
  max-width: 958px;
  margin: 0 auto;
}

.methodology-section .body-h2,
.methodology-intro,
.evidence-labels > .body-h3,
.evidence-labels > .body-p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-section .body-h2 {
  margin-bottom: var(--sp-6);
  color: var(--color-mineral-green);
}

.methodology-intro {
  margin-bottom: var(--sp-12);
}

.methodology-shell > .section-strip {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-limits {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: var(--sp-10);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(18, 58, 58, 0.16);
  border-bottom: 1px solid rgba(18, 58, 58, 0.16);
  margin-bottom: var(--sp-16);
}

.methodology-limits .body-h3 {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

.methodology-limit-list {
  grid-column: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.methodology-limit-list li {
  position: relative;
  padding-left: var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--color-charcoal-ink);
}

.methodology-limit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-terracotta);
}

.methodology-limits .body-p {
  grid-column: 2;
  max-width: none;
  margin: var(--sp-3) 0 0;
}

.evidence-labels {
  margin-top: var(--sp-12);
}

.evidence-labels > .body-h3 {
  margin-bottom: var(--sp-3);
}

.evidence-labels > .body-p {
  margin-bottom: var(--sp-8);
}

.evidence-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
}

.evidence-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  background: var(--color-porcelain);
  border: 1px solid rgba(18, 58, 58, 0.1);
  box-shadow: 0 12px 34px rgba(18, 58, 58, 0.05);
}

.evidence-card__head {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}

.evidence-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: inherit;
}

.evidence-card__body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-charcoal-ink);
  background: var(--color-porcelain);
  margin: 0;
  padding: var(--sp-5);
}

.evidence-card--certified .evidence-card__head {
  background: var(--color-mineral-green);
  color: var(--color-warm-ivory);
}

.evidence-card--manufacturer .evidence-card__head,
.evidence-card--confirmation .evidence-card__head {
  background: var(--color-terracotta);
  color: var(--color-porcelain);
}

.evidence-card--independent .evidence-card__head {
  background: var(--color-muted-brass);
  color: var(--color-charcoal-ink);
}

.evidence-card--component .evidence-card__head {
  background: color-mix(in srgb, var(--color-soft-sage) 70%, var(--color-weathered-slate));
  color: var(--color-porcelain);
}

.evidence-card--unused .evidence-card__head {
  background: var(--color-weathered-slate);
  color: var(--color-porcelain);
}

.methodology-careful {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: var(--sp-10);
  margin-top: var(--sp-16);
  padding: var(--sp-8);
  background: var(--color-porcelain);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--color-muted-brass);
}

.methodology-careful .body-h3 {
  grid-column: 1;
  grid-row: 1 / span 4;
  margin: 0;
}

.methodology-careful .body-p {
  grid-column: 2;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.methodology-careful .body-p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .evidence-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .methodology-section {
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-16);
  }

  .methodology-limits,
  .methodology-careful {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .methodology-limits .body-h3,
  .methodology-limit-list,
  .methodology-limits .body-p,
  .methodology-careful .body-h3,
  .methodology-careful .body-p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .evidence-card-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   PRODUCT REVIEWS — premium review card pattern
   ============================================================ */

/* ============================================================
   RECOMMENDED SYSTEMS - use-case decision cards
   ============================================================ */

.use-case-section {
  background: var(--color-warm-ivory);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.recommendation-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--color-porcelain);
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 48px rgba(18, 58, 58, 0.055);
}

.recommendation-card__header {
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  border-top: 4px solid var(--color-mineral-green);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(216, 228, 213, 0.24), rgba(255, 253, 248, 0));
}

.recommendation-card--secondary .recommendation-card__header {
  border-top-color: var(--color-muted-brass);
  background: linear-gradient(180deg, rgba(192, 154, 86, 0.12), rgba(255, 253, 248, 0));
}

.recommendation-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--color-mineral-green);
  margin: 0;
}

.recommendation-card__details {
  margin: 0;
}

.recommendation-card__details div {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid rgba(18, 58, 58, 0.1);
}

.recommendation-card__details div:first-child {
  border-top: none;
}

.recommendation-card__details dt {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  margin: 0 0 var(--sp-2);
}

.recommendation-card__details dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal-ink);
}

@media (max-width: 960px) {
  .recommendation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .recommendation-grid {
    margin-inline: -20px;
    gap: var(--sp-5);
  }

  .recommendation-card {
    border-left: none;
    border-right: none;
  }

  .recommendation-card__header,
  .recommendation-card__details div {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
}

.product-reviews-section {
  padding-top: var(--sp-20);
}

.product-reviews-section > .body-h2 {
  color: var(--color-mineral-green);
}

.product-review-card {
  margin-top: var(--sp-10);
  background: var(--color-porcelain);
  border: 1px solid var(--border-light);
  box-shadow: 0 28px 80px rgba(18, 58, 58, 0.1);
  overflow: hidden;
}

.product-review-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  background: var(--color-mineral-green);
  color: var(--color-warm-ivory);
}

.product-review-card__title-wrap {
  padding: var(--sp-10);
}

.product-review-card__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  margin: 0 0 var(--sp-4);
}

.product-review-card__title {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-warm-ivory);
}

.product-review-card__snapshot {
  margin: 0;
  border-left: 1px solid rgba(247, 241, 232, 0.18);
  background: rgba(255, 253, 248, 0.045);
}

.product-review-card__snapshot div {
  padding: var(--sp-6);
  border-bottom: 1px solid rgba(247, 241, 232, 0.14);
}

.product-review-card__snapshot div:last-child {
  border-bottom: none;
}

.product-review-card__snapshot dt {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.62);
  margin: 0 0 var(--sp-3);
}

.product-review-card__snapshot dd {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-warm-ivory);
  margin: 0;
}

.product-review-card__snapshot .badge--strong {
  background: var(--color-muted-brass);
  color: var(--color-charcoal-ink);
}

.product-review-card__decision,
.product-review-card__proof,
.product-review-card__claim-grid,
.product-review-card__fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--border-light);
}

.product-review-card__decision-block,
.product-review-card__proof-block,
.product-review-card__claim-grid > section,
.product-review-card__fit-grid > section {
  padding: var(--sp-8);
}

.product-review-card__decision-block + .product-review-card__decision-block,
.product-review-card__proof-block + .product-review-card__proof-block,
.product-review-card__claim-grid > section + section,
.product-review-card__fit-grid > section + section {
  border-left: 1px solid var(--border-light);
}

.product-review-card__proof {
  background: color-mix(in srgb, var(--color-soft-sage) 32%, var(--color-porcelain));
}

.product-review-card__section {
  padding: var(--sp-8);
  border-bottom: 1px solid var(--border-light);
}

.product-review-card__section--narrative {
  max-width: 840px;
}

.product-review-card__subhead {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--color-mineral-green);
  margin: 0 0 var(--sp-4);
}

.product-review-card__body,
.product-review-card__list,
.product-review-card__note-list,
.product-review-card__bottom-line p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.72;
}

.product-review-card__body {
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-4);
}

.product-review-card__body:last-child {
  margin-bottom: 0;
}

.product-review-card__list,
.product-review-card__note-list {
  color: var(--color-charcoal-ink);
  margin: 0;
  padding-left: var(--sp-5);
}

.product-review-card__list li,
.product-review-card__note-list li {
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-1);
}

.product-review-card__list li:last-child,
.product-review-card__note-list li:last-child {
  margin-bottom: 0;
}

.product-review-card__list li::marker,
.product-review-card__note-list li::marker {
  color: var(--color-terracotta);
}

.product-review-card__list--claim li::marker {
  color: var(--color-muted-brass);
}

.product-review-card__list--no li::marker {
  color: var(--color-terracotta);
}

.product-review-card__note-list p {
  margin: 0 0 var(--sp-2);
}

.product-review-card__note-list ul {
  margin: var(--sp-2) 0 var(--sp-4);
  padding-left: var(--sp-5);
}

.product-review-card a {
  color: var(--color-terracotta);
  overflow-wrap: anywhere;
}

.product-snapshot-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light);
}

.product-snapshot-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.product-snapshot-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-snapshot-table th,
.product-snapshot-table td {
  padding: var(--sp-4) var(--sp-5);
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.product-snapshot-table tr:last-child th,
.product-snapshot-table tr:last-child td {
  border-bottom: none;
}

.product-snapshot-table th {
  width: 260px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mineral-green);
  background: color-mix(in srgb, var(--color-soft-sage) 30%, var(--color-porcelain));
}

.product-snapshot-table td {
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--color-charcoal-ink);
}

.product-review-card__details {
  border-bottom: 1px solid var(--border-light);
}

.product-review-card__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  padding: var(--sp-6) var(--sp-8);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--color-mineral-green);
}

.product-review-card__details summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-muted-brass);
}

.product-review-card__details[open] summary::after {
  content: "−";
}

.product-review-card__details summary:focus-visible {
  outline: 2px solid var(--color-muted-brass);
  outline-offset: -6px;
}

.product-review-card__details-content {
  padding: 0 var(--sp-8) var(--sp-8);
}

.product-review-card__claim-grid {
  background: var(--color-warm-ivory);
}

.product-review-card__fit-grid {
  background: color-mix(in srgb, var(--color-soft-sage) 18%, var(--color-porcelain));
}

.product-review-card__bottom-line {
  padding: var(--sp-8);
  background: var(--color-mineral-green);
  color: var(--color-warm-ivory);
}

.product-review-card__bottom-line .product-review-card__subhead {
  color: var(--color-muted-brass);
}

.product-review-card__bottom-line p {
  max-width: 860px;
  color: var(--color-warm-ivory);
  margin: 0 0 var(--sp-4);
}

.product-review-card__bottom-line p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .product-review-card__header,
  .product-review-card__decision,
  .product-review-card__proof,
  .product-review-card__claim-grid,
  .product-review-card__fit-grid {
    grid-template-columns: 1fr;
  }

  .product-review-card__snapshot {
    border-left: none;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
  }

  .product-review-card__decision-block + .product-review-card__decision-block,
  .product-review-card__proof-block + .product-review-card__proof-block,
  .product-review-card__claim-grid > section + section,
  .product-review-card__fit-grid > section + section {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }
}

@media (max-width: 640px) {
  .product-review-card {
    margin-inline: -20px;
    border-left: none;
    border-right: none;
  }

  .product-review-card__title-wrap,
  .product-review-card__decision-block,
  .product-review-card__proof-block,
  .product-review-card__claim-grid > section,
  .product-review-card__fit-grid > section,
  .product-review-card__section,
  .product-review-card__bottom-line {
    padding: var(--sp-6);
  }

  .product-review-card__snapshot div {
    padding: var(--sp-5) var(--sp-6);
  }

  .product-review-card__details summary {
    padding: var(--sp-6);
  }

  .product-review-card__details-content {
    padding: 0 var(--sp-6) var(--sp-6);
  }

  .product-snapshot-table,
  .product-snapshot-table tbody,
  .product-snapshot-table tr,
  .product-snapshot-table th,
  .product-snapshot-table td {
    display: block;
    width: 100%;
  }

  .product-snapshot-table th {
    border-bottom: none;
    padding-bottom: var(--sp-2);
  }

  .product-snapshot-table td {
    padding-top: 0;
  }
}

/* ============================================================
   FULL PRODUCT COMPARISON TABLE
   ============================================================ */

.comparison-section {
  scroll-margin-top: 86px;
}

.comparison-section .body-p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table-wrap {
  position: relative;
  margin: var(--sp-8) 0 var(--sp-5);
  border: 1px solid var(--border-light);
  background: var(--color-porcelain);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: inset -18px 0 0 rgba(18, 58, 58, 0.045);
}

.comparison-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-body);
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.comparison-table th,
.comparison-table td {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.52;
  color: var(--color-charcoal-ink);
  text-align: left;
  vertical-align: top;
  padding: 14px 15px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid rgba(18, 58, 58, 0.08);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--color-mineral-green);
  color: rgba(247, 241, 232, 0.72);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  left: 0;
  z-index: 5;
}

.comparison-table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 190px;
  min-width: 190px;
  background: var(--color-porcelain);
  color: var(--color-charcoal-ink);
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid rgba(18, 58, 58, 0.18);
}

.comparison-table tbody tr:nth-child(even) th[scope="row"],
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(18, 58, 58, 0.025);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:nth-child(2) {
  min-width: 190px;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(6) {
  min-width: 130px;
}

.comparison-table td:nth-child(4) {
  min-width: 280px;
}

.comparison-table td:nth-child(5),
.comparison-table td:nth-child(7) {
  min-width: 210px;
}

.comparison-source-note {
  margin: var(--sp-5) 0 0;
  padding: 16px 18px 18px;
  border-left: 2px solid var(--color-muted-brass);
  background: rgba(192, 154, 86, 0.07);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-weathered-slate);
}

.comparison-source-note h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-mineral-green);
  margin: 0 0 var(--sp-3);
}

.comparison-source-note p {
  margin: 0 0 var(--sp-3);
}

.comparison-source-note p:last-child {
  margin-bottom: 0;
}

@media (min-width: 921px) {
  .comparison-section .comparison-table {
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-section .comparison-table thead th {
    position: static;
    white-space: normal;
  }

  .comparison-section .comparison-table thead th:first-child {
    left: auto;
  }

  .comparison-section .comparison-table th,
  .comparison-section .comparison-table td {
    font-size: 11.5px;
    line-height: 1.48;
    padding: 12px 14px;
  }

  .comparison-section .comparison-table tbody th[scope="row"] {
    position: static;
    width: 16%;
    min-width: 0;
    font-size: 12px;
  }

  .comparison-section .comparison-table td:nth-child(2),
  .comparison-section .comparison-table td:nth-child(3),
  .comparison-section .comparison-table td:nth-child(4),
  .comparison-section .comparison-table td:nth-child(5),
  .comparison-section .comparison-table td:nth-child(6),
  .comparison-section .comparison-table td:nth-child(7) {
    min-width: 0;
  }

  .comparison-section .comparison-table td:nth-child(5) {
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  .comparison-table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
  }

  .comparison-table tbody tr {
    margin: 0 0 var(--sp-5);
    background: var(--color-porcelain);
    border: 1px solid var(--border-light);
  }

  .comparison-table tbody tr:nth-child(even) {
    background: rgba(18, 58, 58, 0.025);
  }

  .comparison-table tbody th[scope="row"] {
    position: static;
    width: auto;
    min-width: 0;
    padding: 16px 18px;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    background: var(--color-mineral-green);
    color: var(--color-warm-ivory);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
  }

  .comparison-table tbody tr:nth-child(even) th[scope="row"] {
    background: var(--color-mineral-green);
  }

  .comparison-table td {
    position: relative;
    display: grid;
    grid-template-columns: minmax(112px, 32%) 1fr;
    gap: 14px;
    padding: 13px 18px;
    border-right: none;
    background: transparent;
    font-size: 13px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.45;
    color: var(--color-weathered-slate);
  }

  .comparison-table td:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   QUESTION DECISION CARDS — numbered 01–06 module
   ============================================================ */

.question-cards {
  margin: var(--sp-8) 0 var(--sp-10);
}

.question-cards__header {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border-light);
}

.question-cards__title {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-2);
}

.question-cards__sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  margin: 0;
}

.question-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 var(--sp-5);
  padding: var(--sp-5) var(--sp-5);
  background: var(--color-porcelain);
  border: 1px solid var(--border-light);
  margin-bottom: 3px;
}

.question-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted-brass);
  letter-spacing: 0.04em;
  padding-top: 4px;
  line-height: 1;
}

.question-card__q {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-charcoal-ink);
  margin: 0 0 var(--sp-2);
}

.question-card__body {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal-ink);
  margin: 0;
}

/* Section §01 — Do You Actually Need RO — rebuilt to match reference */

/* ============================================================
   TOC — active state, dash items, reading progress, sourced
   ============================================================ */

.toc__item--active .toc__link {
  color: var(--color-terracotta);
  font-weight: 600;
}

.toc__item--active .toc__num {
  color: var(--color-terracotta);
}

.toc__dash {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-weathered-slate);
  flex-shrink: 0;
  min-width: 20px;
  line-height: 1;
  opacity: 0.55;
}

.toc__list--dash {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.on-this-page .toc__list--dash {
  margin-top: 14px;
  padding-top: 14px;
}

.toc__divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 16px 0;
}

.toc__progress-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  margin: 0 0 5px;
}

.toc__progress-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted-brass);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.toc__sourced {
  padding: 12px 13px 13px;
  background: rgba(18, 58, 58, 0.04);
  border: 1px solid var(--border-light);
  border-left: 2px solid var(--color-muted-brass);
}

.toc__sourced-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  margin: 0 0 7px;
}

.toc__sourced-body {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-charcoal-ink);
  margin: 0 0 8px;
}

.toc__sourced-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-terracotta);
  text-decoration: none;
}

.toc__sourced-link::after {
  content: " \2192";
}

.toc__sourced-link:hover {
  color: var(--color-terracotta-hover);
}

.on-this-page .toc__divider,
.on-this-page .toc__progress-label,
.on-this-page .toc__progress-value,
.on-this-page .toc__sourced {
  display: none;
}

/* ============================================================
   FINAL ARTICLE SECTIONS - tables, FAQ, sources
   ============================================================ */

.generated-section a {
  color: var(--color-terracotta);
}

.generated-section .article-table-wrap {
  margin: var(--sp-8) 0 var(--sp-8);
  box-shadow: none;
}

.generated-section .article-data-table {
  min-width: 0;
  table-layout: fixed;
}

.generated-section .article-data-table thead th {
  position: static;
  white-space: normal;
}

.generated-section .article-data-table thead th:first-child {
  left: auto;
}

.generated-section .article-data-table tbody th[scope="row"] {
  position: static;
  min-width: 0;
  width: auto;
  background: color-mix(in srgb, var(--color-soft-sage) 24%, var(--color-porcelain));
  border-right: 1px solid rgba(18, 58, 58, 0.1);
  color: var(--color-mineral-green);
}

.generated-section .article-data-table th,
.generated-section .article-data-table td {
  font-size: 0.83rem;
  line-height: 1.58;
}

.generated-section .article-data-table strong {
  font-weight: 700;
}

.article-table-wrap--cols-2 .article-data-table tbody th[scope="row"] {
  width: 34%;
}

.article-table-wrap--cols-3 .article-data-table tbody th[scope="row"] {
  width: 28%;
}

.article-table-wrap--cols-4 .article-data-table tbody th[scope="row"] {
  width: 20%;
}

.body-list p,
.source-list p {
  margin: 0;
}

.source-section {
  padding-bottom: 0;
}

.source-list {
  max-width: 860px;
  margin: var(--sp-8) auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-light);
}

.source-list li {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-light);
}

.source-list a {
  font-weight: 700;
  color: var(--color-terracotta);
}

.source-list__use {
  margin-top: var(--sp-2) !important;
  color: var(--color-weathered-slate);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-list {
  max-width: 760px;
  margin: var(--sp-8) auto 0;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 400;
  line-height: 1.24;
  color: var(--color-mineral-green);
  margin: 0 0 var(--sp-3);
}

.faq-item .body-p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 920px) {
  .generated-section .article-data-table {
    min-width: 0;
    table-layout: auto;
  }

  .generated-section .article-data-table tbody th[scope="row"] {
    width: auto;
    background: var(--color-mineral-green);
    color: var(--color-warm-ivory);
  }
}

/* ============================================================
   RIGHT SIDEBAR
   ============================================================ */

.right-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Sidebar figure placeholder */
.sidebar-figure {
  margin: 0;
}

.sidebar-figure__box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(18, 58, 58, 0.04) 0px,
      rgba(18, 58, 58, 0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    color-mix(in srgb, var(--color-soft-sage) 28%, var(--color-porcelain));
  border: 1px solid rgba(192, 154, 86, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.sidebar-figure__box::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(192, 154, 86, 0.22);
  pointer-events: none;
}

.sidebar-figure__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  text-align: center;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.sidebar-figure__caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  line-height: 1.5;
  margin: 8px 0 0;
}

/* Before You Shop callout */
.sidebar-callout {
  padding: 14px 16px 16px;
  background: color-mix(in srgb, var(--color-soft-sage) 55%, var(--color-porcelain));
  border: 1px solid rgba(18, 58, 58, 0.12);
  border-left: 2px solid var(--color-muted-brass);
}

.sidebar-callout__label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  margin: 0 0 10px;
}

.sidebar-callout__body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--color-charcoal-ink);
  margin: 0 0 10px;
}

.sidebar-callout__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-terracotta);
  text-decoration: none;
}

.sidebar-callout__link::after {
  content: " \2192";
}

.sidebar-callout__link:hover {
  color: var(--color-terracotta-hover);
}

/* ============================================================
   DROP CAP — first letter of opening paragraph
   ============================================================ */

.body-p--dropcap::first-letter {
  font-family: var(--font-heading);
  font-size: 4.4em;
  font-weight: 400;
  float: left;
  line-height: 0.82;
  margin: 0.055em 0.1em 0 0;
  color: var(--color-mineral-green);
  font-optical-sizing: auto;
}

/* ============================================================
   DECISION MATRIX TABLE
   ============================================================ */

.decision-table-wrap {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-8);
  border: 1px solid var(--border-light);
  background: var(--color-porcelain);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.decision-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.decision-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.decision-table thead tr {
  background: var(--color-mineral-green);
}

.decision-table th,
.decision-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  text-align: left;
}

.decision-table thead th {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.72);
}

.decision-table tbody th {
  width: 31%;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-mineral-green);
  background: color-mix(in srgb, var(--color-soft-sage) 24%, var(--color-porcelain));
}

.decision-table tbody td {
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--color-charcoal-ink);
}

.decision-table tbody tr:last-child th,
.decision-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 760px) {
  .decision-table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
  }

  .decision-table {
    min-width: 0;
    display: block;
  }

  .decision-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .decision-table tbody,
  .decision-table tr,
  .decision-table th,
  .decision-table td {
    display: block;
    width: 100%;
  }

  .decision-table tr {
    margin-bottom: var(--sp-4);
    border: 1px solid var(--border-light);
    background: var(--color-porcelain);
  }

  .decision-table tbody th {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .decision-table tbody td {
    border-bottom: 1px solid var(--border-light);
  }

  .decision-table tbody td:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   QUESTION TABLE — unified bordered table replacing cards
   ============================================================ */

.question-table {
  margin: var(--sp-6) 0 var(--sp-8);
  border: 1px solid var(--border-light);
}

.question-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: var(--color-porcelain);
  border-bottom: 1px solid var(--border-light);
}

.question-table__header-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-weathered-slate);
  margin: 0;
  line-height: 1.4;
}

.question-table__header-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(91, 103, 98, 0.65);
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

.question-table__row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 0 14px;
  align-items: start;
  padding: 14px 16px;
  background: var(--color-porcelain);
  border-bottom: 1px solid var(--border-light);
}

.question-table__row:last-child {
  border-bottom: none;
}

.question-table__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted-brass);
  letter-spacing: 0.04em;
  padding-top: 2px;
  line-height: 1;
}

.question-table__q {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
  color: var(--color-charcoal-ink);
  margin: 0 0 5px;
}

.question-table__body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--color-weathered-slate);
  margin: 0;
}

.question-table__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-weathered-slate);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  margin-top: 2px;
  align-self: start;
  flex-shrink: 0;
}

/* ============================================================
   EDITOR'S NOTE BOX
   ============================================================ */

.editor-note-box {
  margin: var(--sp-8) 0 var(--sp-6);
  padding: 15px 20px 18px;
  border-left: 2px solid var(--color-muted-brass);
  background: rgba(192, 154, 86, 0.07);
}

.editor-note-box__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-brass);
  margin-bottom: 8px;
}

.editor-note-box__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-charcoal-ink);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-mineral-green);
  color: var(--color-porcelain);
  padding-block: 56px 42px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}

.wordmark--footer {
  color: var(--color-porcelain);
}

.wordmark--footer .wordmark__mark {
  border-color: rgba(255, 253, 248, 0.22);
}

.wordmark--footer .wordmark__subtext {
  color: color-mix(in srgb, var(--color-porcelain) 58%, var(--color-soft-sage));
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav h2 {
  margin: 0 0 14px;
  color: var(--color-muted-brass);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  color: color-mix(in srgb, var(--color-porcelain) 78%, var(--color-soft-sage));
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-nav a + a {
  margin-top: 10px;
}

.footer-nav a:hover {
  color: var(--color-porcelain);
}

@media (max-width: 920px) {
  .site-footer__grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
