:root {
  --yellow-500: #f2c230;
  --yellow-400: #ffd44d;
  --yellow-300: #ffe17a;
  --yellow-100: #fff5c9;
  --navy-900: #172b59;
  --navy-800: #1d3772;
  --navy-700: #294c92;
  --white: #ffffff;
  --ink: #152033;
  --muted: #5c6170;
  --border: rgba(23, 43, 89, 0.16);
  --shadow: 0 24px 55px rgba(23, 43, 89, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.7), transparent 28rem),
    linear-gradient(135deg, var(--yellow-400), var(--yellow-100));
  line-height: 1.6;
}
a { color: var(--navy-800); font-weight: 800; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 900px; }
.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; z-index: 100;
  padding: .75rem 1rem; border-radius: 999px; background: var(--white); color: var(--navy-900);
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 207, 64, .96);
  border-bottom: 4px solid var(--navy-900);
  box-shadow: 0 10px 24px rgba(23,43,89,.16);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { color: var(--navy-900); text-transform: uppercase; line-height: .95; display: grid; min-width: 210px; }
.brand:hover { text-decoration: none; }
.brand-small { font-size: 1.05rem; letter-spacing: .18em; font-weight: 900; }
.brand-large { font-size: 1.65rem; letter-spacing: .04em; font-weight: 900; }
.brand-office { font-size: .72rem; letter-spacing: .08em; font-weight: 900; }
.site-nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.site-nav a { color: var(--navy-900); padding: .72rem .86rem; border-radius: 999px; font-weight: 900; }
.site-nav a.active, .site-nav a:hover { background: rgba(23,43,89,.12); text-decoration: none; }
.site-nav .donate-link { background: var(--navy-900); color: var(--white); }
.site-nav .donate-link.active, .site-nav .donate-link:hover { background: var(--navy-700); color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 2px solid var(--navy-900); border-radius: 12px; background: transparent; cursor: pointer; padding: .6rem; }
.nav-toggle-line { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); }

.hero { color: var(--navy-900); padding: 5.5rem 0; }
.yellow-burst {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.9), transparent 20rem),
    linear-gradient(135deg, #fed039 0%, #f4bf28 45%, #ffe277 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr); gap: 2rem; align-items: center; }
.eyebrow { margin: 0 0 .75rem; color: var(--navy-700); font-size: .86rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: var(--yellow-300); }
h1 { margin: 0 0 1rem; font-size: clamp(2.5rem, 7vw, 5.8rem); line-height: .92; letter-spacing: -.045em; text-transform: uppercase; }
h2 { color: var(--navy-900); line-height: 1.15; }
.hero-text { max-width: 720px; font-size: 1.25rem; color: #26385b; }
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.button { display: inline-block; border: 0; border-radius: 999px; padding: .9rem 1.25rem; cursor: pointer; font-weight: 900; }
.button.primary { background: var(--white); color: var(--navy-900); }
.button.secondary { background: transparent; color: var(--navy-900); border: 2px solid var(--navy-900); }
.button.navy { background: var(--navy-900); color: var(--white); }
.button.outline { background: var(--white); color: var(--navy-900); border: 2px solid rgba(23,43,89,.24); }
.button:hover { text-decoration: none; transform: translateY(-1px); }
.large-button { font-size: 1.05rem; padding: 1rem 1.4rem; }

.card, .content-panel, .photo-card, .hero-card, .issue-card, .contact-form, .gallery-item {
  background: rgba(255,255,255,.94); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow);
}
.hero-card { overflow: hidden; border: 4px solid var(--navy-900); transform: rotate(1deg); }
.hero-card img { width: 100%; object-fit: cover; }
.section { padding: 4rem 0; }
.yellow-page {
  background:
    linear-gradient(rgba(255,244,189,.85), rgba(255,244,189,.85)),
    repeating-linear-gradient(135deg, rgba(23,43,89,.08) 0, rgba(23,43,89,.08) 2px, transparent 2px, transparent 18px);
}
.cards { display: grid; gap: 1.3rem; }
.cards-three { grid-template-columns: repeat(3, 1fr); }
.card, .content-panel { padding: 1.6rem; }
.card p, .content-panel p, li { color: var(--muted); }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 1.5rem; align-items: start; }
.photo-card { overflow: hidden; border: 4px solid var(--white); }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.intro-panel { margin-bottom: 1.5rem; }
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.issue-card { padding: 1.4rem; }
.photo-issue { padding: 0; overflow: hidden; }
.photo-issue img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-issue div { padding: 1.2rem; }
.blue-cta {
  padding: 3rem 0; color: var(--white); background: var(--navy-900);
}
.blue-cta h2 { color: var(--white); margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.gallery-intro { margin-bottom: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery-item { margin: 0; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: 3 / 5; }
.gallery-item figcaption { padding: .85rem 1rem; color: var(--muted); font-size: .95rem; }
.placeholder-photo > div {
  min-height: 220px; display: grid; place-items: center; text-align: center; padding: 1.2rem;
  color: var(--navy-900); background: linear-gradient(135deg, var(--yellow-500), var(--yellow-100));
}
.placeholder-photo span { text-transform: uppercase; letter-spacing: .12em; color: var(--navy-700); font-weight: 900; }
.placeholder-photo strong { display: block; font-size: 1.2rem; }
.placeholder-photo p { margin: 0; max-width: 240px; color: #3e4f73; }
.contact-form { display: grid; gap: .8rem; padding: 1.2rem; margin-top: 1.2rem; box-shadow: none; }
label { font-weight: 900; color: var(--navy-900); }
input, textarea, select { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: .9rem 1rem; font: inherit; background: var(--white); }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(23,43,89,.18); border-color: var(--navy-700); }
.form-note, .fine-print { color: var(--muted); }
.donation-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: 1.4rem 0; }
.donation-chip { display: block; text-align: center; padding: 1rem; border-radius: 18px; background: var(--yellow-100); border: 2px solid rgba(23,43,89,.2); color: var(--navy-900); font-size: 1.12rem; font-weight: 900; }
.donation-chip:hover { text-decoration: none; border-color: var(--navy-900); }
.site-footer { padding: 2rem 0; background: var(--navy-900); color: rgba(255,255,255,.88); }
.site-footer a { color: var(--yellow-300); }
.site-footer p { margin: .25rem 0 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.normal-buttons { margin-top: 1.4rem; }

@media (max-width: 980px) {
  .gallery-grid, .issue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .header-inner { min-height: 76px; flex-wrap: wrap; padding: .65rem 0; }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-bottom: .65rem; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .82rem .9rem; }
  .hero { padding: 3.5rem 0; }
  .hero-grid, .cards-three, .two-column, .gallery-grid, .issue-grid, .donation-options { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.tall img { aspect-ratio: 4 / 3; }
}


/* Updates for headshot, key issues, roads, and replaceable donation link */
.headshot-card img,
.headshot-feature img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.priorities-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 0;
}
.priority-list {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}
.priority-list li {
  margin-bottom: .55rem;
  color: var(--ink);
  font-weight: 700;
}
.priority-grid {
  grid-template-columns: repeat(4, 1fr);
}
.priority-card {
  position: relative;
  min-height: 180px;
  padding: 1.4rem;
  border-top: 8px solid var(--yellow-500);
}
.issue-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
  margin-bottom: .75rem;
}
.priority-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}
.road-spotlight,
.road-section {
  padding: 4rem 0;
  background: var(--navy-900);
  color: var(--white);
}
.road-spotlight h2,
.road-section h2,
.road-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.road-spotlight p,
.road-section p,
.road-copy p {
  color: rgba(255,255,255,.86);
}
.road-section .content-panel,
.road-copy {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.road-photo {
  border-color: var(--yellow-500);
}
.no-top-padding {
  padding-top: 0;
}
.reverse-mobile { }
@media (max-width: 1100px) {
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .priority-grid { grid-template-columns: 1fr; }
  .reverse-mobile .photo-card { order: -1; }
}
