:root {
  /* Brand tokens: refined civic palette around the existing logo */
  --red: #b1261f;
  --red-dark: #7e1a16;
  --blue: #0a2a66;
  --blue-deep: #061a44;
  --blue-soft: #eef3fb;
  --cream: #fbf8f3;
  --cream-warm: #f4ecdf;
  --gold: #b08a3e;
  --gold-soft: #efe3c7;

  /* Neutrals */
  --slate-950: #08111f;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-150: #edf2f7;
  --slate-100: #f1f5f9;
  --white: #ffffff;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: var(--cream);
  --header-bg: rgba(255, 255, 255, 0.96);
  --blue-glass: rgba(6, 26, 68, 0.08);
  --red-wash: rgba(177, 38, 31, 0.08);
  --red-wash-soft: rgba(177, 38, 31, 0.06);
  --gold-wash: rgba(176, 138, 62, 0.18);
  --white-94: rgba(255, 255, 255, 0.94);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-86: rgba(255, 255, 255, 0.86);
  --white-78: rgba(255, 255, 255, 0.78);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-05: rgba(255, 255, 255, 0.05);

  /* Shape */
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --shadow-sm: 0 12px 34px rgba(15, 23, 42, 0.07);
  --shadow-xs: 0 6px 20px rgba(15, 23, 42, 0.05);

  /* Type */
  --font-heading: Georgia, "Source Serif Pro", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 86px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--slate-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue-deep));
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 20vw, 245px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.4rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--red-dark);
}

.nav a[aria-current="page"] {
  color: var(--red-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .nav a::after {
    transition: transform 0.18s ease;
  }

  .nav a:hover::after,
  .nav a:focus-visible::after,
  .nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 60;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--slate-900);
  display: block;
}

.nav-button {
  flex: 0 0 auto;
  padding-inline: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  min-height: 44px;
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .support-card,
  .cta-grid-large a,
  .panel,
  .hero-cards > *,
  .values-grid > * {
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  }

  .button:hover,
  .button:focus-visible,
  .support-card:hover,
  .support-card:focus-visible,
  .cta-grid-large a:hover,
  .cta-grid-large a:focus-visible {
    transform: translateY(-2px);
  }
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(177, 38, 31, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-dark {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(6, 26, 68, 0.18);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--slate-900);
}

.button-light {
  background: var(--white);
  color: var(--slate-800);
  border: 1px solid var(--slate-300);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow-xs);
}

.button-outline-light {
  border: 1px solid var(--white-25);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: var(--white-08);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 20%, var(--gold-wash), transparent 34rem),
    radial-gradient(circle at 0% 8%, var(--red-wash), transparent 26rem),
    linear-gradient(135deg, var(--white) 0%, var(--cream) 58%, var(--blue-soft) 100%);
  padding: 4.8rem 0 5.8rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(176, 138, 62, 0.22);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33.333%, var(--cream) 33.333%, var(--cream) 66.667%, var(--blue-deep) 66.667%, var(--blue-deep) 100%);
}

.page-hero {
  padding: 3.8rem 0 4.4rem;
}

.page-hero .lead {
  max-width: 52rem;
}

.hero-grid,
.two-column {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero-copy,
.hero-media,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 1.02;
  margin: 0;
  color: var(--slate-950);
  max-width: 11ch;
}

.page-hero h1 {
  max-width: 15ch;
}

.eyebrow,
.mini-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 850;
  font-family: var(--font-body);
}

.eyebrow {
  color: var(--red-dark);
  margin: 0 0 1rem;
}

.mini-title {
  color: var(--blue);
  margin: 0 0 0.8rem;
}

.tagline {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.35;
  color: var(--blue-deep);
  max-width: 42rem;
  margin: 1.15rem 0 0;
  font-family: var(--font-heading);
  font-style: italic;
}

.lead,
.narrow-heading p,
.panel p,
.footer-copy,
.split-intro p,
.values-heading p,
.support-card em {
  color: var(--slate-600);
}

.lead {
  max-width: 44rem;
  font-size: 1.08rem;
  margin: 1.35rem 0 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.center .hero-actions,
.placeholder-page .hero-actions {
  justify-content: center;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-cards > *,
.panel,
.portrait-card {
  background: var(--white-94);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.hero-cards > * {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.35rem;
  border-top: 4px solid var(--gold);
}

.hero-cards > *::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: var(--red-wash-soft);
  border-radius: 0 0 0 999px;
}

.hero-cards span {
  display: block;
  color: var(--slate-600);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cards strong {
  display: block;
  color: var(--slate-950);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-top: 0.45rem;
}

.hero-cards p {
  margin: 0.45rem 0 0;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-card {
  overflow: visible;
  width: 100%;
  max-width: 445px;
  padding: 0.7rem;
  border: 1px solid var(--gold-soft);
  border-radius: calc(var(--radius-xl) + 4px);
  box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.portrait-card::before,
.portrait-card::after {
  display: none;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid var(--blue-deep);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(8, 17, 31, 0.12);
}

.stats-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
}

.stats-grid li {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.95rem 0.9rem;
  box-shadow: var(--shadow-sm);
}

.stats-grid strong {
  display: block;
  color: var(--slate-950);
  font-size: 1.05rem;
}

.stats-grid span {
  display: block;
  color: var(--slate-600);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.banner {
  background: var(--blue-deep);
  color: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.banner-copy {
  padding: 1.35rem 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.section {
  padding: 5.2rem 0;
  scroll-margin-top: 86px;
}

.section-alt {
  background:
    radial-gradient(circle at 100% 0%, var(--gold-wash), transparent 28rem),
    var(--bg-soft);
}

.center {
  text-align: center;
}

.narrow-heading {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.narrow-heading h2,
.split-intro h2,
.values-heading h2 {
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.narrow-heading p {
  margin-bottom: 0;
}

.split-intro {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr minmax(260px, 0.55fr);
  align-items: end;
  margin-bottom: 2rem;
}

.split-intro p {
  margin: 0;
  font-size: 1.04rem;
}

.story-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  position: relative;
  min-height: 100%;
}

.story-card::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.section-action {
  margin-top: 1.7rem;
}

.values-section {
  padding: 5.2rem 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white);
}

.values-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 2rem;
  align-items: center;
}

.values-heading .eyebrow,
.values-section .eyebrow {
  color: var(--gold-soft);
}

.values-heading h2 {
  color: var(--white);
}

.values-heading p {
  color: var(--white-86);
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-grid > * {
  min-height: 100%;
  background: var(--white-08);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
}

.values-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 0.8rem;
}

.values-grid h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin: 1.1rem 0 0.3rem;
}

.values-grid p {
  color: var(--white-86);
  margin: 0;
}

.stack {
  display: grid;
  gap: 1.4rem;
}

.panel {
  padding: 2rem;
}

.panel h2,
.panel h3,
.contact-card h3 {
  margin: 0;
  color: var(--slate-950);
}

.panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.panel h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, var(--red-wash-soft) 0%, var(--white) 100%);
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.48fr);
  gap: 1.5rem;
  align-items: stretch;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.timeline > * {
  display: grid;
  grid-template-columns: minmax(8rem, 0.26fr) 1fr;
  gap: 1rem;
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.timeline > * > span {
  align-self: start;
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border: 1px solid var(--slate-200);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
}

.timeline h3 {
  color: var(--slate-950);
  font-size: 1.35rem;
  margin: 0;
}

.timeline p {
  color: var(--slate-600);
  margin: 0.35rem 0 0;
}

.experience-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qualifications-panel {
  margin-top: 1.5rem;
}

.card h3,
.dark-panel h3 {
  font-size: 1.55rem;
  line-height: 1.2;
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    var(--blue-deep);
  color: var(--white);
  border-color: var(--white-08);
}

.dark-panel h2,
.dark-panel h3 {
  color: var(--white);
}

.dark-panel p,
.dark-panel .mini-title,
.dark-panel li {
  color: var(--white-90);
}

.dark-panel .mini-title {
  color: var(--gold-soft);
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.check-list li + li {
  margin-top: 0.5rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-grid li {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--slate-700);
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-700);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.container.support-card-grid {
  margin-left: auto;
  margin-right: auto;
}

.support-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 11rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.45rem;
  box-shadow: var(--shadow-sm);
}

.support-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 900;
  font-style: normal;
}

.support-card strong {
  color: var(--slate-950);
  font-size: 1.18rem;
}

.support-card em {
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.5;
}

.support-card-primary {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.support-card-primary span {
  background: var(--gold);
  color: var(--blue-deep);
}

.support-card-primary strong,
.support-card-primary em {
  color: var(--white);
}

.support-card:hover,
.support-card:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}


.about-photo-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -0.5rem auto 2.4rem;
}

.about-photo-tile,
.about-inline-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.about-photo-tile {
  min-height: 320px;
}

.about-photo-tile-wide {
  grid-column: span 2;
}

.about-photo-tile img,
.about-inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-tile-wide img {
  aspect-ratio: 3 / 2;
}

.about-photo-tile:not(.about-photo-tile-wide) img {
  aspect-ratio: 4 / 5;
}

.about-photo-tile figcaption,
.about-inline-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: var(--radius-md);
  background: rgba(6, 26, 68, 0.86);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0.72rem 0.85rem;
  box-shadow: 0 12px 28px rgba(8, 17, 31, 0.18);
}

.about-inline-photo {
  margin-top: 1.1rem;
}

.about-inline-photo img {
  max-height: 360px;
  object-position: center 38%;
}

/* Legacy CTA grid used by about and donate pages */
.cta-grid-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.cta-grid-large a {
  display: block;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  color: var(--slate-950);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  min-height: 88px;
}

.cta-grid-large a span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-top: 0.35rem;
}

.cta-grid-large a:hover,
.cta-grid-large a:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.support-grid,
.contact-grid,
.footer-grid {
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  color: var(--slate-700);
}

.contact-list a {
  color: var(--red-dark);
  font-weight: 800;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  text-decoration: underline;
}

.text-link {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
}

.small-note {
  font-size: 0.92rem;
  color: var(--slate-500);
  margin-top: 1rem;
}

/* Forms */
.form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-weight: 700;
  color: var(--slate-950);
  font-size: 0.95rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--slate-950);
  width: 100%;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}

.form-row .hint {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.checkbox-grid li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  color: var(--slate-800);
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  cursor: pointer;
}

.checkbox-grid input[type="checkbox"] {
  accent-color: var(--red);
  width: 18px;
  height: 18px;
  flex: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

fieldset > legend {
  font-weight: 700;
  color: var(--slate-950);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  padding: 0;
}

.form-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.form-error,
.form-success {
  border-radius: var(--radius-md);
  padding: 1rem;
  font-weight: 700;
}

.form-error {
  background: var(--cream);
  color: var(--red-dark);
  border: 1px solid var(--red);
}

.form-success {
  background: var(--slate-100);
  color: var(--blue);
  border: 1px solid var(--slate-300);
}

.placeholder-page {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.placeholder-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: var(--slate-950);
}

.placeholder-page p {
  color: var(--slate-600);
  font-size: 1.05rem;
}

.thank-you {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.thank-you h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: var(--slate-950);
}

.thank-you p {
  color: var(--slate-600);
  font-size: 1.05rem;
}

.site-footer {
  background: var(--blue-deep);
  color: var(--white-90);
  padding: 3.7rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
}

.site-footer h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.site-footer .eyebrow {
  color: var(--gold-soft);
}

.footer-panel {
  background: var(--white-05);
  border-color: var(--white-08);
}

.footer-panel p,
.footer-copy,
.site-footer .mini-title {
  color: var(--white-86);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--white-78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .footer-grid,
  .three-up,
  .story-grid,
  .about-photo-collage,
  .values-wrap,
  .values-grid,
  .timeline-grid,
  .support-card-grid,
  .split-intro {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 14ch;
  }

  .hero-media {
    order: -1;
    margin-bottom: 0.8rem;
  }

  .portrait-card {
    max-width: 390px;
    margin: 0 auto;
  }


  .about-photo-tile-wide {
    grid-column: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 2px solid var(--red);
    box-shadow: var(--shadow);
    padding: 0.5rem 1rem 1rem;
    z-index: 55;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle .bar {
    pointer-events: none;
  }

  .nav a {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--slate-200);
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 3;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 720px) {
  .stats-grid,
  .hero-cards,
  .credential-grid,
  .cta-grid-large,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .values-section {
    padding: 4rem 0;
  }

  .hero {
    padding-bottom: 4.5rem;
  }

  .hero::before {
    inset: 0.7rem;
  }

  .panel,
  .values-grid > *,
  .support-card {
    padding: 1.4rem;
  }

  .timeline > * {
    grid-template-columns: 1fr;
  }


  .about-photo-tile figcaption,
  .about-inline-photo figcaption {
    position: static;
    border-radius: 0;
    background: var(--blue-deep);
  }

  .about-photo-tile,
  .about-inline-photo {
    border-radius: var(--radius-lg);
  }

  .hero-actions .button,
  .button-row .button,
  .form-actions .button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 1.2rem, 1120px);
  }

  .nav-wrap {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 136px;
  }

  .nav-button {
    padding-inline: 0.8rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
