/* ============================================================
   ARTHUR AMADI — Ward 2 · Milton 2026
   Rebuild Launch — Dark-First Contemporary Design System
   Brand: green #5BBD3A / red #C00010 / navy #002080 / gold #F0C000
   ============================================================ */


/* ------ DESIGN TOKENS ------ */
:root {
  --green:      #5BBD3A;
  --green-dark: #3d8a27;
  --red:        #C00010;
  --red-dark:   #8a000c;
  --navy:       #002080;
  --gold:       #F0C000;

  --dark:       #0C0C0C;
  --dark-2:     #141414;
  --dark-3:     #1C1C1C;
  --dark-4:     #242424;
  --dark-border:       rgba(255,255,255,0.10);
  --dark-border-strong:rgba(255,255,255,0.20);

  --white:     #FFFFFF;
  --off-white: #F5F2ED;
  --light-bg:  #EFEFEF;

  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.78);
  --text-muted:     rgba(255,255,255,0.62);

  --ink:      #0C0C0C;
  --ink-soft: #2a2a2a;
  --ink-muted:#5a5a5a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r1: 4px;
  --r2: 8px;
  --r3: 12px;
  --r4: 16px;
  --r5: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,32,128,0.05);
  --shadow-md: 0 4px 12px rgba(0,32,128,0.08);
  --shadow-lg: 0 12px 32px rgba(0,32,128,0.12);
  --shadow-cta: 0 6px 20px rgba(192,0,16,0.25);

  --tx: 200ms ease;
  --border: rgba(0,0,0,0.09);
  --bg-muted: #f4f6fb;

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 80px;
  --s10: 120px;
}

/* ------ RESET ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-padding-top: 113px; /* fixed nav height (97px) + 16px breathing room */
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: 97px;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ------ SKIP LINK ------ */
.skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  z-index: 9999;
  background: var(--green);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--r2);
  font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ------ LAYOUT ------ */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 var(--s5); }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 var(--s5); }
.container-wide   { max-width: 1400px; margin: 0 auto; padding: 0 var(--s5); }

/* ------ GLORY STRIP ------ */
.glory-strip {
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px var(--s5);
}
.glory-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.glory-strip strong { color: var(--gold); }
.glory-strip .badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ------ STICKY NAV ------ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 50%, var(--red) 100%);
  z-index: 1;
}
.site-header .container { padding: 0 var(--s5); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0;
  gap: var(--s5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand:hover .brand-mark {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,32,128,0.3);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--r2);
  display: grid;
  place-items: center;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--tx), box-shadow var(--tx);
}
.brand-mark::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 6px;
  right: 6px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--navy);
}
.brand-text small {
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--s2) 0;
  position: relative;
  text-decoration: none;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links li a:hover { color: var(--navy); text-decoration: none; }
.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links li a[aria-current="page"] { color: var(--navy); }
.nav-links li a[aria-current="page"]::after {
  background: var(--red);
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: var(--r2);
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--navy); }

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 118px);
    background: var(--white);
    padding: var(--s5);
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--s4);
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
    pointer-events: none;
  }
  .nav-toggle { display: flex; }
  .nav-open .nav-links {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-open .nav-links li a { font-size: 1.25rem; padding: var(--s3) 0; color: var(--navy); }
}

/* Narrow phones: keep the Volunteer CTA + menu toggle inside the viewport */
@media (max-width: 440px) {
  .site-header .container { padding: 0 var(--s4); }
  .nav { gap: var(--s2); }
  .nav-cta { gap: var(--s2); }
  .nav-cta .btn { padding: 9px 14px; font-size: 0.85rem; min-height: 38px; }
}

@media (max-width: 520px) {
  .nav-links { max-height: calc(100vh - 164px); }
  .glory-bg-text {
    max-width: 100vw;
    overflow: hidden;
  }
}

/* ------ BUTTONS ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: var(--tx);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  min-height: 48px;
  border: none;
}
.btn:hover { text-decoration: none; }

.btn-sm  { padding: 10px 18px; font-size: 0.9rem; min-height: 40px; }
.btn-lg  { padding: 18px 32px; font-size: 1.1rem; min-height: 56px; }

.btn-green {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(91,189,58,0.25);
  position: relative;
  overflow: hidden;
}
.btn-green::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-green:hover::before { opacity: 1; }
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,189,58,0.35);
}

.btn-red-gold {
  background: var(--red);
  color: var(--gold);
  box-shadow: var(--shadow-cta);
}
.btn-red-gold:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
}
.btn-red::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-red:hover::before { opacity: 1; }
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,0,16,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,32,128,0.25);
}
.btn-navy:hover {
  background: #001a6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,32,128,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.6);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(240,192,0,0.3);
}
.btn-gold:hover {
  background: #d4a900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,192,0,0.4);
}

/* ------ HERO SPLIT ------ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: calc(100vh - 108px);
  position: relative;
}

.hero-left {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: var(--s7) var(--s6) var(--s7) max(var(--s5), calc((100vw - 1200px) / 2 + var(--s5)));
}
.hero-left .container-hero {
  max-width: 600px;
  margin-left: 0;
  padding-right: var(--s7);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: var(--s3);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
}

.hero-name {
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s4);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}
.hero-name .line-1 {
  color: var(--navy);
  display: block;
}
.hero-name .line-2 {
  color: var(--green);
  display: block;
}

.hero-tagline {
  font-size: clamp(1.0rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: var(--s5);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
}

/* --- COUNTDOWN WIDGET --- */
.countdown-widget {
  margin-top: var(--s5);
  background: var(--red);
  border: none;
  border-radius: var(--r2);
  padding: var(--s4) var(--s5);
  color: var(--green);
  box-shadow: 0 10px 30px rgba(190, 30, 45, 0.35);
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.countdown-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.countdown-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-divider {
  display: block;
  width: 1px;
  align-self: stretch;
  background: rgba(91, 189, 58, 0.2);
  flex-shrink: 0;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}
.time-val {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.time-val.cd-days,
.time-val.cd-hours,
.time-val.cd-mins {
  color: var(--white);
}
.time-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.time-sep {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -15px;
}
@media (max-width: 480px) {
  .countdown-widget { flex-direction: column; align-items: flex-start; gap: var(--s3); padding: var(--s3) var(--s4); }
  .countdown-divider { display: none; }
  .countdown-timer { gap: var(--s2); }
  .time-val { font-size: 2rem; }
  .time-block { min-width: 40px; }
  .time-sep { font-size: 1.5rem; margin-top: -12px; }
}

.hero-right {
  background: #5BBD3A;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Pill badges over hero */
.hero-badge {
  position: absolute;
  bottom: var(--s7);
  left: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.hero-badge-item {
  display: inline-block;
  background: rgba(12,12,12,0.7);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: max-content;
  margin-bottom: var(--s4);
}
.hero-badge-item.green  { background: var(--green); color: var(--ink); }
.hero-badge-item.red    { background: var(--red);   color: var(--white); }
.hero-badge-item.navy   { background: var(--navy);  color: var(--white); vertical-align: middle; }

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: var(--s9) var(--s5) var(--s7);
    order: 2;
  }
  .hero-left .container-hero {
    margin-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .hero-right {
    min-height: 420px;
    order: 1;
  }
  .hero-name { font-size: clamp(3.5rem, 14vw, 5rem); }
}

/* ------ MARQUEE ------ */
.marquee-section {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-inner {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  gap: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}
.marquee-item .highlight { color: var(--green); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ------ SECTION UTILITY ------ */
.section       { padding: var(--s10) 0; }
.section-sm    { padding: var(--s8) 0; }
.section-dark  { background: var(--dark); }
.section-dark-2{ background: var(--dark-2); }
.section-dark-3{ background: var(--dark-3); }
.section-light { background: var(--off-white); color: var(--ink); }
.section-green { background: var(--green); color: var(--ink); }
.section-red   { background: var(--red);   color: var(--white); }
.section-navy  { background: var(--navy);  color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}
.eyebrow-green { color: var(--green); }
.eyebrow-red   { color: var(--red); }
.eyebrow-gold  { color: var(--gold); }
.eyebrow-navy  { color: var(--navy); }

.text-green {
  color: var(--green);
}

.section-heading {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--s5);
}
.section-lede {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}
.ink .section-lede  { color: var(--ink-muted); }
.ink .section-heading { color: var(--ink); }

/* ------ GLORY OF MILTON — EVENT POSTER ------ */
.glory-section {
  background: var(--white);
  padding: var(--s6) 0 var(--s10);
  position: relative;
  overflow: hidden;
}
.glory-bg-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.glory-inner {
  position: relative;
  z-index: 1;
}
.glory-intro-lede {
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
}
/* On wide screens, keep the intro on a single line (font capped so it never
   outgrows the 1200px container on ultra-wide displays) */
@media (min-width: 1100px) {
  .glory-intro-lede {
    max-width: none;
    white-space: nowrap;
    font-size: 1.3rem;
  }
}
.glory-poster-card {
  border: 1px solid var(--dark-border-strong);
  border-radius: var(--r4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.glory-poster-left {
  background: var(--green);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
/* Countdown moved into the navy left panel — tune contrast + spacing */
.glory-poster-left .glory-poster-date { margin-bottom: var(--s4); }
.glory-poster-left .glory-countdown { margin-top: 0; }
.glory-poster-left .glory-countdown-label { color: rgba(255, 255, 255, 0.75); }
.glory-poster-left .countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.glory-poster-right {
  background: var(--dark-3);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s6);
}
.glory-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: var(--s4);
}
.glory-title .the { color: var(--navy); font-size: 0.6em; display: block; margin-bottom: 0.1em; }
.glory-subtitle {
  font-size: 1.0rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 400px;
}
.glory-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.glory-meta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.glory-meta-item strong {
  color: var(--white);
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}
.glory-meta-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-4);
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
/* Endorser row inside the Glory poster */
.glory-endorser-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.glory-endorser-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.glory-countdown {
  margin-top: var(--s6);
}
.glory-countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.countdown-grid {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}
.countdown-unit {
  background: var(--dark-4);
  border: 1px solid var(--dark-border);
  border-radius: var(--r3);
  padding: var(--s3) var(--s4);
  text-align: center;
  min-width: 64px;
}
.countdown-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.glory-cal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}
.glory-poster-date {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: var(--s5);
}
.glory-poster-date span {
  display: block;
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4em;
}
.glory-rsvp-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--s4);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .glory-poster-card { grid-template-columns: 1fr; }
  .glory-poster-right { padding: var(--s6); }
  .glory-poster-left  { padding: var(--s6); }
}

/* ------ BIOGRAPHY ------ */
.bio-section {
  background: var(--white);
  color: var(--ink);
  padding: var(--s6) 0 var(--s6);
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s9);
  align-items: start;
}
.bio-photo-wrap {
  position: sticky;
  top: 120px;
}
.bio-photo-frame {
  border-radius: var(--r4);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-bg);
}
.bio-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-photo-caption {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: var(--s3);
  text-align: center;
}
.bio-content .eyebrow { color: var(--ink-muted); }
.bio-content .eyebrow-navy { color: var(--navy); }
.bio-content .eyebrow-red  { color: var(--red); }
.bio-content {
  min-width: 0;
}
.bio-content h2 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--s5);
  text-wrap: balance;
}
.bio-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.bio-body p { margin-bottom: var(--s5); }
.bio-body p:last-child { margin-bottom: 0; }
.bio-highlight {
  border-left: 4px solid var(--green);
  padding: var(--s4) var(--s5);
  margin: var(--s6) 0;
  background: rgba(91,189,58,0.07);
  border-radius: 0 var(--r3) var(--r3) 0;
}
.bio-highlight p {
  margin: 0;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  text-wrap: balance;
}
.bio-intro {
  margin-top: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}
.bio-intro-name {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: var(--s3) 0 var(--s4);
}
.bio-intro-lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}
.bio-traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s6);
}
.bio-trait-tag {
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 1fr; gap: var(--s7); }
  .bio-photo-wrap { position: static; }
}

/* ------ LISTENING TOUR ------ */
.listening-section {
  background: var(--white);
  color: var(--ink);
  padding: var(--s6) 0;
}
.listening-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s7);
  align-items: stretch;
}
.listening-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: var(--s3);
}
.listening-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: var(--s3);
}
.listening-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5) var(--s7);
}
@media (max-width: 640px) {
  .listening-steps { grid-template-columns: 1fr; }
}
.listening-step {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.listening-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--dark-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.listening-step-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--white);
}
.listening-step-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}
/* Keep step descriptions on one line where there's room */
@media (min-width: 1024px) {
  .listening-step-body p { white-space: nowrap; }
}
.listening-visual {
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  border-radius: var(--r4);
  padding: var(--s6) var(--s7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.listening-visual-stat {
  text-align: center;
  padding: var(--s4) var(--s4);
  border-right: 1px solid var(--dark-border);
}
.listening-visual-stat:last-child { border-right: none; }
.listening-visual-stat .stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}
.listening-visual-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .listening-grid { grid-template-columns: 1fr; gap: var(--s7); }
}
@media (max-width: 720px) {
  .listening-visual { grid-template-columns: 1fr; }
  .listening-visual-stat { border-right: none; border-bottom: 1px solid var(--dark-border); padding: var(--s5) 0; }
  .listening-visual-stat:last-child { border-bottom: none; }
}

/* ------ EMAIL CAPTURE ------ */
/* ------ GET INVOLVED ------ */
.involve-section {
  background: var(--light-bg, #F7F6F2);
  padding: var(--s7) 0 var(--s8);
}
.involve-head {
  text-align: center;
  margin: 0 auto var(--s6);
}
.involve-head .section-heading { color: var(--ink); margin: 0 0 var(--s4); }
.involve-head p { color: var(--ink-muted); font-size: 1.05rem; line-height: 1.7; }
/* keep the heading + intro on one line where there's room (heading needs
   ~1016px; below this it wraps cleanly instead of overflowing) */
@media (min-width: 1100px) {
  .involve-head .section-heading,
  .involve-head p { white-space: nowrap; }
}
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--r4);
  padding: var(--s7) var(--s6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.involve-card--red   { border-top-color: var(--red); }
.involve-card--gold  { border-top-color: var(--gold); }
.involve-card--green { border-top-color: var(--green); }
.involve-card-head {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.involve-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--r3);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,32,128,0.07);
  color: var(--navy);
}
.involve-card--red   .involve-icon { background: rgba(192,0,16,0.08);  color: var(--green); }
.involve-card--gold  .involve-icon { background: rgba(240,192,0,0.14); color: #9a7a00; }
.involve-card--green .involve-icon { background: rgba(91,189,58,0.12); color: #3f8f25; }
.involve-card h3 {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: 0; line-height: 1.15;
}
.involve-card p {
  font-size: 0.97rem; line-height: 1.65; color: var(--ink-muted);
  margin-bottom: var(--s6); flex: 1;
}
.involve-card .btn { width: 100%; }
@media (max-width: 880px) {
  .involve-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.email-section {
  background: var(--navy);
  padding: var(--s8) 0;
}
.email-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s7);
  align-items: center;
}
/* Right CTA: button + note move together as one unit, vertically centered
   against the heading block on the left */
.email-cta-side {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
}
/* hidden spacer = same height as the left eyebrow, so the button starts on
   the same straight line as the heading next to it */
.cta-spacer {
  visibility: hidden;
  margin: 0;
}
.email-cta-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 720px) {
  .cta-spacer { display: none; }
}
.email-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--s4);
}
.email-content p {
  font-size: 1.0rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.email-form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.email-input-row {
  display: flex;
  gap: var(--s2);
}
.email-field {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r2);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
}
.email-field::placeholder { color: rgba(255,255,255,0.55); }
.email-field:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.2);
  outline: none;
}
.email-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .email-inner { grid-template-columns: 1fr; gap: var(--s6); }
  .email-input-row { flex-direction: column; }
}

/* ------ GALLERY ------ */
.gallery-section {
  background: var(--dark);
  padding: var(--s7) 0 var(--s8);
  overflow: hidden;
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  gap: var(--s4);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: var(--s3);
}
.gallery-item {
  border-radius: var(--r3);
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}
/* Editorial pattern — deliberate rhythm of feature, wide, square */
.gallery-item:nth-child(4)  { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6)  { grid-column: span 2; }
.gallery-item:nth-child(8)  { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(9)  { grid-column: span 2; }

/* Portrait-aspect cell — full image, no crop (override editorial spans) */
.gallery-item.gallery-portrait,
.gallery-item.gallery-portrait:nth-child(1),
.gallery-item.gallery-portrait:nth-child(6),
.gallery-item.gallery-portrait:nth-child(8),
.gallery-item.gallery-portrait:nth-child(9) {
  grid-column: span 1;
  grid-row: span 2;
  background: var(--dark-2);
}
.gallery-item.gallery-portrait img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item:nth-child(8) { grid-column: span 1; grid-row: auto; }
  .gallery-item:nth-child(9) { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(9) { grid-column: span 2; grid-row: auto; }
  .gallery-item:nth-child(8) { grid-column: span 1; grid-row: auto; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------ FOOTER CTA ------ */
.footer-cta-section {
  background: var(--navy);
  padding: var(--s10) 0;
}
.footer-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s7);
}
.footer-cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}
.footer-cta-card p {
  color: rgba(255,255,255,0.75);
  margin-top: var(--s3);
  font-size: 1.0rem;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
}

@media (max-width: 760px) {
  .footer-cta-card { grid-template-columns: 1fr; gap: var(--s5); }
}

/* ------ FOOTER ------ */
.site-footer {
  background: var(--red);
  padding: var(--s7) 0 var(--s5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s7);
  margin-bottom: var(--s5);
}
.footer-brand-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-top: var(--s4);
  max-width: 300px;
}
.site-footer .brand-mark {
  background: var(--navy);
  color: var(--white);
}
.site-footer .brand-mark::after {
  background: var(--green);
}
.site-footer .brand-text {
  color: var(--white);
}
.site-footer .brand-text small {
  color: rgba(255,255,255,0.7);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer-col h5 { color: rgba(255,255,255,0.85); }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: var(--s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}
.footer-legal a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s5);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r2);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* ------ FAQ ------ */
.faq-item {
  background: var(--white);
}
.faq-item summary.faq-q {
  list-style: none;
  cursor: pointer;
  padding: var(--s5) var(--s6);
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  transition: color 0.2s;
}
.faq-item summary.faq-q::-webkit-details-marker { display: none; }
.faq-item summary.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary.faq-q::after {
  transform: rotate(45deg);
}
.faq-item[open] summary.faq-q { color: var(--navy); }
.faq-item summary.faq-q:hover { color: var(--navy); }
.faq-a {
  padding: 0 var(--s6) var(--s5);
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-a p { margin: 0; }
.faq-a p + p { margin-top: var(--s3); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .faq-item summary.faq-q { padding: var(--s4) var(--s5); font-size: 0.95rem; }
  .faq-a { padding: 0 var(--s5) var(--s4); }
}

/* ------ PAGE HEADER (inner pages) ------ */
.page-header {
  background: var(--white);
  padding: var(--s10) 0 var(--s8);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s5);
  color: var(--ink);
}
.page-header .lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 1100px;
}

/* ------ FORMS ------ */
.form-section {
  background: var(--white);
  padding: var(--s7) 0 var(--s10);
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field .required { color: var(--red); font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 12px 16px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: none;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field .help {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.form-field select option { background: var(--white); color: var(--ink); }
.form-submit {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.form-submit .note {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

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

/* ------ CHECKBOXES (volunteer form) ------ */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--s3);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: var(--s3) var(--s4);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.checkbox-label:hover {
  border-color: var(--green);
  background: rgba(91,189,58,0.05);
}
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: var(--r1);
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
  padding: 0;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%230C0C0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ------ SUCCESS MESSAGE ------ */
.form-success {
  display: none;
  background: rgba(91,189,58,0.1);
  border: 1px solid rgba(91,189,58,0.3);
  border-radius: var(--r3);
  padding: var(--s5) var(--s6);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: var(--s4);
}
.form-success.visible { display: block; }

/* ------ BACK TO TOP ------ */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: var(--s5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--dark-border-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--dark-4); }
.back-to-top svg { width: 18px; height: 18px; }

/* ------ AUDIO TOGGLE ------ */
.audio-toggle {
  position: fixed;
  bottom: var(--s6);
  left: var(--s6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--dark-border-strong);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 50;
}
.audio-toggle:hover { background: var(--dark-4); color: var(--white); }
.audio-toggle.playing { color: var(--green); }
.audio-toggle svg { width: 18px; height: 18px; }

/* ------ SCROLL REVEAL ------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------ ACCESSIBILITY UTILS ------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ------ STICKY LAUNCH MINI-BAR ------ */
.launch-bar {
  position: fixed;
  left: 50%;
  bottom: var(--s4);
  transform: translateX(-50%) translateY(140%);
  width: min(720px, calc(100% - 32px));
  background: var(--green);
  color: var(--white);
  border-radius: var(--r-pill);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s ease;
}
.launch-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.launch-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.launch-bar-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.launch-bar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.launch-bar .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .launch-bar {
    border-radius: var(--r4);
    padding: 10px 12px;
    gap: var(--s3);
  }
  .launch-bar-title { font-size: 0.85rem; }
  .launch-bar .btn { padding: 10px 14px; font-size: 0.85rem; min-height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .launch-bar { transition: opacity 0.2s ease; }
}

/* ------ RSVP FORM (on dark Glory card) ------ */
.rsvp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s4);
}
.rsvp-form .rsvp-row { grid-column: 1 / -1; }
.rsvp-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.rsvp-form input,
.rsvp-form select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r2);
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.rsvp-form input::placeholder { color: rgba(255,255,255,0.45); }
.rsvp-form input:focus,
.rsvp-form select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  outline: none;
}
.rsvp-form select option { background: var(--dark-3); color: var(--white); }
.rsvp-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s2);
}
.rsvp-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 320px;
}
.rsvp-success {
  display: none;
  grid-column: 1 / -1;
  background: rgba(91,189,58,0.12);
  border: 1px solid rgba(91,189,58,0.45);
  border-radius: var(--r3);
  padding: var(--s4) var(--s5);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 600;
}
.rsvp-success.visible { display: block; }
@media (max-width: 760px) {
  .rsvp-form { grid-template-columns: 1fr; }
}

/* ===== WARD CHECKER ===== */
.ward-check-section {
  background: var(--light-bg, #F7F6F2);
  padding: var(--s8) 0;
}
.ward-check-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r5);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s8);
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.ward-check-input-row {
  display: flex;
  gap: var(--s3);
}
.ward-check-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r3);
  font-size: 0.97rem;
  font-family: var(--font);
  color: var(--ink);
  transition: border-color 0.2s;
}
.ward-check-input:focus {
  outline: none;
  border-color: var(--navy);
}
.ward-check-result {
  margin-top: var(--s4);
  padding: var(--s4);
  border-radius: var(--r3);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  display: none;
}
.ward-check-result.in-ward {
  display: block;
  background: rgba(46, 158, 79, 0.1);
  border: 1.5px solid var(--green);
  color: #1a6b32;
}
.ward-check-result.out-ward {
  display: block;
  background: rgba(192, 0, 16, 0.07);
  border: 1.5px solid var(--red);
  color: #7a0008;
}
.ward-check-result.error-ward {
  display: block;
  background: #fff8e1;
  border: 1.5px solid #f0d98a;
  color: #6b5200;
}
.ward-check-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: var(--s3);
  line-height: 1.5;
}
.ward-check-note a { color: var(--navy); }
@media (max-width: 720px) {
  .ward-check-card { grid-template-columns: 1fr; gap: var(--s5); }
  .ward-check-input-row { flex-direction: column; }
}

/* ------ DONATE HELPER ------
   Donate button is hidden site-wide until a real Zeffy URL is wired in.
   To enable: set data-donate-url="https://your-zeffy-url" on <html>
   in each page, OR change [data-donate] default to display:inline-flex. */
[data-donate] { display: none !important; }
html[data-donate-url] [data-donate] { display: inline-flex !important; }

/* ------ CONTRAST FIX: section-heading on light bg ------ */
.bio-section .section-heading,
.glory-section .section-heading,
.form-section .section-heading,
.page-header h1 { color: var(--ink); }

/* ------ EMAIL note + form muted text on navy ------ */
.email-note { color: rgba(255,255,255,0.82); }
.email-content p { color: rgba(255,255,255,0.92); }

/* ====== DESIGN EXCELLENCE PASS COMPONENTS ====== */

/* --- SOCIAL PROOF STRIP --- */
.social-proof-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: var(--s5) 0;
}
.social-proof-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: var(--text-secondary);
}
.social-proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.social-proof-text {
  font-size: 0.8rem;
  line-height: 1.4;
}
.social-proof-text strong {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- PAGE HEADER ENHANCEMENTS --- */
.page-header {
  position: relative;
  background: radial-gradient(circle at 50% -20%, #001a6e 0%, var(--dark) 100%);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.03"/%3E%3C/svg%3E');
  pointer-events: none;
}
.page-header h1 {
  color: var(--white) !important;
  position: relative;
  padding-bottom: var(--s2);
}
.page-header .lede {
  color: rgba(255, 255, 255, 0.95);
}
.page-header h1::after {
  content: none;
}
.page-header .h1-accent {
  position: relative;
  padding-bottom: 6px;
}
.page-header .h1-accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* --- VALUE CARDS --- */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: var(--s7);
  position: relative;
  transition: transform var(--tx), box-shadow var(--tx);
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tx);
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--s5);
  transition: background var(--tx), color var(--tx), box-shadow var(--tx);
}
.value-card:hover .value-card-icon {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,32,128,0.2);
}
.value-card h2 {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--s3);
  position: relative;
  z-index: 1;
}
.value-card p {
  color: var(--ink-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.value-card-watermark {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(0,32,128,0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color var(--tx), transform var(--tx);
}
.value-card:hover .value-card-watermark {
  color: rgba(0,32,128,0.05);
  transform: scale(1.05) rotate(-5deg);
}

/* --- VOLUNTEER ROLE CARDS --- */
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: var(--s6);
  display: flex;
  gap: var(--s5);
  transition: transform var(--tx), box-shadow var(--tx);
}
.role-card--dark {
  background: var(--dark-3);
  border-color: var(--dark-border);
}
.role-card--dark .role-content h3 {
  color: var(--white);
}
.role-card--dark .role-content p {
  color: var(--text-secondary);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.role-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(91,189,58,0.15);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--tx), box-shadow var(--tx);
}
.role-card:hover .role-icon {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(91,189,58,0.4);
}
.role-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--s2);
}
.role-content p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* --- GALLERY OVERLAY --- */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--white);
  padding: var(--s6) var(--s4) var(--s4);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--tx) ease-out;
  opacity: 0;
  pointer-events: none;
}
.gallery-item:hover::after, .gallery-item:focus-within::after {
  transform: translateY(0);
  opacity: 1;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--white);
  margin-top: var(--s4);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--tx), transform var(--tx);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--red);
  transform: scale(1.1);
  border-color: transparent;
}
.lightbox-close { top: var(--s5); right: var(--s5); }
.lightbox-prev { left: var(--s5); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--s5); top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    top: auto;
    bottom: var(--s5);
    transform: none;
  }
  .lightbox-prev { left: var(--s5); }
  .lightbox-next { right: var(--s5); }
  .lightbox-close { top: var(--s3); right: var(--s3); }
}

/* --- PRIORITY SECTIONS WATERMARK --- */
.priority-section {
  position: relative;
  overflow: hidden;
}
.priority-watermark {
  position: absolute;
  top: -10%;
  right: -5%;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.priority-section.section-dark .priority-watermark {
  color: rgba(255,255,255,0.03);
}
.priority-section .container {
  position: relative;
  z-index: 1;
}

/* --- FORM INPUT GLOW --- */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(0,32,128,0.15) !important;
}

/* --- GLORY POSTER SHIMMER --- */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}
.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,0,16,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(192,0,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,0,16,0); }
}

/* --- VALUES PAGE LAYOUT --- */
.values-section {
  padding: var(--s9) 0 var(--s10);
  background: var(--white);
  color: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
@media (max-width: 720px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.value-tag {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.2em 0.5em;
  border-radius: 4px;
}
.value-card--red .value-tag { background: var(--red); }
.value-card--green .value-tag { background: var(--green); }
.value-belief {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
}
.value-oncouncil {
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
}
.value-oncouncil .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--s2);
}
.value-card--red .value-oncouncil .label { color: var(--red); }
.value-card--green .value-oncouncil .label { color: var(--green); }
.values-cta .email-inner {
  grid-template-columns: 1.7fr 1fr;
  gap: var(--s7);
}
@media (max-width: 760px) {
  .values-cta .email-inner { grid-template-columns: 1fr; }
}

/* --- PRIORITIES PAGE LAYOUT --- */
.priority-section--alt {
  background: var(--off-white);
  color: var(--ink);
}
.priority-intro {
  max-width: none;
}
.priority-body + .priority-body {
  margin-top: var(--s4);
}
.priority-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: var(--s3) 0 var(--s4);
}
.priority-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.3em 0.8em;
  border-radius: 4px;
  display: inline-block;
}
.priority-tag--red { background: var(--red); }
.priority-tag--green { background: var(--green); }
.priority-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--s3);
  font-style: italic;
}
.priority-body {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
}
.priority-body strong {
  color: var(--white);
}
.honest-mechanics {
  margin-top: var(--s5);
  padding: var(--s4);
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white);
}
.honest-mechanics strong {
  color: var(--white);
}

/* Alternate light theme for Priority 2 */
.priority-section--alt .priority-intro h2 { color: var(--ink); }
.priority-section--alt .priority-lead { color: #1a1a1a; }
.priority-section--alt .priority-body { color: var(--ink-soft); }
.priority-section--alt .priority-body strong { color: var(--ink); }
.priority-section--alt .honest-mechanics {
  color: var(--ink);
  background: var(--off-white);
  border-left-color: var(--navy);
}
.priority-section--alt .honest-mechanics strong {
  color: var(--navy);
}
.commitment-list {
  list-style: none;
  padding: 0;
  margin: var(--s6) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
@media (max-width: 720px) {
  .commitment-list { grid-template-columns: 1fr; }
}
.commitment-list li {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s4) var(--s5);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--navy);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
}
.commitment-list li strong { color: var(--navy); }
.commitment-list--red li { border-left-color: var(--red); }
.commitment-list--green li { border-left-color: var(--green); }


/* --- WHY PAGE LAYOUT --- */
.letter-section {
  background: var(--light-bg, #F7F6F2);
  padding: var(--s8) 0 var(--s10);
}
.letter-lead {
  display: block;
  margin: 0 0 var(--s5);
}
.letter-paper {
  max-width: none;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 8px solid var(--navy); /* Paper edge styling */
  border-radius: 0 0 var(--r4) var(--r4);
  padding: clamp(28px, 4vw, 72px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.letter-masthead {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding-bottom: var(--s5);
  margin-bottom: var(--s6);
  border-bottom: 2px solid var(--border);
}
.letter-masthead .brand-mark {
  width: 52px;
  height: 52px;
  font-size: 1.05rem;
}
.letter-masthead .mh-text .n {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.1;
}
.letter-masthead .mh-text .s {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}
.letter-greeting {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s5);
}
.letter-body p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: var(--s5);
}
.letter-declaration {
  font-size: 1.18rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  border-left: 4px solid var(--red);
  padding-left: var(--s5);
  margin: var(--s6) 0 !important;
}
.letter-sign { margin-top: var(--s7); }
.letter-sign .warm {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: var(--s2);
}
.letter-sign .name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-style: italic;
  line-height: 1.1;
}
.letter-sign .role {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-top: var(--s2);
}
.letter-sign .contact {
  font-size: 0.92rem;
  margin-top: var(--s2);
}
.letter-sign .contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.letter-sign .contact a:hover { text-decoration: underline; }
.letter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  max-width: none;
  margin: var(--s6) 0 0;
  justify-content: flex-start;
}
