/* ==========================================================================
   The Hmong Inc. — Volunteer, v1 draft
   The site's one FORM page: a pitch column beside the interest form. The form
   speaks the system's existing form language (.field / .form-row from
   styles.css); the only new pieces are the two-column layout and the checkbox
   rows. Light register, shared type scale. Extends styles.css.
   ========================================================================== */

.crumb {
  font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--secondary); display: flex; gap: .55rem; align-items: center; margin: 0 0 1.6rem;
}
.crumb a { color: var(--secondary); text-decoration: none; }
.crumb a:hover { color: var(--green-ink); }
.crumb span { color: var(--hair-strong); }
.crumb b { font-variation-settings: "wdth" 100, "wght" 700; color: var(--ink); }

.volhead { padding-block: clamp(52px, 7vw, 104px) clamp(30px, 3.5vw, 48px); }
.volhead .d1 { font-size: clamp(2.75rem, 6.4vw, 5.4rem); }
.volhead__lede { color: var(--secondary); max-width: 44ch; margin-top: 1.4rem; }

/* --- the split: pitch | form ---------------------------------------------- */
.vol { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(34px, 5vw, 84px); align-items: start; }
@media (max-width: 940px) { .vol { grid-template-columns: 1fr; gap: 2.4rem; } }

.vol__photo { margin: 0 0 2rem; }
.vol__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; }
.vol__photo figcaption { margin: .8rem 0 0; font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .78rem; letter-spacing: .02em; color: var(--secondary); }

.vol__roles h3 { font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 700;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-ink); margin: 0 0 1rem; }
.vol__roles ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.vol__roles li { position: relative; padding-left: 1.2rem; color: var(--secondary); font-size: 1.02rem; line-height: 1.5; }
.vol__roles li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.vol__roles li b { color: var(--ink); font-weight: 600; }

/* --- the form -------------------------------------------------------------- */
.volform {
  background: var(--card); border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
}
.volform h2 { margin: 0 0 1.4rem; }
.checkset { margin: 1.1rem 0 .2rem; }
.checkset legend { font-family: var(--ui); font-variation-settings: "wdth" 100, "wght" 700;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--secondary); margin-bottom: .7rem; padding: 0; }
.checkset { border: 0; padding: 0; }
.check { display: flex; align-items: flex-start; gap: .7rem; padding-block: .45rem; cursor: pointer; }
.check input {
  appearance: none; flex: none; width: 20px; height: 20px; margin-top: .1rem;
  border: 2px solid var(--hair-strong); border-radius: 4px; background: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .15s ease, border-color .15s ease;
}
.check input:checked { background: var(--green); border-color: var(--green); }
.check input:checked::after { content: ""; width: 10px; height: 6px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg) translateY(-1px); }
.check input:focus-visible { outline: 3px solid var(--green-ink); outline-offset: 2px; }
.check span { font-size: 1rem; color: var(--ink); line-height: 1.45; }
.check small { display: block; color: var(--secondary); font-size: .88rem; margin-top: .1rem; }

.volform textarea {
  font: inherit; font-size: 1rem; padding: .82em .9em; border: 1px solid var(--hair-strong);
  border-radius: 4px; background: #fff; color: var(--ink); width: 100%; min-height: 110px; resize: vertical;
}
.volform textarea:focus { border-color: var(--green); outline: 2px solid rgba(7,118,65,.28); outline-offset: 1px; }

/* hero texture scale: `cover` stretches the file across the full hero width,
   which renders this mask's hooks about half the size of the motifs on the
   other pages. A fixed tile width sets them to match. */
.volhead.sec--texture::before { background-size: 2700px auto; }
