/* ============================================================
   SSMHA — Main Stylesheet
   Mobile-first, responsive, Cloudflare Pages
============================================================ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --cream:        #EDE8D8;
  --cream-light:  #F5F0E4;
  --cream-dark:   #DDD8C4;
  --navy:         #1B2B5E;
  --navy-dark:    #0F1C3F;
  --navy-mid:     #2B3B6E;
  --gold:         #C4943A;
  --gold-light:   #D4A94A;
  --gold-dark:    #8B6914;
  --blue-accent:  #C8DDF0;
  --blue-mid:     #6B9EC4;
  --green-accent: #2D6A4F;
  --text-dark:    #0F1C3F;
  --text-body:    #2C3555;
  --text-muted:   #5A6480;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(15,28,63,0.08);
  --shadow-md:    0 4px 20px rgba(15,28,63,0.14);
  --shadow-lg:    0 8px 40px rgba(15,28,63,0.20);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:    1160px;
  --nav-height:   72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream-light);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.35rem, 3.4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }
p { max-width: 68ch; }

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.75rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.section {
  position: relative;
  padding-block: 4.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .section { padding-block: 6.3rem; } }

/* ── Background Textures ────────────────────────────────── */
.blueprint-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
.blueprint-bg--light { opacity: 0.025; }

.net-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, var(--gold) 1px, transparent 1px),
    linear-gradient(-45deg, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.net-bg--light { opacity: 0.025; }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245,240,228,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,148,58,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(245,240,228,0.97);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
  gap: 1rem;
}
@media (min-width: 640px) { .nav-container { padding-inline: 1.75rem; } }
@media (min-width: 1024px) { .nav-container { padding-inline: 2.5rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-seal { width: 42px; height: 42px; object-fit: contain; aspect-ratio: 1 / 1; }
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-right: -0.5rem;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--cream-light);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.nav-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}
.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
  background: rgba(196,148,58,0.12);
  color: var(--navy-dark);
}
.nav-cta {
  margin-top: 0.5rem;
  background: var(--navy-dark);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0;
    transform: none;
    opacity: 1;
    box-shadow: none;
  }
  .nav-link { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
  .nav-cta {
    margin-top: 0;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--navy-dark);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--navy-dark);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── Focus Ring ─────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Section Text Helpers ───────────────────────────────── */
.section-heading {
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
}
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading--white { color: var(--white); }
.body-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.highlight-box {
  background: var(--blue-accent);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin-block: 1.25rem;
}
.highlight-box p { color: var(--text-dark); margin: 0; }
.highlight-box--blue {
  background: var(--blue-accent);
  border-left-color: var(--navy);
}

/* ── Split Layout ───────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .split-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split-layout--reverse { direction: rtl; }
  .split-layout--reverse > * { direction: ltr; }
}
.split-text { display: flex; flex-direction: column; gap: 0.5rem; }
.split-visual { display: flex; justify-content: center; align-items: center; }

/* ── Hero Section ───────────────────────────────────────── */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/safety-net-2.png') center / cover no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.hero-section {
  min-height: 100dvh;
  min-height: 100vh;
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-inline: 1.25rem;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1B2B5E;
  max-width: none;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: none;
}
.hero-seal-wrap {
  margin-block: 0.475rem;
}
.hero-seal {
  width: clamp(120px, 25vw, 180px);
  height: clamp(120px, 25vw, 180px);
  object-fit: contain;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 8px 24px rgba(15,28,63,0.25));
}
.hero-divider {
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-block: 0.5rem;
}
.hero-tagline {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: var(--navy-dark);
  font-weight: 400;
  max-width: none;
}
.hero-highlight { color: var(--gold); font-style: italic; }
.hero-mission {
  max-width: 816px;
  text-align: left;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}
.hero-mission-lead { margin-bottom: 0.5rem !important; }
.hero-mission-label { margin-bottom: 0.15rem !important; margin-top: 0.25rem; }
.hero-mission-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--navy-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: none;
}
.hero-mission-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
  max-width: none;
}
.hero-mission-body {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: none;
}
.hero-date {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: none;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--navy-dark);
  opacity: 0.5;
  animation: bounce 2s infinite;
  z-index: 1;
}
.scroll-indicator svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Problem Section ────────────────────────────────────── */
.problem-section { background: var(--cream-light); }
.problem-section--alt { background: var(--cream); }
.harness-diagram, .warehouse-visual {
  width: 100%;
  max-width: 420px;
}
.worker-svg, .warehouse-svg { width: 100%; }

/* ── Data / Stats Section ───────────────────────────────── */
.data-section { background: var(--cream); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-card--light {
  background: var(--blue-accent);
  border: 2px solid rgba(27,43,94,0.15);
}
.stat-card--dark {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--gold);
}
.stat-chart { margin-bottom: 1rem; }
.stat-chart svg { width: 100%; max-width: 140px; margin-inline: auto; }
.stat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}
.stat-title--gold { color: var(--gold); }
.stat-desc { font-size: 1rem; color: var(--text-body); max-width: none; }
.stat-card--dark .stat-desc { color: rgba(255,255,255,0.85); }
.stat-callout {
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .stat-callout { max-width: none; }
}
.stat-callout p { max-width: none; color: var(--white); }

/* ── Mechanism Section ──────────────────────────────────── */
.mechanism-section { background: var(--cream-light); }
.flow-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-block: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .flow-chain {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.flow-step {
  background: var(--cream-light);
  border: 2px solid var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow-step--highlight {
  background: var(--navy-dark);
  border-color: var(--green-accent);
  border-width: 3px;
}
.flow-step--highlight .flow-title { color: var(--white); }
.flow-step--highlight .flow-sub { color: rgba(255,255,255,0.7); }
.flow-step--highlight .flow-desc { color: rgba(255,255,255,0.85); }
@media (min-width: 900px) {
  .flow-step { max-width: 200px; flex: 1; }
}
.flow-icon { width: 56px; height: 56px; margin-bottom: 0.25rem; }
.flow-icon svg { width: 100%; height: 100%; }
.flow-title { font-size: 1rem; font-weight: 700; color: var(--navy-dark); max-width: none; margin: 0; }
.flow-sub { font-size: 0.8rem; color: var(--text-muted); font-style: italic; max-width: none; margin: 0; }
.flow-desc { font-size: 0.875rem; color: var(--text-body); max-width: none; margin: 0; line-height: 1.5; }
.flow-arrow {
  color: var(--navy-dark);
  flex-shrink: 0;
  transform: rotate(90deg);
}
.flow-arrow svg { width: 32px; height: 24px; }
@media (min-width: 900px) {
  .flow-arrow { transform: rotate(0deg); align-self: center; }
}
.mechanism-callout {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
}
.mechanism-callout p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--white);
  max-width: none;
  margin: 0;
}

/* ── Indicator Section ──────────────────────────────────── */
.indicator-section { background: var(--cream); }
.indicator-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-block: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .indicator-chain { flex-direction: row; align-items: stretch; }
}
.indicator-step {
  background: var(--gold);
  opacity: 0.88;
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 320px;
  clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%, 12px 50%);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .indicator-step {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
    max-width: none;
    margin: 0;
  }
  .indicator-step:first-child {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  }
}
.indicator-step--blue {
  background: var(--blue-accent);
  opacity: 1;
}
.indicator-step--blue h3 { color: var(--navy-dark); }
.indicator-step--blue p { color: var(--text-body); }
.indicator-step--navy {
  background: var(--navy-dark);
  opacity: 1;
}
.indicator-step--navy h3 { color: var(--white); }
.indicator-step--navy p { color: rgba(255,255,255,0.8); }
.indicator-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  max-width: none;
  margin: 0;
}
.indicator-step p {
  font-size: 0.8rem;
  color: var(--navy-dark);
  max-width: none;
  margin: 0;
  opacity: 0.85;
}
.indicator-arrow {
  display: none;
}
.indicator-caption {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-inline: auto;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── Paradigm Section ───────────────────────────────────── */
.paradigm-section { background: var(--cream-light); }
.paradigm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .paradigm-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}
.paradigm-col { display: flex; flex-direction: column; gap: 1rem; }
.paradigm-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}
.paradigm-col-title--gold { color: var(--gold-dark); }
.paradigm-card {
  background: var(--white);
  border: 2px solid var(--navy-dark);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.paradigm-card h4 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 0.25rem; max-width: none; }
.paradigm-card p { font-size: 0.9rem; color: var(--text-body); margin: 0; max-width: none; }
.paradigm-card--modern {
  background: var(--cream-light);
  border-color: var(--gold);
  border-radius: var(--radius-md);
}
.paradigm-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--navy-dark);
}
.paradigm-arrow svg { width: 60px; height: 80px; }
.paradigm-footer {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.paradigm-footer p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--gold-light);
  max-width: none;
  margin: 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ── Whole Person Section ───────────────────────────────── */
.whole-person-section { background: var(--cream); }
.whole-person-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .whole-person-grid {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
}
.whole-person-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.whole-person-label--navy { background: var(--navy-dark); }
.whole-person-label--navy h3 { color: var(--white); font-size: 1rem; margin: 0; max-width: none; }
.whole-person-shield { display: flex; justify-content: center; }
.shield-svg { width: clamp(120px, 20vw, 160px); }
.whole-person-callout {
  background: transparent;
  border: 2px solid var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.whole-person-callout p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
  max-width: none;
  margin: 0;
}

/* ── Golden Gate Section ────────────────────────────────── */
.golden-gate-section { background: var(--cream-light); }
.bridge-illustration { width: 100%; max-width: 440px; }
.bridge-svg { width: 100%; border-radius: var(--radius-md); border: 1px solid rgba(196,148,58,0.3); }

/* ── Safety Net Section ─────────────────────────────────── */
.safety-net-section { background: var(--cream); }
.net-strands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .net-strands { grid-template-columns: 1fr 1fr; }
}
.strand-item { display: flex; }
.strand-tag {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  width: 100%;
}
.strand-tag--right { background: var(--navy-mid); }
.strand-tag h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.25rem; max-width: none; }
.strand-tag p { font-size: 0.8rem; color: rgba(255,255,255,0.8); max-width: none; margin: 0; }
.net-visual {
  margin-block: 2rem;
  position: relative;
  z-index: 1;
}
.rope-net-svg { width: 100%; max-width: 600px; margin-inline: auto; }
.net-caption {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ── Conference Section ─────────────────────────────────── */
.conference-section { background: var(--cream-light); }
.conference-date-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  max-width: none;
}
.rule-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-block: 1rem;
}
.conference-desc-block {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-block: 1.25rem;
}
.conference-desc-block p { font-size: 1rem; color: var(--text-body); margin-bottom: 0.75rem; }
.date-badge {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.conference-visual { order: -1; }
@media (min-width: 768px) { .conference-visual { order: 0; } }
.charleston-photo-frame {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(196,148,58,0.3);
}
.charleston-svg { width: 100%; }

/* ── Pillars Section ────────────────────────────────────── */
.pillars-section { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-block: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px)  { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pillars-grid { grid-template-columns: repeat(5, 1fr); } }
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.pillar-column {
  width: 70px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  flex: 1;
  min-height: 120px;
  border-radius: 8px 8px 0 0;
  position: relative;
  box-shadow: inset -4px 0 8px rgba(0,0,0,0.15), inset 4px 0 8px rgba(255,255,255,0.15);
}
/* Capital on top */
.pillar-column::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  height: 16px;
  background: var(--gold);
  border-radius: 4px;
}
/* Base at bottom */
.pillar-column::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  right: -10px;
  height: 20px;
  background: var(--gold-dark);
  border-radius: 0 0 4px 4px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-top: 1rem;
  max-width: none;
}
.pillar-desc { font-size: 0.875rem; color: var(--text-body); max-width: none; line-height: 1.55; }
.pillars-footer {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pillars-footer p {
  font-size: 1rem;
  color: var(--white);
  max-width: none;
  margin: 0;
  font-style: italic;
}

/* ── Charleston Section ─────────────────────────────────── */
.charleston-section { background: var(--cream-light); }
.charleston-location { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--text-dark); max-width: none; }
.charleston-skyline { width: 100%; max-width: 500px; }
.skyline-svg { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ── Get Involved / Forms Section ───────────────────────── */
.get-involved-section {
  background: var(--navy-dark);
  color: var(--white);
  /* Offset so deep-links from /mailing-list and /get-involved (and any
     same-page #get-involved anchor) don't land under the fixed header. */
  scroll-margin-top: var(--nav-height);
}
.braid-visual { margin-bottom: 2rem; position: relative; z-index: 1; }
.braid-svg { width: 100%; max-width: 500px; margin-inline: auto; }
.involve-intro {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* Tabs */
.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.tab-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}
.tab-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.tab-btn--active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.tab-btn:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* Form Panels */
.form-panel {
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.form-panel[hidden] { display: none; }
.form-panel--active { display: block; }

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.15rem; }
.form-input, .form-select, .form-textarea { padding: 0.5rem 0.75rem !important; }
.form-textarea { min-height: 2.5rem; }
.field-error:empty { display: none; }
.form-footer-row { margin-top: 0.5rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.required { color: var(--gold-light); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-input.is-invalid { border-color: #ff6b6b; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 18px; padding-right: 2.5rem; }
.form-select option { background: var(--navy-dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }
.field-error {
  font-size: 0.8rem;
  color: #ff8a8a;
  min-height: 1.2em;
  display: block;
}
.form-footer-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}
.btn-submit {
  position: relative;
  min-width: 200px;
}
.btn-submit .btn-loading { display: none; }
.btn-submit.is-loading .btn-text { display: none; }
.btn-submit.is-loading .btn-loading { display: block; }
.btn-submit.is-loading { opacity: 0.8; cursor: wait; }
.form-message {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-message.is-success {
  display: block;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.4);
  color: #a8f0c6;
}
.form-message.is-error {
  display: block;
  background: rgba(255,107,107,0.12);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff8a8a;
}

/* ── Founders Section ───────────────────────────────────── */
.founders-section { background: var(--navy-dark); }
.founders-section .section-heading { color: var(--white); }
.founders-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-block: 2.5rem;
  position: relative;
  z-index: 1;
}
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.founder-initial {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.2);
}
.founder-name {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  max-width: 120px;
  line-height: 1.4;
}
.mead-quote {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(196,148,58,0.3);
  padding-top: 2rem;
}
.mead-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.65;
  max-width: none;
  margin-bottom: 0.75rem;
}
.mead-quote cite {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding-block: 3rem;
  color: rgba(255,255,255,0.7);
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-seal { width: 48px; height: 48px; object-fit: contain; aspect-ratio: 1 / 1; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-brand-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { text-align: left; }
.footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 0.25rem; max-width: none; }
.footer-email {
  font-size: 0.875rem;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-email:hover { color: var(--gold); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; max-width: none; }
.footer-domain { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.08em; }

/* ── Toast ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  left: 1rem;
  max-width: 420px;
  margin-inline: auto;
  background: var(--navy-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  z-index: 9998;
  transform: translateY(calc(100% + 3rem));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.is-visible {
  transform: translateY(0);
}
@media (min-width: 480px) {
  .toast { left: auto; width: 420px; }
}

/* ── Scroll Animations ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Delay modifiers */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Section Label ──────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  max-width: none;
}
.section-label--gold { color: var(--gold); }

/* ── Crisis Section ─────────────────────────────────────── */
.crisis-section { background: var(--cream-light); }
.crisis-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.crisis-heading { margin-bottom: 2rem; }
.crisis-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.crisis-body p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-body);
  max-width: 72ch;
}

/* ── Alliance Section ───────────────────────────────────── */
.alliance-section { background: var(--navy-dark); }
.alliance-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .alliance-inner { grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
}
.alliance-body {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  max-width: 66ch;
}
.alliance-body strong { color: var(--gold-light); }
.alliance-board {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,148,58,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.board-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  max-width: none;
}
.board-list { display: flex; flex-direction: column; gap: 0.75rem; }
.board-member {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.board-member:last-child { border-bottom: none; }

/* ── Ambassadors Section ─────────────────────────── */
.coalition-section { background: var(--cream); }
.coalition-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.coalition-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--navy-dark);
  max-width: none;
}
.coalition-intro {
  font-size: clamp(1rem, 2vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 0.5rem;
}
.coalition-benefits-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.5rem;
  max-width: none;
}
.coalition-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  width: 100%;
  max-width: 480px;
}
.coalition-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}
.coalition-benefits li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.45em;
}
.coalition-section .btn { margin-top: 0.5rem; }

/* ── Conference Section ─────────────────────────────────── */
.conference-section { background: var(--navy-dark); }
.conf-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.conf-location {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 500;
  max-width: none;
}
.conf-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  max-width: none;
}
.conf-body {
  font-size: clamp(1rem, 2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}
.conf-expect { margin-top: 1rem; }
.conf-expect-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  max-width: none;
}
.conf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.conf-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.conf-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.45em;
}
.conf-cta { margin-top: 1.5rem; }

/* ── OVERRIDE: Gold text → Black (ONLY on light bg sections) ── */
.hero-section .hero-highlight,
.hero-section .hero-mission-label,
.crisis-section .section-label,
.crisis-section .section-label--gold,
.coalition-section .section-label,
.coalition-section .coalition-benefits-label,
.conference-section .section-label,
.conference-section .section-label--gold,
.conference-section .conf-location,
.conference-section .conf-tagline,
.conference-section .conf-body,
.conference-section .conf-expect-label,
.conference-section .conf-list li,
.conference-section .section-heading--white,
.conference-section .section-heading { color: #000 !important; }
.conference-section .section-label,
.conference-section .section-label--gold,
.conference-section .conf-location,
.conference-section .conf-tagline,
.conference-section .conf-body,
.conference-section .conf-expect-label,
.conference-section .conf-list li,
.conference-section .section-heading--white,
.conference-section .section-heading {
  text-shadow:
    -1.5px -1.5px 0 #F5F0E4,
     1.5px -1.5px 0 #F5F0E4,
    -1.5px  1.5px 0 #F5F0E4,
     1.5px  1.5px 0 #F5F0E4,
     0 0 6px #F5F0E4;
}

/* ── Nav DRAFT label ─────────────────────────────────────── */
.nav-draft {
  display: inline-block;
  margin-left: 0.55rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #E11D1D;
  text-transform: uppercase;
  line-height: 1;
  align-self: center;
}

/* ── Crisis section bg: Construction site ───────────────── */
.crisis-section { position: relative; isolation: isolate; }
.crisis-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/construction-site.png') center / cover no-repeat;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.crisis-section > * { position: relative; z-index: 1; }

/* ── Coalition section bg: Golden Gate ───────────────────── */
.coalition-section { position: relative; isolation: isolate; }
.coalition-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/golden-gate-bg2.png') center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.coalition-section > * { position: relative; z-index: 1; }

/* ── Conference section bg: Charleston backdrop ─────────── */
.conference-section { position: relative; isolation: isolate; background: var(--cream-light); }
.conference-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/charleston-bg2.png') center / cover no-repeat;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.conference-section > * { position: relative; z-index: 1; }
.conference-section .net-bg { display: none; }

/* ── Mission Brief (downloadable PDF section) ──────────────── */
.mission-brief-section {
  background: var(--cream);
  /* So /mission-brief deep-links land below the fixed header. */
  scroll-margin-top: var(--nav-height);
}
.mission-brief-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(15, 28, 63, 0.08);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .mission-brief-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    padding: 2.5rem;
  }
}
.mission-brief-cover-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 28, 63, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 0;
  background: var(--cream-light);
}
.mission-brief-cover-link:hover,
.mission-brief-cover-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}
.mission-brief-cover {
  width: 100%;
  height: auto;
  display: block;
}
.mission-brief-text .section-label { margin-bottom: 0.5rem; }
.mission-brief-text .section-heading {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}
.mission-brief-body {
  color: var(--text-body);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.mission-brief-meta {
  color: var(--muted, #6b7280);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.mission-brief-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .scroll-indicator, .toast, .nav-toggle { display: none; }
  .section { padding-block: 2rem; page-break-inside: avoid; }
  a { text-decoration: underline; }
}
