:root {
  --navy: #0d1b3d;
  --navy-dark: #08152e;
  --navy-mid: #152a52;
  --red: #b22234;
  --red-dark: #8e1a28;
  --gold: #c89b2c;
  --gold-light: #e0b84a;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 76px;
  --radius: 6px;
  --shadow: 0 8px 28px rgba(8, 21, 46, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy-dark);
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--red);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-top: 0;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-top: 0; margin-bottom: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.brand img {
  height: 56px;
  width: auto;
}

.nav-toggle {
  display: block;
  flex-shrink: 0;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: none;
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

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

.site-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--navy-mid);
  color: var(--gold);
  outline: none;
}

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

.site-nav a.nav-donate {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.site-nav a.nav-donate:hover,
.site-nav a.nav-donate:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn.secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn.secondary-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn.secondary-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn.gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn.gold:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: var(--gold); }

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0.75rem 0 1.25rem;
}

.gold-divider.center { margin-inline: auto; }

.emphasis-real {
  color: var(--red);
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  font-size: 1.08em;
}

/* Star pattern on navy */
.stars-bg {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(200, 155, 44, 0.12) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 72%, rgba(200, 155, 44, 0.1) 0 1.5px, transparent 2px),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.07) 0 1.5px, transparent 2px),
    radial-gradient(circle at 55% 12%, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 55%, #0a1633 100%);
}

/* Hero */
.hero {
  padding: 2.5rem 0 0;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}

.hero-photo {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.hero-frame {
  border-radius: 48% 48% 12px 12px / 28% 28% 12px 12px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 6px var(--navy),
    0 0 0 9px var(--red),
    var(--shadow);
  background: var(--navy-mid);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.hero-copy .hero-logo {
  max-width: 280px;
  margin-bottom: 1rem;
}

.hero-kicker {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.cred-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--white);
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}

.quote-box {
  border: 2px solid var(--gold);
  background: rgba(8, 21, 46, 0.55);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.quote-box p {
  margin: 0;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}

.quote-box strong {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.vote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vote-strip .date {
  color: var(--red);
  font-weight: 700;
  font-size: 1.15rem;
}

.vote-strip .url {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.05rem;
}

.vote-strip .url:hover { color: var(--white); }

.forward-banner {
  background: var(--red);
  text-align: center;
  padding: 0.95rem 1rem;
  border-top: 3px solid var(--gold);
}

.forward-banner p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.forward-banner .fwd {
  color: var(--gold);
}

/* Priorities */
.priorities {
  padding: 3.5rem 0;
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.priority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.priority-card {
  background: var(--off-white);
  border: 1px solid #e4dfd4;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: 0 2px 10px rgba(8, 21, 46, 0.06);
  position: relative;
}

.priority-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.priority-card h3 {
  color: var(--red);
  margin-bottom: 0.75rem;
}

.priority-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.priority-card .icon svg {
  width: 100%;
  height: 100%;
}

.priority-card .pull {
  font-weight: 700;
  color: var(--navy);
  margin: 0.75rem 0;
}

.priority-card .pull.red {
  color: var(--red);
}

.text-link {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

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

/* Experience */
.experience {
  padding: 3.5rem 0;
  color: var(--white);
}

.experience h2,
.experience .eyebrow {
  text-align: center;
}

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

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.experience-bio {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.cred-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.cred-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200, 155, 44, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-weight: 600;
}

.cred-card::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.35rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
  margin-right: 0.65rem;
  vertical-align: 0.15em;
}

/* Values / quote band */
.values {
  padding: 3.5rem 0;
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
}

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

.values-quote {
  position: relative;
  max-width: 48rem;
  margin: 1.5rem auto 0;
  padding: 2rem 1.5rem 1.75rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--navy);
}

.values-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  left: 0.35rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}

.values-quote p {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  position: relative;
  z-index: 1;
}

.values-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cta-band .sub {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band .btn.secondary {
  border-color: var(--white);
}

.cta-band .btn.secondary:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-band .btn.gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.cta-band .btn.gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

/* Page header */
.page-header {
  padding: 2.75rem 0 2rem;
  color: var(--white);
  text-align: center;
}

.page-header h1 { color: var(--white); }

.page-header p {
  max-width: 55ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* About */
.about-intro {
  padding: 3rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-photo {
  max-width: 340px;
  margin-inline: auto;
}

.about-photo .hero-frame {
  border-radius: 12px;
}

.about-photo figcaption {
  text-align: center;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Vision detail */
.vision-detail {
  padding: 3rem 0;
  background: var(--white);
}

.vision-article {
  background: var(--off-white);
  border: 1px solid #e4dfd4;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.vision-article h2 {
  color: var(--red);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.vision-article .pull {
  font-weight: 700;
  color: var(--navy);
}

/* Contact */
.contact-section {
  padding: 3rem 0 2rem;
  background: var(--white);
}

.contact-section-alt {
  padding: 2rem 0 4rem;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info ul,
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-info li,
.contact-card li {
  margin-bottom: 0.45rem;
}

.contact-email-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  letter-spacing: 0.03em;
  margin: 1rem 0 0.5rem;
}

.contact-email-lead a {
  color: var(--navy);
  text-decoration: none;
  word-break: break-word;
}

.contact-email-lead a:hover {
  color: var(--red);
}

.contact-card {
  background: var(--off-white);
  border: 1px solid #e4dfd4;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(8, 21, 46, 0.06);
}

.yard-sign-card {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  background: var(--white);
  border-top-color: var(--gold);
}

.yard-sign-card .gold-divider {
  margin-inline: auto;
}

.yard-sign-card .btn {
  margin-top: 0.5rem;
}

form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

form input,
form textarea,
form select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #d0c9bb;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-dark);
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 27, 61, 0.15);
}

form input.invalid,
form textarea.invalid {
  border-color: var(--red);
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form button[type="submit"] {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

form button[type="submit"]:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

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

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible { display: block; }

.form-status.error {
  background: #fde8ec;
  color: var(--red-dark);
  border: 1px solid #f5c2cb;
}

.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status.info {
  background: #e8eef5;
  color: var(--navy);
  border: 1px solid #b8c9de;
}

.form-note {
  font-size: 0.85rem;
  color: #6a6570;
  margin-top: 0.75rem;
}

/* 404 */
.error-page {
  padding: 5rem 0;
  text-align: center;
  background: var(--white);
  flex: 1;
}

.error-page h1 {
  font-size: 4.5rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.error-page h2 { margin-bottom: 1rem; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
  border-top: 3px solid var(--gold);
}

.footer-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.5rem;
}

.footer-slogan .fwd { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-grid a {
  color: var(--gold);
  text-decoration: none;
}

.footer-grid a:hover { color: var(--white); }

.footer-grid p {
  margin-bottom: 0.35rem;
  opacity: 0.95;
  font-size: 0.95rem;
}

.footer-logo {
  max-width: 160px;
  margin: 0 auto 1rem;
}

.paid {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 155, 44, 0.35);
}

/* Tablet */
@media (min-width: 640px) {
  .cred-cards {
    grid-template-columns: 1fr 1fr;
  }

  .priority-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-grid .brand-col {
    text-align: center;
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .site-nav a {
    width: auto;
    padding: 0.5rem 0.85rem;
  }

  .priority-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-photo {
    margin-inline: 0;
    max-width: none;
  }

  .experience-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
  }

  .experience-bio {
    text-align: left;
    margin-inline: 0;
  }

  .about-grid {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 3rem;
  }

  .about-photo {
    margin-inline: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid .brand-col {
    grid-column: auto;
    text-align: left;
  }

  .footer-logo {
    margin: 0 0 0.75rem;
  }
}
