:root {
  --navy: #071a33;
  --navy-2: #0f2a4c;
  --red: #bd1620;
  --red-2: #e4272f;
  --white: #ffffff;
  --paper: #f6f3ee;
  --ink: #172033;
  --muted: #687287;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 22px 60px rgba(5, 14, 28, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
main {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 26, 51, 0.78);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 51, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: grid;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.05;
}

.brand-office {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/steven-wilson-overlook-front.jpeg");
  background-position: 67% center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.98) 0%, rgba(7, 26, 51, 0.9) 34%, rgba(189, 22, 32, 0.46) 62%, rgba(7, 26, 51, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.92) 0%, rgba(7, 26, 51, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 176px;
  padding-bottom: 148px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-office {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(189, 22, 32, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-2);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 26, 51, 0.82);
}

.hero-bottom span {
  display: block;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.statement-band,
.priority-band,
.about-band,
.support-band {
  padding: 92px 0;
}

.statement-band {
  background: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 56px;
  align-items: center;
}

.statement-copy h2,
.section-heading h2,
.about-copy h2,
.support-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.65rem;
  line-height: 1.05;
}

.quote-block {
  margin-top: 28px;
  padding-left: 24px;
  border-left: 6px solid var(--red);
}

.quote-block p {
  margin: 0 0 16px;
  color: #2d3547;
  font-size: 1.08rem;
}

.quote-block p:last-child {
  margin-bottom: 0;
}

.signature {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-poster {
  margin: 0;
  box-shadow: var(--shadow);
}

.campaign-poster img {
  width: 100%;
  border-radius: 6px;
}

.priority-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(15, 42, 76, 0.96)),
    var(--navy);
}

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

.priority-band .section-heading h2 {
  color: var(--white);
}

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

.priority-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.priority-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.priority-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.priority-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about-copy p {
  color: #354054;
  font-size: 1.06rem;
}

.pledge-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.pledge-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.pledge-list strong {
  color: var(--red);
  text-transform: uppercase;
}

.pledge-list span {
  color: #354054;
}

.support-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(189, 22, 32, 0.94), rgba(7, 26, 51, 0.95)),
    url("assets/steven-wilson-overlook-front.jpeg") center / cover;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 56px;
  align-items: start;
}

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

.support-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.support-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

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

label,
legend {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c7cfdb;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(189, 22, 32, 0.18);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.yard-sign-details {
  margin: 2px 0 18px;
  padding: 18px;
  border: 1px solid rgba(189, 22, 32, 0.2);
  border-radius: 6px;
  background: #fff7f7;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: none;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.form-button {
  width: 100%;
}

.form-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-disclaimer a {
  color: var(--red);
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #061222;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner div {
  display: grid;
  gap: 3px;
}

.footer-inner strong {
  color: var(--white);
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 148px 0 62px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.96), rgba(189, 22, 32, 0.84)),
    url("assets/steven-wilson-overlook-front.jpeg") center / cover;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.legal-hero p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.legal-content {
  padding: 72px 0;
}

.legal-layout {
  max-width: 840px;
}

.legal-layout h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-layout p {
  margin: 0 0 16px;
  color: #354054;
  font-size: 1.04rem;
}

.legal-layout a {
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-office {
    font-size: 1.6rem;
  }

  .statement-grid,
  .about-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .campaign-poster {
    max-width: 460px;
  }

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

@media (max-width: 740px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.98);
  }

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

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

  .hero {
    min-height: 88vh;
  }

  .hero-bg {
    background-position: 55% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 51, 0.98) 0%, rgba(7, 26, 51, 0.84) 55%, rgba(7, 26, 51, 0.38) 100%),
      linear-gradient(0deg, rgba(7, 26, 51, 0.92) 0%, rgba(7, 26, 51, 0.1) 42%);
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 124px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-office {
    font-size: 1.32rem;
  }

  .hero-copy {
    max-width: 440px;
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .statement-band,
  .priority-band,
  .about-band,
  .support-band {
    padding: 68px 0;
  }

  .statement-copy h2,
  .section-heading h2,
  .about-copy h2,
  .support-copy h2 {
    font-size: 2rem;
  }

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

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

  .pledge-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .section-inner,
  .hero-content,
  .hero-bottom span,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

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

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-office {
    font-size: 1.1rem;
  }

  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .support-form {
    padding: 20px;
  }
}
