:root {
  --navy: #102f4f;
  --navy-deep: #071d33;
  --red: #bf293c;
  --gold: #f3cf58;
  --sky: #b9d7eb;
  --cream: #f7f3ea;
  --paper: #ffffff;
  --ink: #162232;
  --muted: #5f6b78;
  --line: rgba(16, 47, 79, 0.16);
  --shadow: 0 24px 60px rgba(7, 29, 51, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: rgba(7, 29, 51, 0.94);
  border-bottom: 4px solid var(--gold);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.nav-button {
  padding: 10px 16px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: var(--radius);
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  color: var(--navy-deep);
  background: #ffe277;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(84svh - 76px);
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.96) 0%, rgba(7, 29, 51, 0.78) 42%, rgba(7, 29, 51, 0.18) 100%),
    url("assets/joel-picolo-headshot.jpg") center 30% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 66%, var(--sky) 66% 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(243, 207, 88, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(7, 29, 51, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: 42px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 9vw, 112px);
}

h2 {
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.15;
}

.hero-line {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.donate-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.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-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--navy-deep);
  background: var(--gold);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.light-button {
  width: 100%;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: var(--paper);
}

.quick-actions a {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  background: rgba(7, 29, 51, 0.2);
}

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

.intro-band,
.video-section,
.priorities,
.community-section,
.vote-section,
.donate-section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.intro-band {
  background: var(--cream);
}

.two-column,
.video-grid,
.community-grid,
.action-grid,
.vote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.body-copy p,
.video-copy p,
.community-section p,
.vote-section p,
.get-involved p {
  color: var(--muted);
  font-size: 18px;
}

.video-section {
  background: var(--paper);
}

.video-frame {
  overflow: hidden;
  width: min(100%, 360px);
  margin-left: auto;
  border: 6px solid var(--paper);
  border-radius: var(--radius);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.priority-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 8px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(7, 29, 51, 0.08);
}

.priority-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--red);
  font-weight: 900;
}

.priority-card p {
  color: var(--muted);
}

.community-section {
  background: var(--cream);
}

.campaign-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.campaign-card img {
  width: 100%;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
}

.get-involved {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.96), rgba(16, 47, 79, 0.92)),
    url("assets/joel-picolo-headshot.jpg") center / cover no-repeat;
}

.get-involved h2,
.get-involved p {
  color: var(--paper);
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.signup-form h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 24px;
}

.signup-form p {
  margin: 0;
  color: var(--ink);
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(16, 47, 79, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.vote-section {
  background: var(--paper);
}

.vote-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(7, 29, 51, 0.08);
}

.vote-list div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.vote-list div:last-child {
  border-bottom: 0;
}

.vote-list strong {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.vote-list span {
  color: var(--navy-deep);
  font-weight: 800;
}

.donate-section {
  padding-top: 0;
}

.donate-panel {
  display: block;
  padding: clamp(28px, 6vw, 58px);
  border-left: 10px solid var(--red);
  border-radius: var(--radius);
  background: var(--cream);
}

.donate-panel h2 {
  max-width: 840px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-deep);
  border-top: 4px solid var(--gold);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: var(--navy-deep);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 8px 0;
  }

  .nav-button {
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
  }

  .hero {
    min-height: calc(80svh - 76px);
    background:
      linear-gradient(180deg, rgba(7, 29, 51, 0.52) 0%, rgba(7, 29, 51, 0.96) 76%),
      url("assets/joel-picolo-headshot.jpg") center top / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: auto 16px 0;
    padding: 150px 0 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .video-grid,
  .community-grid,
  .action-grid,
  .vote-grid {
    grid-template-columns: 1fr;
  }

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

  .video-frame {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .site-nav {
    top: 70px;
  }

  h1 {
    font-size: 58px;
  }

  .hero {
    min-height: calc(82svh - 70px);
  }

  .hero-content {
    padding-top: 190px;
  }

  .hero-line {
    font-size: 24px;
  }

  .quick-actions a {
    min-height: 64px;
    font-size: 12px;
  }

  .intro-band,
  .video-section,
  .priorities,
  .community-section,
  .vote-section,
  .donate-section {
    padding: 64px 0;
  }

  .priority-card {
    min-height: 0;
  }
}
