/* ============================================================
   GJLA GLOBAL DESIGN SYSTEM
   Gender Justice League Action — Version 1.0
   Civil rights editorial meets campaign war room.
   ============================================================ */

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

:root {
  --navy:      #1B2A4A;
  --navy-mid:  #243560;
  --gold:      #E8A020;
  --gold-light: #FFB830;
  --gold-dark: #C4861A;
  --teal:      #1D7A6E;
  --teal-dark: #155A51;
  --white:     #FFFFFF;
  --off-white: #F5F4F0;
  --dark:      #1E1E1E;
  --gray:      #6B7280;
  --border:    rgba(27,42,74,0.12);
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --transition: 0.15s ease;
  --card-padding: 2rem;
}

/* ── Text Selection ────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--navy); }

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

/* ── Urgency Banner ────────────────────────────────────────── */
.urgency-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
  z-index: 1000;
}
.urgency-bar a {
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  margin-left: 0.4rem;
  transition: opacity 0.15s;
}
.urgency-bar a:hover { opacity: 0.7; }

/* ── Navigation ────────────────────────────────────────────── */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 400;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.25;
  max-width: 140px;
}

.nav-links {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 900 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ── Nav Dropdown ──────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.65;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  min-width: 215px;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--gold); background: rgba(255,255,255,0.04); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: all 0.2s;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(27,42,74,0.4);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(27,42,74,0.05);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

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

@keyframes progressGrow {
  from { width: 0%; }
  to   { width: 38%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 6rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(232,160,32,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(29,122,110,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.page-hero .section-eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.page-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.page-hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Homepage Hero ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--navy-mid);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(232,160,32,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(29,122,110,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

/* ── Campaign Urgency Card ─────────────────────────────────── */
.urgency-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,160,32,0.25);
  padding: 2.5rem;
  max-width: 380px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.6s 0.4s ease both;
}
.urgency-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.urgency-card-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.urgency-card h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.urgency-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
}

.progress-bar-wrap { margin-bottom: 1.75rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  width: 38%;
  border-radius: 3px;
  animation: progressGrow 1.2s 0.8s ease both;
  transform-origin: left;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.mini-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.mini-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
  font-weight: 600;
}

/* ── Mission Pillars ───────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--off-white);
}

.pillar {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--white); }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.pillar:hover::before { opacity: 1; }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(27,42,74,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ── Campaign Feature ──────────────────────────────────────── */
.campaign-feature {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.campaign-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A020' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.campaign-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.campaign-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.campaign-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.campaign-visual {
  background: var(--teal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.campaign-visual::before {
  content: 'NO HATE\nIN WA\nSTATE';
  white-space: pre;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.9;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  text-align: right;
  right: -1rem;
  bottom: -1rem;
}
.coalition-counter {
  background: rgba(0,0,0,0.2);
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.coalition-counter-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.coalition-counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Section Utilities ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-eyebrow-teal { color: var(--teal); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.section-title-dark {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* ── Impact Numbers ────────────────────────────────────────── */
.impact-section {
  background: var(--dark);
  padding: 6rem 5rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.impact-stat {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.impact-stat:last-child { border-right: none; }
.impact-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  line-height: 1.4;
}

/* ── Pull Quote ────────────────────────────────────────────── */
.quote-section {
  background: var(--off-white);
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.7;
  user-select: none;
}
.quote-body blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.quote-attribution {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
}

/* Pull quote alternate (with left border) */
.pull-quote-alt {
  background: var(--off-white);
  padding: 5rem;
}
.pull-quote-alt blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  border-left: 6px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.pull-quote-alt cite {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  font-style: normal;
  padding-left: 2rem;
}

/* ── Take Action Cards ─────────────────────────────────────── */
.take-action-section {
  padding: 6rem 5rem;
  background: var(--white);
}
.section-header {
  margin-bottom: 4rem;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.action-card {
  padding: var(--card-padding);
  border-right: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.action-card:last-child { border-right: none; }
.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,42,74,0.1);
  z-index: 2;
}
.action-card-bar {
  height: 5px;
  background: var(--teal);
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.action-card:hover .action-card-bar { transform: scaleX(1); }
.action-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(27,42,74,0.07);
  line-height: 1;
  margin-bottom: 1rem;
}
.action-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.action-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.action-link {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.15s;
}
.action-link:hover { gap: 0.7rem; }
.action-arrow { font-size: 1rem; }

/* ── Email Signup ──────────────────────────────────────────── */
.signup-section {
  background: var(--navy);
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.signup-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.signup-left h2 em {
  font-style: italic;
  color: var(--gold);
}
.signup-left p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.signup-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.35); }
.signup-form input:focus { border-color: var(--gold); }
.signup-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.signup-submit:hover { background: var(--gold-light); }
.signup-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* AN embed placeholder */
.an-embed-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(232,160,32,0.3);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-sans);
  line-height: 1.6;
}
.an-embed-placeholder strong {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ── Content Sections ──────────────────────────────────────── */
.content-section {
  padding: 6rem 5rem;
}
.content-section.bg-light { background: var(--off-white); }
.content-section.bg-navy { background: var(--navy); }
.content-section.bg-dark { background: var(--dark); }
.content-section.bg-white { background: var(--white); }
.content-section.bg-teal { background: var(--teal); }

.content-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.content-section.bg-navy h2,
.content-section.bg-dark h2,
.content-section.bg-teal h2 { color: var(--white); }
.content-section.bg-light h2,
.content-section.bg-white h2 { color: var(--navy); }

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.content-section.bg-navy p,
.content-section.bg-dark p { color: rgba(255,255,255,0.72); font-weight: 300; }
.content-section.bg-light p,
.content-section.bg-white p { color: #374151; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

/* ── Values List ───────────────────────────────────────────── */
.values-list {
  list-style: none;
  margin-top: 2rem;
}
.values-list li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.values-list li:first-child { border-top: 1px solid var(--border); }
.values-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.values-list li p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* ── Board Grid ────────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.board-card {
  background: var(--white);
  padding: var(--card-padding);
  border-top: 5px solid var(--navy);
}
.board-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  overflow: hidden;
}
.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.board-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.board-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.board-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #374151;
}
.board-bio-pending {
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
}

/* ── Bullet Lists ──────────────────────────────────────────── */
.bullet-list {
  list-style: none;
  margin: 1.5rem 0;
}
.bullet-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
}
.bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.bullet-list.light li { color: rgba(255,255,255,0.75); }
.bullet-list.light li::before { color: var(--gold); }

/* ── Take Action Page — Full-Width Action Sections ─────────── */
.action-section-full {
  padding: 6rem 5rem;
  border-bottom: 1px solid var(--border);
}
.action-section-full:nth-child(even) { background: var(--off-white); }
.action-section-full:nth-child(odd) { background: var(--white); }

.action-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.action-section-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.action-section-full h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.action-section-full p {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* ── Endorsement Grid ──────────────────────────────────────── */
.endorsements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.endorsement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 5px solid var(--teal);
  padding: 2rem;
}
.endorsement-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.65rem;
  margin-bottom: 1rem;
}
.endorsement-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--off-white);
  margin-bottom: 1rem;
}
.endorsement-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.endorsement-office {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.endorsement-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #374151;
}

.endorsements-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  padding: 5rem 3rem;
  text-align: center;
  margin-top: 3rem;
}
.endorsements-placeholder p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Donate Page ───────────────────────────────────────────── */
.donation-amounts {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.amount-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.amount-btn:hover, .amount-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.amount-btn-other {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.disclosure-box {
  background: rgba(232,160,32,0.08);
  border: 2px solid rgba(232,160,32,0.4);
  border-left: 6px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.disclosure-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 0;
}
.disclosure-box strong { color: var(--navy); }

/* ── Blog / News ───────────────────────────────────────────── */
.news-section { padding: 6rem 5rem; }
.news-header { margin-bottom: 3rem; }

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 0.4rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,74,0.1);
}
.post-card-image {
  height: 180px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.post-card-image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.post-card-cat {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.post-card-body { padding: var(--card-padding); }
.post-card-date {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.post-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.post-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.post-link {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.post-link:hover { color: var(--navy); }

/* ── Article / Blog Post ───────────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: 6rem 5rem 4rem;
}
.article-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.article-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.article-hero .article-deck {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  font-weight: 300;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}
.article-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-body ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* ── Contact Form ──────────────────────────────────────────── */
.contact-section {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info a {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-info a:hover { color: var(--navy); }
.contact-info address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #374151;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--navy); }
.contact-form textarea { height: 160px; resize: vertical; }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form .submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.contact-form .submit-btn:hover { background: var(--gold-light); }

/* ── Privacy Policy ────────────────────────────────────────── */
.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.policy-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
}
.policy-body p, .policy-body li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1rem;
}
.policy-body ul { margin: 0 0 1rem 1.5rem; }
.policy-body a { color: var(--teal); }
.policy-body a:hover { color: var(--navy); }

/* ── CTA Banner Section ────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 6rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,160,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner p.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.cta-banner .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 5rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.3;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 2rem;
}
.footer-sister {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.footer-sister a {
  color: var(--gold);
  border-bottom: 1px solid rgba(232,160,32,0.3);
}
.footer-sister a:hover { border-bottom-color: var(--gold); }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-disclosure {
  background: #0D1117;
  padding: 1.75rem 5rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  font-family: var(--font-sans);
}
.footer-disclosure p + p { margin-top: 0.35rem; }
.footer-disclosure a {
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-disclosure a:hover { color: rgba(255,255,255,0.55); }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── Accessibility ─────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem 3rem;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .hero-right { padding: 0 3rem 4rem; justify-content: flex-start; }
  .hero-left { padding: 5rem 3rem 4rem; }
  .campaign-feature { grid-template-columns: 1fr; }
  .campaign-visual { min-height: 300px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 3rem; }
  .signup-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 3rem; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .action-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .endorsements-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 998;
  }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    border-left: 2px solid var(--gold);
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 1rem;
    margin: 0.25rem 0 0;
    min-width: auto;
  }
  .nav-dropdown-menu a { padding: 0.35rem 0; font-size: 0.7rem; }

  .urgency-bar { font-size: 0.75rem; padding: 0.6rem 1rem; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { padding: 0 1.5rem 3rem; }
  .content-section { padding: 4rem 1.5rem; }
  .take-action-section { padding: 4rem 1.5rem; }
  .action-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .endorsements-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-disclosure { padding: 1.5rem; }
  .quote-section { padding: 4rem 1.5rem; grid-template-columns: 40px 1fr; }
  .quote-mark { font-size: 5rem; }
  .news-section { padding: 4rem 1.5rem; }
  .article-hero { padding: 4rem 1.5rem 3rem; }
  .article-body { padding: 3rem 1.5rem; }
  .policy-body { padding: 3rem 1.5rem; }
  .campaign-content { padding: 4rem 1.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  .action-section-full { padding: 4rem 1.5rem; }
  .contact-section { padding: 4rem 1.5rem; }
  .impact-section { padding: 4rem 1.5rem; }
}
