.volunteer-page {
	padding: clamp(40px, 6vw, 80px) 16px;
	background: var(--navy); /* page background stays navy from body/site */
}

.volunteer-wrap {
    margin: 0 auto;
    max-width: 920px;
}

.volunteer-header {
    margin-bottom: 22px;
    text-align: center;
}

.volunteer-title {
    margin: 0 0 8px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: .5px;
}

.volunteer-subtitle {
    margin: 0 auto;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    max-width: 60ch;
}

.volunteer-form {
    padding: clamp(18px, 3vw, 28px);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    backdrop-filter: blur(6px);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field label {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
    display: block;
}

.field input {
    padding: 12px 12px;
    background: rgba(0, 0, 0, .18);
    color: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    width: 100%;
    outline: none;
}

.field input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.field input:focus {
    border-color: rgba(212,175,55,.85); /* gold-ish */
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}

.hint {
    margin-top: 6px;
    color: rgba(255, 255, 255, .7);
    font-size: 12.5px;
    display: block;
}

.fieldset {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.fieldset legend {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
}

.checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.check {
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.4;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #d4af37; /* gold */
}

.error {
    margin: 10px 0 0;
    color: #ffd6d6;
    font-weight: 600;
    min-height: 1.2em;
}

/*.volunteer-submit{
  margin-top: 18px;
  width: 100%;
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 14px;
}*/

.volunteer-btn {
	margin-top: 18px;
    padding: 0.95rem 1.2rem;
    font-weight: 800;
    border-radius: 10px;
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
	width: 100%;
    transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
    cursor: pointer;
}

/* Default state */
.volunteer-btn.primary {
    background: var(--white);
    color: var(--navy);
}

/* Hover / focus-visible */
.volunteer-btn.primary:hover,
.volunteer-btn.primary:focus-visible {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* Active (click) */
.volunteer-btn.primary:active {
    transform: translateY(0);
}


.fineprint {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 700px) {
    .volunteer-grid {
        grid-template-columns: 1fr;
    }
    .checks {
        grid-template-columns: 1fr;
    }
}