/* ==========================================================================
   myhair.health design system
   Premium clinical-editorial. Wide canvas, real rhythm, one locked accent.
   Trust-first: the data is the hero, but the page has to make you feel something.
   Hard rules: no coloured edge-accent strips. No one-axis image distortion.
   ========================================================================== */

/* ---- tokens ---- */
:root {
  color-scheme: light dark;

  --ink: #0f1419;
  --ink-soft: #4b5563;
  --ink-faint: #7c8698;
  --line: #e5e9ef;
  --line-soft: #eff2f6;
  --bg: #ffffff;
  --bg-tint: #f6f8fa;
  --bg-deep: #0d1b1a;          /* dark bands */
  --bg-deep-soft: #14312d;

  --accent: #0d7a63;           /* locked. one accent, whole site. */
  --accent-ink: #095a49;
  --accent-bright: #16a085;
  --accent-tint: #e6f4f0;
  --accent-line: #c3e3da;

  --warn-tint: #fdf5e9;
  --warn-line: #f1e2c6;

  --r: 14px;
  --r-sm: 10px;

  /* WIDE canvas. Text stays readable; everything else breathes. */
  --page: 78rem;               /* 1248px overall canvas */
  --text: 60rem;               /* ~960px content column: wide, not a paper roll */
  --narrow: 46rem;             /* only for genuinely long-form prose runs */

  --s--1: clamp(.875rem, .86rem + .08vw, .94rem);
  --s-0: clamp(1.06rem, 1.02rem + .2vw, 1.19rem);
  --s-1: clamp(1.28rem, 1.18rem + .5vw, 1.55rem);
  --s-2: clamp(1.7rem, 1.45rem + 1.1vw, 2.3rem);
  --s-3: clamp(2.2rem, 1.75rem + 2vw, 3.4rem);
  --s-4: clamp(2.8rem, 2rem + 3.4vw, 4.8rem);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --shadow: 0 1px 2px rgba(15,20,25,.04), 0 8px 24px -12px rgba(15,20,25,.12);
  --shadow-lift: 0 2px 4px rgba(15,20,25,.05), 0 18px 40px -16px rgba(13,122,99,.22);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8edf2;
    --ink-soft: #a2adbb;
    --ink-faint: #79859a;
    --line: #263140;
    --line-soft: #1c2531;
    --bg: #0c1116;
    --bg-tint: #131b23;
    --accent: #2fbb9c;
    --accent-ink: #4fd3b4;
    --accent-bright: #2fbb9c;
    --accent-tint: #102b26;
    --accent-line: #1d4a41;
    --warn-tint: #2a2216;
    --warn-line: #4a3c22;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px -12px rgba(0,0,0,.5);
    --shadow-lift: 0 2px 4px rgba(0,0,0,.3), 0 18px 40px -16px rgba(0,0,0,.6);
  }
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
img, picture, svg, video { max-width: 100%; display: block; height: auto; } /* one-axis guard */
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font);
  font-size: var(--s-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- containers ---- */
.wrap        { width: min(100% - 2.5rem, var(--text));  margin-inline: auto; }
.wrap--wide  { width: min(100% - 2.5rem, var(--page));  margin-inline: auto; }
.wrap--tight { width: min(100% - 2.5rem, var(--narrow)); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; background: var(--bg); padding: .6rem 1rem; z-index: 20;
  border: 1px solid var(--line); border-radius: var(--r-sm);
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- header ---- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  position: sticky; top: 0; z-index: 10;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: 68px;
  width: min(100% - 2.5rem, var(--page)); margin-inline: auto;
}
.site-logo {
  font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.site-logo__tld { color: var(--accent); }
.site-nav__list {
  display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0;
  font-size: var(--s--1); font-weight: 500;
}
.site-nav__list a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.site-nav__list a:hover { color: var(--accent); }
@media (max-width: 860px) {
  .site-nav { display: none; }
}

.site-main { padding-block: 0 0; }

/* ==========================================================================
   HERO (asymmetric split, image-led)
   ========================================================================== */
.hero {
  display: grid; gap: 2.5rem; align-items: center;
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 62rem) {
  .hero { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
}
.hero__eyebrow {
  font-size: var(--s--1); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.hero__title {
  font-size: var(--s-4); line-height: 1.04; letter-spacing: -.035em; font-weight: 700;
  text-wrap: balance; margin-bottom: 1.2rem;
}
.hero__sub { font-size: var(--s-1); color: var(--ink-soft); line-height: 1.5; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__media img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  padding: .9rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: var(--s--1);
  text-decoration: none; border: 1px solid transparent;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-lift); }
.btn--primary:hover { background: var(--accent-ink); color: #fff; }
@media (prefers-color-scheme: dark) { .btn--primary { color: #06231d; } .btn--primary:hover { color: #06231d; } }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--bg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   STAT BAND (dark, full-bleed) - the evidence, as the emotional payload
   ========================================================================== */
.band {
  background: var(--bg-deep); color: #e9f3f0;
  padding-block: clamp(3rem, 7vw, 5rem);
  margin-block: clamp(3rem, 7vw, 5rem);
}
.band__lead {
  font-size: var(--s-2); line-height: 1.25; letter-spacing: -.02em; font-weight: 650;
  max-width: 30rem; text-wrap: balance;
}
.band__grid {
  display: grid; gap: 2rem 2.5rem; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.stat__num {
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); font-weight: 700;
  letter-spacing: -.04em; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat__num small { font-size: .42em; font-weight: 600; letter-spacing: 0; opacity: .75; }
.stat__label { margin-top: .6rem; font-size: var(--s--1); color: #9fc4bb; line-height: 1.45; }
.band__note { margin-top: 2.5rem; font-size: var(--s--1); color: #7ba79d; max-width: 44rem; }

/* ==========================================================================
   PICK CARDS (asymmetric, not three-equal)
   ========================================================================== */
.picks { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 60rem) {
  .picks { grid-template-columns: 1.25fr 1fr 1fr; }
}
.pick {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.6rem 1.4rem; background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pick:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-line); }
.pick--hero { background: var(--accent-tint); border-color: var(--accent-line); }
.pick__tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: .7rem;
}
.pick__name { font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em; margin-bottom: .3rem; }
.pick__price { font-size: var(--s-2); font-weight: 700; letter-spacing: -.03em; margin-bottom: .6rem; }
.pick__why { font-size: var(--s--1); color: var(--ink-soft); flex: 1; }
.pick__link { margin-top: 1.1rem; font-size: var(--s--1); font-weight: 650; color: var(--accent-ink); text-decoration: none; }
.pick__link:hover { text-decoration: underline; }

/* ==========================================================================
   ARTICLE: prose column + sticky rail. No dead gutters.
   ========================================================================== */
.entry { padding-block: clamp(2.5rem, 5vw, 4rem); }
.entry__head { max-width: 52rem; margin-bottom: 2.5rem; }
.entry__title {
  font-size: var(--s-3); line-height: 1.1; letter-spacing: -.035em; font-weight: 700;
  text-wrap: balance; margin-bottom: 1rem;
}
.entry__standfirst {
  font-size: var(--s-1); color: var(--ink-soft); line-height: 1.5; margin: 0;
}

/* The prose column IS the measure. No max-width on paragraphs, so text fills its
   column edge to edge instead of hugging the left with a dead strip beside it. */
.entry__layout { display: grid; gap: 3rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 70rem) {
  .entry__layout {
    grid-template-columns: minmax(0, 46rem) minmax(17rem, 19rem);
    gap: 4.5rem; justify-content: space-between;
    /* NOT align-items:start. That collapses the rail column to its own height,
       leaving the sticky child no distance to travel, so it never sticks. */
  }
  .entry__layout--solo { grid-template-columns: minmax(0, 50rem); }
}

/* sticky rail: the gutter now earns its keep, and it follows the reader down */
.rail { height: 100%; }
.rail__inner { position: sticky; top: 88px; }
.rail__kicker {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: .8rem;
}
.rail__pick {
  border: 1px solid var(--accent-line); background: var(--accent-tint);
  border-radius: var(--r); padding: 1.3rem 1.4rem; margin-bottom: .9rem;
}
.rail__pick--alt { background: var(--bg-tint); border-color: var(--line); }
.rail__label { font-size: .76rem; font-weight: 650; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-ink); margin: 0 0 .5rem; }
.rail__pick--alt .rail__label { color: var(--ink-faint); }
.rail__name { font-weight: 650; letter-spacing: -.015em; margin: 0; }
.rail__price { font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em; margin: .15rem 0 .9rem; }
.rail__btn { width: 100%; }
.rail__link { font-size: var(--s--1); font-weight: 650; color: var(--accent-ink); text-decoration: none; }
.rail__link:hover { text-decoration: underline; }
.rail__note { font-size: var(--s--1); color: var(--ink-faint); line-height: 1.55; margin-top: 1.1rem; }
.rail__note a { color: var(--ink-soft); }
@media (max-width: 70rem) {
  .rail { order: -1; }                  /* on mobile the verdict comes first, not last */
  .rail__inner { position: static; }
}

.entry__content > * + * { margin-top: 1.3rem; }
.entry__content h2 {
  font-size: var(--s-2); line-height: 1.2; letter-spacing: -.025em; font-weight: 700;
  margin-top: 3.2rem; text-wrap: balance;
}
.entry__content h3 {
  font-size: var(--s-1); font-weight: 650; letter-spacing: -.015em; margin-top: 2.2rem;
}
.entry__content a { color: var(--accent-ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
.entry__content ul, .entry__content ol { padding-left: 1.35rem; max-width: 46rem; }
.entry__content li + li { margin-top: .5rem; }
.entry__content strong { font-weight: 650; }

/* tables break OUT of the text measure: they are data, they need room */
.table-scroll {
  overflow-x: auto; margin-block: 2rem;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--bg);
}
.entry__content table { font-size: var(--s--1); }
.entry__content th, .entry__content td {
  padding: .95rem 1.1rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.entry__content thead th {
  background: var(--bg-tint); font-weight: 650; white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.entry__content tbody tr:last-child td { border-bottom: 0; }
.entry__content tbody tr:hover { background: var(--bg-tint); }

/* ---- key takeaways ---- */
.takeaways {
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  border-radius: var(--r); padding: 1.7rem 1.8rem; margin-block: 2rem;
}
.takeaways h2 {
  font-size: var(--s--1); margin: 0 0 1.1rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent-ink); font-weight: 700;
}
.takeaways dl { margin: 0; display: grid; gap: 1.1rem; }
@media (min-width: 52rem) { .takeaways dl { grid-template-columns: 1fr 1fr; gap: 1.3rem 2rem; } }
.takeaways dt { font-weight: 650; margin: 0 0 .25rem; }
.takeaways dd { margin: 0; color: var(--ink-soft); font-size: var(--s--1); line-height: 1.55; }

/* ---- FAQ ---- */
.faq { margin-block: 2.2rem; display: grid; gap: .7rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 1.2rem 1.3rem; background: var(--bg); transition: border-color .2s;
}
.faq__item:hover { border-color: var(--accent-line); }
.faq__q { font-weight: 650; margin: 0 0 .4rem; }
.faq__a { margin: 0; color: var(--ink-soft); font-size: var(--s--1); line-height: 1.6; }

/* ---- pros / cons ---- */
.proscons { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-block: 2rem; }
@media (min-width: 46rem) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons__col { border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.4rem; }
.proscons__col--pro { background: var(--accent-tint); border-color: var(--accent-line); }
.proscons__col--con { background: var(--warn-tint); border-color: var(--warn-line); }
.proscons h3 { font-size: var(--s--1); margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.proscons ul { padding-left: 1.1rem; margin: 0; }
.proscons li { font-size: var(--s--1); line-height: 1.55; }
.proscons li + li { margin-top: .5rem; }

/* ---- CTA ---- */
.cta {
  border: 1px solid var(--accent-line); background: var(--accent-tint);
  border-radius: var(--r); padding: 1.8rem; margin-block: 2.4rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.cta__body { min-width: 15rem; }
.cta__price { font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em; margin: 0; }
.cta__note { font-size: var(--s--1); color: var(--ink-soft); margin-top: .35rem; }

/* ---- author / disclosure / stamp ---- */
.authorbox {
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.4rem;
  margin-block: 2.4rem; background: var(--bg-tint);
  font-size: var(--s--1); color: var(--ink-soft);
}
.authorbox p + p { margin-top: .4rem; }
.disclosure {
  font-size: var(--s--1); color: var(--ink-soft); background: var(--bg-tint);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .9rem 1.1rem; margin-block: 1.5rem;
}
.stamp { font-size: var(--s--1); color: var(--ink-faint); margin-block: .8rem; }

/* ---- TOC ---- */
.toc {
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.3rem 1.5rem; margin-block: 2rem; font-size: var(--s--1);
}
.toc strong { display: block; margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--ink-faint); }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
@media (max-width: 46rem) { .toc ol { columns: 1; } }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--accent); }

/* ---- figure (breaks out of the text measure) ---- */
.figure { margin-block: 2.4rem; }
.figure img { border-radius: var(--r); width: 100%; }
.figure figcaption { margin-top: .7rem; font-size: var(--s--1); color: var(--ink-faint); }

/* ---- pull quote ---- */
.pullquote {
  margin-block: 2.4rem; padding: 0; border: 0;
  font-size: var(--s-2); line-height: 1.3; letter-spacing: -.02em; font-weight: 650;
  color: var(--ink); max-width: 40rem; text-wrap: balance;
}
.pullquote span { color: var(--accent); }

/* ---- [results]: the honest before-and-after, built from trial data ---- */
.results {
  margin-block: 2.6rem; padding: 1.8rem;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-tint);
}
.results__head { margin-bottom: 1.6rem; }
.results__head strong { display: block; font-size: var(--s-1); letter-spacing: -.02em; }
.results__head span { display: block; margin-top: .3rem; font-size: var(--s--1); color: var(--ink-faint); }

.results__rows { display: grid; gap: 1rem; }
.results__row { display: grid; gap: .5rem 1rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 40rem) {
  .results__row { grid-template-columns: 7.5rem 1fr 8.5rem; gap: 1rem; }
}
.results__label { font-size: var(--s--1); font-weight: 650; margin: 0; }
.results__label small { display: block; font-weight: 400; color: var(--ink-faint); }
.results__track {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 999px; height: 15px; overflow: hidden;
}
.results__bar { height: 100%; border-radius: 999px; }
.results__bar--before { background: color-mix(in srgb, var(--ink) 26%, transparent); }
.results__bar--after  { background: var(--accent); }
.results__val { font-size: var(--s--1); font-weight: 700; margin: 0; font-variant-numeric: tabular-nums; }
.results__val small { font-weight: 400; color: var(--ink-faint); }

.results__delta {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: var(--s-1); letter-spacing: -.015em;
}
.results__sham { margin-top: .9rem; color: var(--ink-soft); font-size: var(--s--1); }
.results__note { margin-top: 1.1rem; font-size: var(--s--1); color: var(--ink-faint); line-height: 1.55; }

/* ---- [socialproof]: the real Trustpilot score, mediocre and explained ---- */
.proof {
  margin-block: 2.6rem; display: grid; gap: 1.6rem;
  grid-template-columns: 1fr; align-items: start;
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem 1.8rem;
  background: var(--bg);
}
@media (min-width: 44rem) { .proof { grid-template-columns: 9.5rem 1fr; gap: 2rem; } }
.proof__score { text-align: left; }
.proof__num {
  font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem); font-weight: 700;
  letter-spacing: -.04em; line-height: 1; margin: 0; font-variant-numeric: tabular-nums;
}
.proof__num small { font-size: .36em; font-weight: 600; color: var(--ink-faint); letter-spacing: 0; }
.proof__meta { margin-top: .6rem; font-size: var(--s--1); color: var(--ink-soft); line-height: 1.4; }
.proof__meta span { color: var(--ink-faint); }
.proof__body p { margin: 0; }
.proof__body p + p { margin-top: .8rem; color: var(--ink-soft); font-size: var(--s--1); }

/* ==========================================================================
   HOMEPAGE SECTIONS
   ========================================================================== */
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section__head { max-width: 40rem; margin-bottom: 2.2rem; }
.section__title { font-size: var(--s-2); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; text-wrap: balance; }
.section__sub { margin-top: .8rem; color: var(--ink-soft); }

.grid-2 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 52rem) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.6rem;
  background: var(--bg); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-line); }
.card h3 { font-size: var(--s-1); font-weight: 650; letter-spacing: -.02em; margin: 0 0 .5rem; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card:hover h3 a { color: var(--accent-ink); }
.card p { font-size: var(--s--1); color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* split feature: image + text, used ONCE */
.split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 60rem) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split img { border-radius: var(--r); width: 100%; }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line); margin-top: 5rem; padding-block: 3rem 2.5rem;
  background: var(--bg-tint); font-size: var(--s--1); color: var(--ink-soft);
}
.site-footer__disclosure { max-width: 44rem; margin-bottom: 1.5rem; }
.site-footer__list { display: flex; flex-wrap: wrap; gap: 1.4rem; list-style: none; padding: 0; margin: 0 0 1.5rem; }
.site-footer__list a { color: var(--ink-soft); text-decoration: none; }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__legal { color: var(--ink-faint); }

/* ==========================================================================
   MOTION - motivated only: content enters as you reach it. Nothing loops.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 42%;
  }
  @keyframes reveal-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* reversed split so the image+text rhythm alternates instead of repeating */
@media (min-width: 60rem) {
  .split--reverse > *:first-child { order: 2; }
  .split--reverse > *:last-child  { order: 1; }
}

/* ---- [emotion]: an emotional beat, always carried by an image ---- */
.emotion {
  display: grid; gap: 1.6rem; align-items: center;
  grid-template-columns: 1fr;
  margin-block: 2.8rem;
  padding: 1.6rem;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
@media (min-width: 46rem) {
  .emotion { grid-template-columns: 1fr 1.15fr; gap: 2rem; padding: 1.8rem; }
  .emotion--flip .emotion__media { order: 2; }
  .emotion--flip .emotion__body  { order: 1; }
}
.emotion__media img { border-radius: var(--r-sm); width: 100%; }
.emotion__title {
  font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 .7rem; text-wrap: balance;
}
.emotion__body p { margin: 0; color: var(--ink-soft); }
.emotion__body p + p { margin-top: .8rem; }
.emotion__body strong { color: var(--ink); font-weight: 650; }

/* ---- [voices]: real, attributed, verifiable quotes. Never invented. ---- */
.voices { margin-block: 2.8rem; }
.voices__title { font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em; margin: 0 0 .4rem; }
.voices__note { font-size: var(--s--1); color: var(--ink-faint); margin: 0 0 1.4rem; }
.voices__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 52rem) { .voices__grid { grid-template-columns: repeat(3, 1fr); } }
.voice {
  margin: 0; padding: 1.4rem 1.5rem;
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  border-radius: var(--r); display: flex; flex-direction: column;
}
.voice__text {
  margin: 0 0 1rem; font-size: var(--s-0); line-height: 1.5;
  font-weight: 500; color: var(--ink); flex: 1;
}
.voice__text::before { content: "\201C"; }
.voice__text::after  { content: "\201D"; }
.voice__cite { font-size: var(--s--1); line-height: 1.4; }
.voice__cite a { color: var(--accent-ink); text-decoration: none; }
.voice__cite a:hover { text-decoration: underline; }
.voice__cite span { display: block; color: var(--ink-faint); margin-top: .15rem; }

/* the WIRED 9/10 leads: real, verifiable, and stronger than any aggregate */
.voice--lead { background: var(--bg-deep); border-color: var(--bg-deep); }
.voice--lead .voice__text { color: #fff; font-size: var(--s-1); font-weight: 600; letter-spacing: -.015em; }
.voice--lead .voice__cite a { color: #7fe3c8; }
.voice--lead .voice__cite span { color: #8fb3aa; }
@media (min-width: 52rem) { .voice--lead { grid-column: span 1; } }
