/* ============================================================
 * Apple Fest Public — page-specific styles
 * ============================================================ */

/* ============ PAGE BANNERS ============ */
.page-banner {
  padding: 64px 0 56px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
[data-dir="editorial"] .page-banner { border-bottom: 1px solid var(--rule-dk); }
.page-banner-cream { background: var(--cream); }
.page-banner-navy { background: var(--royal); color: #fff; }
.page-banner-navy .eyebrow { color: var(--sky); }
.page-banner-navy .page-banner-title { color: #fff; }
.page-banner-navy .page-banner-sub { color: rgba(255,255,255,.92); }
.page-banner-red { background: var(--red); color: #fff; }
.page-banner-red .eyebrow { color: rgba(255,255,255,.85); }

.page-banner-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  margin: 6px 0 12px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 860px;
}
.page-banner-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 640px;
  line-height: 1.55;
}

/* ============ SCHEDULE ============ */
.sch-controls {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 40px;
}
.sch-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.sch-tab {
  padding: 10px 16px;
  border: 2px solid var(--rule-dk);
  background: var(--white);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .12s;
  display: inline-flex; align-items: center; gap: 8px;
}
.sch-tab .display { font-size: 17px; }
.sch-tab-date { font-size: 11px; font-weight: 600; color: var(--ink-light); text-transform: none; letter-spacing: 0; }
.sch-tab:hover { border-color: var(--ink-mid); color: var(--ink); }
.sch-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sch-tab.active .sch-tab-date { color: rgba(255,255,255,.7); }

.sch-filter { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.sch-filter-label {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-light); font-weight: 700; margin-right: 4px;
}
.sch-chip {
  padding: 6px 12px;
  border: 1px solid var(--rule-dk);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px; font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
}
.sch-chip.active { background: var(--red-pale); border-color: var(--red); color: var(--red-deep); }

.sch-days { display: flex; flex-direction: column; gap: 48px; }
.sch-day-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 24px;
}
.sch-day-abbrev {
  font-size: 64px; font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sch-day-date { font-size: 14px; color: var(--ink-light); font-weight: 600; }
.sch-day-label { font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; }

.sch-timeline { display: flex; flex-direction: column; gap: 2px; }
.sch-row {
  display: grid;
  grid-template-columns: 120px 20px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.sch-row:hover { background: var(--red-pale); }
.sch-row-time { display: flex; flex-direction: column; align-items: flex-end; }
.sch-row-start {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--ink);
  letter-spacing: .02em;
}
.sch-row-end {
  font-size: 11px; color: var(--ink-light);
  font-family: var(--font-mono);
}
.sch-row-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); justify-self: center;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--rule-dk);
}
.sch-tag-music .sch-row-dot { background: var(--royal); }
.sch-tag-family .sch-row-dot { background: var(--sky); }
.sch-tag-bingo .sch-row-dot { background: var(--gold); }
.sch-tag-special .sch-row-dot { background: var(--red); width: 18px; height: 18px; }
.sch-row-name {
  font-size: 17px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
  margin-bottom: 6px;
}
.sch-row-venue {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mid);
}
@media (max-width: 640px) {
  .sch-row { grid-template-columns: 80px 14px 1fr; gap: 10px; padding: 12px 0; }
  .sch-row-start { font-size: 14px; }
  .sch-row-name { font-size: 15px; }
}

.sch-footer-note { margin-top: 40px; }

/* ============ MAP ============ */
.map-layout {
  display: grid; gap: 32px;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } }

.map-frame { padding: 20px; }
.map-frame-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px; flex-wrap: wrap; gap: 12px;
}
.map-frame-title { font-size: 22px; font-weight: 700; }
.map-svg-wrap {
  background: var(--cream);
  border: 1px solid var(--rule-dk);
  border-radius: 4px;
  overflow: hidden;
}
.map-svg { width: 100%; height: auto; display: block; }

.map-list-ol {
  list-style: none;
  margin-top: 4px;
  display: flex; flex-direction: column; gap: 4px;
}
.map-list-item {
  display: flex; gap: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .12s;
  border: 1px solid transparent;
}
.map-list-item:hover, .map-list-item.hover {
  background: var(--red-pale); border-color: var(--red);
}
.map-list-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.map-list-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.map-list-desc { font-size: 13px; color: var(--ink-mid); margin-top: 2px; line-height: 1.4; }

.map-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 800px) { .map-info-row { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-group { margin-bottom: 48px; }
.faq-section-head {
  font-size: 28px; font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .12s;
}
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 22px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-toggle {
  font-family: var(--font-display); font-size: 22px;
  color: var(--red); font-weight: 300;
}
.faq-a {
  padding: 0 22px 20px;
  font-size: 15px; line-height: 1.65;
  color: var(--ink-mid);
}

.faq-prohibited { border-top: 4px solid var(--red); padding: 28px 28px 32px; }
.faq-prohibited-head { margin-bottom: 24px; }
.faq-prohibited-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px) { .faq-prohibited-grid { grid-template-columns: 1fr; } }
.faq-proh-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px; }
.faq-proh-icon { flex-shrink: 0; }
.faq-proh-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--ink);
  letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 4px;
}
.faq-proh-desc { font-size: 12.5px; color: var(--ink-mid); line-height: 1.4; }

/* ============ SPONSORS ============ */
.sp-tiers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 800px) { .sp-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sp-tiers { grid-template-columns: 1fr; } }
.sp-tier {
  background: var(--white);
  border: 2px solid var(--rule-dk);
  border-radius: 4px;
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color .12s, transform .12s;
  position: relative;
}
.sp-tier:hover { border-color: var(--ink-mid); transform: translateY(-2px); }
.sp-tier.active { border-color: var(--red); border-width: 3px; padding: 21px 19px; }
.sp-tier.active::after {
  content: "";
  position: absolute; top: -3px; left: -3px; right: -3px;
  height: 5px; background: var(--red);
  border-radius: 2px 2px 0 0;
}
.sp-tier-amount {
  font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1;
  margin-bottom: 6px;
}
.sp-tier-title .sp-tier-amount { color: var(--red); }
.sp-tier-name {
  font-size: 14px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.sp-tier-count {
  font-size: 12px; color: var(--ink-light);
}

.sp-detail {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .sp-detail { grid-template-columns: 1fr; } }
.sp-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sp-benefit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink); line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
}
.sp-benefit-list li:last-child { border-bottom: none; }
.sp-benefit-check {
  background: var(--red); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.sp-roster-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sp-roster-list li {
  padding-bottom: 10px; border-bottom: 1px solid var(--rule);
}
.sp-roster-list li:last-child { border-bottom: none; }
.sp-roster-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.sp-roster-tag { font-size: 12.5px; color: var(--ink-mid); font-style: italic; margin-top: 3px; }

.sp-inquiry-head { margin-bottom: 24px; }
.sp-form { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.sp-form-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }

.sp-thanks { text-align: center; padding: 48px 32px; }
.sp-thanks-icon { display: flex; justify-content: center; margin-bottom: 8px; }

/* ============ VOLUNTEER ============ */
.vp-areas {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px;
  margin-bottom: 32px;
}
.vp-area {
  background: var(--white);
  border: 2px solid var(--rule-dk);
  border-radius: 4px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: all .12s;
}
.vp-area:hover { border-color: var(--ink-mid); transform: translateY(-1px); }
.vp-area.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.vp-area.priority:not(.active) { border-color: var(--red); background: var(--red-pale); }
.vp-area-icon { font-size: 24px; flex-shrink: 0; }
.vp-area-name { font-weight: 700; font-size: 14px; font-family: var(--font-display); letter-spacing: .02em; }
.vp-area-meta { font-size: 12px; color: var(--ink-light); }
.vp-area.active .vp-area-meta { color: rgba(255,255,255,.7); }
.vp-priority { color: var(--red); font-weight: 700; }
.vp-area.active .vp-priority { color: var(--sky); }

.vp-area-desc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  padding: 20px;
}
@media (max-width: 640px) { .vp-area-desc { grid-template-columns: 1fr; } }
.vp-area-bar { height: 8px; background: var(--parchment); border-radius: 4px; overflow: hidden; }
.vp-area-bar > div { height: 100%; background: var(--red); border-radius: 4px; }
.vp-area-bar-label { font-size: 13px; color: var(--ink-mid); margin-top: 8px; }

.vp-shifts-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; flex-wrap: wrap; gap: 12px;
}
.vp-shifts-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.vp-shift {
  background: var(--white);
  border: 2px solid var(--rule-dk);
  border-radius: 6px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: all .12s;
  position: relative;
  font-family: var(--font-body);
}
.vp-shift:hover:not(:disabled) { border-color: var(--red); transform: translateY(-1px); box-shadow: var(--sh-sm); }
.vp-shift.selected { border-color: var(--red); background: var(--red-pale); border-width: 3px; padding: 15px 17px; }
.vp-shift.full { opacity: .5; cursor: not-allowed; }

.vp-shift-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.vp-shift-day {
  display: flex; align-items: baseline; gap: 6px;
}
.vp-shift-dayabbrev {
  font-size: 22px; font-weight: 700; color: var(--red); line-height: 1;
  letter-spacing: .02em;
}
.vp-shift-daydate { font-size: 12px; color: var(--ink-light); font-weight: 600; }
.vp-shift-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--parchment); color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.vp-shift.selected .vp-shift-check { background: var(--red); color: #fff; }

.vp-shift-time {
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: .02em;
  margin-bottom: 4px;
}
.vp-shift-role { font-size: 14px; color: var(--ink-mid); margin-bottom: 14px; }
.vp-shift-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid var(--rule);
  font-size: 12px;
}
.vp-shift-slots { font-weight: 700; color: var(--ink); }
.vp-shift-slots.hot { color: var(--red); }

.vp-shift-priority {
  position: absolute; top: -10px; right: 12px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 3px;
  letter-spacing: .06em; text-transform: uppercase;
}
.vp-shift-badge {
  font-size: 10px; font-weight: 700;
  color: var(--royal-deep); background: var(--royal-pale);
  padding: 3px 8px; border-radius: 3px;
  margin-top: 8px; display: inline-block;
  letter-spacing: .04em; text-transform: uppercase;
}
.vp-shift-badge-youth {
  color: #5a4712; background: #fff2c2;
}

/* Under-18 filter toggle */
.vp-youth-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-mid); cursor: pointer;
  padding: 6px 12px; border: 1px solid var(--rule-dk);
  background: #fff;
  transition: all .15s ease;
}
.vp-youth-toggle:hover { border-color: var(--red); color: var(--ink); }
.vp-youth-toggle input { accent-color: var(--red); margin: 0; cursor: pointer; }
.vp-youth-toggle:has(input:checked) {
  background: #fff2c2; border-color: #d9a100; color: #5a4712; font-weight: 600;
}

/* Sticky footer bar */
.vp-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: #fff;
  padding: 16px 28px;
  display: flex; align-items: center; gap: 16px;
  z-index: 30;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.vp-sticky-count {
  font-size: 32px; font-weight: 700; line-height: 1;
  color: var(--gold);
}
.vp-sticky-label {
  font-size: 12px; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700;
}
.vp-sticky .btn-ghost { color: rgba(255,255,255,.8); }
.vp-sticky .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ====== STEPPER FORM ====== */
.stepper-bar {
  display: flex; gap: 8px; margin-top: 20px;
}
.stepper-dot {
  height: 4px; flex: 1;
  background: var(--rule-dk);
  border-radius: 2px;
}
.stepper-dot.done { background: var(--red); }
.stepper-dot.active { background: var(--red); box-shadow: 0 0 0 3px var(--red-pale); }

.step-card { padding: 36px; }
.step-card-title { font-size: 30px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.1; }
.step-card-sub { font-size: 15px; color: var(--ink-mid); margin-bottom: 24px; line-height: 1.5; }
.step-card-body { display: flex; flex-direction: column; gap: 16px; }

.stepper-nav {
  display: flex; justify-content: space-between;
  margin-top: 28px; gap: 12px;
}
.stepper-nav .btn-secondary:disabled { opacity: .3; }

/* ====== SHIFT SUMMARY ====== */
.shift-summary {
  display: flex; flex-direction: column; gap: 10px;
}
.shift-summary-row {
  display: flex; gap: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--rule-dk);
  border-radius: 4px;
}
.shift-summary-day {
  flex-shrink: 0; width: 68px;
  text-align: center;
  padding-right: 16px;
  border-right: 1px solid var(--rule-dk);
}
.shift-summary-day .display {
  font-size: 24px; font-weight: 700;
  color: var(--red); line-height: 1;
  letter-spacing: .02em;
}
.shift-summary-day > div:last-child { font-size: 12px; color: var(--ink-light); margin-top: 4px; }
.shift-summary-role { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.shift-summary-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mid);
}

/* ====== LONGFORM ====== */
.lf-form { display: flex; flex-direction: column; gap: 32px; }
.lf-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.lf-section:last-of-type { border-bottom: none; }
@media (max-width: 720px) { .lf-section { grid-template-columns: 1fr; gap: 12px; } }
.lf-section-head h2 {
  font-size: 20px; color: var(--ink);
  font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase;
}
.lf-section-head p { font-size: 13px; color: var(--ink-light); margin-top: 6px; line-height: 1.5; }
.lf-section-body { display: flex; flex-direction: column; gap: 16px; }

/* ====== CONVERSATIONAL ====== */
.cv {
  background: linear-gradient(180deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: #fff;
  min-height: calc(100vh - 80px);
  padding: 40px 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cv::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 8% 12%, rgba(65,182,230,.5) 50%, transparent 52%),
    radial-gradient(circle 1.5px at 88% 18%, rgba(65,182,230,.4) 50%, transparent 52%),
    radial-gradient(circle 2px at 15% 85%, rgba(65,182,230,.5) 50%, transparent 52%),
    radial-gradient(circle 1.5px at 90% 80%, rgba(65,182,230,.4) 50%, transparent 52%);
  background-size: 300px 300px;
}
.cv-wrap {
  max-width: 620px; width: 100%; position: relative; z-index: 1;
}
.cv-back {
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.cv-back:hover { background: rgba(255,255,255,.1); color: #fff; }

.cv-progress {
  height: 3px; background: rgba(255,255,255,.2); border-radius: 2px;
  margin-bottom: 28px;
}
.cv-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width .3s; }

.cv-card {
  background: var(--white);
  color: var(--ink);
  padding: 44px 40px;
  border-radius: 8px;
  box-shadow: var(--sh-lg);
}
.cv-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-deep); margin-bottom: 12px;
}
.cv-title {
  font-size: 34px; font-weight: 700; line-height: 1.1;
  margin-bottom: 14px; color: var(--ink);
  letter-spacing: .01em;
}
.cv-body { font-size: 16px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 16px; }

.cv-input {
  width: 100%;
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: var(--ink);
  background: none;
  border: none; border-bottom: 2px solid var(--rule-dk);
  padding: 12px 2px;
  margin-top: 12px;
  transition: border-color .12s;
}
.cv-input:focus {
  outline: none; border-color: var(--red);
}
.cv-input::placeholder { color: var(--ink-light); font-weight: 500; }

.cv-choices { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.cv-choice {
  text-align: left;
  padding: 16px 20px;
  border: 2px solid var(--rule-dk);
  background: var(--white);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all .12s;
}
.cv-choice:hover { border-color: var(--ink-mid); }
.cv-choice.selected { border-color: var(--red); background: var(--red-pale); color: var(--red-deep); }

.cv-waiver-scroll {
  background: var(--cream);
  border: 1px solid var(--rule-dk);
  border-radius: 4px;
  padding: 20px;
  max-height: 260px; overflow-y: auto;
  margin-top: 8px;
}

.cv-hint {
  font-size: 12px; color: var(--ink-light); margin-top: 10px;
}

/* ============ COMMITMENT ============ */
.com-methods { display: flex; flex-direction: column; gap: 8px; }
.com-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 2px solid var(--rule-dk);
  border-radius: 4px;
  cursor: pointer;
  transition: all .12s;
}
.com-method:hover { border-color: var(--ink-mid); }
.com-method.selected { border-color: var(--red); background: var(--red-pale); }
.com-method input[type=radio] { accent-color: var(--red); width: 18px; height: 18px; }
.com-method-icon { font-size: 28px; width: 40px; text-align: center; flex-shrink: 0; }
.com-method-body { flex: 1; }
.com-method-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--ink);
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.com-method-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }

/* ============ ONBOARDING ============ */
.ob-progress {
  font-family: var(--font-display); font-weight: 700;
  font-size: 40px; line-height: 1;
  color: var(--red);
}
.ob-tasks { display: flex; flex-direction: column; gap: 12px; }
.ob-task {
  background: var(--white);
  border: 2px solid var(--rule-dk);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .12s;
}
.ob-task.done { border-color: #15803D; background: #F0FDF4; }
.ob-task.open { border-color: var(--red); }
.ob-task.done.open { border-color: #15803D; }
.ob-task-head {
  width: 100%; background: none; border: none;
  display: flex; gap: 16px; align-items: center;
  padding: 18px 22px;
  cursor: pointer; text-align: left;
}
.ob-task-n {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.ob-task-n.done { background: #15803D; }
.ob-task-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--ink);
  letter-spacing: .02em;
  margin-bottom: 2px;
}
.ob-task-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }
.ob-task-chev { font-size: 22px; color: var(--ink-mid); font-weight: 300; }
.ob-task-body {
  padding: 0 22px 24px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 16px;
}

.ob-waiver-scroll {
  background: var(--cream);
  border: 1px solid var(--rule-dk);
  border-radius: 4px;
  padding: 20px;
  max-height: 320px; overflow-y: auto;
}

.ob-upload { display: flex; gap: 20px; align-items: flex-start; }
.ob-upload-preview { width: 140px; flex-shrink: 0; }

/* ============ WAIVER ============ */
.wv-card { padding: 40px; }
.wv-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.waiver-text { color: var(--ink); }
.waiver-text p { margin-bottom: 14px; font-size: 14px; line-height: 1.65; color: var(--ink-mid); }
.waiver-text p strong { color: var(--ink); }
.waiver-section-title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: .02em;
}
.waiver-ol, .waiver-ul {
  padding-left: 24px; margin-bottom: 14px;
  color: var(--ink-mid); font-size: 14px; line-height: 1.65;
}
.waiver-ol li, .waiver-ul li { margin-bottom: 8px; }

/* Print rules */
@media print {
  .pub-header, .pub-footer, .wv-actions, #tweaks-panel { display: none !important; }
  .wv-card { border: none; padding: 0; }
}
