/* ===========================================================
   The Young Citizens Project — Public website
   Brand system v2.0
   =========================================================== */

:root {
  --navy-900: #0F2A4A;
  --navy-700: #1E4C82;
  --gold-500: #D4A537;
  --gold-600: #B88A25;
  --cream-100: #F5EDD8;
  --ink-900: #2C2C2A;
  --paper: #FBF8F1;
  --paper-2: #FFFFFF;
  --line: rgba(15, 42, 74, 0.12);
  --line-dark: rgba(245, 237, 216, 0.18);

  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 74, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 74, 0.08);

  --content-max: 1200px;
  --gutter: 60px;

  --font-display: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-900);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--gold-600); }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* -----------------------------------------------------------
   Typography primitives
   ----------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-500);
}
.lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
  color: var(--navy-900);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 18px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

em.gold {
  font-style: normal;
  color: var(--gold-500);
  font-weight: 400;
}

/* -----------------------------------------------------------
   Layout
   ----------------------------------------------------------- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
section.tight { padding: 60px 0; }
section.dark {
  background: var(--navy-900);
  color: var(--cream-100);
  border-bottom: 0;
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--cream-100); }
section.cream { background: var(--cream-100); }

.section-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 50px;
}
.section-head .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-500);
}
.section-head .lede {
  max-width: 360px;
  color: var(--ink-900);
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}
section.dark .section-head .lede { color: rgba(245,237,216,0.7); }

/* -----------------------------------------------------------
   Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--gold-600); color: var(--navy-900); }
.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245,237,216,0.35);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-500); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: var(--cream-100); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* -----------------------------------------------------------
   Header & Nav
   ----------------------------------------------------------- */
.site-header {
  background: var(--navy-900);
  color: var(--cream-100);
  border-bottom: 4px solid var(--gold-500);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.brand:hover { color: var(--cream-100); }
.brand .logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-100);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(212, 165, 55, 0.35);
}
.brand .logo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.brand .name { display: flex; flex-direction: column; }
.brand .name small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav.primary a {
  color: rgba(245,237,216,0.8);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
nav.primary a:hover { color: var(--cream-100); background: rgba(245,237,216,0.08); }
nav.primary a.active { color: var(--gold-500); }
nav.primary .btn { margin-left: 8px; padding: 10px 18px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245,237,216,0.25);
  color: var(--cream-100);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.menu-toggle:hover { border-color: var(--gold-500); color: var(--gold-500); }

/* -----------------------------------------------------------
   Hero
   ----------------------------------------------------------- */
.hero {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--gold-500);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245,237,216,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212,165,55,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  color: var(--cream-100);
  margin-top: 18px;
  font-size: clamp(44px, 6.5vw, 84px);
}
.hero .sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245,237,216,0.85);
  max-width: 540px;
}
.hero .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .badge-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .badge-stage img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero.compact { padding: 70px 0 80px; }
.hero.compact h1 { font-size: clamp(36px, 5vw, 56px); }
.hero.compact .hero-grid { grid-template-columns: 1fr; gap: 24px; }
.hero.compact .sub { max-width: 680px; font-size: 17px; }

/* -----------------------------------------------------------
   Feature/stat strip
   ----------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .label {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--navy-900);
}
.stat p {
  margin-top: 12px;
  color: var(--ink-900);
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.55;
}

/* -----------------------------------------------------------
   Mission card
   ----------------------------------------------------------- */
.mission {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border-left: 4px solid var(--gold-500);
}
.mission > p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy-900);
}
.pillars { display: grid; gap: 22px; }
.pillar { display: grid; grid-template-columns: 32px 1fr; gap: 16px; }
.pillar .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold-500);
  font-size: 18px;
}
.pillar h4 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-weight: 700;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-900);
  opacity: 0.8;
  line-height: 1.6;
}

/* -----------------------------------------------------------
   Cards (programs, resources)
   ----------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,42,74,0.2);
}
.card .card-top {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream-100);
  padding: 28px 28px 24px;
  position: relative;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .card-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245,237,216,0.08) 1px, transparent 0);
  background-size: 20px 20px;
}
.card .card-top > * { position: relative; z-index: 1; }
.card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(212,165,55,0.18);
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  align-self: flex-start;
}
.card .tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.card h3 { color: var(--cream-100); margin-top: 18px; font-size: 22px; letter-spacing: -0.015em; }
.card .card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card .card-body p { color: var(--ink-900); opacity: 0.82; font-size: 15px; line-height: 1.6; }
.card .card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.card .card-body li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--ink-900);
  opacity: 0.85;
  line-height: 1.55;
}
.card .card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--gold-500);
}
.card .card-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-900);
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -----------------------------------------------------------
   Tagline strip
   ----------------------------------------------------------- */
.tagline-strip {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 80px 0;
  border-top: 6px solid var(--gold-500);
  border-bottom: 6px solid var(--gold-500);
}
.tagline-strip .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.tagline-strip .quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.tagline-strip .quote em {
  font-style: normal;
  color: var(--gold-500);
  font-weight: 800;
}
.tagline-strip .attrib {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  font-weight: 700;
}

/* -----------------------------------------------------------
   CTA band
   ----------------------------------------------------------- */
.cta-band {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  border-left: 4px solid var(--gold-500);
}
.cta-band h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.cta-band p { color: var(--ink-900); opacity: 0.75; max-width: 540px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -----------------------------------------------------------
   Prose
   ----------------------------------------------------------- */
.prose { max-width: 720px; }
.prose p + p, .prose p + ul, .prose ul + p { margin-top: 1em; }
.prose h2 { margin-top: 2em; margin-bottom: 0.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; margin-bottom: 0.4em; }
.prose p { font-size: 17px; line-height: 1.7; }
.prose ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.prose ul li {
  padding-left: 22px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--gold-500);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* -----------------------------------------------------------
   Handbooks page
   ----------------------------------------------------------- */
.handbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 460px));
  gap: 28px;
}
.handbook-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.handbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,42,74,0.2);
}
.handbook-cover {
  background: var(--cream-100);
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.handbook-cover img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  box-shadow: 0 14px 28px rgba(15, 42, 74, 0.2);
  border-radius: 4px;
}
.handbook-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.handbook-body .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-900);
  opacity: 0.55;
}
.handbook-body .meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); opacity: 0.7;
}
.handbook-body h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
}
.handbook-body p {
  color: var(--ink-900);
  opacity: 0.78;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.handbook-body .actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.more-soon {
  margin-top: 40px;
  padding: 26px 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  opacity: 0.6;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.handbook-card.coming-soon { background: var(--cream-100); }
.handbook-card.coming-soon .handbook-cover {
  background: var(--paper-2);
  aspect-ratio: 3 / 4;
  align-items: center;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.handbook-card.coming-soon .handbook-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  opacity: 0.08;
}
.handbook-card.coming-soon .handbook-cover .placeholder {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--navy-900);
  opacity: 0.18;
  letter-spacing: -0.03em;
}
.handbook-card.coming-soon .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(212,165,55,0.18);
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  align-self: flex-start;
}
.handbook-card.coming-soon .tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
}

/* -----------------------------------------------------------
   Team page
   ----------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 48px;
  align-items: start;
}
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-100);
  box-shadow: var(--shadow-md);
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 869 / 1200;
  object-fit: cover;
  object-position: center center;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 0 4px rgba(212, 165, 55, 0.0);
  transition: box-shadow 0.3s ease;
}
.portrait-frame:hover::after {
  box-shadow: inset 0 0 0 4px rgba(212, 165, 55, 0.5);
}
.portrait-card {
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--cream-100);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.6;
  color: var(--navy-900);
}
.portrait-card .role {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 6px;
}
.portrait-card .who {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.bio h2 { margin-bottom: 18px; }
.bio p { font-size: 17px; line-height: 1.7; color: var(--ink-900); }
.bio p + p { margin-top: 1em; }

.cred-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cred {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.cred .label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 6px;
}
.cred .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .team-grid { grid-template-columns: minmax(180px, 240px) 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; gap: 32px; justify-items: start; }
  .team-grid > div:first-child { max-width: 320px; width: 100%; }
}

/* -----------------------------------------------------------
   Forms
   ----------------------------------------------------------- */
.form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 18px;
}
.form .field { display: grid; gap: 6px; }
.form label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--navy-900);
}
.form input, .form textarea, .form select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--paper-2);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .actions { margin-top: 8px; }
.form .note {
  font-size: 12px;
  color: var(--ink-900);
  opacity: 0.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 3px solid var(--gold-500);
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.contact-card p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.contact-card .small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-900);
  opacity: 0.75;
  line-height: 1.55;
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(245,237,216,0.75);
  padding: 60px 0 30px;
  font-size: 14px;
}
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,237,216,0.15);
}
.site-footer .foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.site-footer .foot-brand img { height: 48px; width: auto; }
.site-footer .foot-brand p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
}
.site-footer .tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  align-self: flex-start;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.site-footer .tiktok-btn:hover {
  background: var(--gold-600);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.site-footer .tiktok-btn svg { display: block; }
.site-footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a {
  color: rgba(245,237,216,0.75);
  font-size: 13px;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: var(--gold-500); }
.site-footer .foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.7;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .foot-bot .v {
  font-family: var(--font-mono);
  opacity: 0.7;
}

/* -----------------------------------------------------------
   404
   ----------------------------------------------------------- */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}
.notfound .code {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold-500);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.notfound h1 { margin-top: 12px; }
.notfound p { margin-top: 18px; font-size: 17px; color: var(--ink-900); opacity: 0.75; max-width: 520px; }
.notfound .cta-row { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --gutter: 28px; }
  section { padding: 60px 0; }
  .hero { padding: 70px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .badge-stage img { max-width: 240px; margin: 0 auto; }
  .hero .badge-stage { order: -1; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .mission, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .mission { padding: 36px 28px; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 36px 28px; }
  .tagline-strip .inner { grid-template-columns: 1fr; }
  .tagline-strip { padding: 56px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .section-head .lede { text-align: left; margin-left: 0; max-width: none; }

  .site-header .container { flex-wrap: wrap; }
  .brand .name small { display: none; }
  .menu-toggle { display: inline-block; }
  nav.primary {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(245,237,216,0.15);
    margin-top: 12px;
  }
  nav.primary.open { display: flex; }
  nav.primary a { text-align: left; padding: 12px 14px; }
  nav.primary .btn { margin: 8px 0 0; justify-content: center; }

  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer .foot-brand { grid-column: 1 / -1; }
  .form { padding: 28px; }
}

@media (max-width: 520px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .site-footer .foot-grid { grid-template-columns: 1fr; }
  .site-footer .foot-brand { grid-column: auto; }
  .site-footer .foot-bot { flex-direction: column; align-items: flex-start; }
}
