/* ============================================================
   INFIN8 GROWTH — Main Stylesheet
   Brand Guide: Infin8 Brand Guide (1).pdf
   ============================================================ */

:root {
  /* Core */
  --navy:        #0e2840;
  --navy-light:  #183552;
  --light-ocean: #1a4a6b;
  --cream:       #f5f3eb;
  --warm-gray:   #f8f9fa;

  /* Gold */
  --gold:        #f1b537;
  --soft-gold:   #ffd966;
  --deep-gold:   #cc8f00;
  --gold-soft:   rgba(241, 181, 55, 0.32);
  --gold-faint:  rgba(241, 181, 55, 0.18);

  /* Seafoam — trust/growth, use on case studies */
  --seafoam:     #4a9b8e;
  --seafoam-soft: rgba(74, 155, 142, 0.15);

  /* Text */
  --light-text:  #e8e4dc;
  --muted-navy:  rgba(14, 40, 64, 0.62);
  --muted-cream: rgba(232, 228, 220, 0.70);

  /* Rules */
  --rule-navy:   rgba(14, 40, 64, 0.10);
  --rule-cream:  rgba(232, 228, 220, 0.18);

  /* Typography */
  --sans:  'Instrument Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;

  /* Layout */
  --container: 1280px;
  --well:      1080px;
  --pad-x:     64px;
  --pad-y:     140px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
img { display: block; max-width: 100%; height: auto; }
em, .ital {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ── Layout primitives ──────────────────────────────── */
section { padding: var(--pad-y) var(--pad-x); }
.cream      { background: var(--cream);     color: var(--navy); }
.navy       { background: var(--navy);      color: var(--light-text); }
.warm-gray  { background: var(--warm-gray); color: var(--navy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.well { max-width: var(--well); }

/* ── Type ───────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.eyebrow.seafoam { color: var(--seafoam); }

.rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 40px;
}

h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 40px;
  max-width: 1100px;
}
h1 em { font-size: 1.02em; letter-spacing: -0.015em; }

h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 920px;
}
.navy h2 { color: #ffffff; }

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--navy);
}
.navy h3 { color: #ffffff; }

/* ── NAV ────────────────────────────────────────────── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 235, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule-navy);
}
header.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
}
.wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--navy);
  text-transform: uppercase;
}

nav.top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 36px;
}
nav.top a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
nav.top a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
nav.top a:hover::after,
nav.top a.active::after { transform: scaleX(1); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 220ms ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99;
  padding: 100px var(--pad-x) 64px;
  flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer a {
  display: block;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--light-text);
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-cream);
  transition: color 180ms ease;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 48px;
}

/* ── BUTTONS ────────────────────────────────────────── */
.ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--deep-gold);
  background: var(--deep-gold);
  color: #ffffff;
  cursor: pointer;
  border-radius: 2px;
  transition: all 180ms ease;
  text-align: left;
}
.btn:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
  color: var(--navy);
}
.btn.ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn.ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn .arrow { font-family: var(--serif); font-style: italic; font-size: 16px; }

.navy .btn {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.navy .btn:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
  color: var(--navy);
}
.navy .btn.ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.navy .btn.ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
.hero h1 { margin-left: auto; margin-right: auto; }
.hero .lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.55;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 36px;
}
.hero .ctas { justify-content: center; }

/* ── FOUNDATION FIRST mark — animated gold underline ── */
.fn-mark {
  position: relative;
  display: inline-block;
}
.fn-mark::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  animation: fn-draw 0.45s ease 0.35s forwards;
}
@keyframes fn-draw { to { width: 100%; } }

/* ── HERO LEDE BOXES ────────────────────────────────── */
.lede-boxes {
  margin: 36px auto 32px;
  width: 100%;
}
.lede-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.lede-box {
  border: 1px solid rgba(14, 40, 64, 0.18);
  border-radius: 4px;
  padding: 28px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lede-box p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  flex: 1;
}
.lede-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-top: 24px;
  align-self: center;
  opacity: 0.82;
}
.lede-box--solo {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.lede-box--solo p {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
  flex: 1;
}

/* ── INDUSTRY STRIP (hero) ──────────────────────────── */
.hero-industry {
  margin-top: 48px;
  margin-bottom: 0;
  justify-content: center;
}

/* ── WHO THIS IS FOR ────────────────────────────────── */
.who { padding-top: 80px; }
.who-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 52px;
  max-width: none;
}
.who-headline em { font-style: italic; }
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.who .who-body p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--light-text);
  max-width: none;
  margin: 20px 0 0;
}
.who .who-body p:first-child { margin-top: 0; }
.who .who-body em { color: var(--gold); }
.who-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BRAIN DIAGRAM ──────────────────────────────────── */
.brain-svg {
  width: 100%;
  max-width: 520px;
  display: block;
}
.brain-line {
  stroke: rgba(241, 181, 55, 0.85);
  stroke-width: 1.5;
  stroke-linecap: round;
  /* stroke-dasharray and stroke-dashoffset are set and driven entirely by JS */
}
.brain-node {
  opacity: 1;
}
.brain-center {
  opacity: 1;
  transform-origin: center;
  transform-box: fill-box;
}

/* ── CARDS GRID ─────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .left .eyebrow { margin-bottom: 0; }
.section-head .right p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--navy);
  margin: 0;
  max-width: 540px;
}
.navy .section-head .right p { color: var(--light-text); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}
.card { display: flex; flex-direction: column; }
.card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.card h3 { margin-bottom: 18px; max-width: 320px; }
.card h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.card p { font-size: 16px; line-height: 1.6; color: var(--navy); }
.navy .card p { color: var(--light-text); }

/* ── THREE LAYERS CARD HOVER ICONS ─────────────────── */
.what .card {
  padding: 32px;
  border: 1px solid var(--rule-navy);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(14, 40, 64, 0.14);
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.what .card:hover {
  border-color: rgba(14, 40, 64, 0.22);
  background: rgba(14, 40, 64, 0.03);
  box-shadow: 0 10px 40px rgba(14, 40, 64, 0.22);
}
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.card-bullets li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--rule-navy);
  position: relative;
}
.card-bullets li:first-child { border-top: 1px solid var(--rule-navy); }
.card-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}
.card-close {
  font-size: 14px;
  color: var(--muted-navy);
  margin: 16px 0 0;
  font-style: italic;
  font-family: var(--serif);
}
.card-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.card:hover .card-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ── HOW WE WORK CLOSING ────────────────────────────── */
.closing {
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--rule-cream);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  color: var(--light-text);
  max-width: 720px;
}
.closing em { font-style: italic; }

/* ── STATE OF PLAY ──────────────────────────────────── */
.state .body {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  color: var(--navy);
  max-width: 820px;
}
.state .body strong { font-family: var(--sans); font-weight: 600; }
.state .closer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-navy);
  font-size: 16px;
  color: var(--muted-navy);
  max-width: 600px;
}
.state .closer .fn-link {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: border-color 220ms ease;
}
.state .closer .fn-link:hover { border-bottom-color: var(--navy); }

/* ── FIELD NOTES ────────────────────────────────────── */
.news .lead {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: start;
}
.news .lead .left .eyebrow { margin-bottom: 0; }
.news .lead .right p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--light-text);
  margin: 0 0 0.9em;
  max-width: 580px;
}
.news .lead .right .name { font-family: var(--serif); font-style: italic; color: var(--gold); }

.archive { border-top: 1px solid var(--rule-cream); margin-bottom: 56px; }
.archive .row {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-cream);
  transition: background 200ms ease;
  cursor: pointer;
}
.archive .row:hover { background: rgba(201, 161, 78, 0.08); }
.archive .num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.archive .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--light-text);
}
.archive .date { font-size: 12px; color: var(--muted-cream); text-align: right; letter-spacing: 0.04em; }

.subscribe-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.subscribe-block .left .eyebrow { margin-bottom: 16px; }
.subscribe-block .left h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
}
.subscribe { display: flex; gap: 12px; max-width: 540px; }
.subscribe input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(232, 228, 220, 0.22);
  background: var(--light-ocean);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--light-text);
  border-radius: 2px;
}
.subscribe input::placeholder { color: rgba(232, 228, 220, 0.42); }
.subscribe input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 181, 55, 0.18);
}
.news .note { margin-top: 18px; font-size: 13px; color: var(--muted-cream); }

/* ── OUT AND ABOUT ──────────────────────────────────── */
.where .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 64px;
}
.where-card .meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.where-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 16px;
}
.where-card h3 em { font-style: italic; }
.where-card p { font-size: 16px; line-height: 1.55; color: var(--navy); max-width: 480px; margin: 0; }

/* ── CONTACT ────────────────────────────────────────── */
.contact .head { margin-bottom: 48px; }
.navy.contact h2 { color: #ffffff; max-width: 720px; }
.cream.contact h2 { color: var(--navy); max-width: 720px; }
.contact h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.contact .emails {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.3;
  color: var(--gold);
  max-width: 720px;
}
.contact .emails a {
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}
.contact .emails a:hover { color: #ffffff; border-bottom-color: #ffffff; }
.contact .emails p { margin: 0; }
.contact .coda { margin-top: 40px; font-size: 16px; color: var(--muted-cream); max-width: 540px; }
.fn-link-navy {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: border-color 220ms ease;
}
.fn-link-navy:hover { border-bottom-color: #ffffff; color: #ffffff; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--light-text);
  padding: 56px var(--pad-x) 48px;
  border-top: 1px solid var(--rule-cream);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer .wordmark { color: #ffffff; }
footer nav.bottom ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; flex-wrap: wrap; }
footer nav.bottom a { font-size: 13px; color: var(--light-text); letter-spacing: 0.04em; }
footer nav.bottom a:hover { color: var(--gold); }
footer .footer-socials { display: flex; gap: 20px; align-items: center; }
footer .footer-socials a {
  font-size: 13px;
  color: var(--muted-cream);
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}
footer .footer-socials a:hover { color: var(--gold); }
footer .meta { font-size: 12px; color: var(--muted-cream); letter-spacing: 0.06em; }

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}
.page-hero .eyebrow { display: block; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 72px); }

/* ── CASE STUDIES ───────────────────────────────────── */
.industry-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule-navy);
  margin-bottom: 80px;
  overflow-x: auto;
}
.industry-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-navy);
  padding: 16px 28px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 180ms ease;
}
.industry-nav a:hover { color: var(--navy); }
.industry-nav a.active { color: var(--navy); border-bottom-color: var(--gold); }

.case-study {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule-navy);
}
.case-study:last-child { border-bottom: none; }
.case-study .industry-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 20px;
}
.case-study .outcome {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  color: var(--navy);
  max-width: 820px;
  margin: 0 0 32px;
}
.case-study .story {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  max-width: 720px;
  margin-bottom: 32px;
}
.case-study blockquote {
  margin: 0;
  padding: 32px 40px;
  border-left: 3px solid var(--gold);
  background: var(--gold-faint);
}
.case-study blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 12px;
}
.case-study blockquote cite {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-navy);
}

/* ── ABOUT PAGE ─────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 64px;
  margin-bottom: 80px;
}
.bio-card .photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--light-ocean);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-cream);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.bio-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-card .name {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 6px;
}
.bio-card .title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.bio-card .bio-text { font-size: 16px; line-height: 1.7; color: var(--navy); margin-bottom: 24px; }
.bio-card .bio-text .bio-pullquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin: 24px 0;
}
.bio-card .socials { display: flex; gap: 16px; flex-wrap: wrap; }
.bio-card .socials a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 180ms ease;
}
.bio-card .socials a:hover { color: var(--gold); }

/* ── BLOG ───────────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}
.post-card { display: flex; flex-direction: column; }
.post-card .post-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 16px;
}
.post-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 14px;
}
.post-card h3 em { font-style: italic; }
.post-card .excerpt { font-size: 15px; line-height: 1.65; color: var(--muted-navy); margin-bottom: 20px; }
.post-card .read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 180ms ease;
}
.post-card .read-more:hover { border-color: var(--gold); }

/* ── BLOG POST ──────────────────────────────────────── */
.post-header { padding-top: 120px; padding-bottom: 64px; }
.breadcrumb {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted-navy);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--muted-navy); border-bottom: 1px solid var(--rule-navy); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; }
.post-header h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin-bottom: 24px;
}
.post-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted-navy);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.post-meta .tag { color: var(--seafoam); font-weight: 600; text-transform: uppercase; }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px var(--pad-x);
}
.post-body p { font-size: 18px; line-height: 1.75; margin-bottom: 1.4em; }
.post-body h2 { font-size: 32px; margin-top: 56px; margin-bottom: 20px; }
.post-body h3 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 1.4em; }
.post-body li { font-size: 18px; line-height: 1.7; margin-bottom: 0.5em; }

.post-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
  border-top: 1px solid var(--rule-navy);
  padding-top: 48px;
}
.post-faq h2 {
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--muted-navy);
  margin-bottom: 32px;
}
.faq-item { margin-bottom: 28px; }
.faq-item dt {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-item dd { font-size: 15px; line-height: 1.65; color: var(--muted-navy); margin: 0; }

/* ── MEDIA / SOCIAL ─────────────────────────────────── */
.media-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.media-channel {
  padding: 32px;
  border: 1px solid var(--rule-navy);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.media-channel .channel-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.media-channel h3 { font-size: 20px; margin: 0; }
.media-channel p { font-size: 15px; color: var(--muted-navy); margin: 0; }
.media-channel a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: auto;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}

/* ── PRIVACY / UTILITY ──────────────────────────────── */
.policy-body {
  max-width: 720px;
  padding: 80px var(--pad-x);
}
.policy-body h2 { font-size: 28px; margin-top: 48px; }
.policy-body p, .policy-body li { font-size: 16px; line-height: 1.75; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; --pad-y: 110px; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .section-head, .news .lead, .subscribe-block { grid-template-columns: 1fr; gap: 32px; }
  .where .grid { grid-template-columns: 1fr; gap: 56px; }
  .bio-grid { grid-template-columns: 1fr; gap: 56px; }
  .post-grid { grid-template-columns: 1fr; }
  .media-channels { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --pad-x: 24px; --pad-y: 88px; }
  .hero { padding-top: 72px; padding-bottom: 72px; }
  .who-inner { grid-template-columns: 1fr; gap: 56px; }
  .brain-svg { max-width: 360px; }
  .lede-row { grid-template-columns: 1fr; gap: 16px; }
  .lede-box--solo { max-width: 100%; }
  .cards-3 { grid-template-columns: 1fr; gap: 56px; }
  nav.top { display: none; }
  .hamburger { display: flex; }
  .archive .row { grid-template-columns: 60px 1fr; }
  .archive .date { display: none; }
  .archive .title { font-size: 18px; }
  .subscribe { flex-direction: column; }
  .post-body, .post-faq { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .where .grid { gap: 40px; }
}
