:root {
  --navy: #0a2140;
  --ink: #102033;
  --blue: #174a7c;
  --red: #c52033;
  --gold: #f2b84b;
  --green: #2f6f5d;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #5f6c7c;
  --line: #d8dde5;
  --shadow: 0 18px 42px rgba(6, 19, 36, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  box-shadow: 0 1px 18px rgba(5, 16, 31, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-community.png") center / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 21, 43, 0.94) 0%, rgba(7, 28, 54, 0.84) 39%, rgba(7, 28, 54, 0.48) 67%, rgba(7, 28, 54, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 21, 43, 0.42), rgba(5, 21, 43, 0.05));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.hero-copy {
  padding-bottom: clamp(12px, 4vw, 52px);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 1.08rem;
}

.hero-tagline {
  margin: 22px 0 0;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 670px;
  margin: 18px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.83rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.amount:hover,
.amount:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

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

.button.light {
  background: var(--white);
  color: var(--navy);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.wide {
  width: 100%;
}

.election-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 10px 14px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.election-pill span {
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0.82;
}

.election-pill strong {
  font-size: 1rem;
}

.hero-portrait {
  align-self: end;
  justify-self: end;
  width: min(260px, 100%);
  aspect-ratio: 3 / 4.15;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  background: var(--navy);
}

.hero-portrait img,
.portrait-photo img,
.flyer-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section,
.join-band {
  padding: clamp(66px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 36px));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.align-start {
  align-items: start;
}

.join-band {
  background: var(--paper);
}

.section p,
.join-band p {
  font-size: 1.05rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bfc8d5;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 184, 75, 0.42);
  border-color: var(--blue);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.image-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.portrait-photo {
  min-height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--navy);
}

.portrait-photo img {
  display: block;
  min-height: 560px;
  object-position: center top;
}

.priorities {
  background: var(--navy);
  color: var(--white);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.priority-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.priority-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.priority-icon {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
}

.donate-band {
  background: var(--paper);
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.amount {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.amount.full {
  grid-column: 1 / -1;
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.volunteer form,
.contact form {
  display: grid;
  gap: 16px;
}

.help-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.help-list span,
.social-placeholders span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-left: 4px solid var(--red);
  background: #f2f5f9;
  border-radius: 6px;
  font-weight: 800;
}

.community {
  background: var(--navy);
  color: var(--white);
}

.community .two-column > div {
  min-height: 280px;
  display: grid;
  align-content: center;
  border-top: 4px solid var(--gold);
}

.community h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.media-feature {
  gap: 18px;
}

.flyer-link {
  display: block;
  width: min(360px, 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  background: var(--white);
}

.flyer-link img {
  display: block;
  height: auto;
  object-fit: contain;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 18px 0;
}

.contact-line strong {
  color: var(--red);
  min-width: 76px;
}

.social-placeholders {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.site-footer {
  padding: 30px 0;
  background: #061326;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 6px 0;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 0;
    display: none;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    padding: 22px;
    background: var(--white);
    color: var(--navy);
  }

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

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 88px;
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-portrait {
    width: min(240px, 62vw);
    justify-self: start;
    aspect-ratio: 1 / 1.1;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 21, 43, 0.95), rgba(7, 28, 54, 0.72)),
      linear-gradient(0deg, rgba(5, 21, 43, 0.52), rgba(5, 21, 43, 0.12));
  }

  .portrait-photo,
  .portrait-photo img {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-actions,
  .election-pill,
  .contact-line {
    align-items: stretch;
    flex-direction: column;
  }

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

  .form-grid,
  .priority-grid,
  .donation-options,
  .help-list {
    grid-template-columns: 1fr;
  }

  .amount.full {
    grid-column: auto;
  }

  form {
    padding: 18px;
  }
}
