/* ═══════════════════════════════════════════════════════
   THE GOING MINISTRY — style.css
   Full rebuild · Magazine editorial · Visual gravity
   Cormorant Garamond + Space Grotesk — NO, wrong
   Actual stack: Playfair Display + DM Sans + DM Mono
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&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,300&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
  /* Light sections */
  --ivory:      #F8F5F0;
  --ivory-deep: #EDE8E0;
  --parchment:  #E0D8CC;
  --rule:       #C8BEB4;

  /* Dark sections */
  --forest:     #192B20;
  --forest-mid: #243D2E;
  --forest-lt:  #2E5040;

  /* Accents */
  --seafoam:    #5A9E90;
  --seafoam-lt: #7BBDAF;
  --seafoam-pale: #C8E8E2;

  /* Text */
  --ink:        #16120E;
  --slate:      #3A3530;
  --slate-mid:  #5A5248;
  --slate-lt:   #8A8078;

  /* Typography */
  --fs-xs:    0.8125rem;
  --fs-sm:    0.9375rem;
  --fs-base:  1.0625rem;
  --fs-md:    1.1875rem;
  --fs-lg:    1.4375rem;
  --fs-xl:    1.875rem;
  --fs-2xl:   2.5rem;
  --fs-3xl:   3.5rem;
  --fs-4xl:   5rem;
  --fs-disp:  clamp(3.5rem, 9vw, 8rem);

  /* Layout */
  --max-w:    1320px;
  --gut:      clamp(1.5rem, 5vw, 5rem);

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── CURSOR ──────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--seafoam);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px;
  border: 1px solid rgba(90,158,144,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.cursor-dot.hov  { width: 16px; height: 16px; background: var(--seafoam-lt); }
.cursor-ring.hov { width: 48px; height: 48px; border-color: rgba(90,158,144,.4); }

/* ── CONTAINER ───────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── UTILITIES ───────────────────────────────────── */
.tag-line {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--seafoam);
}
.tag-line::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--seafoam);
  flex-shrink: 0;
}

.tag-line-lt {
  color: var(--seafoam-lt);
}
.tag-line-lt::before { background: var(--seafoam-lt); }

/* ── REVEAL ──────────────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .5s var(--ease-std), padding .4s var(--ease-std), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.dark { --nav-text: rgba(248,245,240,.9); --nav-sub: var(--seafoam-lt); }
.nav.light { --nav-text: var(--forest); --nav-sub: var(--seafoam); }
.nav.scrolled {
  background: rgba(25,43,32,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1rem; padding-bottom: 1rem;
  border-bottom-color: rgba(255,255,255,.07);
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--nav-text, rgba(248,245,240,.9));
  display: block;
  line-height: 1.1;
}
.nav-logo-url {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--nav-sub, var(--seafoam-lt));
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(248,245,240,.7);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--seafoam-lt);
  transition: right .35s var(--ease);
}
.nav-links a:hover { color: rgba(248,245,240,1); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--seafoam-lt);
  padding: .6rem 1.4rem;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: rgba(255,255,255,.5); }
.burger-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: rgba(248,245,240,.9);
  transition: transform .35s var(--ease), opacity .25s, width .35s var(--ease);
  transform-origin: center;
}
.nav-burger.open .burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open .burger-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open .burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--forest);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem var(--gut);
}
.mob-menu.open { transform: translateX(0); }
.mob-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.mob-menu-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ivory);
}
.mob-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,245,240,.7);
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .2s, color .2s;
}
.mob-close:hover { border-color: var(--seafoam-lt); color: var(--seafoam-lt); }
.mob-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(248,245,240,.85);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .3s var(--ease);
  line-height: 1.15;
}
.mob-nav-link:hover { color: var(--seafoam-lt); padding-left: 1rem; }
.mob-foot {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
}
.mob-vote {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  background: var(--seafoam);
  color: var(--forest);
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: background .2s;
}
.mob-vote:hover { background: var(--seafoam-lt); }
.mob-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(248,245,240,.35);
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   HERO — full bleed dark with atmospheric texture
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Layered atmospheric background */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 110% 80%, rgba(90,158,144,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at -10% 20%, rgba(46,80,64,.6) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(25,43,32,1) 0%, transparent 80%),
    var(--forest);
  pointer-events: none;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: .045;
  pointer-events: none;
}

/* Thin ruled lines — like a hymnal */
.hero-rules {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 79px,
    rgba(248,245,240,.03) 79px,
    rgba(248,245,240,.03) 80px
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 5rem;
}

.hero-kicker {
  opacity: 0;
  animation: fadeUp .9s var(--ease) .2s forwards;
  margin-bottom: 2rem;
}

.hero-hl {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-disp);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--ivory);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .4s forwards;
}
.hero-hl em {
  font-style: italic;
  color: var(--seafoam-lt);
  display: block;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(248,245,240,.1);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-desc {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(248,245,240,.65);
  line-height: 1.85;
}
.hero-desc strong { color: rgba(248,245,240,.9); font-weight: 500; }

.hero-verse-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid rgba(90,158,144,.4);
  padding-left: 2rem;
}
.hero-verse-col blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--fs-xl);
  color: rgba(248,245,240,.9);
  line-height: 1.4;
}
.hero-verse-col cite {
  display: block;
  margin-top: .75rem;
  font-family: 'DM Mono', monospace;
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--seafoam-lt);
}

.hero-scroll {
  position: relative; z-index: 1;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}
.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,245,240,.3);
}
.hero-scroll-bar {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--seafoam), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite 1.5s;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; width: 32px; }
  50%      { opacity: 1;   width: 64px; }
}

/* ═══════════════════════════════════════════════════
   STATEMENT — dark band with typographic muscle
═══════════════════════════════════════════════════ */
.statement {
  background: var(--forest-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 4rem var(--gut);
}
.statement-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.statement-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.4;
  letter-spacing: -.01em;
}
.statement-text em { font-style: italic; color: var(--seafoam-lt); }
.statement-stats {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
}
.stat-pill {
  background: rgba(25,43,32,.8);
  padding: 1.5rem 2rem;
  min-width: 120px;
  text-align: center;
}
.stat-pill-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
  display: block;
}
.stat-pill-num em { color: var(--seafoam-lt); font-style: normal; }
.stat-pill-lbl {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,245,240,.4);
  margin-top: .4rem;
  display: block;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   MISSION — editorial two-col with pinned label
═══════════════════════════════════════════════════ */
.mission {
  padding: 7rem 0 6rem;
  background: var(--ivory);
}
.mission-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}
.mission-pin {
  position: sticky;
  top: 100px;
}
.mission-pin-tag { margin-bottom: 1.5rem; }
.mission-pin-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  color: var(--parchment);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
}
.mission-body {}
.mission-hl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--forest);
  margin-bottom: 2rem;
}
.mission-hl em { font-style: italic; color: var(--seafoam); }
.mission-p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.9;
}
.mission-p + .mission-p { margin-top: 1.25rem; }
.mission-p strong { font-weight: 600; color: var(--slate); }

/* ═══════════════════════════════════════════════════
   DOORS — 5 ministry fronts
   Each has distinct color identity, no uniform grid
═══════════════════════════════════════════════════ */
.doors {
  background: var(--ivory-deep);
  border-top: 1px solid var(--rule);
  padding: 6rem 0 6rem;
}
.doors-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.doors-hl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--forest);
  line-height: 1.05;
}
.doors-sub {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--slate-mid);
  max-width: 280px;
  text-align: right;
  line-height: 1.65;
}

/* 5-column grid that reflows cleanly at every breakpoint */
.doors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
}
.door {
  background: var(--ivory);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background .3s var(--ease-std);
}

/* Each door gets a distinctive top accent — the ONLY design difference */
.door::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--door-color, var(--seafoam));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.door:hover { background: var(--ivory-deep); }
.door:hover::before { transform: scaleX(1); }

/* Distinct color per ministry — never uniform */
.door-jits  { --door-color: #C8601A; }
.door-c3c   { --door-color: #1A3A6E; }
.door-scars { --door-color: #6B2E8A; }
.door-hope  { --door-color: #1A5C30; }
.door-fire  { --door-color: #C8941A; }

.door-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: auto;
  align-self: flex-start;
}
.door-live  { color: #1A7A40; }
.door-soon  { color: var(--slate-lt); }
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1A7A40;
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.door-cat {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--door-color, var(--seafoam));
  margin-bottom: .5rem;
}
.door-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.door-desc {
  font-size: .875rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease);
}
.door:hover .door-desc { max-height: 200px; opacity: 1; }
.door-enter {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--door-color, var(--seafoam));
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.door-enter-bar {
  width: 16px; height: 1px;
  background: var(--door-color, var(--seafoam));
  transition: width .35s var(--ease);
}
.door:hover .door-enter { opacity: 1; transform: none; }
.door:hover .door-enter-bar { width: 36px; }

/* ═══════════════════════════════════════════════════
   PULL QUOTE — typographic design moment
═══════════════════════════════════════════════════ */
.pull-quote {
  background: var(--forest);
  padding: 5rem var(--gut);
  position: relative;
  overflow: hidden;
}
.pull-quote-bg {
  position: absolute; inset: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: .8;
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2vw;
}
.pull-quote-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pull-quote-rule {
  width: 2px;
  height: 120px;
  background: var(--seafoam);
  flex-shrink: 0;
}
.pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.4;
  letter-spacing: -.01em;
}
.pull-quote-text em { color: var(--seafoam-lt); font-style: normal; }

/* ═══════════════════════════════════════════════════
   SCHOOLS — dark forest, horizontal panels
═══════════════════════════════════════════════════ */
.schools {
  background: var(--forest-mid);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.schools-watermark {
  position: absolute;
  right: -3vw; bottom: -5vw;
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 28vw, 420px);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}
.schools-head {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.schools-hl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.schools-hl em { font-style: italic; color: var(--seafoam-lt); }
.schools-intro {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(248,245,240,.55);
  line-height: 1.8;
}
.schools-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.school-panel {
  background: rgba(25,43,32,.6);
  padding: 3rem 2.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease-std);
}
.school-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--seafoam);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.school-panel:hover { background: rgba(46,80,64,.7); }
.school-panel:hover::before { transform: scaleY(1); }
.school-tag {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--seafoam-lt);
  display: block;
  margin-bottom: 1rem;
}
.school-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.school-body {
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(248,245,240,.6);
  line-height: 1.85;
  max-width: 460px;
}
.school-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--seafoam-lt);
}
.school-cta-bar {
  width: 24px; height: 1.5px;
  background: var(--seafoam-lt);
  position: relative;
  transition: width .3s var(--ease);
}
.school-cta-bar::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--seafoam-lt);
  border-top: 1.5px solid var(--seafoam-lt);
  transform: rotate(45deg);
}
.school-panel:hover .school-cta-bar { width: 48px; }

/* ═══════════════════════════════════════════════════
   CAMPAIGN — light section, strong contrast
═══════════════════════════════════════════════════ */
.campaign {
  background: var(--ivory);
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.campaign-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.campaign-tag { margin-bottom: 1.5rem; }
.campaign-hl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--forest);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.campaign-hl em { font-style: italic; color: var(--seafoam); }
.campaign-body {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.btn-vote {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--forest);
  color: var(--ivory);
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 2px solid var(--forest);
  position: relative;
  overflow: hidden;
  transition: color .3s, border-color .3s;
}
.btn-vote::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--seafoam);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.btn-vote:hover { border-color: var(--seafoam); }
.btn-vote:hover::before { transform: none; }
.btn-vote span, .btn-vote svg { position: relative; z-index: 1; }

.campaign-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.data-box {
  background: var(--ivory-deep);
  padding: 1.75rem 1.5rem;
  transition: background .2s;
}
.data-box:hover { background: #fff; }
.data-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -.03em;
  display: block;
}
.data-num em { color: var(--seafoam); font-style: normal; }
.data-lbl {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-top: .6rem;
  line-height: 1.5;
  display: block;
}
.data-dates {
  grid-column: 1 / -1;
  background: var(--forest);
  padding: 1.5rem;
}
.date-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 1rem;
}
.date-row:last-child { border-bottom: none; }
.date-ev {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,245,240,.4);
  flex-shrink: 0;
}
.date-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--ivory);
}

/* ═══════════════════════════════════════════════════
   ABOUT ERIC — dark, atmospheric
═══════════════════════════════════════════════════ */
.about {
  background: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.about-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-tag { margin-bottom: 1.5rem; }
.about-hl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 2rem;
}
.about-hl em { font-style: italic; color: var(--seafoam-lt); }
.about-text {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(248,245,240,.6);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-pull {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(248,245,240,.9);
  line-height: 1.5;
  border-left: 2px solid var(--seafoam);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.about-email {
  font-family: 'DM Mono', monospace;
  font-size: .8rem;
  color: rgba(248,245,240,.35);
  transition: color .2s;
  display: inline-block;
}
.about-email:hover { color: var(--seafoam-lt); }

.timeline {
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 2.5rem;
  margin-top: 3rem;
}
.tl-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.85rem; top: 5px;
  width: 10px; height: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: var(--forest);
  transition: background .2s, border-color .2s;
}
.tl-item:hover::before { background: var(--seafoam); border-color: var(--seafoam); }
.tl-yr {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--seafoam-lt);
  margin-bottom: .4rem;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .4rem;
}
.tl-body {
  font-size: .875rem;
  font-weight: 300;
  color: rgba(248,245,240,.45);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
}
.footer-brand-url {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--seafoam);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(248,245,240,.3);
  line-height: 1.65;
  max-width: 240px;
}
.footer-col-hd {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,245,240,.25);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(248,245,240,.45);
  transition: color .2s;
}
.footer-links a:hover { color: var(--seafoam); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .06em;
  color: rgba(248,245,240,.18);
}

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

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET 1100px
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .doors-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT 900px
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 2rem; }
  .hero-verse-col { border-left: none; border-top: 1px solid rgba(248,245,240,.1); padding-left: 0; padding-top: 1.5rem; }
  .statement-inner { grid-template-columns: 1fr; gap: 2rem; }
  .statement-stats { flex-wrap: wrap; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-pin { position: static; }
  .doors-grid { grid-template-columns: repeat(2, 1fr); }
  .doors-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .doors-sub { text-align: left; max-width: 100%; }
  .schools-panels { grid-template-columns: 1fr; }
  .pull-quote-inner { grid-template-columns: auto 1fr; gap: 2rem; }
  .campaign-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE 700px
═══════════════════════════════════════════════════ */
@media (max-width: 700px) {
  :root { --gut: 1.25rem; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  body.mob-open { overflow: hidden; }

  .hero-inner { padding-top: 88px; padding-bottom: 3rem; }
  .hero-hl { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .hero-split { margin-top: 2rem; padding-top: 1.5rem; }

  .statement { padding: 2.5rem var(--gut); }
  .statement-text { font-size: 1.25rem; }
  .statement-stats { gap: 1px; }
  .stat-pill { min-width: 90px; padding: 1rem 1.25rem; }
  .stat-pill-num { font-size: 1.75rem; }

  .mission { padding: 4rem 0; }
  .mission-pin-word { font-size: 2.5rem; display: inline; margin-right: 1rem; }
  .mission-hl { font-size: 1.6rem; }

  .doors { padding: 3.5rem 0; }
  .doors-grid { grid-template-columns: repeat(2, 1fr); }
  .door { min-height: 240px; padding: 1.5rem 1.25rem; }
  .door-title { font-size: 1.2rem; }
  .doors-hl { font-size: 2rem; }

  .pull-quote { padding: 3rem var(--gut); }
  .pull-quote-text { font-size: 1.25rem; }
  .pull-quote-rule { height: 80px; }

  .schools { padding: 3.5rem 0; }
  .school-panel { padding: 2rem 1.5rem; }
  .school-title { font-size: 1.5rem; }
  .schools-hl { font-size: 2rem; }

  .campaign { padding: 3.5rem 0; }
  .campaign-hl { font-size: 2rem; }
  .campaign-data { grid-template-columns: 1fr 1fr; }

  .about { padding: 3.5rem 0; }
  .about-hl { font-size: 2rem; }
  .about-grid { gap: 2.5rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL 480px
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .doors-grid { grid-template-columns: 1fr; }
  .door { min-height: 180px; }
  .campaign-data { grid-template-columns: 1fr; }
  .hero-hl { font-size: clamp(2.5rem, 16vw, 3.5rem); }
  .statement-stats { width: 100%; justify-content: flex-start; }
}
