/* ============================================================
   HARTLEY DESIGN SYSTEM (v4.2)
   Palette: Slate-Teal + Cream + Camel + Soft Gold + Sage accent
   Type: DM Serif Display (display, editorial),
         Source Serif 4 (body authority + italic accents),
         DM Sans (UI)

   v4.2 NOTE (May 2026): Added dark-teal article hero variant (.hero-dark),
   medically-reviewed badge component (.review-card), tag chips (.tag-row),
   and editorial trust band (.trust-band). Patterns inspired by competitor
   trust signals, reframed for editorial integrity rather than directory
   integrity. Applied to mood hub + conditions hub initially.

   v4.1 NOTE: Display font swapped from Fraunces to DM Serif Display
   for a more newsroom feel — less ornamental, higher contrast,
   no swash italic. Caveat (hand-script) removed entirely.

   NOTE: Variable names are preserved from v3 for backwards compatibility
   with all existing HTML pages. The names are now somewhat historical
   (e.g. --clay-deep is no longer clay) but the visual result across
   the site is the new palette.
   ============================================================ */

:root {
  /* --- v4 PALETTE (mapped onto v3 variable names) --- */
  /* Greens (sage family — preserved, used as single accent) */
  --sage:      #7a9e7e;   /* unchanged — sage accent color */
  --sage-mist: #d8e1d9;   /* lightened — now a soft sage tint, used sparingly */
  --sage-deep: #2C4A30;   /* deepened — used inside the sage accent card */
  --sage-tint: #E8EDE8;   /* unchanged purpose — very pale sage */

  /* "Clay" family — now repurposed as the navy/teal primary anchor */
  --clay:       #2F4548;  /* primary slate-teal — was warm clay */
  --clay-deep:  #2F4548;  /* primary slate-teal — was deep clay; italic accents now blend */
  --clay-soft:  #C9A876;  /* warm camel — was soft clay/blush */
  --blush:      #C9A876;  /* warm camel — was blush; used in teens card */

  /* Cream family — slightly warmer, more parchment */
  --cream:      #F5F1EA;  /* base background — was cream */
  --cream-2:    #ECE3D0;  /* alternate sections — was cream-2 */
  --cream-soft: #FBF8F1;  /* card surfaces — was cream-soft */

  /* "Bark" family — now charcoal/deep slate */
  --bark:       #2C2C2C;  /* primary dark text/surfaces — was deep brown bark */
  --bark-soft:  #5C5C5C;  /* secondary muted text — was softer bark */
  --ink:        #2C2C2C;  /* primary text — was very dark brown */
  --ink-soft:   #4A4A4A;  /* body prose color — was warm brown */
  --ink-muted:  #7A7568;  /* muted/captions — was warm tan-brown */

  /* Rules and dividers — unchanged */
  --rule:      #E5DDD0;
  --rule-soft: #EFE8DA;

  /* --- New v4 tokens (added, do not break old references) --- */
  --teal:       #2F4548;  /* the canonical name for primary dark */
  --teal-deep:  #1F2D2F;  /* footer, deepest surfaces */
  --camel:      #C9A876;  /* the canonical name for warm accent */
  --camel-deep: #A88556;  /* eyebrow labels, small accents on cream */
  --gold:       #B8935A;  /* logo rule only */
  --charcoal:   #2C2C2C;  /* body text */
  --mid-gray:   #5C5C5C;  /* secondary text */

  --shadow-sm: 0 1px 2px rgba(31,45,47,.06), 0 1px 3px rgba(31,45,47,.08);
  --shadow-md: 0 4px 12px rgba(31,45,47,.08), 0 2px 4px rgba(31,45,47,.06);
  --shadow-lg: 0 16px 40px rgba(31,45,47,.12), 0 4px 12px rgba(31,45,47,.08);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: 'DM Serif Display', 'Source Serif 4', Georgia, serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  /* --font-hand removed in v4.1; if needed in future, re-add Caveat to font imports */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--camel); color: var(--teal); }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* TYPE UTILITIES */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--teal);
}
/* ITALIC ACCENT REMOVED — em now inherits, no color shift, no italic emphasis */
.display em { font-style: normal; color: inherit; font-weight: inherit; }
.hand { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--camel-deep); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel-deep);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  font-family: var(--font-body);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--teal-deep); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--cream); }
.btn-sage { background: var(--sage-deep); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-sage:hover { background: var(--teal); box-shadow: var(--shadow-lg); }
.btn-large { padding: 16px 30px; font-size: 1.02rem; }

/* CRISIS BAR */
.crisis-bar {
  background: var(--teal);
  color: var(--cream);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.crisis-bar a { color: var(--camel); font-weight: 600; border-bottom: 1px solid currentColor; transition: color 0.2s; }
.crisis-bar a:hover { color: var(--cream); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(47, 69, 72, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.nav-brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.94rem; font-weight: 500; color: var(--charcoal); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta-group { display: flex; gap: 10px; align-items: center; }
@media (min-width: 880px) { .nav-links { display: flex; } }
.menu-toggle { display: flex; flex-direction: column; gap: 4px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }
@media (min-width: 880px) { .menu-toggle { display: none; } }

/* HERO */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 69, 72, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.55;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero-centered {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(8px, 2vw, 24px) 0;
}
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-trust { max-width: 620px; margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel-deep);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--teal);
  margin-bottom: 26px;
}
/* ITALIC ACCENT REMOVED from hero title */
.hero-title em { font-style: normal; color: inherit; font-weight: inherit; }
.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-illo {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.hero-illo-mark {
  position: absolute;
  inset: 12% 16% 12% 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.hero-illo-mark svg { width: 100%; height: 100%; }
.hero-illo-card {
  position: absolute;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 500;
}
.hero-illo-card .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--camel-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.hero-illo-card .val { font-weight: 600; color: var(--teal); }
.hero-illo-card.tl { top: 18%; right: 0; }
.hero-illo-card.bl { bottom: 16%; left: 0; }
.hero-illo-card-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  flex-shrink: 0;
}
.hero-trust {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 69, 72, 0.12);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-trust-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel-deep);
  display: inline-block;
  margin-right: 14px;
}

/* SPLIT BLOCK (parents/teens) */
.split-block { padding: clamp(56px, 8vw, 96px) 0; background: var(--cream-2); }
.split-eyebrow { text-align: center; margin-bottom: 18px; }
.split-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 56px;
}
.split-title em { font-style: normal; color: inherit; font-weight: inherit; }
.split-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .split-cards { grid-template-columns: 1fr 1fr; gap: 32px; } }
.split-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.split-card.parents { background: var(--teal); color: var(--cream); }
.split-card.teens { background: var(--camel); color: var(--teal); }
.split-card.parents .split-card-eyebrow { color: var(--camel); opacity: 0.9; }
.split-card.teens .split-card-eyebrow { color: var(--teal); opacity: 0.85; }
.split-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.split-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.split-card.parents h3 { color: var(--cream); }
.split-card.teens h3 { color: var(--teal); }
.split-card h3 em { font-style: normal; color: inherit; font-weight: inherit; }
.split-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
}
.split-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
}

/* TRUST BAND */
.trust-band { background: var(--teal); color: var(--cream); padding: clamp(48px, 6vw, 72px) 0; }
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 760px) { .trust-band-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-stat { display: flex; flex-direction: column; gap: 6px; }
.trust-stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--camel);
  letter-spacing: -0.02em;
}
.trust-stat-num em { font-style: normal; }
.trust-stat-label {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.4;
}

/* SECTIONS */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section.alt { background: var(--cream-2); }
.section.deep { background: var(--teal); color: var(--cream); }
.section.deep .display, .section.deep .section-title { color: var(--cream); }
.section.deep .section-eyebrow { color: var(--camel); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head-left { flex: 1; min-width: 280px; max-width: 720px; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel-deep);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-title em { font-style: normal; color: inherit; font-weight: inherit; }
.section-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
}
.section-link {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}
.section-link:hover { color: var(--camel-deep); }

/* FIND-BY GRIDS */
.find-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 600px) { .find-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .find-grid { grid-template-columns: repeat(4, 1fr); } }
.find-grid.three { grid-template-columns: 1fr; }
@media (min-width: 760px) { .find-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .find-grid.three { grid-template-columns: repeat(3, 1fr); } }
.find-grid.six { gap: 12px; }
@media (min-width: 980px) { .find-grid.six { grid-template-columns: repeat(6, 1fr); } }

.find-tile {
  background: var(--cream-soft);
  border: 1px solid rgba(47, 69, 72, 0.08);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.find-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.find-tile-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel-deep);
}
.find-tile h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--teal);
}
.find-tile-meta { font-size: 0.86rem; color: var(--ink-soft); margin-top: auto; line-height: 1.5; }
.find-tile.compact { min-height: 96px; padding: 16px 18px; gap: 4px; }
.find-tile.compact h3 { font-size: 1.1rem; }
.find-tile.with-img { flex-direction: row; align-items: center; gap: 16px; padding: 18px 20px; }
.find-tile.with-img .find-tile-img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
}
.find-tile.with-img .find-tile-img img { width: 100%; height: 100%; }
.find-tile.with-img .find-tile-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.find-tile.featured {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--cream);
  min-height: 180px;
  padding: 28px 28px 24px;
}
.find-tile.featured h3 { color: var(--cream); font-size: 1.5rem; }
.find-tile.featured .find-tile-eyebrow { color: var(--camel); }
.find-tile.featured .find-tile-meta { color: var(--cream); opacity: 0.9; }
.find-tile.level { padding: 0; overflow: hidden; }
.find-tile.level .level-img { width: 100%; height: 80px; background: var(--cream-2); display: block; }
.find-tile.level .level-img img { width: 100%; height: 100%; object-fit: cover; }
.find-tile.level .level-body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 8px; }

/* EDITORIAL CARDS */
.editorial-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .editorial-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .editorial-row { grid-template-columns: repeat(3, 1fr); } }
.edit-card {
  background: var(--cream-soft);
  border: 1px solid rgba(47, 69, 72, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.edit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.edit-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.edit-card-img img { width: 100%; height: 100%; object-fit: cover; }
.edit-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.edit-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--camel-deep);
}
.edit-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--teal);
}
.edit-card p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: auto;
}

/* QUOTE BLOCK */
.quote-block { background: var(--sage); padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.quote-block blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--sage-deep);
  max-width: 820px;
  margin: 0 auto;
}
.quote-block .quote-attr {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-deep);
  margin-top: 24px;
  opacity: 0.85;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 840px; margin: 0 auto; }
.faq-item { background: var(--cream-soft); border: 1px solid rgba(47, 69, 72, 0.08); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--camel-deep); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--rule-soft); }
.faq-content { padding: 18px 26px 26px; font-family: var(--font-serif); font-size: 1rem; color: var(--ink-soft); line-height: 1.7; }
.faq-content > * + * { margin-top: 12px; }
.faq-content a { color: var(--teal); border-bottom: 1px solid var(--camel); }
.faq-content a:hover { color: var(--camel-deep); border-color: var(--camel-deep); }

/* CRISIS HELP STRIP — now solid teal, was clay gradient */
.crisis-strip {
  background: var(--teal);
  color: var(--cream);
  padding: clamp(56px, 8vw, 88px) 0;
  text-align: center;
}
.crisis-strip-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 720px;
  margin: 0 auto 18px;
}
.crisis-strip-sub {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 36px;
}
.crisis-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.crisis-strip .btn-primary { background: var(--camel); color: var(--teal); }
.crisis-strip .btn-primary:hover { background: var(--cream); color: var(--teal); }
.crisis-strip .btn-ghost { border-color: var(--camel); color: var(--cream); }
.crisis-strip .btn-ghost:hover { background: var(--camel); color: var(--teal); }

/* BROWSE SECTION */
.browse-section { background: var(--cream-2); padding: clamp(56px, 6vw, 72px) 0; border-top: 1px solid var(--rule-soft); }
.browse-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .browse-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 980px) { .browse-grid { grid-template-columns: repeat(4, 1fr); gap: 56px; } }
.browse-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.browse-col a { display: block; font-size: 0.95rem; color: var(--teal); padding: 8px 0; transition: color 0.2s; }
.browse-col a:hover { color: var(--camel-deep); }
.browse-col a.see-all {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--camel-deep);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

/* FOOTER */
footer { background: var(--teal-deep); color: var(--cream); padding: 72px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto 56px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.5fr repeat(5, 1fr); gap: 40px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand svg { color: var(--cream); width: 32px; height: 32px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.78;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ARTICLE / PROSE */
.article-hero {
  background: var(--cream);
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 69, 72, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.article-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel-deep);
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--teal);
  margin-bottom: 24px;
}
.article-hero h1 em { font-style: normal; color: inherit; font-weight: inherit; }
.article-dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 700px;
  margin-bottom: 32px;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.byline-item { display: flex; flex-direction: column; gap: 2px; }
.byline-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--camel-deep);
}
.byline-value { color: var(--teal); font-weight: 500; }
.byline-value a { color: var(--teal); border-bottom: 1px solid var(--camel); }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(64px, 8vw, 96px);
}
.prose > * + * { margin-top: 1.4rem; }
.prose p { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.75; color: var(--ink); }
.prose p.lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--teal);
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-top: 3rem;
  scroll-margin-top: 100px;
}
.prose h2 em { font-style: normal; color: inherit; font-weight: inherit; }
.prose h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; line-height: 1.2; color: var(--teal); margin-top: 2.2rem; }
.prose ul, .prose ol { padding-left: 1.5rem; font-family: var(--font-serif); }
.prose ul li, .prose ol li { font-size: 1.08rem; line-height: 1.7; margin-bottom: 0.5rem; color: var(--ink); }
.prose ul li::marker { color: var(--camel-deep); }
.prose blockquote {
  border-left: 3px solid var(--camel);
  padding-left: 24px;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--teal);
}
.prose hr { border: none; border-top: 1px solid var(--rule); margin: 3rem 0; }
.prose strong { font-weight: 600; color: var(--teal); }
.prose a { color: var(--teal); border-bottom: 1px solid var(--camel); transition: all 0.2s; }
.prose a:hover { color: var(--camel-deep); border-color: var(--camel-deep); }

.callout {
  background: var(--sage-mist);
  border-left: 3px solid var(--sage-deep);
  padding: 24px 28px;
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout-label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.callout p { font-size: 1rem !important; line-height: 1.6 !important; color: var(--ink) !important; margin-top: 0 !important; }
.callout p + p { margin-top: 10px !important; }

.author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--cream-2);
  border-radius: var(--radius);
  margin: 3rem 0;
}
.author-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-deep);
}
.author-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--teal); margin-bottom: 4px; }
.author-card .author-title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 14px;
}
.author-card p { font-family: var(--font-serif); font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 10px; }
.author-card p:last-child { margin-bottom: 0; }

.principles { margin: 2rem 0; border-top: 1px solid var(--rule); }
.principle {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--camel-deep);
  line-height: 1;
}
.principle h3 { font-family: var(--font-display); font-size: 1.3rem !important; font-weight: 500 !important; color: var(--teal) !important; margin: 0 0 6px !important; line-height: 1.2; }
.principle p { font-family: var(--font-serif); font-size: 1rem !important; line-height: 1.6 !important; color: var(--ink-soft) !important; margin-top: 0 !important; }

.resource-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 1.5rem 0; }
@media (min-width: 600px) { .resource-grid { grid-template-columns: 1fr 1fr; } }
.resource-card {
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.resource-card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--camel-deep);
}
.resource-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--teal); line-height: 1.2; margin: 0 !important; }
.resource-card p { font-family: var(--font-serif); font-size: 0.92rem !important; color: var(--ink-soft) !important; line-height: 1.5 !important; margin: 4px 0 0 !important; }
.resource-card .resource-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--teal);
  margin-top: 2px;
}

.sources { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.sources h3 {
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--camel-deep) !important;
  margin: 0 0 16px !important;
}
.sources ol { padding-left: 1.5rem; font-family: var(--font-body); }
.sources ol li { font-size: 0.86rem !important; line-height: 1.55; margin-bottom: 8px !important; color: var(--ink-soft) !important; }
.sources a { color: var(--teal); border-bottom: 1px solid var(--camel); }

.draft-notice {
  background: var(--cream-2);
  border-left: 3px solid var(--camel-deep);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 2rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  font-family: var(--font-body);
}
.draft-notice strong {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--camel-deep);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

/* STATE GUIDE */
.state-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--cream);
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.state-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 241, 234, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.state-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.state-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--camel);
  margin-bottom: 22px;
}
.state-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 22px;
}
.state-hero h1 em { font-style: normal; color: inherit; font-weight: inherit; }
.state-hero-dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.92;
  max-width: 720px;
  margin-bottom: 28px;
}
.state-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 168, 118, 0.3);
  font-size: 0.84rem;
  color: var(--cream);
  opacity: 0.88;
}
.state-hero-meta strong {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.state-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px var(--gutter) 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 980px) { .state-layout { grid-template-columns: 220px 1fr; gap: 56px; } }
.state-toc { font-size: 0.86rem; }
@media (min-width: 980px) { .state-toc { position: sticky; top: 96px; } }
.state-toc-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.state-toc a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: all 0.15s;
  line-height: 1.4;
}
.state-toc a:hover { color: var(--teal); border-left-color: var(--camel); }
.state-content > * + * { margin-top: 1.4rem; }
.state-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin-top: 3rem;
  scroll-margin-top: 100px;
}
.state-content h2 em { font-style: normal; color: inherit; font-weight: inherit; }
.state-content h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--teal); margin-top: 2rem; }
.state-content p { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
.state-content p.lead { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; font-weight: 500; line-height: 1.4; color: var(--teal); }
.state-content ul, .state-content ol { padding-left: 1.5rem; font-family: var(--font-serif); }
.state-content ul li, .state-content ol li { font-size: 1.04rem; line-height: 1.7; margin-bottom: 0.5rem; color: var(--ink); }
.state-content ul li::marker { color: var(--camel-deep); }
.state-content strong { font-weight: 600; color: var(--teal); }
.state-content a { color: var(--teal); border-bottom: 1px solid var(--camel); transition: all 0.15s; }
.state-content a:hover { color: var(--camel-deep); border-color: var(--camel-deep); }

/* HUB SECTIONS (cluster index pages) */
.hub-section-head { max-width: 720px; margin-bottom: 40px; }
.hub-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 14px;
}
.hub-section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 14px;
}
.hub-section-head h2 em { font-style: normal; color: inherit; font-weight: inherit; }
.hub-section-head p { font-family: var(--font-serif); font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
.hub-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card {
  background: var(--cream-soft);
  border: 1px solid rgba(47, 69, 72, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 200px;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hub-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel-deep);
}
.hub-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; line-height: 1.15; color: var(--teal); }
.hub-card p { font-family: var(--font-serif); font-size: 0.96rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.hub-card-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-top: auto;
}
.hub-card:hover .hub-card-link { color: var(--camel-deep); }

/* RELATED footer */
.related { background: var(--cream-2); padding: clamp(48px, 6vw, 64px) 0; border-top: 1px solid var(--rule-soft); }
.related-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.related h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 24px;
}
.related-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-item { padding: 18px 0; border-top: 1px solid var(--rule); text-decoration: none; color: inherit; display: block; }
.related-item-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel-deep);
  margin-bottom: 6px;
}
.related-item h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--teal); line-height: 1.2; }
.related-item:hover h4 { color: var(--camel-deep); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 1.5rem; max-width: 520px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel-deep);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  background: var(--cream);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-submit {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--teal);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--teal-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ============================================================
   v4.1 NEW COMPONENTS (added for mood hub, reusable across clusters)
   - .stats-band + .stat-card: visual stats display block
   - .comparison: 2-column compare/contrast block
   - .pullquote: editorial pullquote with clay/teal left rule
   - .level-tile + .level-banner: levels-of-care intensity tiles
   - .hub-card.coming: faded state for cluster cards not yet published
   ============================================================ */

/* Stats band */
.stats-band {
  background: var(--cream-2);
  padding: clamp(56px, 7vw, 80px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats-head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 4vw, 48px);
  text-align: center;
  padding: 0 var(--gutter);
}
.stats-head .eyebrow { margin: 0 auto 14px; display: inline-block; }
.stats-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0 0 14px;
}
.stats-head h2 em { font-style: italic; color: var(--camel-deep); }
.stats-head p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--teal);
}
.stat-num.camel { color: var(--camel-deep); }
.stat-num.sage  { color: var(--sage-deep); }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.stat-source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.stats-attribution {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* Pullquote */
.prose .pullquote,
.pullquote {
  border-left: 4px solid var(--camel-deep);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--teal);
  font-weight: 500;
}

/* Comparison block (adult vs adolescent, etc.) */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 36px 0 8px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
@media (max-width: 680px) { .comparison { grid-template-columns: 1fr; } }
.comp-col { padding: 26px 28px; }
.comp-col + .comp-col { border-left: 1px solid var(--rule); }
@media (max-width: 680px) {
  .comp-col + .comp-col { border-left: none; border-top: 1px solid var(--rule); }
}
.comp-col.adult { background: var(--cream-soft); }
.comp-col.adol  { background: var(--cream); }
.comp-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.comp-col.adult .comp-eyebrow { color: var(--ink-muted); }
.comp-col.adol  .comp-eyebrow { color: var(--camel-deep); }
.comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.55;
}
.comp-list li {
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink-soft);
}
.comp-list li:first-child { border-top: none; padding-top: 0; }
.comp-col.adol .comp-list li { color: var(--ink); }

/* Levels-of-care tiles with bar-chart banners */
.level-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 980px) { .level-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .level-grid { grid-template-columns: 1fr; } }
.level-tile {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.level-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.level-banner {
  height: 78px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
  gap: 5px;
}
.level-bar { flex: 1; background: var(--sage-mist); border-radius: 3px 3px 0 0; }
.level-bar.on { background: var(--teal); }
.level-tile-body { padding: 18px 20px; }
.level-tile-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.level-tile h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 6px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.level-tile p {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* Hub card — coming-soon variant (used when a cluster card has no destination yet) */
.hub-card.coming {
  opacity: 0.78;
  cursor: default;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream-2) 100%);
}
.hub-card.coming:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--rule); }
.hub-card.coming .hub-card-link { color: var(--ink-muted); }
.hub-card-eyebrow .chip {
  display: inline-block;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  color: var(--ink-muted);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  margin-left: 8px;
}

/* ============================================================
   v4.2 NEW COMPONENTS (BehavioralHealthGuide-inspired trust signals)
   - .hero-dark: dark-teal full-bleed article hero
   - .review-card: medically-reviewed badge (works for pending or signed-off states)
   - .tag-row + .tag-chip: editorial tag pills below byline
   - .trust-band + .trust-steps: editorial integrity 4-step pattern
   ============================================================ */

/* Dark teal article hero (alternative to .article-hero) */
.hero-dark {
  position: relative;
  background: linear-gradient(170deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  padding: clamp(64px, 9vw, 112px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,118,.13) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,0) 85%);
  pointer-events: none;
}
.hero-dark-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 900px) { .hero-dark-inner { grid-template-columns: 1fr; } }

.hero-dark .breadcrumb {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--camel); opacity: 0.92;
  margin-bottom: 18px;
}
.hero-dark h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 5.8vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--cream); margin: 0 0 22px;
}
.hero-dark h1 em { font-style: italic; color: var(--camel); }
.hero-dark .hero-dek {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem); line-height: 1.5;
  color: rgba(245,241,234,0.82); max-width: 54ch; margin: 0 0 28px;
}

/* Hero illustration card (dark variant) */
.hero-illus-dark {
  position: relative; aspect-ratio: 1 / 1.05;
  background: linear-gradient(160deg, rgba(201,168,118,0.12) 0%, rgba(122,158,126,0.10) 100%);
  border: 1px solid rgba(201,168,118,0.22);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-illus-dark svg { width: 76%; height: auto; }

/* Medically Reviewed badge (works in both states: pending and signed-off) */
.review-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: rgba(245,241,234,0.06);
  border-left: 4px solid var(--camel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 0 0 28px;
  max-width: 760px;
  align-items: center;
}
.review-card.on-cream { background: var(--cream-soft); border-left-color: var(--sage-deep); }
.review-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,168,118,0.15);
  border: 1.5px solid var(--camel);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.review-card.on-cream .review-avatar { background: var(--sage-tint); border-color: var(--sage-deep); }
.review-avatar .initials {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); letter-spacing: 0.02em;
}
.review-card.on-cream .review-avatar .initials { color: var(--sage-deep); }
.review-avatar .placeholder {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,241,234,0.8); text-align: center; line-height: 1.2;
}
.review-card.on-cream .review-avatar .placeholder { color: var(--ink-muted); }
.review-avatar .verified-dot {
  position: absolute; bottom: -2px; right: -2px;
  width: 22px; height: 22px;
  background: var(--camel-deep);
  border: 2px solid var(--teal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-body);
}
.review-card.on-cream .review-avatar .verified-dot { background: var(--sage-deep); border-color: var(--cream-soft); }
.review-avatar .verified-dot.checked { background: var(--sage-deep); }

.review-status {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--camel);
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.review-card.on-cream .review-status { color: var(--sage-deep); }
.review-status .shield {
  display: inline-block; width: 14px; height: 14px; background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>") no-repeat center / contain;
}
.review-name {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--cream); margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.review-card.on-cream .review-name { color: var(--ink); }
.review-name .credential {
  display: inline-block;
  background: rgba(201,168,118,0.18); color: var(--camel);
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 2px 8px; border-radius: 4px;
}
.review-card.on-cream .review-name .credential { background: var(--sage-tint); color: var(--sage-deep); }
.review-meta {
  font-family: var(--font-body); font-size: 0.86rem;
  color: rgba(245,241,234,0.7);
}
.review-card.on-cream .review-meta { color: var(--ink-muted); }
.review-meta a { color: var(--camel); border-bottom: 1px solid currentColor; }
.review-card.on-cream .review-meta a { color: var(--teal); }

/* Tag chips below the byline */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 36px; max-width: 760px; }
.tag-chip {
  display: inline-block;
  background: rgba(201,168,118,0.12);
  color: var(--camel);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
}
.tag-chip.on-cream { background: var(--sage-tint); color: var(--sage-deep); }

/* ============================================================
   Editorial Trust Band — "How Hartley works"
   ============================================================ */
.trust-band {
  background: linear-gradient(170deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,118,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.1) 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.1) 90%);
  pointer-events: none;
}
.trust-head {
  position: relative;
  max-width: 720px;
  margin: 0 0 clamp(48px, 6vw, 64px);
}
.trust-head .eyebrow {
  color: var(--camel) !important;
  margin-bottom: 16px;
}
.trust-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--cream); margin: 0 0 16px;
}
.trust-head h2 em { font-style: italic; color: var(--camel); }
.trust-head p {
  font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.55;
  color: rgba(245,241,234,0.78); margin: 0; max-width: 60ch;
}

.sources-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(201,168,118,0.10);
  border: 1px solid rgba(201,168,118,0.28);
  padding: 10px 20px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(245,241,234,0.92);
  margin-bottom: clamp(40px, 5vw, 56px);
  flex-wrap: wrap;
}
.sources-pill .label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--camel);
  background: rgba(201,168,118,0.15);
  padding: 3px 10px; border-radius: 999px;
}

.trust-steps {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
@media (max-width: 980px) { .trust-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-steps { grid-template-columns: 1fr; } }

.trust-step { text-align: left; position: relative; }
.trust-step-num {
  display: inline-block;
  background: rgba(201,168,118,0.12);
  border: 1px solid rgba(201,168,118,0.32);
  color: var(--camel);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.trust-step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,118,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: rgba(31,45,47,0.30);
}
.trust-step-icon svg { width: 28px; height: 28px; color: var(--camel); }
.trust-step h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  color: var(--cream); margin: 0 0 10px;
  letter-spacing: -0.01em; line-height: 1.2;
}
.trust-step p {
  font-family: var(--font-serif); font-size: 0.95rem; line-height: 1.55;
  color: rgba(245,241,234,0.72); margin: 0 0 16px; max-width: 28ch;
}
.trust-source-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  background: rgba(201,168,118,0.08);
  border: 1px solid rgba(201,168,118,0.22);
  color: rgba(201,168,118,0.95);
  padding: 5px 11px; border-radius: 999px;
}
.trust-source-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--camel);
}
.trust-source-chip a { color: inherit; }

.trust-footer {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(201,168,118,0.20);
  padding-top: 28px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(245,241,234,0.72);
}
.trust-footer .stat-pair { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-footer .stat-pair > div { display: flex; flex-direction: column; }
.trust-footer .stat-pair .stat-num {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--cream); line-height: 1; letter-spacing: -0.015em;
}
.trust-footer .stat-pair .stat-label {
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(201,168,118,0.85); margin-top: 6px;
}
.trust-footer a.verify-link {
  color: var(--camel); font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .hero-illo-card { font-size: 0.74rem; padding: 10px 14px; }
  .author-card { grid-template-columns: 1fr; }
  .author-avatar { width: 72px; height: 72px; font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; }
}
