:root {
  /* Color */
  --ink-navy:    #1C2B3A;
  --ink-navy-2:  #16222E;
  --steel:       #5B6B78;
  --steel-light: #AEB9C2;
  --forest:      #2F4A3D;
  --forest-dark: #213830;
  --brass:       #B6862C;
  --brass-light: #D9AE5C;
  --barn-red:    #9C3B2E;
  --barn-red-dark: #7E2E23;
  --paper:       #F6F3EA;
  --paper-dim:   #ECE6D7;
  --white:       #FFFFFF;
  --charcoal:    #262E35;
  --charcoal-soft: #4A535C;

  /* Type — Barlow Condensed / Libre Baskerville / Space Mono */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1180px;
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--ink-navy);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1.1em; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Patriotic top stripe ---------- */
.flag-stripe {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #3C5A8A 0 33.3%,
    #F6F3EA 33.3% 66.6%,
    #9C3B2E 66.6% 100%
  );
}

/* ---------- Header ---------- */
.site-header {
  background: var(--ink-navy);
  border-bottom: 3px solid var(--brass);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brass-light);
  font-size: 17px;
  letter-spacing: 0.02em;
}
.brand-text { color: var(--paper); line-height: 1.15; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}
.brand-text .role {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-light);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.main-nav a.is-active { color: var(--white); box-shadow: inset 0 -3px 0 var(--brass); }
.main-nav a.nav-donate {
  background: var(--barn-red);
  color: var(--white);
  margin-left: 8px;
  padding: 10px 20px;
}
.main-nav a.nav-donate:hover { background: var(--barn-red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--steel-light);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 8px 14px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink-navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-bottom: 3px solid var(--brass);
  }
  .main-nav.is-open { max-height: 360px; }
  .main-nav a { padding: 14px 28px; border-top: 1px solid rgba(255,255,255,0.08); }
  .main-nav a.nav-donate { margin: 10px 28px 14px; text-align: center; }
  .site-header { position: relative; }
}

/* ---------- Seam / rivet divider ---------- */
.seam {
  position: relative;
  height: 26px;
  width: 100%;
}
.seam::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--steel-light);
  transform: translateY(-50%);
}
.seam::after {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 9px;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, var(--brass) 2.6px, transparent 2.7px);
  background-size: 34px 9px;
  background-repeat: repeat-x;
  background-position: 17px center;
}
.seam.on-dark::before { background: rgba(246,243,234,0.25); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--barn-red); color: var(--white); }
.btn-primary:hover { background: var(--barn-red-dark); }
.btn-brass { background: var(--brass); color: var(--ink-navy); }
.btn-brass:hover { background: var(--brass-light); }
.btn-outline { background: transparent; color: var(--ink-navy); border-color: var(--ink-navy); }
.btn-outline:hover { background: var(--ink-navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---------- Eyebrow / tag plates ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brass);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 76px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass-light);
}
.hero .lede {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--steel-light);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-plates { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-plate {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 12px;
}

/* ---- Portrait: tall frame with brass border ---- */
.hero-media {
  position: relative;
  /* fixed width set in grid */
}
.hero-portrait-wrap {
  position: relative;
  border: 4px solid var(--brass);
  background: var(--ink-navy-2);
  /* clip to a tall portrait — no awkward landscape crop */
}
.hero-portrait-wrap img {
  width: 100%;
  /* Tall portrait aspect ratio */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Brass corner accents */
.hero-portrait-wrap::before,
.hero-portrait-wrap::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--brass-light);
  border-style: solid;
  z-index: 2;
}
.hero-portrait-wrap::before {
  top: -10px;
  left: -10px;
  border-width: 3px 0 0 3px;
}
.hero-portrait-wrap::after {
  bottom: -10px;
  right: -10px;
  border-width: 0 3px 3px 0;
}
.portrait-caption {
  background: var(--brass);
  color: var(--ink-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
}

.page-hero {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 58px 0 66px;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.page-hero .lede { color: var(--steel-light); font-size: 18px; max-width: 64ch; }
.page-hero .hero-plates { margin-top: 22px; }
.page-hero .hero-plate { cursor: default; }
.page-hero .hero-plate[href] { cursor: pointer; }
.page-hero .hero-plate[href]:hover { border-color: var(--brass); color: var(--brass-light); }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-dim { background: var(--paper-dim); }
.section-navy { background: var(--ink-navy); color: var(--paper); }
.section-navy h2 { color: var(--white); }
.section-forest { background: var(--forest); color: var(--paper); }
.section-forest h2 { color: var(--white); }

.section-head { max-width: 70ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(27px, 3.2vw, 38px); }
.section-head .sub { font-size: 18px; color: var(--charcoal-soft); }
.section-navy .section-head .sub,
.section-forest .section-head .sub { color: var(--steel-light); }

/* ---------- Credential / stat plates ---------- */
.plate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plate {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 26px 22px;
  border-top: 4px solid var(--brass);
}
.plate .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 10px;
  display: block;
}
.plate .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.plate .value small {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  color: var(--steel-light);
  margin-top: 5px;
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.photo-card { background: var(--white); border: 1px solid var(--steel-light); }
.photo-card .img-wrap { overflow: hidden; aspect-ratio: 1/1; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card figcaption {
  padding: 14px 16px 18px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
  border-top: 3px solid var(--brass);
}
.photo-card figcaption strong {
  display: block;
  color: var(--ink-navy);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

/* ---------- Priority cards ---------- */
.priority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.priority-card {
  background: var(--white);
  border: 1px solid var(--steel-light);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.priority-card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.priority-card h3 { font-size: 20px; margin-bottom: 6px; }
.priority-card p { color: var(--charcoal-soft); font-size: 15.5px; margin-bottom: 0; }
.priority-card a.more {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--barn-red);
}
.priority-card a.more:hover { text-decoration: underline; }

/* ---------- Split content blocks ---------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split-block + .split-block { margin-top: 64px; }
.split-block.reverse .media { order: 2; }
.split-block.reverse .copy  { order: 1; }
.split-block .media .frame { border: 3px solid var(--brass); padding: 8px; background: var(--ink-navy); }
.split-block .media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-block .copy .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
  display: block;
}
.split-block .copy h3 { font-size: 26px; margin-bottom: 14px; }
.split-block .copy p { color: var(--charcoal-soft); }

/* ---------- Quote band ---------- */
.quote-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.quote-band .frame { border: 3px solid var(--brass); padding: 8px; background: var(--white); }
.quote-band img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.quote-band blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-navy);
}
.quote-band cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--barn-red);
  color: var(--white);
  padding: 56px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(22px, 3vw, 32px); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; max-width: 50ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-navy-2); color: var(--steel-light); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 14.5px; color: var(--steel-light); max-width: 38ch; }
.footer-grid ul li { margin-bottom: 9px; font-size: 14.5px; }
.footer-grid ul a:hover { color: var(--white); }
.footer-grid address { font-style: normal; font-size: 14.5px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px;
  border-radius: 50%;
}
.footer-social a:hover { border-color: var(--brass); color: var(--brass); }
.disclosure-bar { padding: 20px 0; text-align: center; }
.disclosure-bar p { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--steel-light); margin: 0 0 5px; }
.disclosure-bar .fine { font-size: 11.5px; color: var(--steel); }

/* ---------- Donate page ---------- */
.donate-panel {
  background: var(--white);
  border: 1px solid var(--steel-light);
  padding: 38px;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
}
.amount-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  padding: 18px 0;
  border: 2px solid var(--ink-navy);
  color: var(--ink-navy);
  transition: background .15s ease, color .15s ease;
}
.amount-pill:hover { background: var(--ink-navy); color: var(--white); }
.amount-pill.other { font-size: 15px; text-transform: uppercase; letter-spacing: .04em; }
.secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-top: 18px;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-item { border-top: 3px solid var(--forest); padding-top: 14px; }
.trust-item h4 { font-size: 16px; margin-bottom: 6px; }
.trust-item p { font-size: 14.5px; color: var(--charcoal-soft); margin-bottom: 0; }

/* ---------- Utility ---------- */
.center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 340px; margin: 0 auto; }
  .plate-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .priority-grid { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; gap: 26px; }
  .split-block.reverse .media { order: -1; }
  .split-block.reverse .copy  { order: 2; }
  .quote-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  section { padding: 56px 0; }
  .plate-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .trust-grid { grid-template-columns: 1fr; }
}
