/* volunteering.css — Globally Volunteering
 * Isolated, namespaced (.vol-*). Warm, human variant of the Globally system:
 * cream / off-white / deep navy, faint pastel washes, Globally orange accent.
 * All tokens scoped under .vol so nothing leaks into the rest of the app.
 */

/* Design tokens live on both the app root (.vol) and the mega menu (.vol-mega),
   which renders inside the site header, outside the app root. */
.vol, .vol-mega {
  /* Surfaces — warm ivory / botanical (matches approved reference) */
  --vol-page:      #FAF7EF;   /* warm ivory page */
  --vol-surface:   #FFFDF9;   /* white panel */
  --vol-surface-2: #F5F8EF;   /* very pale green inset */
  --vol-wash:      #FBF9F1;

  /* Ink */
  --vol-ink:    #1D211D;      /* near-black text */
  --vol-ink-2:  #2C302B;
  --vol-body:   #3C403A;      /* body */
  --vol-muted:  #6F736C;      /* muted text */
  --vol-faint:  #A29C90;

  /* Lines */
  --vol-border:   #E8E1D3;
  --vol-border-2: #EFE9DC;
  --vol-line:     rgba(29,33,29,0.08);

  /* Green accent system (approved reference values) */
  --vol-green:       #1C7852;   /* primary green — accents, links, italic headline */
  --vol-green-btn:   #16543B;   /* filled buttons (AA-safe with white) */
  --vol-green-d:     #123F32;   /* dark green — headings, hover, small text accents */
  --vol-soft-green:  #86B890;   /* soft green */
  --vol-pale-green:  #EAF4E8;   /* pale green */
  --vol-mint:        #F5F8EF;   /* very pale green */
  /* Legacy aliases repointed so existing components retheme cleanly */
  --vol-navy:    #16543B;
  --vol-navy-d:  #123F32;
  --vol-orange:  #F4A13B;     /* warm orange accent */
  --vol-orange-s:#F4A13B;
  --vol-gold:    #E0A458;

  /* Faint tints for cause/status identity */
  --vol-tint-blue:  #E7ECF2;
  --vol-tint-teal:  #E4F0E2;
  --vol-tint-peach: #F8E7E2;
  --vol-tint-gold:  #F6ECD8;

  /* Less-rounded principle: mix square + slightly rounded */
  --vol-radius:   8px;
  --vol-radius-s: 6px;
  --vol-radius-l: 10px;
  --vol-shadow:   0 1px 2px rgba(23,23,20,0.04), 0 8px 24px rgba(23,23,20,0.05);
  --vol-shadow-l: 0 18px 48px rgba(23,23,20,0.13);

  --vol-serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --vol-sans:  "Inter", "Figtree", system-ui, -apple-system, sans-serif;

  color: var(--vol-body);
  font-family: var(--vol-sans);
  -webkit-font-smoothing: antialiased;
}
.vol { background: var(--vol-page); min-height: 100vh; }
.vol-mega { font-family: var(--vol-sans); }

.vol *, .vol *::before, .vol *::after,
.vol-mega *, .vol-mega *::before, .vol-mega *::after { box-sizing: border-box; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.vol-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.vol-wrap--wide { max-width: 1320px; }
.vol-wrap--narrow { max-width: 820px; }
.vol-section { padding: 56px 0; }
.vol-section--tight { padding: 36px 0; }
.vol-section--pad-b0 { padding-bottom: 0; }

.vol-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--vol-green-d); margin: 0 0 12px;
}
.vol-h1 { font-family: var(--vol-serif); font-weight: 600; font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04; letter-spacing: -0.02em; color: var(--vol-ink); margin: 0; }
.vol-h2 { font-family: var(--vol-serif); font-weight: 600; font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.1; letter-spacing: -0.015em; color: var(--vol-ink); margin: 0 0 10px; }
.vol-h3 { font-family: var(--vol-serif); font-weight: 600; font-size: 20px; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--vol-ink); margin: 0; }
.vol-lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55; color: var(--vol-body);
  max-width: 60ch; margin: 0; }
.vol-sub { font-size: 15px; line-height: 1.55; color: var(--vol-muted); margin: 6px 0 0; }
.vol-muted { color: var(--vol-muted); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.vol-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; min-height: 44px;
  border-radius: 6px; border: 1px solid var(--vol-border); background: var(--vol-surface);
  color: var(--vol-ink); font-family: var(--vol-sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  text-decoration: none; }
.vol-btn:hover { border-color: var(--vol-faint); transform: translateY(-1px); }
.vol-btn--primary { background: var(--vol-navy); border-color: var(--vol-navy); color: #fff; }
.vol-btn--primary:hover { background: var(--vol-navy-d); border-color: var(--vol-navy-d); }
.vol-btn--accent { background: var(--vol-orange); border-color: var(--vol-orange); color: #fff; }
.vol-btn--accent:hover { background: #b5481a; border-color: #b5481a; }
.vol-btn--ghost { background: transparent; border-color: transparent; color: var(--vol-green-d); padding-left: 6px; padding-right: 6px; min-height: 0; }
.vol-btn--ghost:hover { transform: none; color: var(--vol-green); }
.vol-btn--sm { padding: 8px 14px; font-size: 13px; min-height: 0; }
.vol-btn--block { width: 100%; justify-content: center; }
.vol-btn .vol-arrow { transition: transform .16s ease; }
.vol-btn:hover .vol-arrow { transform: translateX(4px); }
.vol-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.vol-linkback { display: inline-flex; align-items: center; gap: 7px; background: none; border: none;
  color: var(--vol-muted); font-family: var(--vol-sans); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; }
.vol-linkback:hover { color: var(--vol-ink); }

/* ── Pills / tags / chips ───────────────────────────────────────────────── */
.vol-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; background: var(--vol-surface-2); color: var(--vol-body); border: 1px solid var(--vol-border-2); }
.vol-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.vol-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600; background: var(--vol-surface-2); color: var(--vol-body);
  border: 1px solid var(--vol-border); }
.vol-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; background: var(--vol-surface); color: var(--vol-body);
  border: 1px solid var(--vol-border); cursor: pointer; transition: all .13s ease; user-select: none; }
.vol-chip:hover { border-color: var(--vol-green); color: var(--vol-green-d); }
.vol-chip.is-on { background: var(--vol-green-btn); border-color: var(--vol-green-btn); color: #fff; }
.vol-chip--accent.is-on { background: var(--vol-orange); border-color: var(--vol-orange); }

.vol-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; }
.vol-status--open  { color: #2f7d4d; }
.vol-status--soon  { color: var(--vol-orange); }
.vol-status--closed{ color: var(--vol-muted); }

.vol-demo-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .03em; background: var(--vol-tint-gold); color: #8a5a12; border: 1px solid #ecdcbd; }

/* ── Trust / demo banner ────────────────────────────────────────────────── */
.vol-notice { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px;
  background: var(--vol-tint-gold); border: 1px solid #ecdcbd; border-radius: var(--vol-radius-s);
  color: #7a5410; font-size: 13px; line-height: 1.45; }
.vol-notice svg { flex: none; margin-top: 1px; }

/* ── Cards ──────────────────────────────────────────────────────────────── */
.vol-card { background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: var(--vol-radius); box-shadow: var(--vol-shadow); padding: 18px; }
.vol-card--pad { padding: 22px; }

/* Opportunity card */
.vol-opp { display: flex; flex-direction: column; gap: 12px; text-align: left;
  background: var(--vol-surface); border: 1px solid var(--vol-border); border-radius: var(--vol-radius);
  box-shadow: var(--vol-shadow); padding: 18px; cursor: pointer; width: 100%;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.vol-opp:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(45,38,22,0.13); border-color: var(--vol-border-2); }
.vol-opp:focus-visible { outline: 2px solid var(--vol-navy); outline-offset: 2px; }
.vol-opp-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vol-opp-role { font-family: var(--vol-serif); font-size: 19px; font-weight: 600; color: var(--vol-ink);
  letter-spacing: -0.01em; line-height: 1.2; margin: 0; }
.vol-opp-org { font-size: 13.5px; font-weight: 600; color: var(--vol-body); margin: 0; }
.vol-opp-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; color: var(--vol-muted); }
.vol-opp-meta span { display: inline-flex; align-items: center; gap: 5px; }
.vol-opp-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.vol-opp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--vol-border-2); }
.vol-opp-view { font-size: 13px; font-weight: 700; color: var(--vol-navy); display: inline-flex; align-items: center; gap: 6px; }

.vol-cause-pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.vol-save { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--vol-border); background: var(--vol-surface); cursor: pointer;
  color: var(--vol-muted); transition: all .13s ease; flex: none; }
.vol-save:hover { border-color: var(--vol-orange); color: var(--vol-orange); }
.vol-save.is-saved { background: var(--vol-tint-peach); border-color: #edb9ab; color: var(--vol-orange); }

/* grids */
.vol-grid { display: grid; gap: 16px; }
.vol-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vol-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vol-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Sub-nav (breadcrumb tabs across the ecosystem) ─────────────────────── */
.vol-subnav { position: sticky; top: 0; z-index: 20; background: rgba(244,241,234,0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--vol-line); }
.vol-subnav-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; padding: 10px 0;
  max-width: 1320px; margin: 0 auto; scrollbar-width: none; }
.vol-subnav-inner::-webkit-scrollbar { display: none; }
.vol-subnav-link { flex: none; padding: 8px 13px; border-radius: 6px; background: none; border: none;
  font-family: var(--vol-sans); font-size: 13px; font-weight: 600; color: var(--vol-muted); cursor: pointer;
  white-space: nowrap; transition: all .12s ease; }
.vol-subnav-link:hover { color: var(--vol-ink); background: var(--vol-surface-2); }
.vol-subnav-link.is-on { color: #fff; background: var(--vol-green-btn); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.vol-hero { position: relative; padding: 48px 0 24px; }
.vol-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.vol-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.vol-hero-hint { margin-top: 16px; }
.vol-hero-hint button { background: none; border: none; color: var(--vol-navy); font-weight: 600; font-size: 14px;
  cursor: pointer; font-family: var(--vol-sans); }
.vol-hero-hint button:hover { color: var(--vol-orange); }

/* Hero map composition */
.vol-hero-map { position: relative; background: linear-gradient(155deg, #FCFAF4 0%, #F1ECE0 100%);
  border: 1px solid var(--vol-border); border-radius: var(--vol-radius-l); box-shadow: var(--vol-shadow);
  padding: 18px; min-height: 340px; overflow: hidden; }
.vol-hero-map svg { width: 100%; height: auto; display: block; }
.vol-map-dot { cursor: pointer; }
.vol-map-flag { position: absolute; background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: 10px; box-shadow: var(--vol-shadow); padding: 8px 11px; font-size: 11.5px; max-width: 190px;
  transform: translate(-50%, -120%); }
.vol-map-flag-cat { font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--vol-orange); }
.vol-map-flag-role { font-weight: 600; color: var(--vol-ink); margin-top: 2px; line-height: 1.25; }
.vol-map-flag-loc { color: var(--vol-muted); margin-top: 2px; }

/* ── "What can you give?" interactive ───────────────────────────────────── */
.vol-give { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.vol-give-col { background: var(--vol-surface); border: 1px solid var(--vol-border); border-radius: var(--vol-radius);
  padding: 16px; box-shadow: var(--vol-shadow); }
.vol-give-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--vol-muted); margin: 0 0 12px; }
.vol-give-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.vol-give-preview { margin-top: 20px; }
.vol-preview-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.vol-preview-count { font-size: 13px; color: var(--vol-muted); font-weight: 600; }

/* ── Skill palette / toolkit (SKILL STACK) ──────────────────────────────── */
.vol-skill-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.vol-skill-group { margin-bottom: 18px; }
.vol-skill-group-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--vol-muted); margin: 0 0 10px; }
.vol-skill-palette { display: flex; flex-wrap: wrap; gap: 8px; }
.vol-toolkit { position: sticky; top: 68px; background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: var(--vol-radius); box-shadow: var(--vol-shadow); padding: 18px; }
.vol-toolkit-head { font-family: var(--vol-serif); font-size: 17px; color: var(--vol-ink); margin: 0 0 4px; }
.vol-toolkit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; min-height: 40px; }
.vol-toolkit-empty { color: var(--vol-faint); font-size: 13px; font-style: italic; }
.vol-toolkit-tag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 8px;
  background: var(--vol-mint); color: var(--vol-green-d); border: 1px solid #cbe4d5; font-size: 13px; font-weight: 600;
  animation: vol-pop .22s ease; }
.vol-toolkit-tag button { background: none; border: none; color: inherit; cursor: pointer; padding: 0; display: inline-flex; opacity: .6; }
.vol-toolkit-tag button:hover { opacity: 1; }
@keyframes vol-pop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Time window (TIME REVEAL) ──────────────────────────────────────────── */
.vol-timewindow { background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: var(--vol-radius); box-shadow: var(--vol-shadow); padding: 22px; }
.vol-time-track { display: flex; gap: 6px; margin: 8px 0 6px; }
.vol-time-step { flex: 1; border: 1px solid var(--vol-border); background: var(--vol-surface-2);
  border-radius: var(--vol-radius-s); padding: 12px 8px; text-align: center; cursor: pointer; transition: all .14s ease;
  font-family: var(--vol-sans); }
.vol-time-step:hover { border-color: var(--vol-navy); }
.vol-time-step.is-in { background: var(--vol-pale-green); border-color: #cbe4d5; }
.vol-time-step.is-active { background: var(--vol-green-btn); border-color: var(--vol-green-btn); color: #fff; }
.vol-time-step-label { font-size: 13px; font-weight: 700; color: inherit; }
.vol-time-step.is-active .vol-time-step-num { color: rgba(255,255,255,.7); }
.vol-time-blurb { color: var(--vol-body); font-size: 14px; margin: 12px 0 0; line-height: 1.5; }

/* ── Cause thread (CAUSE THREAD) ────────────────────────────────────────── */
.vol-thread { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin: 18px 0; }
.vol-thread-node { background: var(--vol-surface); border: 1px solid var(--vol-border); border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: 13.5px; color: var(--vol-ink); box-shadow: var(--vol-shadow);
  animation: vol-fade .3s ease both; }
.vol-thread-line { width: 34px; height: 2px; background: repeating-linear-gradient(90deg, var(--vol-faint) 0 5px, transparent 5px 10px);
  flex: none; animation: vol-fade .3s ease both; }
@keyframes vol-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ── Cause explorer ─────────────────────────────────────────────────────── */
.vol-cause-card { text-align: left; border: 1px solid var(--vol-border); border-radius: var(--vol-radius);
  padding: 20px; cursor: pointer; background: var(--vol-surface); box-shadow: var(--vol-shadow);
  transition: transform .15s ease, box-shadow .15s ease; position: relative; overflow: hidden; }
.vol-cause-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(45,38,22,0.13); }
.vol-cause-card-wash { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.vol-cause-card > * { position: relative; }
.vol-cause-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ── Opportunity pack (fan-out) ─────────────────────────────────────────── */
.vol-pack { position: relative; height: 260px; max-width: 520px; margin: 0 auto; cursor: pointer; }
.vol-pack-card { position: absolute; top: 20px; left: 50%; width: 300px; background: var(--vol-surface);
  border: 1px solid var(--vol-border); border-radius: var(--vol-radius); box-shadow: var(--vol-shadow);
  padding: 16px; transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease; transform-origin: bottom center; }
.vol-pack.is-closed .vol-pack-card { transform: translateX(-50%) rotate(0deg) translateY(0); }
.vol-pack.is-closed .vol-pack-card:nth-child(1) { transform: translateX(-50%) translateY(6px) scale(.96); }
.vol-pack.is-closed .vol-pack-card:nth-child(2) { transform: translateX(-50%) translateY(3px) scale(.98); }
.vol-pack.is-open .vol-pack-card:nth-child(1) { transform: translateX(-104%) rotate(-7deg); }
.vol-pack.is-open .vol-pack-card:nth-child(2) { transform: translateX(-50%) rotate(0deg) translateY(-8px); z-index: 2; }
.vol-pack.is-open .vol-pack-card:nth-child(3) { transform: translateX(4%) rotate(7deg); }
.vol-pack-hint { text-align: center; margin-top: 8px; color: var(--vol-muted); font-size: 13px; font-weight: 600; }

/* ── Filters (database) ─────────────────────────────────────────────────── */
.vol-db-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.vol-filters { position: sticky; top: 64px; }
.vol-filter-group { border-bottom: 1px solid var(--vol-border-2); padding: 14px 0; }
.vol-filter-group:first-child { padding-top: 0; }
.vol-filter-label { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--vol-muted); margin: 0 0 10px; }
.vol-filter-opts { display: flex; flex-wrap: wrap; gap: 7px; }
.vol-search { display: flex; align-items: center; gap: 9px; background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: 999px; padding: 10px 16px; }
.vol-search input { border: none; background: none; outline: none; font-family: var(--vol-sans); font-size: 14px;
  color: var(--vol-ink); width: 100%; }
.vol-db-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.vol-db-count { font-size: 13.5px; color: var(--vol-muted); font-weight: 600; }
.vol-active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.vol-active-filter { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 8px;
  background: var(--vol-mint); border: 1px solid #cbe4d5; color: var(--vol-green-d); font-size: 12px; font-weight: 600; }
.vol-active-filter button { background: none; border: none; cursor: pointer; color: inherit; display: inline-flex; padding: 0; opacity: .6; }
.vol-active-filter button:hover { opacity: 1; }

/* Mobile filter button + bottom sheet */
.vol-filter-btn { display: none; }
.vol-sheet-backdrop { position: fixed; inset: 0; background: rgba(20,16,10,.4); z-index: 60; display: flex; align-items: flex-end; }
.vol-sheet { background: var(--vol-page); width: 100%; max-height: 86vh; overflow-y: auto; border-radius: 20px 20px 0 0;
  padding: 8px 20px 24px; animation: vol-sheet-up .25s ease; }
@keyframes vol-sheet-up { from { transform: translateY(100%); } to { transform: none; } }
.vol-sheet-handle { width: 40px; height: 4px; border-radius: 4px; background: var(--vol-faint); margin: 8px auto 14px; }
.vol-sheet-foot { position: sticky; bottom: 0; background: var(--vol-page); padding: 14px 0 0; display: flex; gap: 10px; }

/* ── Opportunity detail ─────────────────────────────────────────────────── */
.vol-detail { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.vol-detail-main > * + * { margin-top: 24px; }
.vol-detail-block h4 { font-family: var(--vol-serif); font-size: 18px; color: var(--vol-ink); margin: 0 0 8px; }
.vol-detail-block p { line-height: 1.6; color: var(--vol-body); margin: 0; }
.vol-detail-side { position: sticky; top: 64px; }
.vol-facts { list-style: none; margin: 0; padding: 0; }
.vol-facts li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--vol-border-2); font-size: 13.5px; }
.vol-facts li:last-child { border-bottom: none; }
.vol-facts-k { color: var(--vol-muted); }
.vol-facts-v { color: var(--vol-ink); font-weight: 600; text-align: right; }
.vol-req-list { margin: 0; padding-left: 18px; color: var(--vol-body); line-height: 1.6; }
.vol-safety { background: var(--vol-tint-peach); border: 1px solid #edc4ba; border-radius: var(--vol-radius-s);
  padding: 12px 14px; font-size: 13px; color: #8a3a24; line-height: 1.5; }

/* ── Country explorer / map ─────────────────────────────────────────────── */
.vol-country-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.vol-worldmap { background: linear-gradient(155deg, #FCFAF4 0%, #F1ECE0 100%); border: 1px solid var(--vol-border);
  border-radius: var(--vol-radius); padding: 12px; box-shadow: var(--vol-shadow); }
.vol-worldmap svg { width: 100%; height: auto; display: block; }
.vol-mk { cursor: pointer; transition: r .15s ease; }
.vol-country-panel { position: sticky; top: 64px; }
.vol-country-list { max-height: 300px; overflow-y: auto; }
.vol-country-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px;
  border-radius: var(--vol-radius-s); cursor: pointer; border: 1px solid transparent; }
.vol-country-row:hover { background: var(--vol-surface-2); border-color: var(--vol-border-2); }
.vol-country-row.is-on { background: var(--vol-surface); border-color: var(--vol-border); box-shadow: var(--vol-shadow); }
.vol-count-bubble { min-width: 24px; height: 22px; padding: 0 7px; border-radius: 8px; background: var(--vol-mint);
  color: var(--vol-green-d); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

/* ── Saved stack ────────────────────────────────────────────────────────── */
.vol-saved-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.vol-empty { text-align: center; padding: 60px 20px; color: var(--vol-muted); }
.vol-empty-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--vol-surface-2); border: 1px solid var(--vol-border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--vol-faint); margin-bottom: 14px; }

/* ── Forms (post opportunity, find, fit) ────────────────────────────────── */
.vol-form { display: grid; gap: 16px; }
.vol-field { display: flex; flex-direction: column; gap: 6px; }
.vol-field label { font-size: 13px; font-weight: 700; color: var(--vol-ink); }
.vol-field .vol-req { color: var(--vol-orange); }
.vol-field input, .vol-field textarea, .vol-field select { font-family: var(--vol-sans); font-size: 14px;
  padding: 11px 14px; border: 1px solid var(--vol-border); border-radius: var(--vol-radius-s); background: var(--vol-surface);
  color: var(--vol-ink); outline: none; transition: border-color .13s ease; width: 100%; }
.vol-field input:focus, .vol-field textarea:focus, .vol-field select:focus { border-color: var(--vol-navy); }
.vol-field textarea { min-height: 96px; resize: vertical; }
.vol-field-hint { font-size: 12px; color: var(--vol-muted); }
.vol-field-err { font-size: 12px; color: var(--vol-orange); font-weight: 600; }
.vol-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vol-form-success { text-align: center; padding: 32px; }

/* Step / diagnostic (fit, find) */
.vol-step-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 22px; }
.vol-step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vol-border); }
.vol-step-dot.is-on { background: var(--vol-navy); }
.vol-step-dot.is-done { background: var(--vol-orange); }
.vol-question { font-family: var(--vol-serif); font-size: 26px; color: var(--vol-ink); text-align: center; margin: 0 0 24px; letter-spacing: -0.01em; }
.vol-optgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; max-width: 620px; margin: 0 auto; }
.vol-opt { padding: 16px; border: 1px solid var(--vol-border); border-radius: var(--vol-radius); background: var(--vol-surface);
  cursor: pointer; text-align: left; font-family: var(--vol-sans); font-size: 14px; font-weight: 600; color: var(--vol-ink);
  transition: all .13s ease; }
.vol-opt:hover { border-color: var(--vol-navy); transform: translateY(-1px); }
.vol-opt.is-on { border-color: var(--vol-navy); background: var(--vol-tint-blue); }

/* ── Mega menu ──────────────────────────────────────────────────────────── */
.glh-mega-wrap { position: relative; display: inline-flex; }
.vol-mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: min(920px, 94vw); background: var(--vol-surface); border: 1px solid var(--vol-border);
  border-radius: 18px; box-shadow: var(--vol-shadow-l); padding: 22px; z-index: 200; display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px; gap: 22px; animation: vol-mega-in .16s ease; text-align: left; }
@keyframes vol-mega-in { from { opacity: 0; transform: translate(-50%, -6px); } to { opacity: 1; transform: translate(-50%, 0); } }
.vol-mega::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 14px; }
.vol-mega-col-label { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--vol-green); margin: 0 0 12px; }
.vol-mega-item { display: block; width: 100%; text-align: left; background: none; border: none; padding: 8px 8px;
  border-radius: var(--vol-radius-s); cursor: pointer; font-family: var(--vol-sans); transition: background .12s ease; }
.vol-mega-item:hover { background: var(--vol-surface-2); }
.vol-mega-item-t { display: block; font-size: 14px; font-weight: 700; color: var(--vol-ink); }
.vol-mega-item-d { display: block; font-size: 12px; color: var(--vol-muted); margin-top: 2px; line-height: 1.35; }
.vol-mega-feature { background: linear-gradient(160deg, var(--vol-pale-green) 0%, var(--vol-mint) 100%); border: 1px solid #d7e8dd;
  border-radius: var(--vol-radius); padding: 16px; }
.vol-mega-feature-h { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--vol-green-d); margin: 0 0 10px; }
.vol-mega-feature-row { margin-bottom: 10px; }
.vol-mega-feature-lab { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--vol-muted); margin: 0 0 5px; }
.vol-mega-mini { display: flex; flex-wrap: wrap; gap: 5px; }
.vol-mega-mini-chip { padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; border: 1px solid var(--vol-border);
  background: var(--vol-surface); color: var(--vol-body); cursor: pointer; }
.vol-mega-mini-chip.is-on { background: var(--vol-navy); border-color: var(--vol-navy); color: #fff; }
.vol-mega-feature-cta { margin-top: 8px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vol-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .vol-detail { grid-template-columns: 1fr; }
  .vol-detail-side { position: static; }
  .vol-country-layout { grid-template-columns: 1fr; }
  .vol-country-panel { position: static; }
  .vol-mega { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .vol-skill-layout { grid-template-columns: 1fr; }
  .vol-toolkit { position: static; }
}
@media (max-width: 860px) {
  .vol-db-layout { grid-template-columns: 1fr; }
  .vol-filters { display: none; }
  .vol-filters.is-open { display: block; }
  .vol-filter-btn { display: inline-flex; }
}
@media (max-width: 768px) {
  .vol-section { padding: 40px 0; }
  .vol-give { grid-template-columns: 1fr; }
  .vol-grid--3, .vol-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vol-time-track { flex-wrap: wrap; }
  .vol-time-step { min-width: calc(33% - 6px); }
}
@media (max-width: 640px) {
  .vol-wrap { padding: 0 16px; }
  .vol-grid--2, .vol-grid--3, .vol-grid--4 { grid-template-columns: 1fr; }
  .vol-hero-cta { flex-direction: column; align-items: stretch; }
  .vol-hero-cta .vol-btn { justify-content: center; }
  .vol-form-row { grid-template-columns: 1fr; }
  .vol-mega { grid-template-columns: 1fr; width: 94vw; max-height: 70vh; overflow-y: auto; }
  .vol-question { font-size: 22px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vol *, .vol *::before, .vol *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .vol-opp:hover, .vol-btn:hover, .vol-cause-card:hover { transform: none; }
}

/* Focus visibility everywhere */
.vol button:focus-visible, .vol a:focus-visible, .vol input:focus-visible,
.vol select:focus-visible, .vol textarea:focus-visible, .vol [tabindex]:focus-visible {
  outline: 2px solid var(--vol-green-btn); outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════
   VOLUNTEERING HOME (.volh-*) — product landing (matches approved reference)
   ═════════════════════════════════════════════════════════════════════════ */
.volh { position: relative; background: var(--vol-page); overflow: hidden; }
.volh-wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.volh-sec { padding: 60px 0; position: relative; }
.volh-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vol-green-d); margin: 0 0 12px; display: inline-flex; align-items: center; gap: 8px; }
.volh-serif { font-family: var(--vol-serif); font-weight: 600; color: var(--vol-ink); letter-spacing: -0.02em; line-height: 1.05; }
.volh-underline { display: inline-block; position: relative; }
.volh-underline svg { position: absolute; left: 0; right: 0; bottom: -0.32em; width: 100%; height: 0.36em; overflow: visible; }
.volh-underline svg path { fill: none; stroke: var(--vol-orange); stroke-width: 3.5; stroke-linecap: round; }

/* decorative botanicals + accents */
.volh-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.volh-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.volh-star { position: absolute; color: var(--vol-green); opacity: .8; }
.volh-star--orange { color: var(--vol-orange); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.volh-hero { position: relative; padding: 40px 0 56px; }
.volh-hero-grid { display: grid; grid-template-columns: 43% 1fr; gap: 44px; align-items: center; }
.volh-hero-eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vol-green); margin: 0 0 18px; }
.volh-hero-h1 { font-family: var(--vol-serif); font-weight: 600; color: var(--vol-ink); font-size: clamp(40px, 4.6vw, 64px); line-height: 1.04; letter-spacing: -0.025em; margin: 0; }
.volh-hero-h1 .volh-ital { font-style: italic; color: var(--vol-green); }
.volh-hero-copy { font-size: 16px; line-height: 1.6; color: var(--vol-body); max-width: 42ch; margin: 22px 0 0; }
.volh-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* three micro action concepts */
.volh-actions { display: flex; align-items: stretch; gap: 0; margin-top: 26px; max-width: 460px; }
.volh-action { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px; padding: 0 10px; position: relative; }
.volh-action + .volh-action::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; border-left: 1px dashed var(--vol-border); }
.volh-action-ico { width: 30px; height: 30px; color: var(--vol-green-d); display: flex; align-items: center; justify-content: center; }
.volh-action-ico--orange { color: var(--vol-orange); }
.volh-action-t { font-size: 12px; font-weight: 600; color: var(--vol-body); line-height: 1.25; }
.volh-action-curve { width: 118px; height: 34px; overflow: visible; margin-bottom: 1px; }
.volh-action-curve text { font-family: var(--vol-serif); font-style: italic; fill: var(--vol-green); font-size: 13px; }

/* ── HERO DASHBOARD PREVIEW ───────────────────────────────────────────── */
.volh-dash { position: relative; background: var(--vol-surface); border: 1px solid var(--vol-border); border-radius: 16px;
  box-shadow: 0 2px 4px rgba(29,33,29,0.03), 0 24px 60px rgba(29,33,29,0.10); padding: 20px; }
.volh-dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.volh-dash-hi { font-family: var(--vol-serif); font-size: 21px; color: var(--vol-ink); margin: 0; font-weight: 600; }
.volh-dash-sub { font-size: 12.5px; color: var(--vol-muted); margin: 3px 0 0; }
.volh-dash-edit { font-size: 12px; font-weight: 700; color: var(--vol-green-d); background: none; border: none; cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.volh-dash-body { display: grid; grid-template-columns: 1.55fr 1fr; gap: 16px; align-items: start; }
.volh-dash-col-label { font-size: 10px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--vol-muted); margin: 0 0 10px; }

/* opportunity rows */
.volh-opps { display: flex; flex-direction: column; gap: 10px; }
.volh-opp { display: grid; grid-template-columns: 62px 1fr auto; gap: 12px; align-items: center; background: var(--vol-surface);
  border: 1px solid var(--vol-border); border-radius: 8px; padding: 10px; transition: box-shadow .15s ease, transform .15s ease; }
.volh-opp:hover { box-shadow: 0 8px 20px rgba(29,33,29,0.08); transform: translateY(-1px); }
.volh-opp-thumb { width: 62px; height: 52px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; }
.volh-opp-cat { font-size: 9px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--vol-green); }
.volh-opp-title { font-size: 13.5px; font-weight: 700; color: var(--vol-ink); margin: 2px 0 1px; line-height: 1.2; }
.volh-opp-org { font-size: 11.5px; color: var(--vol-muted); }
.volh-opp-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.volh-opp-tag { font-size: 9.5px; font-weight: 600; color: var(--vol-body); background: var(--vol-surface-2); border: 1px solid var(--vol-border-2); border-radius: 5px; padding: 2px 6px; }
.volh-match { width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center; position: relative; }
.volh-match svg { width: 44px; height: 44px; transform: rotate(-90deg); }
.volh-match-track { stroke: var(--vol-pale-green); }
.volh-match-fill { stroke: var(--vol-green); stroke-linecap: round; }
.volh-match-num { position: absolute; font-size: 11px; font-weight: 800; color: var(--vol-green-d); }

/* profile panel */
.volh-profile { display: flex; flex-direction: column; gap: 16px; }
.volh-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.volh-chip2 { font-size: 11.5px; font-weight: 600; color: var(--vol-green-d); background: var(--vol-pale-green); border: 1px solid #d5e8d3; border-radius: 999px; padding: 4px 10px; }
.volh-chip2--interest { color: var(--vol-body); background: var(--vol-surface-2); border-color: var(--vol-border-2); }
.volh-editlink { font-size: 11px; font-weight: 700; color: var(--vol-green-d); background: none; border: none; padding: 0; cursor: pointer; margin-top: 8px; }
.volh-impact { position: relative; background: var(--vol-surface-2); border: 1px solid var(--vol-border-2); border-radius: 10px; padding: 13px; overflow: hidden; }
.volh-impact-t { font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--vol-green-d); margin: 0 0 4px; }
.volh-impact-c { font-size: 12px; color: var(--vol-body); margin: 0 0 10px; line-height: 1.4; }
.volh-progress { height: 7px; border-radius: 999px; background: #e4ecdd; overflow: hidden; }
.volh-progress-bar { height: 100%; border-radius: 999px; background: var(--vol-green); }
.volh-progress-num { font-size: 11px; font-weight: 800; color: var(--vol-green-d); margin-top: 5px; }
.volh-leaf { position: absolute; right: -8px; bottom: -10px; color: var(--vol-soft-green); opacity: .5; }

.volh-disclosure { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 11.5px; color: var(--vol-muted); }
.volh-disclosure svg { color: var(--vol-green); flex: none; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.volh-hiw { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.volh-hiw-title { font-family: var(--vol-serif); font-weight: 600; color: var(--vol-ink); font-size: clamp(28px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.02em; margin: 8px 0 0; }
.volh-hiw-copy { font-size: 14.5px; color: var(--vol-muted); margin: 16px 0 0; line-height: 1.55; max-width: 30ch; }
.volh-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.volh-step { position: relative; background: var(--vol-wash); border: 1px solid var(--vol-border); border-radius: 8px; padding: 20px 18px; }
.volh-step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--vol-green); color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.volh-step-ico { position: absolute; top: 18px; right: 18px; color: var(--vol-green); opacity: .85; }
.volh-step-ico--orange { color: var(--vol-orange); opacity: 1; }
.volh-step-t { font-family: var(--vol-serif); font-size: 18px; color: var(--vol-ink); margin: 0 0 7px; letter-spacing: -0.01em; }
.volh-step-d { font-size: 13.5px; color: var(--vol-body); line-height: 1.5; margin: 0; }
.volh-step-arrow { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: var(--vol-faint); z-index: 3; background: var(--vol-page); border-radius: 50%; }

/* ── WHO IS THIS FOR ──────────────────────────────────────────────────── */
.volh-aud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.volh-audcard { display: flex; flex-direction: column; background: var(--vol-surface); border: 1px solid var(--vol-border); border-radius: 10px; padding: 22px; }
.volh-audcard--green { background: var(--vol-pale-green); border-color: #d5e8d3; }
.volh-audcard--mint { background: var(--vol-mint); border-color: #e3ecd8; }
.volh-aud-ico { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--vol-surface); border: 1px solid var(--vol-border); color: var(--vol-green-d); margin-bottom: 14px; }
.volh-aud-ico--orange { color: var(--vol-orange); }
.volh-aud-t { font-family: var(--vol-serif); font-size: 19px; color: var(--vol-ink); margin: 0 0 8px; }
.volh-aud-d { font-size: 13.5px; color: var(--vol-body); line-height: 1.5; margin: 0 0 16px; flex: 1; }
.volh-aud-cta { font-size: 13px; font-weight: 700; color: var(--vol-green-d); background: none; border: none; padding: 0; cursor: pointer; text-align: left; display: inline-flex; align-items: center; gap: 6px; }

/* ── WHAT WE'RE BUILDING ──────────────────────────────────────────────── */
.volh-build { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.volh-build-title { font-family: var(--vol-serif); font-weight: 600; color: var(--vol-ink); font-size: clamp(26px, 2.8vw, 36px); line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
.volh-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; }
.volh-feat-ico { width: 30px; height: 30px; color: var(--vol-green); margin-bottom: 10px; }
.volh-feat-t { font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--vol-ink); margin: 0 0 5px; }
.volh-feat-d { font-size: 13px; color: var(--vol-body); line-height: 1.5; margin: 0; }

/* ── BOTTOM CONVERSION BAND ───────────────────────────────────────────── */
.volh-band { position: relative; background: linear-gradient(160deg, var(--vol-mint) 0%, var(--vol-pale-green) 100%);
  border: 1px solid #dfe9d3; border-radius: 16px; padding: 36px; overflow: hidden; }
.volh-band-grid { display: grid; grid-template-columns: 1fr 0.9fr 1fr; gap: 34px; align-items: start; position: relative; z-index: 2; }
.volh-quotemark { font-family: var(--vol-serif); font-size: 64px; line-height: 0.6; color: var(--vol-soft-green); }
.volh-quote-t { font-family: var(--vol-serif); font-size: 19px; line-height: 1.4; color: var(--vol-ink); margin: 6px 0 16px; letter-spacing: -0.01em; }
.volh-supporter { display: flex; align-items: center; gap: 10px; }
.volh-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; background: var(--vol-green); flex: none; }
.volh-supporter-n { font-size: 13.5px; font-weight: 700; color: var(--vol-ink); }
.volh-supporter-l { font-size: 11.5px; color: var(--vol-muted); }
.volh-band-mid-t { font-family: var(--vol-serif); font-size: 20px; color: var(--vol-ink); margin: 0 0 14px; line-height: 1.2; }
.volh-avatars { display: flex; align-items: center; }
.volh-avatars .volh-avatar { width: 34px; height: 34px; margin-left: -8px; border: 2px solid var(--vol-mint); font-size: 12px; }
.volh-avatars .volh-avatar:first-child { margin-left: 0; }
.volh-avatars .volh-more { margin-left: 6px; height: 34px; padding: 0 12px; border-radius: 999px; background: var(--vol-surface); border: 1px solid var(--vol-border); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--vol-green-d); white-space: nowrap; }
.volh-wait-t { font-family: var(--vol-serif); font-size: 20px; color: var(--vol-ink); margin: 0 0 6px; line-height: 1.2; }
.volh-wait-c { font-size: 13px; color: var(--vol-body); margin: 0 0 14px; line-height: 1.45; }
.volh-wait-form { display: flex; gap: 8px; flex-wrap: wrap; }
.volh-wait-form input { flex: 1; min-width: 160px; padding: 11px 14px; border: 1px solid var(--vol-border); border-radius: 8px; background: var(--vol-surface); font-family: var(--vol-sans); font-size: 14px; color: var(--vol-ink); outline: none; }
.volh-wait-form input:focus { border-color: var(--vol-green); }
.volh-wait-note { font-size: 11px; color: var(--vol-muted); margin: 9px 0 0; }
.volh-band-leaf { position: absolute; right: -20px; bottom: -30px; color: var(--vol-soft-green); opacity: .35; z-index: 1; }

/* buttons tuned for reference (moderate radius) */
.volh .vol-btn { border-radius: 8px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .volh-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .volh-hiw { grid-template-columns: 1fr; gap: 24px; }
  .volh-build { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 860px) {
  .volh-features { grid-template-columns: repeat(2, 1fr); }
  .volh-aud { grid-template-columns: 1fr; }
  .volh-band-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
  .volh-wrap { padding: 0 18px; }
  .volh-sec { padding: 44px 0; }
  .volh-steps { grid-template-columns: 1fr; gap: 12px; }
  .volh-step-arrow { display: none; }
  .volh-dash-body { grid-template-columns: 1fr; }
  .volh-actions { max-width: none; }
  .volh-hero-ctas { flex-direction: column; align-items: stretch; }
  .volh-hero-ctas .vol-btn { justify-content: center; }
}
@media (max-width: 480px) {
  .volh-features { grid-template-columns: 1fr; }
  .volh-hero-h1 { font-size: clamp(32px, 10vw, 44px); }
  .volh-opp { grid-template-columns: 48px 1fr auto; }
  .volh-opp-thumb { width: 48px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .volh-opp:hover { transform: none; }
}
