:root {
  --teal: #0c7074;
  --teal-dark: #074f53;
  --teal-soft: #e8f5f5;
  --purple: #9f55bc;
  --purple-soft: #f0e2f5;
  --yellow: #f6b333;
  --ink: #223336;
  --muted: #607175;
  --paper: #ffffff;
  --wash: #f8fbfb;
  --line: #d8e7e8;
  --shadow: 0 18px 40px rgba(18, 58, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--teal-dark);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  max-width: 170px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  box-shadow: 0 10px 24px rgba(10, 111, 115, 0.2);
}

.button:hover {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.nav-donate {
  color: #fff !important;
  padding-inline: 18px !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--teal-dark);
}

.hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 79, 83, 0.96), rgba(12, 112, 116, 0.9)),
    linear-gradient(45deg, var(--teal-dark), var(--purple));
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 48px;
  align-items: center;
  padding: 78px 0;
}

.hero-copy {
  max-width: 700px;
}

.hero-media {
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(4, 46, 50, 0.25);
}

.hero-media img {
  width: min(420px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 21px;
  line-height: 1.25;
}

.hero-lede,
.lede {
  color: var(--muted);
  font-size: 20px;
}

.hero-lede {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.92);
}

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

.section {
  padding: 74px 0;
}

.intro-section {
  text-align: center;
}

.intro-section .lede {
  margin-bottom: 0;
}

.band {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.distribution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: start;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.schedule-column {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--purple);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.schedule-column h3 {
  margin-bottom: 4px;
}

.time {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-weight: 900;
}

.schedule-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.distribution-dates {
  display: grid;
  gap: 10px;
}

.distribution-date {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.distribution-date.is-canceled .distribution-date-label {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.distribution-date.is-empty {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.distribution-canceled-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  color: #fff;
  background: var(--purple);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.distribution-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.distribution-status.is-visible {
  display: block;
}

.flyer {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flyer img {
  width: 100%;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.feature,
.support-item,
.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature {
  border-top: 5px solid var(--yellow);
}

.feature p,
.support-item p,
.faq-item p {
  margin-bottom: 0;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 62%, #7f4996);
}

.page-hero .container {
  padding: 84px 0 78px;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.page-hero .actions {
  margin-top: 28px;
}

.faq-layout {
  display: grid;
  gap: 42px;
}

.faq-group {
  display: grid;
  gap: 14px;
}

.faq-group h2 {
  margin-bottom: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 3vw, 34px);
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 32px;
  align-items: center;
  padding: 28px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-note .actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.partner-note .button.secondary {
  border-color: var(--line);
}

.faq-contact p,
.partner-note p {
  margin-bottom: 0;
}

.partner-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.85);
}

.partner-support-layout {
  display: grid;
  gap: 30px;
}

.partner-intro {
  margin-bottom: 0;
}

.partner-intro .lede {
  max-width: 840px;
}

.stronger-together {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 79, 83, 0.97), rgba(12, 112, 116, 0.9) 58%, rgba(127, 73, 150, 0.92)),
    var(--teal-dark);
}

.stronger-together-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 30px 42px;
  align-items: start;
}

.stronger-copy h2,
.stronger-copy h3,
.stronger-points h3,
.stronger-cta h3 {
  color: #fff;
}

.stronger-copy h2 {
  max-width: 560px;
}

.stronger-copy p:not(.eyebrow),
.stronger-points p,
.stronger-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.stronger-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: 20px;
}

.stronger-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stronger-points article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 5px solid var(--yellow);
  border-radius: 8px;
}

.stronger-points h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.stronger-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.stronger-cta h3 {
  margin-bottom: 4px;
}

.stronger-cta .button {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(246, 179, 51, 0.2);
}

.stronger-cta .button:hover {
  background: #ffd06c;
  border-color: #ffd06c;
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: start;
  padding: 36px 16px;
  overflow-y: auto;
  background: rgba(7, 79, 83, 0.66);
}

.modal-backdrop[hidden] {
  display: none;
}

.partner-modal {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(4, 46, 50, 0.32);
}

.partner-modal:focus {
  outline: none;
}

.partner-modal-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.partner-modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 38px);
}

.modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.modal-lede {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.partner-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 900;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.checkbox-field input:focus-visible {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 112, 116, 0.18);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 14px;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-state="success"] {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.form-status[data-state="error"] {
  color: #6d3150;
  background: var(--purple-soft);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-actions .button.secondary {
  border-color: var(--line);
}

.honeypot-field,
.submission-frame {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.support-item {
  border-top: 5px solid var(--purple);
}

.support-item.wide {
  grid-column: 1 / -1;
}

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

.needs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.needs-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.needs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 24px;
  align-items: start;
}

.needs-status {
  display: none;
  margin-bottom: 18px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.needs-status.is-visible {
  display: block;
}

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

.need-card,
.donor-guide,
.empty-state {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.need-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-top: 5px solid var(--yellow);
}

.need-card[data-urgency="critical"] {
  border-top-color: var(--purple);
}

.need-card[data-urgency="high"] {
  border-top-color: var(--yellow);
}

.need-card[data-urgency="needed"] {
  border-top-color: var(--teal);
}

.need-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.need-card h3 {
  margin-bottom: 4px;
  font-size: 25px;
}

.need-category {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 900;
}

.urgency-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.urgency-badge.critical {
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

.urgency-badge.high {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.progress-track {
  overflow: hidden;
  height: 12px;
  background: var(--teal-soft);
  border-radius: 999px;
}

.progress-fill {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: inherit;
}

.need-copy {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-examples {
  padding: 16px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-examples h4 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 16px;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.brand-chip {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.brand-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.donor-guide {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-top: 5px solid var(--purple);
}

.donor-guide h2 {
  font-size: 30px;
}

.guide-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  padding-left: 18px;
  color: var(--muted);
  border-left: 4px solid var(--yellow);
}

.empty-state {
  display: none;
  padding: 28px;
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
}

.updated-line {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 900;
}

.footer {
  background: var(--purple-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 34px;
  align-items: center;
  padding: 52px 0;
}

.map {
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.address p {
  margin-bottom: 4px;
}

.footer-contact {
  margin-top: 18px;
}

.footer-bottom {
  padding: 18px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .distribution-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    max-width: 520px;
  }

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

  .faq-contact,
  .partner-note,
  .stronger-together-grid {
    grid-template-columns: 1fr;
  }

  .stronger-points {
    grid-template-columns: 1fr;
  }

  .stronger-cta {
    grid-template-columns: 1fr;
  }

  .needs-layout {
    grid-template-columns: 1fr;
  }

  .donor-guide {
    position: static;
  }
}

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

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 58px;
  }

  .brand span {
    max-width: 132px;
  }

  .hero-grid,
  .section,
  .page-hero .container {
    padding-block: 52px;
  }

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

  .hero-media {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .partner-modal {
    padding: 22px;
  }

  .form-grid,
  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .need-card-header {
    display: grid;
  }

  .urgency-badge {
    width: fit-content;
  }
}
