:root {
  color-scheme: light;
  --ink: #17313a;
  --muted: #5a6f73;
  --paper: #fffdf8;
  --surface: #f5efe6;
  --surface-strong: #eadfce;
  --line: #d9cdbb;
  --teal: #0d6f73;
  --teal-dark: #085457;
  --blue: #2f5f8f;
  --coral: #b75d4a;
  --gold: #b8842e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 49, 58, 0.12);
  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;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  width: 100%;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  max-width: 100vw;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.segmented {
  display: inline-flex;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.segment,
.menu-button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.segment {
  min-width: 42px;
  min-height: 36px;
}

.segment.is-active {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(23, 49, 58, 0.12);
}

.menu-button {
  min-height: 40px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.site-nav {
  display: flex;
  gap: 0.25rem;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--surface);
  color: var(--ink);
}

main {
  max-width: 100vw;
  overflow: hidden;
}

.hero {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 1120px;
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 2rem 1rem 1.25rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 13ch;
  font-size: clamp(2.05rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 5.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

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

.button.primary:hover,
.button.primary:focus {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-band {
  display: grid;
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 1.25rem;
}

.status-band > div {
  min-height: 74px;
  padding: 0.85rem;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
}

.status-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-grid,
.download-grid {
  display: grid;
  gap: 0.9rem;
}

.benefit-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 49, 58, 0.08);
}

.benefit-card {
  padding: 1rem;
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 0.85rem;
  place-items: center;
  border-radius: 6px;
  background: #e5f2f0;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.timeline-list {
  display: grid;
  gap: 0.75rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline-item > span {
  width: 14px;
  height: 14px;
  margin-top: 0.28rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(47, 95, 143, 0.12);
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.volunteer-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.form-grid,
.checkbox-grid {
  display: grid;
  gap: 0.85rem;
}

label,
fieldset {
  display: grid;
  gap: 0.35rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 0 0.75rem;
}

textarea {
  resize: vertical;
  padding: 0.7rem 0.75rem;
}

.checkbox-grid label,
.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.55rem;
}

.checkbox-grid input,
.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.18rem;
  accent-color: var(--teal);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.question-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.question-list li {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
}

.download-card {
  display: grid;
  gap: 0.25rem;
  min-height: 94px;
  padding: 1rem;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

button.download-card {
  cursor: pointer;
}

.download-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  gap: 0.25rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (min-width: 720px) {
  .menu-button {
    display: none;
  }

  .site-nav {
    justify-content: flex-end;
    padding-top: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    padding-top: 3rem;
  }

  .status-band,
  .benefit-grid,
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

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

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

  .hero,
  .hero-copy,
  .section,
  .section-heading,
  .benefit-card,
  .timeline-item,
  .volunteer-form,
  .download-card {
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 10vw, 2.75rem);
  }

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

@media print {
  .site-header,
  .hero-actions,
  .form-actions,
  .download-grid {
    display: none;
  }

  body {
    background: var(--white);
  }

  .hero,
  .section {
    min-height: 0;
    padding: 1rem 0;
  }

  .benefit-card,
  .timeline-item,
  .volunteer-form,
  .question-list li {
    box-shadow: none;
  }
}
