/* ============================================================
   THE INTELLIGENT HOODLUMS — hoodlums-home
   Static site · built on brand kit Vol.01
   ============================================================ */

/* ── FONTS — Brand Kit Vol.02 ────────── */
/* Grift = display/headlines (self-hosted). DM Sans = body/labels (Google Fonts). */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-ThinItalic.woff2') format('woff2'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-ExtraLight.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-ExtraBoldItalic.woff2') format('woff2'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('/fonts/Grift-BlackItalic.woff2') format('woff2'); font-weight: 900; font-style: italic; font-display: swap; }

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* palette */
  --hm-prussian:    #0B2545;
  --hm-rufous:      #B7280F;
  --hm-rufous-dark: #9A2009;
  --hm-tuscany:     #E0A458;
  --hm-bone:        #F2E8D5;
  --hm-cadet:       #8CA3B5;
  --hm-ink:         #0F1419;
  --hm-prussian-80: #2A4465;
  --hm-prussian-40: #6A87A3;
  --hm-bone-dark:   #E8D8BC;
  --hm-bone-darker: #D4C09A;
  --hm-rufous-light:#D94A2A;
  --hm-tuscany-dark:#C4883A;

  --bone-60: rgba(242,232,213,0.6);
  --bone-40: rgba(242,232,213,0.4);
  --bone-08: rgba(242,232,213,0.08);
  --bone-06: rgba(242,232,213,0.06);

  /* type */
  --font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Grift', 'DM Sans', sans-serif;

  /* scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 17px;
  --text-md:   20px;
  --text-lg:   26px;
  --text-xl:   36px;
  --text-2xl:  52px;
  --text-3xl:  72px;
  --text-4xl:  96px;

  /* spacing */
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
}

/* ── RESET / BASE ────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--hm-bone);
  background: var(--hm-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--hm-rufous);
  outline-offset: 3px;
}

::selection {
  background: var(--hm-rufous);
  color: var(--hm-bone);
}

/* halftone grit overlay (brand: comic-book grit) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, var(--hm-bone) 0.5px, transparent 0.5px);
  background-size: 8px 8px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

/* ── SKIP LINK (keyboard: jump past the chrome) ──────────── */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--hm-rufous);
  color: var(--hm-bone);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  text-decoration: none;
  transition: top 150ms ease-in-out;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--hm-tuscany); outline-offset: 2px; }

/* ── MASTHEAD ────────────────────────────────────────────── */
.masthead {
  background: var(--hm-prussian);
  color: var(--bone-60);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--hm-rufous);
}
.masthead .dot {
  margin: 0 0.5em;
  color: var(--hm-tuscany);
  letter-spacing: normal;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hm-ink);
  border-bottom: 1px solid var(--bone-08);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hm-bone);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--hm-bone); }

.nav-external::after {
  content: '\2197';
  display: inline-block;
  margin-left: 4px;
  font-size: 0.9em;
  color: var(--hm-tuscany);
}

/* Internal cross-page links: a quiet "go to another page" cue, distinct
   from the ↗ used for links that leave the site / open a new tab. */
.nav-page::after {
  content: '\2192';
  display: inline-block;
  margin-left: 5px;
  font-size: 0.9em;
  color: var(--hm-tuscany);
}

/* Divider between the on-page section links and the cross-page links. */
.nav-divider {
  width: 1px;
  align-self: stretch;
  min-height: 14px;
  background: var(--bone-08);
  padding: 0;
}

/* Current page in a hub nav. */
.nav-links a[aria-current="page"] { color: var(--hm-bone); }

/* Mobile menu toggle — hidden on desktop, revealed under 640px. */
.nav-burger {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 4px;
  margin: -8px -4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hm-bone);
}
.nav-burger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.nav-burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hm-bone);
  transition: transform 150ms ease-in-out, opacity 150ms ease-in-out;
}
.nav-burger:focus-visible { outline: 2px solid var(--hm-tuscany); outline-offset: 2px; }
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) {
  .nav-burger-bar { transition: none; }
}

/* Screen-reader-only text (e.g. "(opens in new tab)") — visually hidden,
   still announced. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}

/* a .btn toggled via the hidden attribute must actually hide — the class's
   display would otherwise outrank [hidden] (recorder Start/Stop/Save controls) */
.btn[hidden] { display: none; }

.btn-primary {
  background: var(--hm-rufous);
  color: var(--hm-bone);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--hm-rufous-dark);
}

.btn-bone {
  background: var(--hm-bone);
  color: var(--hm-ink);
}
.btn-bone:hover,
.btn-bone:focus-visible {
  background: #FFFFFF;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(11,37,69,0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(183,40,15,0.08) 0%, transparent 50%),
    var(--hm-ink);
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  max-width: 80%;
  opacity: 0.045;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-pillars {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 120ms forwards;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 220ms forwards;
}

.hero-rule {
  width: 80px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 320ms forwards;
}

.hero-tagline {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--hm-cadet);
  max-width: 540px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 420ms forwards;
}

.hero-problems {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--hm-tuscany);
  margin: 0 auto 28px;
  min-height: 1.5em; /* reserve space so the swap doesn't shift layout */
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 370ms forwards;
}

.hero-problem {
  font-style: italic;
  color: var(--hm-bone);
  transition: opacity 360ms ease-in-out;
}

.hero-problem.is-swapping {
  opacity: 0;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 600ms ease-in-out 520ms forwards;
}

.hero-admin-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.hero-admin-link:hover,
.hero-admin-link:focus-visible {
  color: var(--hm-bone);
}

/* ── RULES ──────────────────────────────────────────────── */
.rufous-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--hm-rufous);
}
.section-rule { margin-bottom: 40px; }

/* ── SECTION DEFAULTS ────────────────────────────────────── */
.section {
  padding: 100px 40px;
  position: relative;
}
.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 12px;
}
.section-label-dark { color: var(--hm-rufous); }

.section-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 16px;
}
.section-title-dark { color: var(--hm-ink); }

/* ── THE WORK ────────────────────────────────────────────── */
.section-work {
  background: var(--hm-prussian);
}
.section-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--hm-bone) 0.8px, transparent 0.8px);
  background-size: 12px 12px;
  opacity: 0.03;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.service-card {
  background: transparent;
  border: 1px solid var(--bone-08);
  padding: 32px 28px;
  transition: border-color 150ms ease-in-out;
}
.service-card:hover {
  border-color: var(--bone-40);
}

.service-card h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--hm-cadet);
  line-height: 1.65;
}

/* ── THE CREW ────────────────────────────────────────────── */
.section-crew {
  background: var(--hm-ink);
}

.lede-text {
  font-size: 18px;
  color: var(--hm-cadet);
  line-height: 1.7;
  max-width: 720px;
}
.lede-text strong {
  color: var(--hm-bone);
  font-weight: 700;
}

.crew-names {
  margin-top: 48px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.crew-name {
  border-left: 3px solid var(--hm-rufous);
  padding-left: 20px;
}

.crew-name h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 6px;
}

.crew-name p {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--hm-cadet);
  line-height: 1.7;
}

/* ── LIVE / ISTE (Prussian bg, rufous divider from The Work) ─ */
.section-live {
  background: var(--hm-prussian);
  border-top: 2px solid var(--hm-rufous);
}
.section-live::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--hm-bone) 0.8px, transparent 0.8px);
  background-size: 12px 12px;
  opacity: 0.03;
  pointer-events: none;
}

.event-meta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.event-meta li {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--hm-bone);
  padding-left: 16px;
  border-left: 3px solid var(--hm-tuscany);
}
.event-meta-label {
  display: inline-block;
  min-width: 84px;
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-right: 8px;
}
.event-meta-alt {
  color: var(--hm-cadet);
  white-space: nowrap;
}
.event-note {
  margin-top: 28px;
  max-width: 720px;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--hm-cadet); /* 5.9:1 on Prussian */
}
.event-note strong { color: var(--hm-bone); font-weight: 700; }
.event-note a {
  color: var(--hm-tuscany); /* 7.05:1 on Prussian */
  text-decoration: underline;
  text-underline-offset: 2px;
}
.event-note a:hover,
.event-note a:focus-visible { color: var(--hm-bone); }

/* ── FOR LEADERS (Bone bg for contrast with Ink neighbors) ─ */
.section-leaders {
  background: var(--hm-bone);
  color: var(--hm-ink);
}
.section-leaders::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--hm-ink) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
  opacity: 0.05;
  pointer-events: none;
}

.lede-text-dark {
  color: var(--hm-prussian);
}
.lede-text-dark strong {
  color: var(--hm-ink);
}

.leaders-cta {
  margin-top: 36px;
}

/* secondary "read more" under the leaders CTA (Bone bg → dark text) */
.leaders-more {
  margin-top: 20px;
  font-size: 15px;
  color: var(--hm-prussian);
}
.leaders-more a {
  color: var(--hm-rufous); /* 5.2:1 on Bone — passes AA for body text */
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.leaders-more a:hover,
.leaders-more a:focus-visible { color: var(--hm-ink); }

/* ── WATCH ───────────────────────────────────────────────── */
.section-watch {
  background: var(--hm-prussian);
}
.section-watch::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--hm-bone) 0.8px, transparent 0.8px);
  background-size: 12px 12px;
  opacity: 0.03;
  pointer-events: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--hm-ink);
  border: 1px solid var(--bone-08);
  overflow: hidden;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--hm-rufous);
  padding: 72px 40px;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: var(--hm-bone); /* 5.2:1 on Rufous — .85 alpha failed 1.4.3 (4.1:1) */
  margin-bottom: 32px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--hm-ink);
  border-top: 1px solid var(--bone-06);
  padding: 64px 40px 32px;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 8px;
}

.footer-brand .mono,
.footer-bottom .mono {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  line-height: 1.9;
}

.footer-social h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--hm-cadet);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--hm-bone);
}

.footer-bottom {
  max-width: 1040px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--bone-06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .mono {
  color: var(--hm-cadet); /* full cadet ~7:1 on Ink — AA (was 0.55 alpha, ~3:1) */
  text-transform: none;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany); /* ~8:1 on Ink — AA (Rufous was ~2.9:1, fails at any size) */
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-pillars,
  .hero-title,
  .hero-rule,
  .hero-problems,
  .hero-tagline,
  .hero-cta {
    opacity: 1;
    transform: none;
  }
}

/* ── ANNOUNCEMENT BAR (above masthead) ──────────────────── */
.announce-bar {
  background: var(--hm-rufous);
  color: var(--hm-bone);
  text-align: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  padding: 9px 24px;
  display: block;
  text-decoration: none;
  transition: background-color 150ms ease-in-out;
}
.announce-bar:hover,
.announce-bar:focus-visible {
  background: var(--hm-rufous-dark);
}
.announce-bar .dot {
  margin: 0 0.5em;
  color: var(--hm-bone); /* 5.2:1 on Rufous — tuscany failed 1.4.3 (2.9:1) */
  letter-spacing: normal;
}
.announce-bar .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 150ms ease-in-out;
}
.announce-bar:hover .arrow,
.announce-bar:focus-visible .arrow {
  transform: translateX(3px);
}

/* ── EVENT PAGE: nav-back link ──────────────────────────── */
.nav-back {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.nav-back:hover,
.nav-back:focus-visible { color: var(--hm-bone); }

/* ── EVENT PAGE: hero tweak (slightly shorter) ──────────── */
.hero-event { min-height: 72vh; }

/* ── EVENT PAGE: day grid + cards ───────────────────────── */
.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.day-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--bone-08);
  padding: 28px 26px;
  transition: border-color 150ms ease-in-out, transform 150ms ease-in-out;
}
.day-card:hover {
  border-color: var(--bone-40);
  transform: translateY(-2px);
}

.day-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.day-pill {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-ink);
  background: var(--hm-tuscany);
  padding: 5px 10px 4px;
}

.day-date {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  text-align: right;
}

.day-theme {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 10px;
}

.day-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 14px;
}

.day-blurb {
  font-size: 15px;
  color: var(--hm-cadet);
  line-height: 1.65;
  margin-bottom: 20px;
}

.day-more {
  margin-bottom: 24px;
}
.day-more summary {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
  border-top: 1px solid var(--bone-08);
  border-bottom: 1px solid var(--bone-08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 150ms ease-in-out;
}
.day-more summary::-webkit-details-marker { display: none; }
.day-more summary::after {
  content: '+';
  font-weight: 100;
  font-size: 20px;
  line-height: 1;
  color: var(--hm-cadet);
  transition: color 150ms ease-in-out;
}
.day-more[open] summary::after { content: '\2212'; }
.day-more summary:hover,
.day-more summary:focus-visible { color: var(--hm-bone); }
.day-more summary:hover::after,
.day-more summary:focus-visible::after { color: var(--hm-bone); }
.day-more[open] summary { border-bottom-color: transparent; }

.day-more-body {
  padding: 18px 0 6px;
  font-size: 14px;
  color: var(--hm-cadet);
  line-height: 1.7;
}
.day-more-body p { margin-bottom: 12px; }
.day-more-body p:last-child { margin-bottom: 0; }
.day-more-body h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-bone);
  margin-top: 18px;
  margin-bottom: 8px;
}
.day-more-body h4:first-child { margin-top: 0; }
.day-more-body em { color: var(--hm-bone); font-style: italic; }
.day-question {
  margin-top: 16px;
  padding: 14px 0 0;
  border-top: 1px solid var(--bone-08);
  color: var(--hm-bone);
  font-style: italic;
}

.day-cta {
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-bone);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--hm-rufous);
  transition: color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.day-cta:hover,
.day-cta:focus-visible {
  color: var(--hm-tuscany);
  border-bottom-color: var(--hm-tuscany);
}
.day-cta span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 150ms ease-in-out;
}
.day-cta:hover span,
.day-cta:focus-visible span {
  transform: translateX(4px);
}

.schedule-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bone-08);
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  text-align: center;
}
.schedule-meta strong {
  color: var(--hm-bone);
  font-weight: 400;
}

.schedule-intro {
  border-left: 3px solid var(--hm-rufous);
  padding: 6px 0 6px 20px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--hm-cadet);
  max-width: 720px;
}
.schedule-intro strong {
  color: var(--hm-bone);
  font-weight: 700;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 14px 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.18em; }
  .section { padding: 80px 24px; }
  .hero { padding: 64px 24px; min-height: 80vh; }
  .hero-event { min-height: 64vh; }
  .crew-names { gap: 32px; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-logo { font-size: 14px; letter-spacing: 0.14em; }
  .site-nav { justify-content: space-between; flex-wrap: wrap; }

  /* Full homepage nav collapses behind the labeled hamburger. */
  .site-nav--menu .nav-burger { display: inline-flex; }
  .site-nav--menu .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 10px;
  }
  .site-nav--menu .nav-links.is-open { display: flex; }
  .site-nav--menu .nav-links li { width: 100%; }
  .site-nav--menu .nav-links a {
    display: block;
    padding: 13px 2px;
    font-size: 13px;
    letter-spacing: 0.18em;
    border-top: 1px solid var(--bone-08);
  }
  .site-nav--menu .nav-divider { display: none; }

  /* Short interior navs (1-3 links) stay visible inline, no hamburger. */
  .site-nav:not(.site-nav--menu) .nav-links { gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
  .hero-title { font-size: 44px; }
  .masthead { font-size: 10px; letter-spacing: 0.35em; padding: 10px 16px; }
  .announce-bar { font-size: 10px; letter-spacing: 0.22em; padding: 9px 16px; }
  .section { padding: 64px 20px; }
  .cta-band { padding: 56px 20px; }
  .site-footer { padding: 48px 20px 24px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .day-card-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .day-date { text-align: left; }
}

/* ── PULSE CHECK CTA (on Classroom OS page) ─────────────── */
.pulse-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SURVEY (Pulse Check) ───────────────────────────────── */
.section-survey { background: var(--hm-ink); padding-top: 56px; }

/* value-anchor — asserts the transformation on the end-of-week survey */
.value-anchor {
  border-left: 3px solid var(--hm-rufous);
  background: var(--bone-06);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.value-anchor-kicker {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 10px;
}
.value-anchor-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hm-cadet);
}
.value-anchor-body strong { color: var(--hm-bone); font-weight: 700; }
.value-anchor-body em { color: var(--hm-bone); font-style: italic; }

.survey-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.survey-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 16px;
}

.survey-lede {
  font-size: 17px;
  color: var(--hm-cadet);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* (no display rule — a <form> is block by default, and forcing it here would
   override the [hidden] attribute we use to swap the form for the success state) */

/* honeypot — visually + assistively hidden, still in the DOM */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.survey-group {
  border: none;
  border-top: 1px solid var(--bone-08);
  padding: 32px 0 8px;
  margin: 0;
}
.survey-group:first-of-type { border-top: none; padding-top: 0; }

.survey-group-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  padding: 0;
  margin-bottom: 24px;
}

.survey-group-hint {
  font-size: 14px;
  color: var(--hm-cadet);
  line-height: 1.6;
  margin: -10px 0 20px;
}
.survey-group-hint strong { color: var(--hm-bone); font-weight: 700; }

.field { margin-bottom: 22px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field > label,
.check-field span {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--hm-bone);
  margin-bottom: 8px;
  line-height: 1.5;
}

.req { color: var(--hm-tuscany); } /* tuscany 8.48:1 on Ink — rufous fails 1.4.3 */
.opt { color: var(--hm-cadet); font-weight: 100; }

.field-hint {
  font-size: 13px;
  color: var(--hm-cadet);
  line-height: 1.55;
  margin-top: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--hm-bone);
  background: var(--bone-06);
  border: 1px solid var(--bone-08);
  border-radius: 0;
  padding: 13px 14px;
  transition: border-color 150ms ease-in-out, background-color 150ms ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238CA3B5' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(140,163,181,0.55); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--hm-rufous);
  background: var(--bone-08);
}

/* ── Likert / scales ────────────────────────────────────── */
.likert-scale-key,
.nps-key {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hm-cadet);
  margin-bottom: 14px;
}
.nps-key { margin-top: 10px; margin-bottom: 0; }

.likert-row {
  border: none;
  border-top: 1px solid var(--bone-06);
  padding: 20px 0;
  margin: 0;
}
.likert-row:first-of-type { border-top: none; padding-top: 4px; }

.likert-statement {
  font-size: 16px;
  color: var(--hm-bone);
  line-height: 1.5;
  padding: 0;
  margin-bottom: 14px;
}
.likert-layer {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 6px;
}

/* numeric radio scales (Likert 1–5, value 1–5, recommend 1–10) */
.scale-options {
  display: grid;
  gap: 8px;
}
.scale-options.scale-5  { grid-template-columns: repeat(5, 1fr); }
.scale-options.scale-10 { grid-template-columns: repeat(10, 1fr); gap: 6px; }

.scale-opt {
  position: relative;
  cursor: pointer;
}
.scale-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.scale-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: var(--hm-cadet);
  background: var(--bone-06);
  border: 1px solid var(--bone-08);
  transition: all 150ms ease-in-out;
}
.scale-options.scale-10 .scale-opt span { height: 42px; font-size: 14px; }
.scale-opt:hover span { border-color: var(--bone-40); color: var(--hm-bone); }
.scale-opt input:checked + span {
  background: var(--hm-rufous);
  border-color: var(--hm-rufous);
  color: var(--hm-bone);
}
.scale-opt input:focus-visible + span {
  outline: 2px solid var(--hm-tuscany);
  outline-offset: 2px;
}

/* ── Checkbox groups / consent ──────────────────────────── */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check-field {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
}
.check-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1.5px solid var(--hm-cadet);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.check-field input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 10px;
  margin-top: -2px;
  border: solid var(--hm-bone);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.12s ease;
}
.check-field input[type="checkbox"]:checked {
  background: var(--hm-rufous);
  border-color: var(--hm-rufous);
}
.check-field input[type="checkbox"]:checked::after { transform: rotate(45deg) scale(1); }
.check-field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--hm-tuscany);
  outline-offset: 2px;
}
.check-field span { margin-bottom: 0; color: var(--hm-cadet); line-height: 1.4; }

/* "Other" write-in — revealed when Other is selected */
.other-input { margin-top: 10px; }
.check-group .other-input { margin-left: 32px; width: calc(100% - 32px); }

/* ── Inline radios (Yes / No) ───────────────────────────── */
.radio-inline { display: flex; gap: 12px; }
.radio-pill { position: relative; cursor: pointer; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 46px;
  padding: 0 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--hm-cadet);
  background: var(--bone-06);
  border: 1px solid var(--bone-08);
  transition: all 150ms ease-in-out;
}
.radio-pill:hover span { border-color: var(--bone-40); color: var(--hm-bone); }
.radio-pill input:checked + span {
  background: var(--hm-rufous);
  border-color: var(--hm-rufous);
  color: var(--hm-bone);
}
.radio-pill input:focus-visible + span {
  outline: 2px solid var(--hm-tuscany);
  outline-offset: 2px;
}

/* ── Actions / states ───────────────────────────────────── */
.survey-actions {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--bone-08);
}
.survey-actions .btn { border: none; }

.survey-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hm-cadet);
  margin-top: 14px;
}
.survey-note.is-error { color: var(--hm-tuscany); }

.survey-result { padding: 24px 0 40px; }
.survey-result .rufous-rule { margin-bottom: 24px; }
.survey-result-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--hm-bone);
  margin-bottom: 14px;
}
.survey-result-body {
  font-size: 17px;
  color: var(--hm-cadet);
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .scale-options.scale-5 { gap: 6px; }
  .scale-options.scale-5 .scale-opt span { height: 42px; font-size: 15px; }
  .scale-options.scale-10 { gap: 4px; }
  .scale-options.scale-10 .scale-opt span { height: 38px; font-size: 12px; }
}

/* ============================================================
   RETROSPECTIVE PAGE (Classroom OS, post-cohort)
   ============================================================ */

/* ── Eyebrow tag under hero title (past-tense framing) ──── */
.hero-eyebrow {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
}

/* ── Method grid (how we worked) — reuses service-card ──── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.method-card {
  border: 1px solid var(--bone-08);
  padding: 30px 28px;
  transition: border-color 150ms ease-in-out;
}
.method-card:hover { border-color: var(--bone-40); }
.method-step {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 12px;
}
.method-card h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 12px;
}
.method-card p {
  font-size: 15px;
  color: var(--hm-cadet);
  line-height: 1.65;
}
.method-card em { color: var(--hm-bone); font-style: italic; }

/* ── Day card: retrospective "what they built" tag ──────── */
.day-artifact {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bone-08);
  font-size: 14px;
  color: var(--hm-cadet);
  line-height: 1.6;
}
.day-artifact strong {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 7px;
}

/* ── Testimonials (booth) ───────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.quote-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bone-08);
  border-left: 3px solid var(--hm-rufous);
  padding: 30px 28px;
  transition: border-color 150ms ease-in-out;
}
.quote-card:hover { border-color: var(--bone-40); border-left-color: var(--hm-rufous); }
.quote-mark {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.5;
  color: var(--hm-tuscany);
  margin-bottom: 20px;
}
.quote-body {
  font-size: 16px;
  color: var(--hm-bone);
  line-height: 1.65;
  margin-bottom: 24px;
}
.quote-attr {
  margin-top: auto;
  border-top: 1px solid var(--bone-08);
  padding-top: 16px;
}
.quote-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--hm-bone);
}
.quote-role {
  font-family: var(--font-family);
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--hm-cadet);
  margin-top: 3px;
}

/* ── Case study (Dawn: zero to hero) ────────────────────── */
.case-study {
  margin-top: 8px;
  border: 1px solid var(--bone-08);
  background: var(--bone-06);
  padding: 44px 40px;
}
.case-kicker {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 14px;
}
.case-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: 0.015em;
  color: var(--hm-bone);
  margin-bottom: 16px;
}
.case-lede {
  font-size: 17px;
  color: var(--hm-cadet);
  line-height: 1.7;
  max-width: 640px;
}
.case-lede strong { color: var(--hm-bone); font-weight: 700; }
.case-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.case-col { padding-top: 16px; border-top: 2px solid var(--bone-40); }
.case-col.case-after { border-top-color: var(--hm-rufous); }
.case-col h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--hm-tuscany);
  margin-bottom: 12px;
}
.case-col p { font-size: 15px; color: var(--hm-cadet); line-height: 1.65; }
.case-col ul { display: flex; flex-direction: column; gap: 10px; }
.case-col li {
  font-size: 15px;
  color: var(--hm-bone);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.case-col li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--hm-rufous);
}

/* ── A/B proof callout ──────────────────────────────────── */
.ab-callout {
  margin-top: 36px;
  border-left: 3px solid var(--hm-rufous);
  background: var(--bone-06);
  padding: 28px 30px;
}
.ab-callout .case-kicker { margin-bottom: 10px; }
.ab-callout p {
  font-size: 17px;
  color: var(--hm-cadet);
  line-height: 1.7;
}
.ab-callout strong { color: var(--hm-bone); font-weight: 700; }
.ab-callout em { color: var(--hm-bone); font-style: italic; }

/* ── Pulse stats (editable; fill with real numbers) ─────── */
.pulse-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  border: 1px solid var(--bone-08);
  border-top: 3px solid var(--hm-tuscany);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1;
  color: var(--hm-bone);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: var(--hm-cadet);
  line-height: 1.5;
}

/* "What moved" lives on the Bone section — recolor stats for dark-on-bone */
.section-leaders .stat-card {
  border-color: rgba(15,20,25,0.12);
  border-top-color: var(--hm-rufous);
}
.section-leaders .stat-num { color: var(--hm-ink); }
.section-leaders .stat-label { color: var(--hm-prussian); }
.section-leaders .stat-label strong { color: var(--hm-ink); font-weight: 700; }

/* before → after shift display (shows movement, not a static score) */
.stat-num.stat-shift {
  font-size: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.section-leaders .stat-before { color: var(--hm-prussian-80); } /* was rgba .35 (~1.8:1 on Bone) — now 8:1 */
.section-leaders .stat-after  { color: var(--hm-rufous); }
.stat-arrow { color: var(--hm-tuscany); font-size: 0.7em; }

@media (max-width: 640px) {
  .case-study { padding: 32px 24px; }
  .case-ba { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Featured pull-quote (section epigraph) ─────────────── */
.quote-feature {
  max-width: 820px;
  margin: 8px auto 52px;
  text-align: center;
  position: relative;
}
.quote-feature-mark {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.4;
  color: var(--hm-tuscany);
  display: block;
  margin-bottom: 24px;
}
.quote-feature blockquote {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--hm-bone);
  margin-bottom: 24px;
}
.quote-feature cite {
  font-family: var(--font-family);
  font-weight: 100;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-cadet);
}
.quote-feature cite strong { color: var(--hm-bone); font-weight: 700; }


/* ── Brand Kit Vol.02 · Grift display type ─────── */
h1, h2, h3,
.masthead, .nav-logo,
.hero-title, .section-title, .section-title-dark, .cta-title,
.survey-title, .survey-result-title, .case-name, .day-title,
.stat-num, .quote-feature blockquote, .footer-brand h3 {
  font-family: var(--font-display);
}
