@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

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

:root {
  --purple:       #61246C;   /* base */
  --purple-deep:  #3D1544;   /* darkest — nav, hero bg */
  --purple-mid:   #4D1C58;   /* mid — hover */
  --purple-light: #8C5496;   /* lighter tint */
  --gold:         #D19A2A;   /* base */
  --gold-dark:    #A87820;   /* hover */
  --gold-light:   #E8C06A;   /* subtle tint */
  --white:        #ffffff;
  --cream:        #F7F0FA;   /* near-white purple tint */
  --dark:         #1A0820;   /* near-black purple */
  --text:         #2A1030;   /* dark purple body text */
  --mid:          #6B4875;   /* mid purple supporting text */
  --rule:         #DDD0E2;   /* light purple rule lines */
  --serif:        'Playfair Display', Georgia, serif;
  --body-serif:   'Source Serif 4', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --max:          1180px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body-serif); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--gold);
  text-align: center;
  padding: 10px 48px;
  position: relative;
}
.announce-bar p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.announce-bar a { color: #fff; text-decoration: underline; }
.announce-close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; opacity: 0.75; line-height: 1;
}
.announce-close:hover { opacity: 1; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--purple-deep);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 0; }
.nav-links a {
  display: block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 13px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .nav-donate a {
  margin-left: 10px;
  background: var(--gold); color: #fff;
  width: 200px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 0; border-radius: 0;
}
.nav-links .nav-donate a:hover { background: var(--gold-dark); }
.nav-social-icons {
  display: flex; align-items: center; gap: 2px; margin: 0 6px;
}
.nav-social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: rgba(255,255,255,0.55);
  padding: 0; letter-spacing: 0; text-transform: none;
  transition: color 0.15s;
}
.nav-social-icons a:hover { color: #fff; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0; border: 1.5px solid transparent; border-radius: 0;
  cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.btn-solid  { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-solid:hover  { background: var(--purple-deep); border-color: var(--purple-deep); }
.btn-gold   { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline      { background: transparent; color: var(--purple-deep); border-color: var(--purple-deep); }
.btn-outline:hover { background: var(--purple-deep); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ── HERO (Ossoff-style) ── */
.hero {
  background: var(--purple-deep);
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 72px 64px;
  position: relative; z-index: 2;
}
.hero-left .hero-logo img { max-width: 440px; width: 100%; margin-bottom: 10px; }
.hero-left .hero-tagline {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-form { max-width: 440px; }
.hero-form .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hero-form input {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px;
  font-family: var(--sans); font-size: 14px; color: #fff;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.14); }
.hero-form .f-bottom { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 12px; }
.hero-form .btn-join {
  background: var(--gold); color: #fff; border: none;
  width: 200px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 0; border-radius: 0;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.hero-form .btn-join:hover { background: var(--gold-dark); }
.hero-form .disclaimer { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.55; }
.form-success {
  max-width: 440px; font-family: var(--sans); font-size: 15px; line-height: 1.6;
}
.form-success strong { display: block; font-family: var(--serif); font-size: 1.25rem; margin-bottom: 8px; }
.form-success--hero { color: #fff; }
.form-success--hero strong { color: var(--gold); }
.form-success--vol { color: var(--text); }
.form-success--vol strong { color: var(--purple); }
.form-error { font-family: var(--sans); font-size: 12.5px; color: #E8938A; margin-top: 8px; line-height: 1.5; }
.vol-form .form-error { color: #B3261E; }
.disclaimer a, .f-check label a { text-decoration: underline; color: var(--purple); }
.hero-form .disclaimer a { color: var(--gold); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; position: relative; z-index: 2;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--purple-deep) 0%, transparent 16%);
  z-index: 3; pointer-events: none;
}

/* ── STATEMENT SECTION (from original site) ── */
.statement {
  background: var(--purple-deep);
  background-image: linear-gradient(rgba(61,21,68,0.88), rgba(61,21,68,0.88)),
    url('481904217_632466433059562_9060798345935987716_n.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.statement-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.statement-text .rule {
  width: 56px; height: 2px;
  background: rgba(255,255,255,0.3);
}
.statement-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.statement-card {
  background: rgba(255,255,255,0.95);
  padding: 36px 28px;
  text-align: center;
}
.statement-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.statement-card p {
  font-size: 14px; color: var(--mid);
  line-height: 1.65; margin-bottom: 24px; font-weight: 300;
}

/* ── NUMBERS STRIP ── */
.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.num-block { padding: 56px 40px; text-align: center; border-right: 1px solid var(--rule); }
.num-block:last-child { border-right: none; }
.num-block .n {
  font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900; color: var(--purple-deep); line-height: 1;
  display: block; margin-bottom: 8px;
}
.num-block .l {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid);
}

/* ── SPLIT SECTIONS (Ossoff-style 50/50) ── */
.hp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hp-split.flip .hp-photo { order: -1; }
.hp-photo {
  overflow: hidden;
  background: var(--purple-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px;
}
.hp-photo img {
  width: 100%; height: auto; max-height: 540px;
  object-fit: cover; object-position: top; display: block;
  border: 12px solid #fff;
  box-shadow: 0 8px 40px rgba(26,8,32,0.4);
}
.hp-text {
  background: var(--cream);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.hp-text.white { background: var(--white); }
.hp-text .kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.hp-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.1; color: var(--purple); margin-bottom: 20px;
}
.hp-text p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text); margin-bottom: 14px; max-width: 440px;
}
.hp-text .btn { margin-top: 20px; }

/* Volunteer form split */
.hp-form-side {
  background: var(--cream);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.hp-form-side .kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.hp-form-side h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--purple); line-height: 1.05; margin-bottom: 28px;
}
.vol-form input {
  width: 100%; padding: 15px 18px;
  background: #fff; border: 1.5px solid var(--rule); border-radius: 4px;
  font-family: var(--sans); font-size: 14px; color: var(--dark);
  outline: none; margin-bottom: 10px; transition: border-color 0.2s;
}
.vol-form input:focus { border-color: var(--purple); }
.vol-form .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vol-form .btn-submit {
  width: 100%; padding: 17px;
  background: var(--gold); color: #fff; border: none; border-radius: 100px;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.vol-form .btn-submit:hover { background: var(--gold-dark); }
.vol-form .disclaimer {
  font-family: var(--sans); font-size: 11px; color: var(--mid);
  text-align: center; margin-top: 12px; line-height: 1.55;
}

/* ── ENDORSEMENTS ── */
.endorse-strip {
  background: var(--white);
  padding: 96px 64px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.endorse-strip-inner { max-width: 720px; margin: 0 auto; }
.endorse-strip .kicker {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.endorse-strip h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--purple); margin-bottom: 48px; line-height: 1.1;
}
.endorse-list-clean { list-style: none; }
.endorse-list-clean li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-top: 1px solid var(--rule); gap: 24px;
}
.endorse-list-clean li:last-child { border-bottom: 1px solid var(--rule); }
.endorse-list-clean .name { font-family: var(--body-serif); font-size: 1.05rem; color: var(--dark); }
.endorse-list-clean .role { font-family: var(--sans); font-size: 12px; color: var(--mid); text-align: right; flex-shrink: 0; }
.endorse-strip .more { margin-top: 36px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--purple);
  padding: 96px 40px; text-align: center; color: #fff;
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.82);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.75;
}
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER (Ossoff-style centered) ── */
footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.6);
  padding: 72px 40px 40px;
  text-align: center;
}
.footer-logo { margin-bottom: 28px; }
.footer-logo img { height: 64px; width: auto; margin: 0 auto; }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; list-style: none; margin-bottom: 16px;
}
.footer-nav a {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75); padding: 8px 16px;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }
.footer-address {
  font-family: var(--sans); font-size: 13px;
  color: rgba(255,255,255,0.5); margin-bottom: 32px;
}
.footer-social {
  display: flex; justify-content: center; gap: 28px; margin-bottom: 40px;
}
.footer-social a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color 0.15s;
}
.footer-social a:hover { color: #fff; }
.footer-legal {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-legal a {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-paid {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 32px;
  display: inline-block;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ============================================================
   MEET PAGE — PHOTO-INTERSPERSED BIO + TIMELINE
   ============================================================ */
.bio-photo-break { width: 100%; max-height: 520px; overflow: hidden; }
.bio-photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.bio-inline {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 56px; align-items: start;
  max-width: var(--max); margin: 0 auto; padding: 80px 40px;
}
.bio-inline.flip { grid-template-columns: 380px 1fr; }
.bio-inline.flip .bio-inline-photo { order: -1; }
.bio-inline-photo img {
  width: 100%; display: block;
  border: 10px solid #fff;
  box-shadow: 0 6px 28px rgba(26,8,32,0.22);
}
.bio-inline-photo figcaption { font-family: var(--sans); font-size: 11.5px; color: var(--mid); margin-top: 14px; }
.bio-inline-text { display: flex; flex-direction: column; justify-content: center; }
.bio-inline-text .kicker { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.bio-inline-text h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--purple-deep); line-height: 1.15; margin-bottom: 20px; }
.bio-inline-text p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text); margin-bottom: 16px; }
.bio-inline-text .bq { font-family: var(--serif); font-style: italic; font-size: 1.15rem; font-weight: 700; color: var(--purple-deep); border-left: 3px solid var(--gold); padding: 4px 0 4px 24px; margin: 24px 0; line-height: 1.55; }

.bio-text-center { max-width: 680px; margin: 0 auto; padding: 80px 40px; }
.bio-text-center .kicker { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.bio-text-center h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--purple-deep); line-height: 1.15; margin-bottom: 22px; }
.bio-text-center p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text); margin-bottom: 16px; }
.bio-text-center .bq { font-family: var(--serif); font-style: italic; font-size: 1.15rem; font-weight: 700; color: var(--purple-deep); border-left: 3px solid var(--gold); padding: 4px 0 4px 24px; margin: 28px 0; line-height: 1.55; }

.bio-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.bio-photo-pair figure { overflow: visible; }
.bio-photo-pair img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; display: block;
  border: 10px solid #fff;
  box-shadow: 0 6px 28px rgba(26,8,32,0.2);
  transition: box-shadow 0.3s, transform 0.3s;
}
.bio-photo-pair img:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(26,8,32,0.3); }
.bio-photo-pair figcaption { font-family: var(--sans); font-size: 11px; color: var(--mid); margin-top: 8px; }

.timeline-section { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 96px 40px; }
.timeline-section-inner { max-width: 720px; margin: 0 auto; }
.timeline-section .kicker { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.timeline-section h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--dark); margin-bottom: 56px; line-height: 1.1; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--rule); }
.tl-entry { position: relative; padding: 0 0 44px 36px; }
.tl-entry:last-child { padding-bottom: 0; }
.tl-entry::before { content: ''; position: absolute; left: -5px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--white); border: 2px solid var(--purple); }
.tl-entry.highlight::before { background: var(--gold); border-color: var(--gold); }
.tl-year { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--purple-deep); margin-bottom: 6px; line-height: 1.2; }
.tl-entry.highlight .tl-year { color: var(--gold); }
.tl-desc { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.75; }

/* ============================================================
   ENDORSEMENTS PAGE
   ============================================================ */
.endorsements-wrap { max-width: 680px; margin: 0 auto; padding: 80px 40px; }
.endorse-group { margin-bottom: 60px; }
.endorse-group-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); padding-bottom: 16px; border-bottom: 1px solid var(--rule); margin-bottom: 0; display: block; }
.endorse-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--rule); gap: 24px; }
.endorse-row .name { font-family: var(--body-serif); font-size: 1.05rem; color: var(--dark); }
.endorse-row .role { font-family: var(--sans); font-size: 12px; color: var(--mid); text-align: right; flex-shrink: 0; }
.endorse-page-cta { margin-top: 64px; padding-top: 48px; border-top: 2px solid var(--gold); text-align: center; }
.endorse-page-cta h3 { font-family: var(--serif); font-size: 2rem; font-weight: 900; color: var(--purple-deep); margin-bottom: 12px; }
.endorse-page-cta p { font-size: 15.5px; color: var(--mid); margin-bottom: 28px; font-weight: 300; }

/* ============================================================
   FORMS
   ============================================================ */
/* PAGE PHOTO STRIP */
.page-photo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 40px 16px;
}
.page-photo-strip img {
  width: 22%;
  min-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 0 8px 32px rgba(26,8,32,0.28);
}
.page-photo-strip img:nth-child(1) { transform: rotate(-4deg); }
.page-photo-strip img:nth-child(2) { transform: rotate(3deg); }
.page-photo-strip img:nth-child(3) { transform: rotate(-2.5deg); }
.page-photo-strip img:nth-child(4) { transform: rotate(4deg); }

.form-wrap { max-width: 620px; margin: 0 auto; padding: 80px 40px; }
.form-intro p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text); margin-bottom: 16px; }
.affidavit-stmt { margin: 36px 0 44px; padding: 24px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); font-family: var(--body-serif); font-style: italic; font-size: 15.5px; line-height: 1.85; color: var(--text); }
.affidavit-stmt strong { font-style: normal; color: var(--purple-deep); font-weight: 600; }
.campaign-form .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.f-group { margin-bottom: 28px; }
.f-group.full { grid-column: 1/-1; }
.f-group label { display: block; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-deep); margin-bottom: 10px; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 12px 0; border: none; border-bottom: 1.5px solid var(--rule); border-radius: 0; font-family: var(--body-serif); font-size: 15px; color: var(--dark); background: transparent; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.f-group input:focus, .f-group textarea:focus { border-bottom-color: var(--purple); }
.f-group textarea { resize: vertical; min-height: 100px; padding-top: 8px; }
.f-check { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.f-check input[type="checkbox"] { -webkit-appearance: checkbox; appearance: auto; width: 18px; height: 18px; margin-top: 2px; padding: 0; flex-shrink: 0; border: 1.5px solid var(--purple-deep); background: #fff; accent-color: var(--purple); cursor: pointer; }
.f-check label { font-family: var(--body-serif); font-size: 14.5px; color: var(--text); line-height: 1.65; cursor: pointer; font-weight: 300; }
.f-check-group { margin: 8px 0 28px; display: flex; flex-direction: column; }
.form-submit { margin-top: 12px; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; }

.vol-ways { padding: 80px 40px; background: var(--cream); border-bottom: 1px solid var(--rule); }
.vol-ways-inner { max-width: 680px; margin: 0 auto; }
.vol-ways .kicker { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.vol-ways h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--purple); margin-bottom: 48px; }
.vol-row { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 26px 0; border-top: 1px solid var(--rule); align-items: start; }
.vol-row:last-child { border-bottom: 1px solid var(--rule); }
.vol-row h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--purple-deep); padding-top: 2px; }
.vol-row p { font-size: 15px; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--purple-deep);
  padding: 110px 40px 72px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.page-header::before { content: none; }
.page-header-inner { position: relative; z-index: 1; }
.page-header .court-line {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.page-header .kicker {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.page-header h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.05; color: #fff;
}
.page-header .rule { width: 44px; height: 2px; background: var(--gold); margin: 22px auto 20px; }
.meet-header .rule { margin: 22px 0 20px 0; }
.page-header .page-header-sub {
  font-family: var(--body-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.6;
  max-width: 520px; margin: 0 auto;
}

/* ============================================================
   MEET PAGE HEADER — COURTHOUSE BG + FRAMED CROSSFADE
   ============================================================ */
.meet-header {
  background-image:
    linear-gradient(rgba(61,21,68,0.78), rgba(61,21,68,0.78)),
    url('Tulane and Broad.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 64px 80px;
  text-align: left !important;
}
.meet-header * { text-align: left; }
.meet-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: center;
}
.meet-header-frame {
  position: relative;
  width: 260px;
  aspect-ratio: 3/4;
  border: 12px solid #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  overflow: hidden;
  flex-shrink: 0;
  transform: rotate(3deg);
}
.meet-header-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.meet-photo-child { animation: meetFade 9s ease-in-out infinite; }
.meet-photo-judge { animation: meetFade 9s ease-in-out infinite 4.5s; }

@keyframes meetFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  42%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.meet-header-text { text-align: left; padding: 0; display: flex; flex-direction: column; align-items: flex-start; }
.meet-header-text .kicker {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.meet-header-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.05; color: #fff;
}
.meet-header-text .rule {
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 22px 0 20px 0;
}
.meet-header-text .page-header-sub {
  font-family: var(--body-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.6;
}

@media (max-width: 960px) {
  .meet-header { padding: 80px 32px 64px; }
  .meet-header-inner { grid-template-columns: 1fr 180px; gap: 40px; }
}
@media (max-width: 600px) {
  .meet-header-inner { grid-template-columns: 1fr; }
  .meet-header-frame { max-width: 220px; margin: 0 0 24px 0; }
  .meet-header-text { text-align: left; align-items: flex-start; }
  .meet-header-text h1 { font-size: 1.7rem; white-space: nowrap; }
  .meet-header-text .rule { margin: 18px 0 16px; }
}

/* ============================================================
   SIMPLE BIO LAYOUT
   ============================================================ */
.bio-simple {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 64px;
}
.bio-simple-section {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
  padding: 20px 0;
}
.bio-simple-section--flip {
  grid-template-columns: 460px 1fr;
}
.bio-simple-section--flip .bio-simple-text { order: 2; }
.bio-simple-section--flip .bio-simple-stack { order: 1; }

.bio-simple-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 40px 20px;
}

.bio-simple-text .kicker {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.bio-simple-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--purple); line-height: 1.1; margin-bottom: 20px;
}
.bio-simple-text p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: var(--text); margin-bottom: 14px;
}
.bio-bq {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; font-weight: 700;
  color: var(--purple-deep);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 24px 0; line-height: 1.6;
}
.bio-simple-photo img {
  width: 100%; display: block;
  border: 12px solid #fff;
  box-shadow: 0 8px 36px rgba(26,8,32,0.28);
  object-fit: cover; object-position: top;
  aspect-ratio: 4/5;
}
/* SERVICE VIDEO */
.bio-service-stack {
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
}
.service-video-wrap {
  position: relative;
  width: 100%;
  border: 10px solid #fff;
  box-shadow: 0 8px 32px rgba(26,8,32,0.3);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.service-video-wrap video {
  width: 100%;
  display: block;
}
.service-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.service-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
}
.service-play-btn .video-play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s;
}
.service-play-btn:hover .video-play-circle {
  transform: scale(1.1);
}
.service-two-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-two-photos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border: 8px solid #fff;
  box-shadow: 0 6px 24px rgba(26,8,32,0.25);
}

.bio-simple-divider {
  margin: 64px 0;
}

@media (max-width: 960px) {
  .bio-simple { padding: 56px 32px; }
  .bio-simple-section,
  .bio-simple-section--flip {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bio-simple-section--flip .bio-simple-text { order: 1; }
  .bio-simple-section--flip .bio-simple-stack { order: 2; }
  .bio-simple-stack { min-height: 380px; padding: 20px 0; }
  .meet-header { min-height: 360px; padding: 100px 32px 64px; }
}

/* ── BIO MILESTONE (inline timeline) ── */
.bio-milestone {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--gold);
  margin: 22px 0;
}
.bio-milestone .m-year {
  font-family: var(--serif); font-weight: 700;
  font-size: 0.95rem; color: var(--gold);
  white-space: nowrap; flex-shrink: 0; padding-top: 1px;
}
.bio-milestone .m-event {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--text); line-height: 1.6;
}

/* ── CHAPTER NAV (meet page sticky sub-nav) ── */
.bio-chapter-nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 68px;
  z-index: 50;
  padding: 0 40px;
}
.bio-chapter-nav ul {
  max-width: var(--max);
  margin: 0 auto;
  list-style: none;
  display: flex;
  gap: 0;
}
.bio-chapter-nav a {
  display: block;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid);
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.bio-chapter-nav a:hover, .bio-chapter-nav a.active {
  color: var(--purple);
  border-bottom-color: var(--gold);
}

/* ── SCROLL-REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BIO STICKY SCROLL LAYOUT ── */
.bio-sticky-wrap {
  display: grid;
  grid-template-columns: 1fr 440px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}
.bio-sticky-content { padding: 72px 64px 72px 0; }
.bio-sticky-rail {
  position: sticky;
  top: 120px;
  padding: 40px 0 40px 40px;
  border-left: 1px solid var(--rule);
}
.bio-sticky-rail img {
  width: 100%; display: block;
  border: 12px solid #fff;
  box-shadow: 0 8px 40px rgba(26,8,32,0.32);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bio-sticky-rail img.fading { opacity: 0; transform: scale(0.975); }
.bio-sticky-rail .rail-caption {
  font-family: var(--sans); font-size: 11px;
  color: var(--mid); margin-top: 14px; line-height: 1.5;
}

/* Bio chapter blocks */
.bio-chapter {
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--rule);
}
.bio-chapter:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.bio-chapter .kicker {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.bio-chapter h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--purple); line-height: 1.1; margin-bottom: 20px;
}
.bio-chapter p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: var(--text); margin-bottom: 14px;
}
.bio-chapter .bq {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  font-weight: 700; color: var(--purple-deep);
  border-left: 3px solid var(--gold); padding: 4px 0 4px 22px;
  margin: 24px 0; line-height: 1.55;
}

/* ── SECTION PHOTO BREAK (full bleed between chapters) ── */
.section-photo-break {
  width: 100%; height: 420px; overflow: hidden;
  position: relative;
}
.section-photo-break img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.section-photo-break .break-label {
  position: absolute; bottom: 28px; left: 48px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(61,21,68,0.55);
  padding: 8px 16px; backdrop-filter: blur(4px);
}

@media (max-width: 960px) {
  .bio-sticky-wrap { grid-template-columns: 1fr; padding: 0 24px; }
  .bio-sticky-rail { display: none; }
  .bio-sticky-content { padding: 56px 0; }
  .bio-chapter-nav { padding: 0 20px; }
  .bio-chapter-nav a { padding: 14px 12px; font-size: 10px; }
  .section-photo-break { height: 280px; }
}

/* Thank You */
.thankyou-pg { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 140px 40px 80px; text-align: center; }
.thankyou-pg .inner { max-width: 500px; }
.thankyou-pg .rule { width: 44px; height: 2px; background: var(--gold); margin: 0 auto 36px; }
.thankyou-pg h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--purple-deep); margin-bottom: 18px; }
.thankyou-pg p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 12px; font-weight: 300; }
.thankyou-pg .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 420px; order: -1; }
  .hero-left { padding: 64px 32px; order: 2; }
  .hero-left .hero-logo img { max-width: 320px; }
  .statement { grid-template-columns: 1fr; gap: 40px; padding: 60px 32px; }
  .statement-cards { grid-template-columns: 1fr 1fr; }
  .hp-split { grid-template-columns: 1fr; min-height: auto; }
  .hp-split.flip .hp-photo { order: 0; }
  .hp-photo { min-height: 320px; padding: 24px 20px; }
  .hp-photo img { max-height: 360px; }
  .hp-text, .hp-form-side { padding: 56px 32px; }
  .numbers-row { grid-template-columns: 1fr; }
  .num-block { border-right: none; border-bottom: 1px solid var(--rule); }
  .num-block:last-child { border-bottom: none; }
  .bio-inline { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .bio-inline.flip .bio-inline-photo { order: 0; }
  .bio-photo-pair { padding: 0 24px; }
  .page-photo-strip { gap: 20px; padding: 40px 24px 8px; }
  .page-photo-strip img { width: 40%; min-width: 160px; }
  .bio-text-center { padding: 56px 24px; }
  .timeline-section { padding: 72px 24px; }
  .endorsements-wrap, .form-wrap { padding-left: 24px; padding-right: 24px; }
  .vol-ways { padding: 72px 24px; }
  .vol-row { grid-template-columns: 1fr; gap: 8px; }
  .campaign-form .f-row { grid-template-columns: 1fr; }
  .endorse-strip { padding: 72px 32px; }
  .vol-form .f2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--purple-deep); padding: 12px 24px 24px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links .nav-donate a { margin-left: 0; margin-top: 8px; }
  .hero-form .f2 { grid-template-columns: 1fr; }
  .hero-form .f-bottom { grid-template-columns: 1fr; }
  .statement-cards { grid-template-columns: 1fr; }
  .bio-photo-pair { grid-template-columns: 1fr; }
  .endorse-row { flex-direction: column; gap: 4px; }
  .endorse-row .role { text-align: left; }
  .endorse-list-clean li { flex-direction: column; gap: 4px; }
  .endorse-list-clean .role { text-align: left; }
  .footer-nav { gap: 0; }
  .footer-social { gap: 20px; }
}

/* ============================================================
   STACKED OVERLAPPING COLLAGE
   ============================================================ */
.hp-photo--stack {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  overflow: visible;
}
.stacked-collage {
  position: relative;
  width: 340px;
  height: 420px;
  flex-shrink: 0;
}
.stacked-collage img {
  position: absolute;
  height: auto;
  border: 10px solid #fff;
  box-shadow: 0 8px 32px rgba(26,8,32,0.32);
  display: block;
}
.stacked-collage .sc-1 {
  width: 54%;
  top: 0; left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}
.stacked-collage .sc-2 {
  width: 50%;
  top: 14px; right: 0;
  transform: rotate(3deg);
  z-index: 1;
}
.stacked-collage .sc-3 {
  width: 56%;
  bottom: 10px; right: 10px;
  transform: rotate(-2.5deg);
  z-index: 3;
}
.stacked-collage .sc-4 {
  width: 48%;
  bottom: 0; left: 14px;
  transform: rotate(3.5deg);
  z-index: 2;
}

/* -- trio variant: 3 larger photos, more space -- */
.stacked-collage--trio {
  width: 420px;
  height: 480px;
}
.stacked-collage--trio .sct-1 {
  width: 58%;
  top: 0; left: 0;
  transform: rotate(-5deg);
  z-index: 2;
}
.stacked-collage--trio .sct-2 {
  width: 52%;
  top: 24px; right: 0;
  transform: rotate(4deg);
  z-index: 1;
}
.stacked-collage--trio .sct-3 {
  width: 62%;
  bottom: 0; left: 18%;
  transform: rotate(-2deg);
  z-index: 3;
}

/* ============================================================
   VIDEO SECTION — full bleed with text panel
   ============================================================ */
.video-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
  background: var(--dark);
  overflow: hidden;
}
.video-section-inner {
  background: var(--purple-deep);
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.video-section-inner .kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.video-section-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.video-section-inner p {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.85; margin-bottom: 32px;
}
.video-embed {
  position: relative; overflow: hidden;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 220px;
  overflow: hidden;
}
.photo-strip-img { overflow: hidden; }
.photo-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.photo-strip-img:hover img { transform: scale(1.06); }

/* ============================================================
   DONATE SECTION — centered layout with collage
   ============================================================ */
.donate-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
  overflow: hidden;
}
.donate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.donate-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.donate-text .kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.donate-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--purple); line-height: 1.1; margin-bottom: 18px;
}
.donate-text p {
  font-size: 15px; font-weight: 300; color: var(--text);
  line-height: 1.85; margin-bottom: 32px; max-width: 400px;
}
.donate-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 400px;
}
.btn-amount {
  width: auto;
  background: #fff;
  color: var(--purple-deep);
  border: 1.5px solid var(--rule);
  box-shadow: 0 2px 8px rgba(26,8,32,0.06);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.btn-amount:hover { background: var(--purple-deep); color: #fff; border-color: var(--purple-deep); transform: translateY(-2px); }
.donate-other { max-width: 400px; width: auto; text-align: center; display: flex; }
.merged-donate {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.donate-stack {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  overflow: visible;
}

/* ── VIDEO PLAY BUTTON ── */
.video-embed { position: relative; overflow: hidden; }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background: transparent;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.video-play-btn:hover { background: rgba(61,21,68,0.25); }
.video-play-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
  transition: transform 0.2s, background 0.2s;
}
.video-play-btn:hover .video-play-circle {
  transform: scale(1.1);
  background: var(--gold-dark);
}
.video-play-circle svg { margin-left: 4px; }
.video-play-label {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ── HERO TAGLINE updated style (longer phrase) ── */
.hero-left .hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 960px) {
  .video-section { grid-template-columns: 1fr; }
  .video-section-inner { padding: 56px 32px; }
  .video-embed { height: 340px; }
  .donate-inner { grid-template-columns: 1fr; }
  .donate-text { padding: 56px 32px; }
  .hp-photo--stack { padding: 40px 24px; min-height: 420px; }
  .donate-stack { min-height: 400px; }
}

@media (max-width: 600px) {
  .donate-amounts { grid-template-columns: repeat(4, 1fr); }
  .stacked-collage { width: 280px; height: 340px; }
  .stacked-collage img { border-width: 7px; }
  .stacked-collage--trio { width: 320px; height: 370px; }
}

/* ============================================================
   IMPACT ON THE BENCH — HUD / DATA-READOUT REDESIGN
   ============================================================ */
.impact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--purple) 0%, var(--purple-deep) 45%, var(--dark) 100%);
}

/* -- header -- */
.impact-header {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 64px 40px 36px;
}
.impact-header .kicker {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 16px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple-deep); background: var(--gold);
  padding: 12px 22px; margin-bottom: 16px;
}
.impact-header h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.impact-header p {
  font-family: var(--sans); font-size: 15.5px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.62); max-width: 560px; margin: 0 auto;
}
.impact-header p strong { color: var(--gold-light); font-weight: 800; }

/* -- stat grid -- */
.stat-grid {
  position: relative; z-index: 1;
  max-width: 660px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; padding: 0 40px;
}
.stat-panel {
  position: relative;
  background: rgba(140,84,150,0.07);
  border: 1px solid rgba(209,154,42,0.3);
  padding: 22px 24px 20px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.stat-panel:hover {
  border-color: rgba(209,154,42,0.75);
  background: rgba(140,84,150,0.12);
  box-shadow: 0 0 34px rgba(209,154,42,0.14);
  transform: translateY(-3px);
}
.corner { position: absolute; width: 12px; height: 12px; pointer-events: none; opacity: 0.7; transition: opacity 0.3s ease; }
.stat-panel:hover .corner { opacity: 1; }
.corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.stat-value {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--gold-light); line-height: 1; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 26px rgba(209,154,42,0.5), 0 0 4px rgba(209,154,42,0.6);
  animation: statGlowPulse 3.6s ease-in-out infinite;
}
.stat-value .suffix {
  font-size: 0.35em; font-weight: 700; vertical-align: super;
  margin-left: 3px; color: var(--gold); text-shadow: none;
}
@keyframes statGlowPulse {
  0%, 100% { text-shadow: 0 0 26px rgba(209,154,42,0.5), 0 0 4px rgba(209,154,42,0.6); }
  50%      { text-shadow: 0 0 34px rgba(209,154,42,0.72), 0 0 6px rgba(209,154,42,0.85); }
}

.rank-meter { display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 24px; margin: 12px 0 10px; }
.meter-seg {
  width: 5px; height: 8px; background: rgba(255,255,255,0.14);
  transition: height 0.55s cubic-bezier(.2,.8,.3,1.15) 0.1s, background 0.4s ease 0.1s, box-shadow 0.4s ease 0.1s;
}
.meter-seg.is-active { height: 8px; background: rgba(255,255,255,0.14); }
.stat-panel.visible .meter-seg.is-active {
  height: 24px; background: var(--gold);
  box-shadow: 0 0 12px rgba(209,154,42,0.85), 0 0 3px rgba(209,154,42,1);
}

.stat-label {
  font-family: var(--sans); font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-weight: 800;
  letter-spacing: 0.01em; text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.stat-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.48); line-height: 1.5;
}

.impact-source {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 9.5px;
  line-height: 1.7; max-width: 640px; margin: 0 auto; text-align: center;
  padding: 18px 40px 48px;
}
.impact-source a {
  color: rgba(255,255,255,0.4); text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.impact-source a:hover { color: var(--gold); }

/* -- conditions of bond: gold panel -- */
.impact-bond {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  padding: 52px 0;
}
.impact-bond-inner { max-width: 960px; margin: 0 auto; padding: 0 40px; }
.impact-bond h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 900; color: var(--purple-deep); line-height: 1.15; margin-bottom: 8px;
}
.impact-bond-text > p {
  font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.6;
  color: rgba(61,21,68,0.78); margin-bottom: 20px; max-width: 480px;
}

.impact-bond-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-areas: "text photos" "extra photos";
  gap: 32px 32px;
  align-items: start;
}
.impact-bond-text { grid-area: text; }
.impact-bond-photos { grid-area: photos; }
.bond-tiles-extra { grid-area: extra; }

.bond-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bond-tile {
  background: var(--tile-bg, var(--purple));
  color: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bond-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.tile-head {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px 6px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700; color: #fff;
}
.tile-icon { flex-shrink: 0; color: rgba(255,255,255,0.85); }
.bond-tile p {
  font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.85);
  padding: 0 16px 16px 42px; line-height: 1.55;
}

.impact-bond-photos {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
.bond-photo-collage {
  position: relative;
  width: 100%; max-width: 400px; height: 460px;
  flex-shrink: 0;
}
.bond-photo-collage img {
  position: absolute;
  height: auto; object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 8px 32px rgba(26,8,32,0.32);
  display: block;
}
.bond-photo-collage .bpc-1 {
  width: 64%;
  top: 0; left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}
.bond-photo-collage .bpc-2 {
  width: 60%;
  bottom: 0; right: 0;
  transform: rotate(4deg);
  z-index: 2;
}

/* -- extra tiles: community service + classroom, under the main grid -- */
.bond-tiles-extra {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bond-tile--gold { background: var(--gold-dark); }
.bond-tile--wide summary {
  position: relative;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 10px;
  padding: 18px 40px 18px 18px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700; color: #fff;
  transition: background 0.2s ease;
}
.bond-tile--wide summary:hover { background: rgba(255,255,255,0.08); }
.bond-tile--wide summary::-webkit-details-marker { display: none; }
.bond-tile--wide summary::after {
  content: '+'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.75);
  transition: transform 0.25s ease;
}
.bond-tile--wide[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.bond-tile--wide .tile-icon { width: 16px; height: 16px; }
.bond-tile--wide p {
  padding: 0 18px 18px 44px; font-size: 12.5px; line-height: 1.6;
}

@media (max-width: 960px) {
  .impact-header { padding: 52px 28px 28px; }
  .stat-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 28px; max-width: 420px; }
  .impact-source { padding: 14px 28px 36px; }
  .impact-bond { padding: 44px 0; }
  .impact-bond-inner { padding: 0 28px; }
  .impact-bond-main {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "photos" "extra";
  }
  .bond-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bond-tiles { grid-template-columns: 1fr; }
  .bond-tiles-extra { grid-template-columns: 1fr; }
}
