/* ==========================================================================
   Clarion Health Reviews - GlucoVive review site
   Theme: "Petrol & Tangerine" - warm editorial consumer-report
   Naming: BEM-ish (block__element--modifier), semantic blocks, no brand prefix
   ========================================================================== */

/* --- Font fallbacks (metric-matched to reduce swap CLS) --------------------- */
@font-face {
  font-family: "Spectral fb";
  src: local("Georgia");
  size-adjust: 102%;
  ascent-override: 90%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Golos fb";
  src: local("Arial");
  size-adjust: 99%;
  ascent-override: 96%;
  descent-override: 24%;
  line-gap-override: 0%;
}

/* --- Tokens ---------------------------------------------------------------- */
:root {
  --paper: #f6f1e7;
  --paper-2: #fffdf8;
  --panel: #ffffff;
  --ink: #1b2422;
  --ink-soft: #545e59;
  --teal: #0c5b57;
  --teal-deep: #073f3d;
  --teal-tint: #e4efec;
  --orange: #d9591f;
  --orange-cta: #c14a15;
  --orange-cta-hover: #a83e0f;
  --amber: #e0972a;
  --clay: #a24a1e;
  --clay-tint: #f7e9df;
  --line: #e3dbc9;
  --line-soft: #ede6d6;
  --shadow: 0 1px 2px rgba(20, 33, 30, .05), 0 8px 26px rgba(20, 33, 30, .07);
  --shadow-sm: 0 1px 2px rgba(20, 33, 30, .06);
  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 74rem;
  --measure: 43rem;
  --font-display: "Spectral", "Spectral fb", Georgia, "Times New Roman", serif;
  --font-body: "Golos Text", "Golos fb", Arial, Helvetica, sans-serif;
}

/* --- Reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-underline-offset: .18em; }
a:hover { color: var(--teal-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.16; color: var(--ink); font-weight: 700; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.05rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1.05em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }

/* --- Utilities ------------------------------------------------------------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.u-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--teal-deep); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .15s ease; text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 3px; }

/* --- Disclosure bar -------------------------------------------------------- */
.disclosure-bar {
  background: var(--teal-deep); color: #eaf3f0; font-size: .86rem; line-height: 1.5;
  text-align: center; padding: .55rem 0;
}
.disclosure-bar .wrap { display: block; }
.disclosure-bar a { color: #ffd9a8; font-weight: 600; }
.disclosure-bar a:hover { color: #fff; }

/* --- Header / nav ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 231, .93);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 62px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: grid; place-items: center; color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem; box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; }
.brand__name span { color: var(--teal); }
.nav { display: flex; align-items: center; gap: .3rem; }
.nav__list { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: .5rem .7rem; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-weight: 500; font-size: .96rem;
}
.nav__link:hover { background: var(--teal-tint); color: var(--teal-deep); }
.nav__link[aria-current="page"] { color: var(--teal); font-weight: 600; }
.nav__cta {
  margin-left: .35rem; padding: .55rem .95rem; border-radius: 9px; text-decoration: none;
  background: var(--orange-cta); color: #fff; font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover { background: var(--orange-cta-hover); color: #fff; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--panel);
  border-radius: 9px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch;
    gap: .15rem; background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: .7rem 1.2rem 1rem; box-shadow: var(--shadow); display: none;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__link { padding: .7rem .6rem; border-radius: 8px; }
  .nav__cta { margin: .4rem 0 0; text-align: center; padding: .75rem; }
}

/* --- Breadcrumb ------------------------------------------------------------ */
.crumbs { font-size: .85rem; color: var(--ink-soft); padding: .8rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .35rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--teal); text-decoration: none; }

/* --- Layout primitives ----------------------------------------------------- */
main { display: block; }
.section { padding: 1.6rem 0; }
.section--tight { padding: 1rem 0; }
.section__title { margin-bottom: .5rem; }
.section__title--rule { border-bottom: 2px solid var(--teal); padding-bottom: .35rem; display: inline-block; }
.lead { font-size: 1.14rem; line-height: 1.6; color: #26312d; }
.kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700;
  color: var(--orange); font-family: var(--font-body); margin-bottom: .5rem;
}
.eyebrow { color: var(--teal); font-weight: 600; }

/* --- Review hero ----------------------------------------------------------- */
.review-hero { padding: 1.8rem 0 .4rem; }
.page-title { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.15rem); font-weight: 800; margin: 0 0 .35rem; }
.subclaim { font-size: 1.22rem; color: var(--teal-deep); font-family: var(--font-display); font-weight: 500; margin: 0 0 1rem; }

/* --- Byline ---------------------------------------------------------------- */
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  font-size: .9rem; color: var(--ink-soft); padding: .5rem 0 0; border-top: 1px solid var(--line);
}
.byline__meta { display: inline-flex; align-items: center; gap: .4rem; }
.byline strong { color: var(--ink); font-weight: 600; }
.byline a { font-weight: 600; }

/* --- Verdict box ----------------------------------------------------------- */
.verdict {
  background: var(--panel); border: 1px solid var(--line); border-top: 5px solid var(--teal);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin: 1.4rem 0;
}
.verdict__grid { display: grid; grid-template-columns: 200px 1fr; gap: 1.4rem; align-items: start; }
.verdict__scorebox { text-align: center; }
.verdict__scorenum { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: 1; color: var(--teal); }
.verdict__scoreout { color: var(--ink-soft); font-weight: 600; font-size: 1rem; }
.verdict__label { display: inline-block; margin-top: .5rem; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.verdict__prod { margin-top: 1rem; }
.verdict__prod img { margin-inline: auto; border-radius: 10px; }
.verdict__prod-cap { font-size: .78rem; color: var(--ink-soft); margin-top: .4rem; }
.verdict__bottomline { font-size: 1.16rem; line-height: 1.55; font-family: var(--font-display); font-weight: 500; margin: 0 0 1rem; }
.verdict__bottomline b { color: var(--teal-deep); font-weight: 700; }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--amber); font-size: 1.15rem; line-height: 1; letter-spacing: 1px; }
.stars--lg { font-size: 1.5rem; }
.stars__track { position: relative; }

/* Fact grid (dl with direct dt/dd) */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.facts > dt { padding: .55rem .8rem; background: var(--teal-tint); color: var(--teal-deep); font-weight: 600; font-size: .84rem; border-bottom: 1px solid var(--line); }
.facts > dd { padding: .55rem .8rem; margin: 0; font-weight: 500; font-size: .95rem; border-bottom: 1px solid var(--line); }
@media (max-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } .facts > dt { font-size: .8rem; } }
@media (max-width: 680px) {
  .verdict { padding: 1.2rem; }
  .verdict__grid { grid-template-columns: 1fr; gap: 1rem; }
  .verdict__scorebox { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .2rem 1rem; text-align: left; }
  .verdict__scorenum { grid-row: 1; }
  .verdict__label { grid-column: 1 / -1; margin-top: 0; }
  .verdict__prod { grid-column: 1 / -1; margin-top: .6rem; display: flex; align-items: center; gap: 1rem; }
  .verdict__prod img { max-width: 130px; margin-inline: 0; }
  .verdict__prod-cap { margin-top: 0; }
}

/* --- CTA ------------------------------------------------------------------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--orange-cta); color: #fff; text-decoration: none; font-weight: 700;
  padding: .85rem 1.5rem; border-radius: 10px; font-size: 1.02rem; box-shadow: var(--shadow-sm);
  border: 0; cursor: pointer; transition: background .15s ease, transform .05s ease;
  min-height: 48px; letter-spacing: .01em;
}
.cta:hover { background: var(--orange-cta-hover); color: #fff; }
.cta:active { transform: translateY(1px); }
.cta--block { display: flex; width: 100%; }
.cta--ghost { background: transparent; color: var(--teal-deep); border: 2px solid var(--teal); box-shadow: none; }
.cta--ghost:hover { background: var(--teal-tint); color: var(--teal-deep); }
.cta--lg { font-size: 1.1rem; padding: 1rem 1.8rem; }
.cta__arrow { font-size: 1.05em; }
.cta-note { font-size: .8rem; color: var(--ink-soft); margin: .55rem 0 0; line-height: 1.45; }
.cta-note a { font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-top: 1rem; }

/* --- TL;DR / callouts ------------------------------------------------------ */
.callout { background: var(--teal-tint); border-left: 4px solid var(--teal); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; margin: 1.2rem 0; }
.callout__label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: .3rem; }
.callout p:last-child { margin-bottom: 0; }
.callout--amber { background: #fbf1dd; border-left-color: var(--amber); }

/* --- TOC ------------------------------------------------------------------- */
.toc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin: 1.4rem 0; }
.toc__title { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--ink-soft); margin-bottom: .6rem; font-family: var(--font-body); }
.toc__list { columns: 2; column-gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.toc__list li { margin-bottom: .35rem; break-inside: avoid; }
.toc__list a { text-decoration: none; font-weight: 500; }
.toc__list a:hover { text-decoration: underline; }
@media (max-width: 560px) { .toc__list { columns: 1; } }

/* --- Price curiosity band -------------------------------------------------- */
.price-band {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #eef6f3; border-radius: var(--radius); padding: 1.5rem 1.6rem; margin: 1.6rem 0;
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; align-items: center;
}
.price-band__title { color: #fff; margin: 0 0 .3rem; font-size: 1.35rem; }
.price-band__text { margin: 0; color: #d7e7e2; font-size: .98rem; }
.price-band .cta { background: var(--amber); color: #2a1c05; }
.price-band .cta:hover { background: #f0aa3d; color: #2a1c05; }
.price-band__aside { text-align: center; }
.price-band .cta-note { color: #bcd6cf; margin-top: .5rem; }
.price-band a.cta-note-link, .price-band .cta-note a { color: #ffe1b6; }
@media (max-width: 720px) { .price-band { grid-template-columns: 1fr; } .price-band__aside { text-align: left; } }

/* --- Pros / cons ----------------------------------------------------------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 1.2rem 0; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.card--pro { border-top: 4px solid var(--teal); }
.card--con { border-top: 4px solid var(--clay); }
.card__title { font-size: 1.12rem; margin-bottom: .7rem; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; line-height: 1.5; }
.checklist li::before { position: absolute; left: 0; top: .05em; font-weight: 700; font-size: 1rem; }
.card--pro .checklist li::before { content: "+"; color: var(--teal); }
.card--con .checklist li::before { content: "-"; color: var(--clay); }
@media (max-width: 680px) { .proscons { grid-template-columns: 1fr; } }

/* --- Criteria bars --------------------------------------------------------- */
.criteria { margin: 1.1rem 0; display: grid; gap: .75rem; }
.bar { display: grid; grid-template-columns: 12.5rem 1fr 2.7rem; align-items: center; gap: .8rem; }
.bar__label { font-weight: 500; font-size: .95rem; }
.bar__track { height: 12px; background: var(--line-soft); border-radius: 20px; overflow: hidden; }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--teal), #12857f); border-radius: 20px; }
.bar__val { font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); text-align: right; font-size: .98rem; }
@media (max-width: 620px) { .bar { grid-template-columns: 1fr 2.4rem; } .bar__track { grid-column: 1 / -1; order: 3; } }

/* --- Snapshot stat cards (each dl = one dt + one dd) ------------------------ */
.snapshot__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin: 1.1rem 0; }
.statcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem .9rem;
  box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column-reverse; text-align: center; min-height: 100%;
}
.statcard__num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1.05; color: var(--teal); margin: 0; }
.statcard__label { font-size: .82rem; color: var(--ink-soft); margin-top: .3rem; line-height: 1.35; }
.statcard--accent .statcard__num { color: var(--orange); }
@media (max-width: 760px) { .snapshot__grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Tables ---------------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 1.1rem 0; border: 1px solid var(--line); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 34rem; }
.data-table caption { text-align: left; font-size: .84rem; color: var(--ink-soft); padding: .7rem .9rem 0; }
.data-table th, .data-table td { padding: .62rem .85rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.data-table thead th { background: var(--teal-deep); color: #eef6f3; font-weight: 600; font-size: .88rem; }
.data-table tbody tr:nth-child(even) { background: #faf6ec; }
.data-table tbody th { font-weight: 600; color: var(--ink); }
.data-table td.num, .data-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-note { font-size: .82rem; color: var(--ink-soft); margin: .4rem 0 0; }
.table-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.1rem 0; }
.table-duo .table-wrap { margin: 0; }
@media (max-width: 700px) { .table-duo { grid-template-columns: 1fr; } }

/* Mobile: fit narrow tables, stack the wide text-heavy ones into cards */
@media (max-width: 620px) {
  .data-table { min-width: 0; font-size: .9rem; }
  .table-wrap--stack { border: 0; border-radius: 0; overflow: visible; }
  .data-table--stack { border-collapse: separate; }
  .data-table--stack thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .data-table--stack caption { padding: 0 0 .5rem; }
  .data-table--stack tbody tr { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .7rem; background: var(--panel); overflow: hidden; }
  .data-table--stack tbody tr:nth-child(even) { background: var(--panel); }
  .data-table--stack tbody th[scope="row"] { display: block; background: var(--teal-tint); color: var(--teal-deep); border-bottom: 1px solid var(--line); font-size: .95rem; }
  .data-table--stack tbody td { display: block; text-align: left; border-bottom: 1px solid var(--line-soft); padding: .5rem .85rem; }
  .data-table--stack tbody tr td:last-child { border-bottom: 0; }
  .data-table--stack tbody td::before { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; color: var(--ink-soft); margin-bottom: .1rem; }
  .data-table--ing tbody td:nth-of-type(1)::before { content: "Listed role"; }
  .data-table--ing tbody td:nth-of-type(2)::before { content: "Dose"; }
  .data-table--cmp tbody td:nth-of-type(1)::before { content: "GlucoVive"; }
  .data-table--cmp tbody td:nth-of-type(2)::before { content: "Typical capsule blend"; }
  .data-table--cmp tbody td:nth-of-type(3)::before { content: "Drugstore chromium"; }
}

/* --- Themes bars (frequency) ---------------------------------------------- */
.themes { display: grid; gap: .6rem; margin: 1rem 0; }
.theme { display: grid; grid-template-columns: 1fr; gap: .25rem; }
.theme__head { display: flex; justify-content: space-between; gap: 1rem; font-size: .94rem; }
.theme__pct { font-weight: 700; color: var(--teal-deep); font-variant-numeric: tabular-nums; }
.theme__track { height: 9px; background: var(--line-soft); border-radius: 20px; overflow: hidden; }
.theme__fill { height: 100%; background: var(--teal); border-radius: 20px; }
.theme--neg .theme__fill { background: var(--clay); }
.theme--neg .theme__pct { color: var(--clay); }

/* --- Star distribution ----------------------------------------------------- */
.stardist { display: grid; gap: .45rem; margin: 1rem 0; max-width: 34rem; }
.stardist__row { display: grid; grid-template-columns: 3.4rem 1fr 3rem; align-items: center; gap: .7rem; font-size: .92rem; }
.stardist__bar { height: 11px; background: var(--line-soft); border-radius: 20px; overflow: hidden; }
.stardist__fill { height: 100%; background: linear-gradient(90deg, var(--amber), #edb04f); border-radius: 20px; }
.stardist__pct { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

/* --- Testimonials ---------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.1rem 0; }
.reviews-grid--two { grid-template-columns: repeat(2, 1fr); }
.review-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-card--critical { background: #fbf6ee; border-color: #ead9c2; }
.review-card__head { display: flex; align-items: center; gap: .65rem; margin-bottom: .55rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; font-family: var(--font-display); background: var(--teal); font-size: .95rem; }
.avatar--2 { background: var(--clay); } .avatar--3 { background: var(--amber); color: #3a2606; } .avatar--4 { background: var(--teal-deep); }
.review-card__name { font-weight: 600; font-size: .96rem; }
.review-card__meta { font-size: .8rem; color: var(--ink-soft); }
.badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-tint); border-radius: 20px; padding: .1rem .5rem; margin-left: .1rem; }
.review-card__stars { margin: .1rem 0 .4rem; }
.review-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin: 0 0 .35rem; }
.review-card__body { margin: 0; font-size: .95rem; color: #2c352f; }
@media (max-width: 860px) { .reviews-grid, .reviews-grid--two { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews-grid, .reviews-grid--two { grid-template-columns: 1fr; } }

/* --- Safety-net mini block (after critical reviews) ------------------------ */
.safety-net { background: var(--clay-tint); border: 1px solid #ecd6c3; border-radius: var(--radius); padding: 1.15rem 1.3rem; margin: 1.2rem 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.safety-net p { margin: 0; max-width: 40rem; }
.safety-net .cta { flex: none; }

/* --- Review form ----------------------------------------------------------- */
.review-form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); margin: 1.2rem 0; }
.field { margin-bottom: 1rem; }
.field__label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field__hint { font-weight: 400; color: var(--ink-soft); font-size: .84rem; }
.field__input, .field__textarea, .field__select {
  width: 100%; padding: .7rem .85rem; border: 1px solid #cbc4b2; border-radius: 9px; background: #fffef9;
  font-family: inherit; font-size: 1rem; color: var(--ink); min-height: 46px;
}
.field__textarea { min-height: 120px; resize: vertical; }
.field__input:focus, .field__textarea:focus, .field__select:focus { border-color: var(--teal); outline: 2px solid var(--teal-tint); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .field-grid { grid-template-columns: 1fr; } }
.field--honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* CSS-only star rating input (radios, reversed for sibling fill) */
.rating-input { border: 0; padding: 0; margin: 0 0 1rem; }
.rating-input__legend { font-weight: 600; font-size: .92rem; margin-bottom: .3rem; padding: 0; }
.rating-stars { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; }
.rating-stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-stars label { cursor: pointer; font-size: 1.9rem; line-height: 1; color: #d6cdbb; padding: .1rem; min-width: 40px; min-height: 40px; text-align: center; }
.rating-stars label::before { content: "\2605"; }
.rating-stars input:checked ~ label,
.rating-stars label:hover, .rating-stars label:hover ~ label { color: var(--amber); }
.rating-stars input:focus-visible + label { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.consent { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; }
.consent input { margin-top: .28rem; width: 18px; height: 18px; flex: none; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin: .3rem 0 1rem; }
.form-success { display: none; background: var(--teal-tint); border: 1px solid #bcd8d1; border-left: 4px solid var(--teal); border-radius: 9px; padding: 1rem 1.2rem; color: var(--teal-deep); font-weight: 500; }
.form-success.is-visible { display: block; }

/* --- Pricing --------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.2rem 0; align-items: stretch; }
.plan { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.25rem 1.35rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-align: center; }
.plan--featured { border: 2px solid var(--orange); box-shadow: var(--shadow); }
.plan__badge { position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); background: var(--orange-cta); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .8rem; border-radius: 20px; white-space: nowrap; }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.plan__supply { font-size: .85rem; color: var(--ink-soft); margin-bottom: .7rem; }
.plan__price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--teal); line-height: 1; }
.plan__price sup { font-size: 1.1rem; top: -1rem; }
.plan__per { font-size: .82rem; color: var(--ink-soft); }
.plan__list { list-style: none; padding: 0; margin: .9rem 0; font-size: .9rem; display: grid; gap: .3rem; text-align: left; }
.plan__list li { padding-left: 1.3rem; position: relative; }
.plan__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan__total { font-size: .9rem; color: var(--ink-soft); margin: .3rem 0 .1rem; }
.plan__total s { color: #a99; }
.plan__save { color: var(--clay); font-weight: 700; font-size: .9rem; margin-bottom: .9rem; }
.plan .cta { margin-top: auto; }
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; max-width: 27rem; margin-inline: auto; } }

/* --- Assurances ------------------------------------------------------------ */
.assurances { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center; margin: 1rem 0 0; font-size: .9rem; color: var(--ink-soft); }
.assurance { display: inline-flex; align-items: center; gap: .4rem; }
.assurance b { color: var(--teal-deep); font-weight: 600; }

/* --- Timeline -------------------------------------------------------------- */
.timeline { display: grid; gap: .9rem; margin: 1.1rem 0; }
.timeline__step { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px dashed var(--line); }
.timeline__when { font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); }
.timeline__note { margin: 0; }
@media (max-width: 620px) { .timeline__step { grid-template-columns: 1fr; gap: .2rem; } }

/* --- Pull quote ------------------------------------------------------------ */
.pullquote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; color: var(--teal-deep); border-left: 4px solid var(--orange); padding: .3rem 0 .3rem 1.2rem; margin: 1.4rem 0; font-weight: 500; }

/* --- FAQ ------------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; margin: 1.1rem 0; }
.faq__item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .3rem .3rem; }
.faq__item summary { cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding: .8rem 1rem; list-style: none; position: relative; padding-right: 2.4rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--orange); font-family: var(--font-body); }
.faq__item[open] summary::after { content: "\2013"; }
.faq__answer { padding: 0 1rem 1rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* --- Key takeaways --------------------------------------------------------- */
.takeaways { background: var(--teal-deep); color: #eef6f3; border-radius: var(--radius); padding: 1.5rem 1.7rem; margin: 1.4rem 0; }
.takeaways h2 { color: #fff; }
.takeaways__list { margin: .6rem 0 0; padding-left: 0; list-style: none; display: grid; gap: .6rem; }
.takeaways__list li { padding-left: 1.8rem; position: relative; }
.takeaways__list li::before { content: "\2192"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.takeaways__list b { color: #ffe1b6; }

/* --- References ------------------------------------------------------------ */
.references { font-size: .92rem; }
.reference-list { margin: 1rem 0 0; padding-left: 1.4rem; display: grid; gap: .55rem; color: #2c352f; }
.reference-list a { word-break: break-word; }
.references__note { font-size: .84rem; color: var(--ink-soft); }

/* --- Sticky mobile CTA ----------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: var(--panel); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(20,33,30,.12);
  padding: .55rem .8rem; align-items: center; gap: .7rem;
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta__text { flex: 1; font-size: .82rem; line-height: 1.3; }
.sticky-cta__text b { color: var(--teal-deep); }
.sticky-cta__btn { flex: none; background: var(--orange-cta); color: #fff; text-decoration: none; font-weight: 700; padding: .6rem 1rem; border-radius: 9px; font-size: .9rem; min-height: 44px; display: inline-flex; align-items: center; }
.sticky-cta__close { flex: none; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--paper); border-radius: 9px; cursor: pointer; font-size: 1.2rem; line-height: 1; color: var(--ink-soft); }
@media (min-width: 861px) { .sticky-cta.is-visible { display: none; } }

/* --- Article prose helpers ------------------------------------------------- */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 1.9rem; }
.prose h3 { margin-top: 1.5rem; color: var(--teal-deep); }
.section-anchor { scroll-margin-top: 84px; }

/* --- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--teal-deep); color: #cddedb; margin-top: 2.5rem; padding: 2.4rem 0 1.6rem; font-size: .92rem; }
.site-footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.8rem; }
.footer-col__title { color: #fff; font-size: 1rem; margin-bottom: .7rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.footer-brand .brand__mark { box-shadow: none; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-nav a { color: #cddedb; text-decoration: none; display: inline-block; padding: .12rem 0; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.site-footer__disclaimer { border-top: 1px solid rgba(255,255,255,.14); margin-top: 1.8rem; padding-top: 1.2rem; font-size: .82rem; color: #a9c1bd; line-height: 1.55; }
.site-footer__disclaimer p { margin: 0 0 .7rem; }
.site-footer__disclaimer a { color: #ffd9a8; }
.footer-legal { color: #93aeaa; }
@media (max-width: 760px) { .site-footer__cols { grid-template-columns: 1fr; gap: 1.2rem; } }

/* --- Spacing between major sections ---------------------------------------- */
.rule-top { border-top: 1px solid var(--line); padding-top: 1.6rem; }
