/* ================= FONTS ================= */

@font-face {
  font-family: "MontserratCustom";

  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ================= DIN CONDENSED ================= */

@font-face {
  font-family: "DINCondensedCustom";

  src:
    url("../fonts/din-condensed-regular.woff2") format("woff2");

  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DINCondensedCustom";

  src:
    url("../fonts/DINCondensed-Light.woff2") format("woff2");

  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "DINCondensedCustom";

  src:
    url("../fonts/DINCondensed-Bold.woff2") format("woff2");

  font-weight: 700;
  font-style: normal;
}

/* ================= GLOBAL / RESET ================= */

:root {
  --navy: #17294f;
  --deep-navy: #102142;
  --red: #e14c35;
  --white: #ffffff;
  --light-gray: #f3f3f3;
  --text: #18213a;

  --page-width: 940px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

/* ================= PAGE WRAP ================= */

.page-wrap {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  background: var(--white);
}

/* ================= TOP UTILITY BAR ================= */

.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
}

.top-bar-inner {
  min-height: 38px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.top-email {
  color: inherit;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 6px;

  transition: transform 0.2s ease;
}

.top-email:hover {
  transform: translateY(-2px);
}

.top-email img {
  transition: opacity 0.2s ease;
}

.top-email:hover img {
  opacity: 0.9;
}

.top-socials img[src*="youtube"] {
  position: relative;
  top: 3px;
}

.top-socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.top-socials a:hover {
  transform: translateY(-2px);
}

/* ================= MAIN HEADER / NAV ================= */

.site-header {
  background: var(--white);
}

.header-inner {
  min-height: 78px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 300px;
}

/* ================= MAIN NAV ================= */

.mobile-header-actions {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;

  font-family:
  "MontserratCustom",
  Arial,
  sans-serif;

  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;

  color: var(--navy);
  text-decoration: none;

  padding-bottom: 6px;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

/* Current page */

.main-nav a.active {
  color: var(--red);
  cursor: default;
}

/* Hover only on non-active links */

.main-nav a:not(.active):hover {
  color: var(--red);
}

/* Underline animation */

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 2px;

  background: var(--red);

  transition: width 0.2s ease;
}

/* Hover underline */

.main-nav a:not(.active):hover::after {
  width: 100%;
}

/* Donate button */

.donate-btn {
  background: var(--red);
  color: var(--white) !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

height: 36px;

  border-radius: 8px;

  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;

  position: relative;
  top: -1px;
}

.donate-btn::after {
  display: none;
}

.donate-btn:hover {
  background: #b83d2b;
  transform: translateY(-1px);
}

.main-nav .donate-btn {

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  background: var(--red) !important;
  color: var(--white) !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 82px;
  height: 30px;
  padding: 0 14px;

  border-radius: 8px;

  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;

  position: relative;
    top: -3px;
}

.main-nav .donate-btn:hover {
  background: #c6412d !important;
  color: var(--white) !important;
}

.main-nav .donate-btn::after {
  display: none;
}

/* ================= MOBILE TOGGLE ================= */

.mobile-nav-toggle {
  display: none;

  border: 0;
  background: transparent;

  font-size: 28px;
  color: var(--navy);

  cursor: pointer;
}

/* ================= HERO SECTION ================= */

.hero-section {
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
}

/* ================= JOIN SECTION ================= */

.join-section {
  display: grid;
  grid-template-columns: 38% 62%;
  padding: 22px 28px;
  background: var(--white);
}

.join-left {
  text-align: left;

  border-right: 1px solid var(--navy);

  padding: 6px 28px 18px 22px;
}

.join-left h2 {
  margin: 0;

  font-family: "DINCondensedCustom", "Arial Narrow", Arial, sans-serif;
  color: var(--navy);

  font-size: 34px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.join-left h3 {
  margin: 0 0 15px;
  margin-bottom: 25px;

  font-family: "DINCondensedCustom", "Arial Narrow", Arial, sans-serif;

  font-size: 36px;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--navy);
}

.join-left h3 span {
  color: var(--red);
}

.join-left h3 span {
  color: var(--red);
}

.join-tagline {
  margin: 10px 0 30px 18px;

  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.25;

  color: var(--navy);
}

.date-block {
  margin-bottom: 42px;
  margin-left: 10px;

  color: var(--navy);
}

.date-block strong {
  display: block;

  margin-bottom: 1px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 20px;
  line-height: 1;
  color: var(--navy);
}

.date-block p {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 13px;
  line-height: 1.08;

  color: var(--navy);
}

.date-block:last-of-type {
  margin-bottom: 20px;
}

.vote-logo-wrap {
  display: flex;
  justify-content: center;

  margin-top: 34px;
  margin-left: -50px;
}

.vote-logo {
  width: 100px;
  height: auto;
}


/* ================= JOIN SECTION ================= */

.join-section {
  display: grid;
  grid-template-columns: 36% 64%;
  padding: 24px 46px 28px;
  background: var(--white);
  overflow: hidden;
}

/* ================= RIGHT FORM SECTION ================= */

.join-right {
  padding: 6px 0 0 38px;
}

.form-title {
  margin: 0 0 26px;

  font-family: "DINCondensedCustom", "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  margin-bottom: 24px;
}

.signup-form label,
.interest-group p {
  display: block;
  font-family: "DINCondensedCustom", "Arial Narrow", Arial, sans-serif;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
  width: 100%;
  height: 32px;
  margin-top: 4px;
  padding: 0 8px;
  border: 1px solid #243763;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--navy);
}

.interest-group {
  margin-top: 6px;
}

.interest-group p {
  margin: 0 0 18px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 22px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "DINCondensedCustom", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.checkbox-grid input[type="checkbox"] {
  appearance: none;
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  border: 1px solid #243763;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.checkbox-grid input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--red);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 44px auto 0;

  width: 110px;
  height: 38px;

  border: 0;
  border-radius: 10px;

  background: var(--red);
  color: var(--white);

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  cursor: pointer;
}

/* ================= BUILD A BETTER 42 SECTION ================= */

.build-section {
  background:
    linear-gradient(
      rgba(8, 20, 42, 0.80), 
      rgba(8, 20, 42, 0.60)
      ),
    url("../images/backgrounds/build_bg.jpg") center / cover no-repeat;

  color: var(--white);
  min-height: 430px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.build-overlay {
  padding: 42px 80px 58px;
}

.build-section h2 {
  margin: 0 0 48px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 56px;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;

  color: var(--white);
}

/* ================= PRIORITY LINKS ================= */

.pillar-copy h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.pillar-copy h3 a:hover {
  color: #e24714;
}

.pillar-stack {
  width: 620px;
  margin: 0 auto;
  margin-left: 150px;
}

.pillar-row {
  display: grid;
  grid-template-columns: 84px 1px 1fr;
  column-gap: 22px;
  align-items: center;

  margin-bottom: 42px;
}

.pillar-row:last-child {
  margin-bottom: 0;
}

.pillar-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pillar-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.pillar-divider {
  width: 3px;
  height: 62px;
  background: rgba(255, 255, 255, 0.85);
}

.pillar-copy h3 {
  margin: 0 0 6px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #9fe7ff;
}

.pillar-copy p {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.12;

  color: var(--white);
}

/* ================= DONATION MESSAGE SECTION ================= */

.donation-message-section {
  padding: 58px 34px 5px;

  background:
    linear-gradient(rgba(10, 26, 56, 0.96), rgba(10, 26, 56, 0.96));

  color: var(--white);
}

/* ================= GRID ================= */

.donation-message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 45px;

  align-items: flex-start;
}

/* ================= LEFT SIDE ================= */

.district-side {
  text-align: right;
  padding-top: 10px;
}

.district-label {
  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 50px;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.district-number {
  margin-top: 10px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 130px;
  font-weight: 700;
  line-height: 0.9;
}

/* ================= RIGHT SIDE ================= */

.message-side {
  max-width: 480px;
}

/* ================= TOP ================= */

.message-top p {
  margin: 0 0 48px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 50px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

/* ================= MIDDLE ================= */

.message-middle h2 {
  margin: 0 0 24px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
}

.message-middle ul {
  list-style: none;
  margin: 0 0 42px;
  padding-left: 42px;
}

.message-middle li {
  margin-bottom: 28px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;
    font-weight: 300;

  font-size: 40px;
  line-height: 1;
  position: relative;
  padding-left: 30px;
}


.message-middle li::before {
  content: "";

  width: 14px;
  height: 14px;

  background: var(--white);

  position: absolute;

  left: 0;

  top: 40%;
  transform: translateY(-50%);
}

/* ================= BOTTOM ================= */

.message-bottom p {
  margin: 0 0 18px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
}

/* ================= HIGHLIGHTS ================= */

.highlight-red {
  color: var(--red);
  font-weight: 400;
}

.highlight-white {
  color: var(--white);
  font-weight: 400;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .donation-message-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .district-side {
    text-align: left;
  }

  .district-label {
    font-size: 56px;
  }

  .district-number {
    font-size: 110px;
  }

  .message-top p,
  .message-middle h2,
  .message-middle li,
  .message-bottom p {
    font-size: 42px;
  }
}

/* ================= DONATION SECTION ================= */

.donation-section {
  background:
    linear-gradient(rgba(10, 26, 56, 0.96), rgba(10, 26, 56, 0.96));

  border-bottom: 2px solid rgba(255,255,255,0.35);

  padding: 23px 0 80px 0;
}

.donation-inner {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  text-align: center;
}

.donation-section h2 {
  margin: 0 0 18px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #9fe7ff;
}

/* ================= DONATION BUTTON ROW ================= */

.donation-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* ================= DONATION BUTTON ================= */

.donation-btn {
  width: 110px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--red);
  color: var(--white);

  border: 3px solid rgba(255,255,255,0.35);

  text-decoration: none;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;

  padding-top: 8px;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.donation-btn:hover {
  transform: translateY(-2px);

  background: #c6422f;
}

/* ================= FEATURED $42 BUTTON ================= */

.donation-featured {
  width: 108px;

  background: var(--red);
}

.donation-featured:hover {
  background: #c6422f;
}

.donation-dollar {
  font-size: 22px;
  margin-right: 2px;
  position: relative;
  top: -1px;
}

/* ================= PRIVACY POLICY PAGE ================= */

.privacy-page {
  background: var(--white);
  color: var(--navy);

  padding: 42px 18px 70px;

  border-top: 1px solid rgba(23, 41, 79, 0.22);
}

.privacy-title {
  margin: 0 0 38px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--navy);
}

.privacy-section {
  margin-bottom: 34px;
}

.privacy-section h2 {
  margin: 0 0 8px;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--red);
}

.privacy-section p {
  margin: 0 0 14px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;

  color: var(--navy);
}

.privacy-section a {
  color: var(--navy);
  text-decoration: underline;
}

.privacy-section a:hover {
  color: var(--red);
}

@media (max-width: 760px) {
  .privacy-page {
    padding: 32px 22px 54px;
  }

  .privacy-title {
    font-size: 44px;
  }

  .privacy-section p {
    font-size: 15px;
  }
}

/* ================= INTERIOR PAGE SHELL ================= */

.interior-page {
  background: var(--white);
  color: var(--navy);

  padding: 42px 24px 70px;

  border-top: 1px solid rgba(23, 41, 79, 0.22);
}

.interior-title {
  margin: 0 0 38px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--navy);
}

.interior-section {
  margin-bottom: 34px;
}

.interior-section h2 {
  margin: 0 0 8px;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--red);
}

.interior-section p {
  margin: 0 0 14px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;

  color: var(--navy);
}

/* ================= FOOTER ================= */

.site-footer {
  background:
    linear-gradient(rgba(10, 26, 56, 0.96), rgba(10, 26, 56, 0.96)),
    url("../images/backgrounds/build-bg.jpg") center / cover no-repeat;

  color: var(--white);
  text-align: center;

  padding: 75px 52px 70px;
  margin-bottom: 50px;
}

/* ================= FOOTER LOGO ================= */

.footer-logo-horizontal {
  width: 550px;
  max-width: 92%;

  margin: 0 auto 20px;
}

/* ================= FOOTER DONATE ================= */

.footer-donate-btn {
  width: 150px;
  height: 46px;

  margin: 0 auto 42px;
  margin-bottom: 60px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 3px solid rgba(255,255,255,0.95);
  border-radius: 12px;

  color: var(--white);
  text-decoration: none;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.footer-donate-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  /* ================= 
  border-color: var(--red);
  color: var(--red); 
  ================= */
}

/* ================= FOOTER CONTACT GRID ================= */

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;

  margin: 0 auto 28px;
  padding-bottom: 24px;

  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-contact-card {
  min-height: 120px;

  padding: 0 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-contact-card + .footer-contact-card {
  border-left: 1px solid rgba(255,255,255,0.25);
}

.footer-contact-icon {
  width: 42px;
  height: 42px;

  margin-bottom: 12px;

  object-fit: contain;
}

.footer-contact-card h3 {
  margin: 0 0 10px;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--white);
}

.footer-contact-card p,
.footer-contact-card a {
  margin: 0 0 4px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;

  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

/* ================= FOOTER EMAIL ================= */

.footer-email {
  display: inline-block;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.footer-email:hover {
  transform: translateY(-2px);
}

/* ================= FOOTER SOCIALS ================= */

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.footer-socials img {
  width: 24px;
  height: 24px;

  object-fit: contain;
}

/* ================= FOOTER DISCLAIMER ================= */

.footer-disclaimer {
  max-width: 820px;

  margin: 0 auto 28px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;

  color: rgba(255,255,255,0.92);
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  font-family: Arial, Helvetica, sans-serif;

  color: rgba(255,255,255,0.85);
}

.footer-bottom p {
  margin: 0 0 12px;

  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9fe7ff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--red);
}

/* ================= FOOTER MOBILE ================= */

@media (max-width: 760px) {
  .site-footer {
    padding: 56px 24px 30px;
  }

  .footer-logo-horizontal {
    width: 420px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-contact-card {
    min-height: auto;
    padding: 0 0 26px;
  }

  .footer-contact-card + .footer-contact-card {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-top: 26px;
  }
}

/* ================= INTERIOR FOOTER ================= */

.interior-footer {
  background: var(--white);
    padding: 50px 52px 70px;

  color: var(--navy);

  border-top: 1px solid rgba(23,41,79,0.35);
}

/* ================= LOGO ================= */

.interior-footer .footer-logo-horizontal {
  filter: none;
}

/* ================= DONATE BUTTON ================= */

.interior-footer .footer-donate-btn {
  border: 3px solid var(--navy);

  color: var(--navy);

  background: transparent;
}

.interior-footer .footer-donate-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ================= CONTACT GRID ================= */

.interior-footer .footer-contact-grid {
  border-bottom: 1px solid rgba(23,41,79,0.10);
}

.interior-footer .footer-contact-card + .footer-contact-card {
  border-left: 1px solid rgba(23,41,79,0.35);
}

/* ================= ICON HEADERS ================= */

.interior-footer .footer-contact-card h3 {
  color: var(--navy);
}

/* ================= BODY TEXT ================= */

.interior-footer .footer-contact-card p,
.interior-footer .footer-contact-card a,
.interior-footer .footer-disclaimer,
.interior-footer .footer-bottom,
.interior-footer .footer-bottom p {
  color: rgba(23,41,79,0.92);
}

/* ================= EMAIL HOVER ================= */

.interior-footer .footer-email:hover {
  color: var(--red);
}

/* ================= SOCIAL ICONS ================= */

.interior-footer .footer-socials img {
  filter: none;
}

/* ================= LINKS ================= */

.interior-footer .footer-links a,
.interior-footer .footer-links span {
  color: var(--navy);
}

.interior-footer .footer-links a:hover {
  color: var(--red);
}

/* ================= MOBILE ================= */

@media (max-width: 760px) {

  .interior-footer .footer-contact-card + .footer-contact-card {
    border-left: 0;
    border-top: 1px solid rgba(23,41,79,0.12);
  }

}

/* ================= MOBILE ================= */
/* ================= MOBILE MESSAGE SECTION ================= */

/* hidden by default on desktop */

.mobile-message-section {
  display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 760px) {

  .mobile-message-section {
    display: block;

    width: 100%;

    padding: 18px 20px 5px;

    /*border-bottom: 1px solid rgba(177, 178, 180, 0.9);*/
  }

  .mobile-message-inner {
    max-width: 92%;

    margin: 0 auto;

    text-align: center;
  }

  .mobile-message-inner h2 {
    margin: 0;

    font-family:
      "DINCondensedCustom",
      "Arial Narrow",
      Arial,
      sans-serif;

    font-size: 24px;
    line-height: 1.12;
    letter-spacing: 0.02em;

    color: var(--navy);
  }

  .mobile-message-inner h2 span {
    color: var(--red);
  }

  .join-right .form-title {
    text-align: center;
  }

  @media (max-width: 760px) {

  /* ================= REMOVE LEFT + MIDDLE ================= */

  .district-side,
  .message-middle,
  .message-top {
    display: none;
  }

  /* ================= SINGLE COLUMN ================= */

  .donation-message-grid {
    display: block;
  }

  /* ================= CENTER BOTTOM MESSAGE ================= */

  .message-side {
    width: 100%;
  }

  .message-bottom {
    text-align: center;

    padding: 42px 22px;
  }

  .message-bottom p {
    margin: 0;

    font-size: 46px;
    line-height: 1.12;

    font-family:
      "DINCondensedCustom",
      "Arial Narrow",
      Arial,
      sans-serif;

    letter-spacing: 0.02em;

    color: var(--navy);
  }

  .message-bottom .highlight-red {
    color: var(--red);
  }

  @media (max-width: 760px) {

  .interest-group {
    text-align: center;
  }

  .checkbox-grid {
    width: fit-content;
    margin: 0 auto;
  }

  .donation-message-section {
    padding: 28px 22px 24px;
  }

  .message-bottom {
    padding: 12px 18px 2px;
  }

  .message-bottom p {
    color: var(--white);
    font-size: 36px;
    line-height: 1.05;
  }

  .message-bottom .highlight-red {
    color: var(--red);
  }

  .donation-section {
    padding: 5px 24px 56px;
  }

  .donation-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
  }

  .donation-btn {
    width: 68px;
    height: 42px;
    font-size: 24px;
    border-radius: 7px;
  }

  @media (max-width: 760px) {

  .build-overlay {
    padding: 28px 18px 34px;
  }

  .build-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .pillar-stack {
    width: fit-content;
    max-width: 92%;
    margin: 0 auto;
  }

  .pillar-row {
    grid-template-columns: 44px 1px minmax(0, 230px);
    column-gap: 14px;
    margin-bottom: 24px;
  }

  .pillar-icon {
    width: 36px;
    height: 36px;
  }

  .pillar-divider {
    height: 48px;
  }

  .pillar-copy {
    text-align: left;
  }

  .pillar-copy h3 {
    font-size: 24px;
    letter-spacing: 0.12em;
  }

  .pillar-copy p {
    font-size: 14px;
    line-height: 1.2;
  }

}

}

}

}

@media (max-width: 760px) {
  .page-wrap {
    max-width: 100%;
  }



  .header-inner {
    min-height: 64px;
  }

  .site-logo {
    width: 220px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .top-left > span:first-child,
  .top-left > .top-item {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 24px 22px;
    border-bottom: 1px solid #ddd;
    z-index: 10;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .join-section {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .join-left {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
    padding: 0 0 24px;
    margin-bottom: 28px;
  }

  .join-right {
    padding-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .build-overlay {
    padding: 28px 24px;
  }

  .build-section h2 {
    font-size: 24px;
    margin-bottom: 56px;
  }

  .pillar-list {
    width: auto;
    margin-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .paid-for {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.6);
    padding: 18px 0 0;
  }
}

/* ================= ABOUT PAGE ================= */

.about-page {
  padding-top: 36px;
}

.about-title {
  text-align: center;
  margin-bottom: 22px;
}

/* ================= ABOUT HERO ================= */

.about-hero {
  width: 82%;
  margin: 0 auto 46px;
}

.about-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= ABOUT COPY ================= */

.about-copy {
  width: 82%;
  margin: 0 auto;

  color: var(--navy);
}

.about-copy p {
  margin: 0 0 28px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;

  color: var(--navy);
}

/* ================= ABOUT TAGLINE ================= */

.about-section-tagline {
  width: 82%;

  margin: 14px auto 18px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-tagline-dark {
  color: var(--navy);
}

.about-tagline-red {
  color: var(--red);
}

/* ================= ABOUT VOTE LOGO ================= */

.about-vote-logo-wrap {
  display: flex;
  justify-content: center;

  margin-top: 36px;
}

.about-vote-logo {
  width: 150px;
  height: auto;
}

/* ================= ABOUT MOBILE ================= */

@media (max-width: 760px) {
  .about-hero,
  .about-copy {
    width: 100%;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* ================= PRIORITIES PAGE ================= */

.priorities-page {
  padding-top: 36px;
}

.priorities-title {
  text-align: center;
  margin-bottom: 22px;
}

/* ================= PRIORITIES HERO ================= */

.priorities-hero {
  width: 82%;
  margin: 0 auto 54px;
}

.priorities-hero-img {
  width: 100%;
  height: auto;
  display: block;

  filter: brightness(0.94);
}

/* ================= PRIORITY SECTION ================= */

.priority-section {
  max-width: 780px;

  margin: 0 auto 70px;
  padding-bottom: 52px;
   padding-left: 34px;

  border-bottom: 1px solid rgba(23, 41, 79, 0.1);
}

.priority-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* ================= PRIORITY HEADING ================= */

.priority-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  margin-bottom: 26px;
}

.priority-page-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: -16px;
}

.priority-heading-row h2 {
  margin: 0;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 44px;
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--navy);
}

.priority-subtitle {
  margin: 6px 0 0;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;

  color: var(--navy);
}

/* ================= PRIORITY LIST ================= */

.priority-list {
  list-style: none;

  margin: 0;

  padding-left: 68px;
}

.priority-list li {
  position: relative;

  margin-bottom: 11px;
  padding-left: 22px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.45;

  color: var(--navy);
}

.priority-list li::before {
  content: "";

  width: 6px;
  height: 6px;

  background: var(--red);

  position: absolute;
  left: 0;
  top: 10px;
}

/* ================= MOBILE PRIORITIES ================= */

@media (max-width: 760px) {
  .priorities-hero {
    width: 100%;
    margin-bottom: 42px;
  }

  .priority-section {
    max-width: 100%;
    margin-bottom: 54px;
    padding-bottom: 40px;
  }

  .priority-heading-row {
    align-items: flex-start;
  }

  .priority-page-icon {
    width: 46px;
    height: 46px;
  }

  .priority-heading-row h2 {
    font-size: 36px;
  }

  .priority-subtitle {
    font-size: 18px;
  }

  .priority-list li {
    font-size: 16px;
  }
}


/* ================= VOLUNTEER PAGE ================= */

/* ================= VOLUNTEER TITLE ================= */

.volunteer-title-section {
  padding-top: 36px;
  text-align: center;
}

/* ================= VOLUNTEER AREAS ================= */

.volunteer-areas-grid {
  width: 82%;

  margin: 0 auto 72px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  column-gap: 28px;
  row-gap: 30px;
}

.interior-divider {
  width: 100%;
  height: 1px;

  background: rgba(23, 41, 79, 0.18);
}

/* ================= VOLUNTEER CARD ================= */

.volunteer-area-card h2 {
  margin: 0 0 8px;

  text-align: center;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--navy);
}

.volunteer-area-box {
  min-height: 86px;

  padding: 14px 18px;

  background:
    linear-gradient(
      to right,
      rgba(23,41,79,0.04),
      rgba(23,41,79,0.015)
    );

  border-left: 1px solid rgba(23,41,79,0.12);
}

.volunteer-area-box p {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;

  color: rgba(23,41,79,0.88);
}

/* ================= VOLUNTEER FORM SECTION ================= */

.volunteer-form-section {
  width: 92%;

  margin: 0 auto 80px;
  margin-bottom: 130px;

  display: grid;
  grid-template-columns: 42% 58%;
  gap: 42px;

  align-items: start;
}

/* ================= IMAGE ================= */

.volunteer-form-image {
  width: 100%;
  height: auto;

  display: block;
  margin-top: 10px;
}

/* ================= FORM ================= */

.volunteer-form {
  padding-top: 6px;
}

/* ================= TOP GRID ================= */

.volunteer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  column-gap: 56px;
  row-gap: 18px;
}

.volunteer-form-grid label {
  display: flex;
  flex-direction: column;

  gap: 3px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--navy);
}

.volunteer-form-grid input {
  width: 100%;
  height: 20px;

  border: 0;
  border-bottom: 2px solid var(--navy);

  background: transparent;
  outline: none;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;

  color: var(--navy);
}

/* ================= DIVIDER ================= 

.volunteer-divider-wrap {
  margin: 38px 0 26px;
}

.volunteer-divider {
  width: 100%;
  height: auto;

  display: block;
}
  */

/* ================= INTERESTS ================= */

.volunteer-interest-section h3 {
  margin: 30px 0 16px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--navy);
}

.volunteer-interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  column-gap: 48px;
  row-gap: 12px;

  margin-bottom: 16px;
}

.volunteer-interest-grid label {
  display: flex;
  align-items: center;
  gap: 12px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: var(--navy);
}

/* ================= CHECKBOXES ================= */

.volunteer-form input[type="checkbox"] {
  width: 18px;
  height: 18px;

  accent-color: var(--red);

  flex: 0 0 auto;
}

/* ================= OTHER ROW ================= */

.volunteer-other-row {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 6px;
}

.volunteer-other-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: var(--navy);
}

.volunteer-other-input {
  flex: 1;

  height: 38px;

  border: 0;
  border-bottom: 2px solid var(--navy);

  background: transparent;
  outline: none;
}

/* ================= CONSENT ================= */

.volunteer-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 34px 0 28px;

  max-width: 92%;

  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 9px !important;
  line-height: 1.35 !important;
  text-transform: none !important;

  color: rgba(23,41,79,0.82);
}

.volunteer-consent input {
  flex: 0 0 auto;
}

/* ================= SUBMIT ================= */

.volunteer-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;

  width: 220px;
  height: 50px;

  border: 0;
  border-radius: 10px;

  background: var(--red);
  color: var(--white);

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.volunteer-submit-btn:hover {
  transform: translateY(-2px);
  background: #c6422f;
}




/* ================= THANK YOU PAGE ================= */

.thank-you-page {
  display: flex;
  justify-content: center;

  padding-top: 56px;
  padding-bottom: 90px;
}

/* ================= THANK YOU SECTION ================= */

.thank-you-section {
  width: 100%;
  max-width: 760px;

  text-align: center;
}

/* ================= TITLE ================= */

.thank-you-title {
  margin-bottom: 28px;
}

/* ================= MESSAGE ================= */

.thank-you-message {
  margin: 0 0 22px;
   text-align: left;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.03em;

  color: var(--red);
}

/* ================= BODY COPY ================= */

.thank-you-copy {
  margin: 0 0 22px;
  text-align: left;


  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;

  color: var(--navy);
}

/* ================= NEXT STEPS ================= */

.thank-you-next {
  margin-top: 52px;
  padding-top: 34px;
  text-align: left;

  border-top: 1px solid rgba(23,41,79,0.12);
}

.thank-you-next h2 {
  margin: 0 0 16px;

  font-family:
    "DINCondensedCustom",
    "Arial Narrow",
    Arial,
    sans-serif;

  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--navy);
}

.thank-you-next p {
  margin: 0 0 18px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;

  color: var(--navy);
}

/* ================= BUTTON ================= */

.thank-you-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 28px;

  width: 220px;
  height: 48px;

  border-radius: 10px;

  background: var(--red);
  color: var(--white);

  text-decoration: none;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.thank-you-home-btn:hover {
  transform: translateY(-2px);
  background: #c6422f;
}

/* ================= MOBILE ================= */

@media (max-width: 760px) {

  .thank-you-message {
    font-size: 34px;
  }

  .thank-you-copy,
  .thank-you-next p {
    font-size: 16px;
  }

}




/* ================= MOBILE ================= */

@media (max-width: 860px) {

  .volunteer-form-section {
    grid-template-columns: 1fr;
  }

  .volunteer-form-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-interest-grid {
    grid-template-columns: 1fr;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 760px) {

  .volunteer-page-title {
    font-size: 64px;
  }

  .volunteer-areas-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .volunteer-area-card h2 {
    font-size: 30px;
  }

}





/* ================= MOBILE ================= */

@media (max-width: 760px) {

  @media (max-width: 760px) {

  .interior-footer .footer-contact-grid {
    border-bottom: none;
  }

  .interior-footer .footer-contact-card {
    border-left: 0 !important;
    border-bottom: 1px solid rgba(23,41,79,0.28);

    padding-bottom: 34px;
    margin-bottom: 34px;
  }

  .interior-footer .footer-contact-card:last-child {
    border-bottom: none;

    padding-bottom: 0;
    margin-bottom: 0;
  }

}

  .about-section-tagline {
    text-align: center;
  }

  .better-starts-section {
    display: none;
  }

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

  .volunteer-cta h2 {
    font-size: 34px;
  }

  
  

  .main-nav .donate-btn {
    display: none;
  }

  .mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-donate-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 90px;
  height: 35px;

  border-radius: 16px;

  background: var(--red);
  color: var(--white);

  text-decoration: none;

  font-family:
    "MontserratCustom",
    Arial,
    sans-serif;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mobile-nav-toggle {
  background: transparent;
  border: 0;

  color: var(--navy);

  font-size: 48px;
}


}