.volunteer-page {
  background: linear-gradient(180deg, #f6fbfc 0%, #fff 44%, #f8fbfc 100%);
}

.volunteer-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(7, 59, 76, .08);
  background:
    radial-gradient(circle at 82% 16%, rgba(123, 44, 191, .12), transparent 18rem),
    radial-gradient(circle at 22% 18%, rgba(247, 201, 72, .18), transparent 20rem),
    linear-gradient(135deg, #fff 0%, #eef8fa 100%);
}

.volunteer-hero-grid,
.volunteer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.volunteer-hero h1 {
  max-width: 780px;
  margin: .25rem 0 .75rem;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 4.85rem);
  line-height: .98;
  letter-spacing: -.07em;
}

.volunteer-hero p,
.volunteer-copy p {
  max-width: 720px;
  color: #4f6872;
  line-height: 1.68;
}

.volunteer-alert {
  max-width: 760px;
  margin-top: 1.15rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(247, 201, 72, .48);
  border-radius: 18px;
  color: #4f3d05;
  background: rgba(255, 247, 214, .86);
}

.volunteer-card,
.volunteer-form {
  border: 1px solid rgba(220, 232, 236, .95);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 48px rgba(7, 59, 76, .09);
}

.volunteer-card {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.volunteer-card span {
  display: block;
  margin-bottom: .75rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.volunteer-card ul {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.volunteer-card li {
  padding: .72rem .85rem;
  border-radius: 16px;
  color: var(--navy);
  background: #f2f8f9;
  font-weight: 800;
}

.volunteer-content {
  padding: clamp(2.2rem, 6vw, 4.5rem) 0;
}

.volunteer-content .volunteer-layout {
  grid-template-columns: minmax(260px, .42fr) minmax(560px, 1fr);
  align-items: start;
}

.volunteer-copy h2 {
  max-width: 620px;
  margin: .25rem 0 .75rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.volunteer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem .9rem;
  padding: clamp(.95rem, 2.5vw, 1.25rem);
}

.volunteer-field {
  display: grid;
  gap: .3rem;
}

fieldset.volunteer-field {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.volunteer-field.full,
.volunteer-consent.full,
.volunteer-actions.full {
  grid-column: 1 / -1;
}

.volunteer-field label,
.volunteer-field legend {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
}

.volunteer-field legend {
  margin-bottom: .45rem;
}

.volunteer-field input:not([type="checkbox"]),
.volunteer-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5e2e6;
  border-radius: 14px;
  padding: .68rem .82rem;
  color: var(--navy);
  background: #fff;
  font: inherit;
}

.volunteer-field textarea {
  resize: vertical;
  min-height: 98px;
}

.volunteer-field input:not([type="checkbox"]):focus,
.volunteer-field textarea:focus {
  outline: 3px solid rgba(11, 79, 108, .13);
  border-color: var(--blue);
}

.volunteer-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.volunteer-checks label,
.volunteer-consent {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .62rem .72rem;
  border-radius: 16px;
  color: #34535f;
  background: #f2f8f9;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.25;
}

.volunteer-checks input,
.volunteer-consent input {
  width: auto;
  min-width: 14px;
  height: 14px;
  margin: 0;
  flex: 0 0 auto;
}

.volunteer-checks label {
  min-width: 0;
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
}

.volunteer-checks span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.volunteer-consent {
  align-items: flex-start;
  border-radius: 18px;
  line-height: 1.38;
  white-space: normal;
}

.volunteer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.volunteer-actions button {
  border: 0;
}

.volunteer-message {
  min-height: 1.3em;
  margin: 0;
  color: #4f6872;
  font-size: .9rem;
}

.volunteer-message.ok {
  color: #087443;
}

.volunteer-message.error {
  color: #a83b35;
}

.volunteer-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 860px) {
  .volunteer-hero-grid,
  .volunteer-layout {
    grid-template-columns: 1fr;
  }

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

  .volunteer-copy {
    max-width: 720px;
  }

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

@media (max-width: 620px) {
  .volunteer-hero {
    padding: 1.65rem 0 1.9rem;
  }

  .volunteer-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1;
    letter-spacing: -.06em;
  }

  .volunteer-hero p,
  .volunteer-copy p {
    line-height: 1.55;
  }

  .volunteer-alert {
    padding: .82rem .9rem;
    border-radius: 16px;
    font-size: .92rem;
    line-height: 1.45;
  }

  .volunteer-card {
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(7, 59, 76, .07);
  }

  .volunteer-card ul {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .volunteer-card li {
    padding: .62rem .75rem;
    border-radius: 14px;
    font-size: .9rem;
  }

  .volunteer-content {
    padding: 1.75rem 0 2.5rem;
  }

  .volunteer-copy h2 {
    font-size: clamp(1.55rem, 9vw, 2.15rem);
  }

  .volunteer-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
    gap: .65rem;
    padding: .82rem;
    box-shadow: 0 14px 34px rgba(7, 59, 76, .07);
  }

  .volunteer-field input:not([type="checkbox"]),
  .volunteer-field textarea {
    padding: .68rem .76rem;
    border-radius: 13px;
  }

  .volunteer-field textarea {
    min-height: 86px;
  }

  .volunteer-checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: .48rem;
  }

  .volunteer-checks label {
    width: 100%;
    justify-content: flex-start;
    border-radius: 15px;
    padding: .72rem .78rem;
    font-size: .9rem;
    line-height: 1.25;
    white-space: normal;
  }

  .volunteer-checks input {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }

  .volunteer-actions {
    display: grid;
  }

  .volunteer-actions button {
    width: 100%;
  }
}
