/* ================================================================
   VOLUNTEER PAGE — volunteer.css
   Depends on inner.css for base tokens and nav/footer styles.
================================================================ */
:root {
  --max:       1100px;
  --gutter:    clamp(24px, 5vw, 64px);
  --section-v: clamp(72px, 9vw, 128px);
}

/* ── HERO ── */
.ngv-hero {
  background: var(--blue900);
  padding: clamp(96px, 13vw, 160px) var(--gutter) var(--section-v);
  position: relative;
  overflow: hidden;
}

.ngv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ngv-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

.ngv-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ngv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.ngv-eyebrow::before {
  content: "";
  width: 28px; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

.ngv-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
}
.ngv-hero-title em {
  font-style: normal;
  color: var(--orange);
}

.ngv-hero-sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 36px;
}

.ngv-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s;
}
.ngv-hero-cta:hover { opacity: .85; }

.ngv-hero-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.ngv-stat-block {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}

.ngv-stat-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.ngv-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ── SECTION SHARED ── */
.ngv-section {
  padding: var(--section-v) var(--gutter);
}
.ngv-section--alt { background: #f4f6f9; }
.ngv-section--dark {
  background: var(--blue900);
  color: #fff;
}

.ngv-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.ngv-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.ngv-label::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.ngv-label--light { color: rgba(255,255,255,.5); }
.ngv-label--light::before { background: rgba(255,255,255,.3); }

.ngv-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--blue900);
  margin-bottom: 48px;
}
.ngv-title--light { color: #fff; }

/* ── ETHOS — 3 principle statements ── */
.ngv-ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ngv-ethos-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  padding: 48px 40px;
  position: relative;
  border-radius: 4px;
}
.ngv-ethos-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.ngv-ethos-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ngv-ethos-stmt {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--blue900);
  margin-bottom: 16px;
}

.ngv-ethos-body {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

/* ── WHAT YOU DO — horizontal role cards ── */
.ngv-roles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ngv-role {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 36px;
  align-items: start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px 44px;
  border-radius: 4px;
  transition: background .15s;
}
.ngv-role:hover { background: rgba(255,255,255,.09); }

.ngv-role-icon {
  width: 56px; height: 56px;
  background: color-mix(in srgb, var(--orange) 15%, transparent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ngv-role-icon svg { color: var(--orange); }

.ngv-role-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.ngv-role-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
}

/* ── PULL QUOTE ── */
.ngv-quote {
  background: var(--blue900);
  padding: var(--section-v) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ngv-quote::before {
  content: "「」";
  position: absolute;
  font-size: 300px;
  font-family: var(--display);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  letter-spacing: -40px;
}
.ngv-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ngv-quote-text {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.55;
  color: #fff;
  margin-bottom: 24px;
}
.ngv-quote-text em {
  font-style: normal;
  color: var(--orange);
}
.ngv-quote-source {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── GAIN — what volunteers get ── */
.ngv-gain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ngv-gain-card {
  border-left: 3px solid var(--orange);
  padding: 40px 40px 40px 44px;
  background: #fff;
  border-radius: 0 4px 4px 0;
}

.ngv-gain-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue900);
  margin-bottom: 8px;
}

.ngv-gain-body {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

/* ── FLOURISH CHART (nested inside the "gain" section) ── */
.ngv-flourish {
  margin-top: var(--section-v);
}
.ngv-flourish-title {
  margin-bottom: 32px;
}
.ngv-flourish-frame iframe { display: block; }

/* ── CTA CLOSING ── */
.ngv-closing {
  background: var(--orange);
  padding: var(--section-v) var(--gutter);
  text-align: center;
}
.ngv-closing-inner { max-width: 680px; margin: 0 auto; }

.ngv-closing-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.ngv-closing-body {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.ngv-closing-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue900);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s;
}
.ngv-closing-email:hover { opacity: .85; }

.ngv-closing-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ngv-hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .ngv-ethos-grid      { grid-template-columns: 1fr; }
  .ngv-gain-grid       { grid-template-columns: 1fr; }
  .ngv-role            { grid-template-columns: 1fr; gap: 16px; }
  .ngv-hero-stat-stack { flex-direction: row; flex-wrap: wrap; }
  .ngv-stat-block      { flex: 1 1 40%; }
}
