/* ============================================================
   SCARED STIFF — Global styles
   Editorial, dignified, mission-driven
   ============================================================ */

:root {
  /* Colors */
  --ink: #0E0E10;
  --ink-2: #1a1a1e;
  --ink-3: #2a2a30;
  --paper: #F4F1EA;
  --paper-2: #ECE6D8;
  --amber: #C89B3C;
  --amber-2: #B08628;
  --amber-3: #E6BC5F;
  --blood: #A63A2A;
  --muted: #6b6b70;
  --muted-2: #a6a3a0;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(14, 14, 16, 0.12);

  /* Type */
  --serif: "Instrument Serif", "Cormorant Garamond", "Georgia", serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing */
  --pad-x: clamp(20px, 5vw, 80px);
  --sec-y: clamp(64px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   Typography scale
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.eyebrow.on-light { color: var(--amber-2); }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

.display-1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.display-2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.display-3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.dark .lede { color: var(--muted-2); }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--sec-y) 0; }
.dark {
  background: var(--ink);
  color: var(--paper);
}
.dark .rule { background: var(--line); }
.rule { height: 1px; background: var(--line-dark); width: 100%; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: var(--amber-3); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.35);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-ghost.on-light {
  color: var(--ink);
  border-color: rgba(14, 14, 16, 0.35);
}
.btn-ghost.on-light:hover { border-color: var(--amber-2); color: var(--amber-2); }
.btn-arrow::after {
  content: "→";
  font-size: 16px;
  transition: transform .2s ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   Announcement bar + Nav
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
}
.announce .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.announce .amber { color: var(--amber); }

.nav {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.wordmark-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.wordmark-text {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}
.wordmark .est {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  transform: translateY(-4px);
}
.footer-wordmark { margin-bottom: 16px; }
.footer-wordmark .wordmark-mark { width: 34px; height: 34px; }
.footer-wordmark .wordmark-text { font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  transition: color .2s ease, opacity .2s ease;
}
.nav-links a:hover { color: var(--amber); opacity: 1; }
.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--pad-x);
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-toggle { display: inline-flex; }
  .nav-phone { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 100px) 0 clamp(72px, 9vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(200, 155, 60, 0.14), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(200, 155, 60, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/assets/scared-stiff-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.35) contrast(1.1);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1) 100%);
  mix-blend-mode: screen;
}
.hero .wrap { z-index: 2; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow { margin-bottom: 24px; display: block; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-copy .lede { margin-bottom: 36px; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta > div { min-width: 140px; }
.hero-meta .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.hero-meta .value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
}
.hero-meta .value.amber { color: var(--amber); }

/* Video */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(200, 155, 60, 0.12);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-video { order: -1; }
}

/* ============================================================
   Mission strip
   ============================================================ */
.mission {
  background: var(--paper);
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line-dark);
}
.mission .wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.mission-eyebrow { padding-top: 12px; }
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.mission-statement em {
  color: var(--amber-2);
  font-style: italic;
}

@media (max-width: 800px) {
  .mission .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   Stats / Problem
   ============================================================ */
.problem {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-y) 0;
}
.problem-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: end;
}
.problem-head .eyebrow { margin-bottom: 18px; display: block; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: var(--blood);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.stat .label {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 12px;
  max-width: 32ch;
}
.stat .source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.reality-material {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.reality-figure {
  margin: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.reality-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.reality-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reality-figure figcaption .tag.on-dark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-3);
  align-self: flex-start;
}
.reality-figure figcaption p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--paper);
  margin: 0;
  max-width: 32ch;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .problem-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 48px; }
  .reality-figure { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Pillars (four pillars of the program)
   ============================================================ */
.pillars {
  background: var(--paper);
  padding: var(--sec-y) 0;
}
.pillars-head {
  max-width: 780px;
  margin-bottom: 80px;
}
.pillars-head .eyebrow { display: block; margin-bottom: 20px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.pillar {
  background: var(--paper);
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--amber-2);
}
.pillar-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.pillar-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
}
.pillar-body em {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 800px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   In the Community — editorial grid of real program materials
   ============================================================ */
.community {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-y) 0 0;
}
.community-head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
.community-head .eyebrow { display: block; margin-bottom: 20px; }
.community-head .lede { color: var(--muted-2); margin-left: auto; margin-right: auto; }

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 2px;
  background: var(--line);
}
.community-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.community-item.tall { grid-row: span 2; }
.community-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
  filter: saturate(0.92) contrast(1.02);
}
.community-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}
.community-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0.15) 0%, transparent 40%, rgba(14,14,16,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}
.community-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 2.5vw, 32px);
  color: var(--paper);
  z-index: 2;
}
.community-item .tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200,155,60,0.4);
}
.community-item figcaption p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.35;
  color: var(--paper);
  margin: 0;
  max-width: 34ch;
}

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
  .community-item.tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .community-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .community-item.tall { grid-row: span 1; }
}

/* ============================================================
   Founder title stack
   ============================================================ */
.founder-titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 22px 0 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.founder-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-title.amber { color: var(--amber-2); font-weight: 500; }

/* ============================================================
   Timeline / Legacy
   ============================================================ */
.legacy {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-y) 0;
}
.legacy-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.legacy-head .eyebrow { display: block; margin-bottom: 20px; }
.legacy-head .lede { margin: 24px auto 0; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
  position: relative;
}
.milestone .year {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}
.milestone .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.milestone .body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 32ch;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 500px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   Founder
   ============================================================ */
.founder {
  background: var(--paper);
  padding: var(--sec-y) 0;
}
.founder .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.02) saturate(0.95);
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,14,16,0.35) 100%);
  pointer-events: none;
}
.founder-copy .eyebrow { display: block; margin-bottom: 20px; }
.founder-copy h2 { margin-bottom: 28px; }
.founder-copy .lede { color: var(--muted); margin-bottom: 30px; }
.founder-quote {
  margin: 40px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
}
.founder-quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--amber-2);
  margin-bottom: 22px;
}
.founder-quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .founder .wrap { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 400px; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--amber);
  color: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
}
.cta-band .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cta-band p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 20px 0 0;
  max-width: 46ch;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-band .btn {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cta-band .btn:hover { background: var(--ink-3); }
.cta-band .phone-callout {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.cta-band .phone-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .cta-band .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   Parent org
   ============================================================ */
.parent {
  background: var(--paper-2);
  padding: 48px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.parent .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.parent-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.3;
  max-width: 60ch;
}
.parent-text a {
  color: var(--amber-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ============================================================
   Contact / Form
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-y) 0;
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact-info .eyebrow { display: block; margin-bottom: 20px; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info .lede { color: var(--muted-2); margin-bottom: 40px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.contact-list .value {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--paper);
}
.contact-list .value.amber { color: var(--amber); }

/* Form */
.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}
.form-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 14px 14px;
  font: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact .wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #060608;
  color: var(--muted-2);
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer .wordmark { color: var(--paper); margin-bottom: 12px; }
.footer p { font-size: 14px; line-height: 1.6; max-width: 40ch; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--muted-2); font-size: 14px; }
.footer a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .footer .wrap { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   Full-bleed divider strips (atmospheric AI imagery)
   ============================================================ */
.divider-strip {
  position: relative;
  height: clamp(240px, 34vw, 420px);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.divider-strip.tall {
  height: clamp(280px, 40vw, 500px);
}
.divider-strip .divider-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1) contrast(1.02);
  z-index: 0;
}
.divider-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14,14,16,0.55) 0%,
    rgba(14,14,16,0.15) 30%,
    rgba(14,14,16,0.15) 70%,
    rgba(14,14,16,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.divider-strip.light::before {
  background: linear-gradient(180deg,
    rgba(244,241,234,0.35) 0%,
    rgba(244,241,234,0.05) 30%,
    rgba(14,14,16,0.10) 70%,
    rgba(14,14,16,0.55) 100%);
}
.divider-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(20px, 3vw, 40px);
  padding: 0 var(--pad-x);
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--paper);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  max-width: 42ch;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.divider-caption.right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.divider-caption.right > span { max-width: 42ch; }

/* ============================================================
   Outcomes + Curriculum
   ============================================================ */
.outcomes {
  background: var(--paper);
  color: var(--ink);
  padding: var(--sec-y) 0;
}
.outcomes-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 72px;
}
.outcomes-head .eyebrow { color: var(--amber-2); display: block; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 56px 0;
}
.outcome {
  padding: 0 8px;
}
.outcome-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  color: var(--amber-2);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.outcome-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 30ch;
}
.curriculum {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.curriculum-head .eyebrow { color: var(--amber-2); display: block; margin-bottom: 20px; }
.curriculum-head h3 { margin-bottom: 20px; }
.curriculum-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}
.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.curriculum-list li {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 18px 4px 18px 32px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  counter-increment: curriculum;
}
.curriculum-list { counter-reset: curriculum; }
.curriculum-list li::before {
  content: counter(curriculum, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--amber-2);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.curriculum-list li:nth-child(odd) { border-right: 1px solid var(--line-dark); padding-right: 20px; }
.curriculum-list li:nth-child(even) { padding-left: 44px; }
.curriculum-list li:nth-child(even)::before { left: 12px; }

@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .curriculum { grid-template-columns: 1fr; gap: 40px; }
  .curriculum-list { grid-template-columns: 1fr; }
  .curriculum-list li:nth-child(odd) { border-right: none; padding-right: 4px; }
  .curriculum-list li:nth-child(even) { padding-left: 32px; }
  .curriculum-list li:nth-child(even)::before { left: 0; }
}
@media (max-width: 520px) {
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Utility
   ============================================================ */
.no-select { user-select: none; }
