/* ============================================================
   Craig Swanger - Editorial Article System (Everygirl-inspired)
   Hero: 50/50 stone panel + full-height photo (desktop)
         stacked, full-bleed photo below text (mobile)
   Body: white, narrow reading column, calm serif display + Inter body
   Display serif is swappable via --display (Cormorant vs Instrument)
   ============================================================ */

:root {
  /* Editorial palette - warm, restrained, no strong accents */
  --page:      #FFFFFF;   /* article body background - white */
  --stone:     #F3EDE9;   /* hero panel + pull-quote blocks (Everygirl blush-cream) */
  --stone-deep:#ECE4DE;   /* subtle alt */
  --ink:       #1A1714;   /* warm near-black - primary text */
  --ink-soft:  #2A2620;   /* body */
  --muted:     #7C736B;   /* captions, byline, muted */
  --rule:      #E3DAD2;   /* very light warm hairline */
  --rule-mid:  #CFC5BC;
  --quote-rule:#6B1F2D;   /* brand wine - pull-quote rule & editorial accent (matches site --wine) */
  --navy-deep: #131F38;   /* deep navy - fact-card number badges (matches site --navy-deep) */

  /* Type - --display is set per-page (Cormorant OR Instrument) */
  --sans: "Inter", ui-sans-serif, -apple-system, system-ui, Helvetica, Arial, sans-serif;

  --reading: 720px;       /* reading column - a touch wider (Everygirl) */
  --ease: cubic-bezier(0.22,1,0.36,1);
}

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

html { -webkit-text-size-adjust: 100%; }

/* Global orphan / widow control - no single word stranded on a line */
p, li, figcaption, .hero__deck, .lede { text-wrap: pretty; }
h1, h2, .pullquote p, .takeaways__title, .hero__headline { text-wrap: balance; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

/* ---------- NAV (minimal) ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  background: var(--page);
}
.nav__brand {
  font-family: var(--display);
  font-size: 22px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink); text-decoration: none;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; opacity: 0.75; transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }

/* ============================================================
   HERO - 50/50 split (desktop)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
  background: var(--stone);
}
.hero__panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 5vw, 88px) clamp(32px, 5vw, 84px);
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 30px;
}
.hero__headline {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 56px;          /* generous air between title and the deck/byline group */
  font-weight: 500;
  max-width: 16ch;           /* force the title to wrap over more lines */
  text-wrap: pretty;         /* fill lines naturally; avoid balancer stranding "Xinja." */
}
.hero__headline .nowrap { white-space: nowrap; }   /* keep "Humility, Courage" together */
/* Deck: display serif, smaller + lighter than the headline (per feedback) */
.hero__deck {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem);
  line-height: 1.28; font-weight: 400; font-style: normal;
  color: var(--ink); opacity: 0.82;
  margin: 0 0 40px; max-width: 26ch;
}
.hero__byline {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  padding-top: 24px; border-top: 1px solid var(--rule-mid);
  display: inline-block;
}
.hero__byline b {
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.hero__media { position: relative; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}

/* ---------- Landscape hero (image band on top, text below) ---------- */
.hero--landscape {
  display: block;
  min-height: 0;
  background: var(--stone);
}
.hero--landscape .hero__media {
  width: 100%;
  aspect-ratio: 1200 / 628;
  max-height: 72vh;
  background: #0d0d0f;
}
.hero--landscape .hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero--landscape .hero__panel {
  max-width: var(--reading);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(22px, 5vw, 24px) clamp(32px, 4vw, 48px);
  align-items: flex-start;
}
.hero--landscape .hero__headline {
  max-width: 20ch;
}
.hero--landscape .hero__deck {
  max-width: 46ch;
}
@media (max-width: 820px) {
  .hero--landscape .hero__media { aspect-ratio: 1200 / 628; max-height: 52vh; }
}

/* ============================================================
   ARTICLE LAYOUT - Option 1: sticky left rail + reading column
   ============================================================ */
.layout {
  display: grid;
  grid-template-columns: 236px minmax(0, var(--reading));
  gap: clamp(40px, 6vw, 88px);
  max-width: calc(var(--reading) + 236px + 88px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(22px, 5vw, 40px) 0;
  align-items: start;
}

/* ---- Sticky rail ---- */
.rail { position: sticky; top: 32px; }
.rail__block + .rail__block {
  margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--rule);
}
.rail__label {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 20px;
}
.rail__toc { list-style: none; margin: 0; padding: 0; }
.rail__toc li { margin: 0 0 15px; }
.rail__toc li a {
  display: flex; gap: 11px; align-items: baseline;
  font-family: var(--sans); font-size: 13.5px; line-height: 1.4;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.rail__toc li a:hover { color: var(--ink); }
.rail__toc li a.active { color: var(--ink); font-weight: 600; }
.rail__toc .toc__n {
  font-size: 11px; color: var(--rule-mid); font-variant-numeric: tabular-nums; min-width: 16px;
}

/* ---- Read Next cards (in rail) ---- */
.rail__cards { display: grid; gap: 14px; }
.rncard {
  display: block; text-decoration: none;
  background: var(--stone); border: 1px solid var(--rule);
  border-radius: 4px; padding: 16px 16px 14px;
  transition: border-color .2s, transform .2s, background .2s;
}
.rncard:hover { border-color: var(--rule-mid); background: var(--stone-deep); transform: translateY(-1px); }
.rncard__tag {
  display: block;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
.rncard__title {
  display: block;
  font-family: var(--display); font-size: 18px; line-height: 1.22; color: var(--ink);
  margin-bottom: 12px;
}
.rncard__go {
  display: inline-flex; align-items: center; color: var(--quote-rule);
}
.rncard__go svg { width: 16px; height: 16px; transition: transform .2s; }
.rncard:hover .rncard__go svg { transform: translateX(3px); }

/* ---- Reading column ---- */
.col { min-width: 0; }
.col > .lede, .lede {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.15rem);
  line-height: 1.34; font-weight: 400; color: var(--ink);
  margin: 0 0 10px;
}
.article__topline {
  width: 44px; height: 2px; background: var(--ink); opacity: 0.25;
  margin: 0 0 clamp(34px, 5vw, 52px);
}

.col p {
  margin: 0 0 1.35em;
  font-size: 16px; line-height: 1.62; font-weight: 400; color: var(--ink-soft);
}
.col p a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
/* Re-assert lede AFTER .col p so display size + color win the cascade */
.col p.lede {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.15rem);
  line-height: 1.34; font-weight: 400; color: var(--ink);
  margin: 0 0 10px;
}

.col h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 1.3rem + 1vw, 2rem);
  line-height: 1.18; font-weight: 500; color: var(--ink);
  margin: clamp(44px, 5.5vw, 64px) 0 0.55em;
}

/* Pull quote - LEFT-anchored with a terracotta rule (feedback: quotes felt unanchored) */
.pullquote {
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.3rem);
  line-height: 1.28;
  font-weight: 400; color: var(--ink);
  border-left: 3px solid var(--quote-rule);
  background: transparent;
  margin: clamp(40px, 5.5vw, 60px) 0;
  padding: 6px 0 6px clamp(24px, 3.2vw, 36px);
  text-align: left;
}
.col .pullquote p, .pullquote p {
  margin: 0; max-width: 26ch;
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.3rem);
  line-height: 1.28; font-weight: 400; color: var(--ink);
}

/* Inline images - constrained to reading column, CONSISTENT height. */
.figure { margin: clamp(38px, 5vw, 56px) 0; max-width: 100%; padding: 0; }
.figure img {
  width: 100%;
  height: clamp(340px, 46vw, 460px);   /* fixed visual height for all inline photos */
  object-fit: cover;
  border-radius: 2px;
}
/* Show a photo at its natural aspect ratio (no crop) - for context shots
   where the surroundings matter, e.g. the hospital-bed family photo. */
.figure--full img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 720px);
  object-fit: contain;
  margin-inline: auto;   /* center the block image within the column */
}
.figure figcaption {
  font-family: var(--sans);
  font-size: 13px; font-style: normal; color: var(--muted);
  line-height: 1.5; margin-top: 12px; text-align: left;
}
/* center caption under the natural-ratio full image */
.figure--full figcaption { text-align: center; }
/* Portrait-orientation photo (e.g. Craig portrait) - natural ratio, centered,
   width-capped so a tall image does not tower over the reading column. */
.figure--portrait img {
  width: auto;
  max-width: min(420px, 100%);
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: contain;
  margin-inline: auto;
  display: block;
}
.figure--portrait figcaption { text-align: center; }
/* legacy hook kept as a no-op so old markup still lands in-column */
.figure--wide { max-width: var(--reading); margin-left: auto; margin-right: auto; transform: none; }

/* ---------- Takeaways block (GEO / screenshot-optimized) ----------
   Carlyle-idiom: thin line-icon + tight one-line lesson, hairline rows.
   Closing paragraph beneath carries the depth (GEO substance). */
.takeaways {
  background: var(--stone);
  margin: clamp(56px, 7vw, 80px) 0 0;
  padding: clamp(48px, 6.5vw, 72px) 0;
}
.takeaways__inner { max-width: var(--reading); margin: 0 auto; padding: 0 clamp(22px, 5vw, 40px); }
.takeaways__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.35rem + 1.3vw, 2.3rem);
  line-height: 1.14; font-weight: 500; color: var(--ink); margin: 0 0 36px;
}
.takeaways ul { list-style: none; margin: 0; padding: 0; }
.takeaways li {
  display: flex; align-items: center; gap: 22px;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  line-height: 1.4; font-weight: 400; color: var(--ink);
  padding: 20px 0;
  border-top: 1px solid var(--rule-mid);
}
.takeaways li:last-child { border-bottom: 1px solid var(--rule-mid); }
.takeaways li .ico {
  flex: 0 0 auto; width: 40px; height: 40px; color: var(--ink);
}
.takeaways li .ico svg { width: 100%; height: 100%; display: block; }
/* Closing statement + portrait, two columns */
.takeaways__close {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin: 44px 0 0;
}
.takeaways__portrait {
  margin: 0;
  background: #FFFFFF;
  padding: 12px 12px 0;
  border: 1px solid var(--rule);
  box-shadow: 0 10px 30px rgba(26,23,20,0.08);
}
.takeaways__portrait img {
  width: 100%; height: auto; display: block;
}
.takeaways__closetext { align-self: center; }
.takeaways__coda {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.02rem + 0.5vw, 1.42rem);
  line-height: 1.5; color: var(--ink);
  margin: 0 0 1em; max-width: 46ch; text-wrap: pretty;
}
.takeaways__coda:last-child { margin-bottom: 0; }
.takeaways__sign {
  font-family: var(--display);
  font-size: 1.35rem; font-style: normal; color: var(--ink);
  text-align: center;
  margin: 0; padding: 14px 0 16px;
}
@media (max-width: 640px) {
  .takeaways__close { grid-template-columns: 1fr; gap: 28px; }
  .takeaways__portrait { max-width: 280px; }
}

/* ---------- Closing / signature ---------- */
.closing { padding: clamp(52px, 7vw, 88px) 0 clamp(64px, 8vw, 104px); }
.closing .wrap { max-width: var(--reading); margin: 0 auto; padding: 0 clamp(22px, 5vw, 24px); }
.closing p {
  font-family: var(--sans); color: var(--ink-soft);
  font-size: 16px; line-height: 1.62; margin: 0 0 1.35em;
}
.signature {
  font-family: var(--display);
  font-size: 1.6rem; font-style: normal; color: var(--ink);
  margin: 2em 0 0;
}
.tags {
  font-family: var(--sans);
  font-size: 12px !important; letter-spacing: 0.04em; color: var(--muted);
  margin-top: clamp(40px, 6vw, 56px); padding-top: 24px; border-top: 1px solid var(--rule);
}

/* ---------- Connect CTA ---------- */
.connect {
  background: var(--stone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(56px, 8vw, 96px) 0;
}
.connect__inner {
  max-width: var(--reading); margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 24px);
  text-align: center;
}
.connect__eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--quote-rule); margin: 0 0 18px;
}
.connect__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.35rem);
  line-height: 1.2; font-weight: 400; color: var(--ink);
  margin: 0 0 16px; max-width: 22ch; margin-inline: auto;
}
.connect__text {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.62; color: var(--ink-soft);
  margin: 0 auto clamp(28px, 4vw, 36px); max-width: 46ch;
}
.connect__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
  padding: 13px 22px; border-radius: 4px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.btn--primary:hover { background: var(--ink-soft); border-color: var(--ink-soft); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule-mid); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); transform: translateY(-1px); }

/* ---------- TOC - “In this article” ---------- */
.toc {
  max-width: var(--reading); margin: 0 auto clamp(40px, 6vw, 56px);
  padding: 26px clamp(22px, 5vw, 24px) 4px;
}
.toc__label {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 16px;
}
.toc ol { list-style: none; margin: 0; padding: 0; }
.toc li { border-top: 1px solid var(--rule); }
.toc li:last-child { border-bottom: 1px solid var(--rule); }
.toc a {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  text-decoration: none; padding: 13px 2px; transition: color .2s, padding-left .2s;
}
.toc a:hover { color: var(--muted); padding-left: 6px; }
.toc a .toc__n {
  font-family: var(--display); font-size: 15px; color: var(--muted);
  font-variant-numeric: tabular-nums; min-width: 1.4em;
}

/* ---------- Read Next (bottom - end-of-article, all breakpoints) ---------- */
.readnext {
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 80px) 0;
}
.readnext__inner { max-width: 1120px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 40px); }
.readnext__label {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 24px;
}
.readnext__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.readnext__card {
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column;
  border: 1px solid var(--rule-mid); border-radius: 6px;
  padding: clamp(24px, 2.4vw, 32px);
  background: var(--page);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.readnext__card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,23,20,0.06);
}
.readnext__card .rk {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--quote-rule);
  margin: 0 0 12px;
}
.readnext__card .rt {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
  line-height: 1.2; font-weight: 500; margin: 0 0 12px;
}
.readnext__card .rd {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.5; color: var(--muted);
  margin: 0; text-wrap: pretty;
}
/* Read-next: three-up on desktop, single column on tablet/mobile */
@media (max-width: 900px) {
  .readnext__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--stone); border-top: 1px solid var(--rule);
  padding: 40px clamp(20px, 5vw, 64px);
  font-family: var(--sans); font-size: 12px; color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   HERO SIZE TUNING per display font
   ============================================================ */
/* Cormorant is lighter/narrower - needs slightly larger size + weight */
[data-serif="cormorant"] .hero__headline {
  font-size: clamp(2.5rem, 1.8rem + 3vw, 4.1rem); line-height: 1.06; font-weight: 600;
  letter-spacing: -0.005em;
}
[data-serif="instrument"] .hero__headline {
  font-size: clamp(2.3rem, 1.7rem + 2.7vw, 3.7rem); line-height: 1.08; font-weight: 400;
}

/* ============================================================
   MOBILE  (<= 820px): stack hero, full-bleed photo below text
   ============================================================ */
@media (max-width: 820px) {
  body { font-size: 17px; }
  .nav__links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__panel {
    order: 1;
    padding: 36px 25px 34px;
  }
  .hero__media {
    order: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .hero__eyebrow { margin-bottom: 18px; }
  [data-serif="cormorant"] .hero__headline { font-size: clamp(2.1rem, 1.4rem + 4vw, 2.9rem); }
  [data-serif="instrument"] .hero__headline { font-size: clamp(2rem, 1.3rem + 3.8vw, 2.7rem); }

  .wrap { padding: 0 25px; }

  /* pull quote centers on mobile (Everygirl behavior) */
  .pullquote { text-align: center; padding: 26px 22px; }

  /* inline figures stay inset to text column on mobile */
  .figure--wide { max-width: none; margin-left: 0; transform: none; padding: 0; }

  .takeaways__inner { padding: 0 25px; }
  .takeaways li { gap: 16px; }
  .takeaways li .ico { width: 34px; height: 34px; }

  /* Option 1 rail collapses: single column, rail sits inline above article */
  .layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 36px 25px 0;
  }
  .rail { position: static; margin-bottom: 40px; }
  /* On mobile the TOC stays at top; Read Next moves to the bottom section instead */
  .rail .rail__block:last-child { display: none; }
  .rail__toc li a { font-size: 15px; }

  /* Bottom Read Next re-appears on mobile as full cards */
  .readnext { display: block; }
  .readnext__inner { padding: 0 25px; }
  .readnext__grid { grid-template-columns: 1fr; gap: 16px; }
  .readnext__card {
    background: var(--stone); border: 1px solid var(--rule);
    border-radius: 4px; padding: 18px 18px 16px;
  }

  /* inline figures a touch shorter on mobile */
  .figure img { height: clamp(240px, 60vw, 340px); }
}

/* ============================================================
   XINJA ARTICLE - additions (sibling of recovery system)
   Blockquote w/ attribution, GEO fact card, image placeholders
   ============================================================ */

/* Attributed blockquote - for Byres + The Australian (distinct from .pullquote) */
.quotecard {
  margin: clamp(40px, 5.5vw, 60px) 0;
  padding: clamp(26px, 3.4vw, 38px) clamp(26px, 3.4vw, 40px);
  background: var(--stone);
  border-left: 3px solid var(--quote-rule);
  border-radius: 2px;
}
.quotecard p {
  font-family: var(--display);
  font-size: clamp(1.28rem, 1.05rem + 0.9vw, 1.7rem);
  line-height: 1.34; font-weight: 400; color: var(--ink);
  margin: 0; max-width: 46ch;
}
.quotecard cite {
  display: block; margin-top: 18px;
  font-family: var(--sans); font-style: normal;
  font-size: 13.5px; letter-spacing: 0.01em; color: var(--muted); line-height: 1.5;
}
.quotecard cite a { color: var(--quote-rule); text-decoration: none; border-bottom: 1px solid rgba(107,31,45,0.35); }
.quotecard cite a:hover { border-bottom-color: var(--quote-rule); }

/* GEO fact card - the 8 Key Facts, screenshot-optimized, high-authority look */
.factcard {
  margin: clamp(44px, 6vw, 64px) 0;
  border: 1px solid var(--rule-mid);
  border-radius: 3px;
  background: #FCFAF8;
  padding: clamp(30px, 4vw, 44px) clamp(26px, 3.6vw, 44px);
}
.factcard__eyebrow {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--quote-rule); margin: 0 0 6px;
}
.factcard__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.75rem);
  line-height: 1.16; font-weight: 500; color: var(--ink); margin: 0 0 22px;
}
.factcard ol { list-style: none; counter-reset: fc; margin: 0; padding: 0; }
.factcard li {
  position: relative; counter-increment: fc;
  padding: 16px 0 16px 44px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
}
.factcard li:first-child { border-top: 0; }
.factcard li::before {
  content: counter(fc);
  position: absolute; left: 0; top: 15px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--navy-deep); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.factcard li a { color: var(--quote-rule); text-decoration: none; border-bottom: 1px solid rgba(107,31,45,0.3); }
.factcard li a:hover { border-bottom-color: var(--quote-rule); }

/* Image placeholder frames - NO images chosen; labelled frames only */
.ph {
  margin: clamp(38px, 5vw, 56px) 0;
}
.ph__frame {
  width: 100%; height: clamp(300px, 42vw, 420px);
  border: 1.5px dashed var(--rule-mid);
  border-radius: 2px;
  background:
    repeating-linear-gradient(45deg, #F6F1EC 0 14px, #F1EAE3 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 8px;
}
.ph__tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--quote-rule);
}
.ph__label {
  font-family: var(--display); font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.35rem);
  color: var(--ink); font-weight: 500; max-width: 34ch; line-height: 1.2;
}
.ph__meta {
  font-family: var(--sans); font-size: 12.5px; font-style: normal;
  color: var(--muted); max-width: 52ch; line-height: 1.45;
}
.ph--hero .ph__frame { height: 100%; min-height: 340px; border-radius: 0; }

/* small helper: subhead labels inside "My position" */
.col h3.subhead {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--quote-rule);
  margin: clamp(30px,4vw,40px) 0 0.4em;
}

/* MOCKUP annotation banner (mockup only - remove for build) */
.mockbar {
  background: var(--navy-deep); color: #fff;
  font-family: var(--sans); font-size: 13px; line-height: 1.5;
  padding: 12px clamp(20px,5vw,64px); text-align: center;
}
.mockbar b { color: var(--gold-site); }

/* back to hub link */
.backlink{display:inline-flex;align-items:center;gap:.45rem;font-family:"Inter",sans-serif;font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#6B6560;text-decoration:none;margin-bottom:1.4rem}
.backlink:hover{color:#6B1F2D}
