/*
 * CLB 125 YEARS · TYPOGRAPHY — Atkinson Hyperlegible (primary) + Verdana Pro (secondary)
 * Atkinson Hyperlegible designed by the Braille Institute for low-vision readability.
 * Matches the CLB 125th Anniversary Prospectus.
 */

/* Headings use Atkinson Hyperlegible (inherits from body) */
.clb125-soon h1,
.clb125-soon h2,
.clb125-soon h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* Hero title */
.clb125-soon .hero__title {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(48px, 6vw, 80px);
}
.clb125-soon .hero__title .accent {
  font-family: var(--font-primary);
}

/* Prospectus heading */
.clb125-soon .prosp__h {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 3.2vw, 38px);
}

/* Ways section heading */
.clb125-soon .ways__head h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.clb125-soon .ways__head h2,
.clb125-soon .faq__head h2 {
  font-size: clamp(32px, 4vw, 52px);
}

/* Closing quote */
.clb125-soon .closing__mark {
  font-family: var(--font-primary);
  font-weight: 700;
}
.clb125-soon .closing__q {
  font-family: var(--font-primary);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.015em;
  font-size: clamp(32px, 3.8vw, 50px);
}

/* Modal headings */
.clb125-soon .modal__title,
.clb125-soon .modal__success h3 {
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Secondary font (Verdana Pro) for UI elements that need maximum screen legibility */
.clb125-soon .eyebrow,
.clb125-soon .btn,
.clb125-soon .way__form .wf-submit,
.clb125-soon .modal__submit,
.clb125-soon .way__form .wf-label,
.clb125-soon .modal__label,
.clb125-soon .hero__meta-item .lbl {
  font-family: var(--font-sans);
}

/* Form inputs stay in Verdana Pro for maximum input legibility */
.clb125-soon .way__form .wf-input,
.clb125-soon .way__form .wf-select,
.clb125-soon .way__form .wf-textarea,
.clb125-soon .modal__input,
.clb125-soon .modal__select,
.clb125-soon .modal__textarea {
  font-family: var(--font-sans);
}

/* Monospace address block stays as-is */
.clb125-soon .way__address {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ═══════════════════════════════════════════════════════════════════════
   TEXT TREATMENT — page-wide typography polish
   ═══════════════════════════════════════════════════════════════════════ */

/* Headings: balanced line wrapping (no orphaned last words) */
.clb125-soon h1,
.clb125-soon h2,
.clb125-soon h3 {
  text-wrap: balance;
}

/* Body text: pretty wrapping (avoids orphans on last line) */
.clb125-soon p {
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Card text: auto-hyphenate to prevent ugly breaks in narrow columns */
.clb125-soon .way__p,
.clb125-soon .cta-card__p,
.clb125-soon .way__note {
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

/* FAQ answers: clean wrapping */
.clb125-soon .faq__a p {
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Hero body: slightly tighter for better line flow */
.clb125-soon .hero__body {
  text-wrap: pretty;
}
/* Hero body: muted cream for editorial separation from headline */
/* Contrast check: rgba(248,246,238,0.72) on #0d1321 ≈ rgb(182,179,168) on rgb(13,19,33) — ~9.8:1, passes WCAG AAA */
.clb125-soon .hero__body {
  color: rgba(248,246,238,0.72);
}

/* Prospectus card description */
.clb125-soon .prosp__p {
  text-wrap: pretty;
}

/* Closing quote: balanced so it doesn't leave one word dangling */
.clb125-soon .closing__q {
  text-wrap: balance;
}
.clb125-soon .closing__p {
  text-wrap: pretty;
}

/* Contact CTA section subtitle */
.clb125-soon .contact-cta__sub {
  text-wrap: pretty;
}

/* Section headings in ways/contact: balanced */
.clb125-soon .ways__head h2,
.clb125-soon .ways__head p,
.clb125-soon .contact-cta__title {
  text-wrap: balance;
}
/* ═══════════════════════════════════════════════════════════════════════
   FAQ SECTION — _snippet-faq.css
   Scoped under .clb125-soon
   Cream background section, between .ways (teal) and .closing (ink).
   Tokens, fonts, focus styles all inherit from the parent stylesheet.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.clb125-soon .faq {
  padding: 96px 0 104px;
  background: var(--clb-cream);
}

/* ── Section header ── */
.clb125-soon .faq__head {
  text-align: center;
  margin-bottom: 48px;
}

.clb125-soon .faq__head .eyebrow {
  margin-bottom: 20px;
}

.clb125-soon .faq__head h2 {
  font-size: var(--fs-h2);
  color: var(--clb-teal);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.clb125-soon .faq__head p {
  font-size: var(--fs-lead);
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Filter chip bar ── */
.clb125-soon .faq__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.clb125-soon .faq__filter {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--clb-cream-80);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer;
  transition: background 160ms var(--ease-out),
              color 160ms var(--ease-out),
              border-color 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}

.clb125-soon .faq__filter:hover {
  border-color: var(--clb-teal);
  color: var(--clb-teal);
  background: rgba(6, 62, 62, 0.05);
}

.clb125-soon .faq__filter[aria-pressed="true"],
.clb125-soon .faq__filter.is-active {
  background: var(--clb-teal);
  color: var(--clb-cream);
  border-color: var(--clb-teal);
  box-shadow: 0 2px 10px rgba(6, 62, 62, 0.18);
}

.clb125-soon .faq__filter:focus-visible {
  outline: 3px solid var(--clb-beam);
  outline-offset: 2px;
}

/* ── FAQ list ── */
.clb125-soon .faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Individual item ── */
.clb125-soon .faq__item {
  border-bottom: 1px solid var(--clb-cream-80);
}

.clb125-soon .faq__item:first-child {
  border-top: 1px solid var(--clb-cream-80);
}

/* Hidden by filter — smooth fade out */
.clb125-soon .faq__item.is-hidden {
  display: none;
}

/* ── Question button ── */
.clb125-soon .faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 4px 22px 0;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--clb-teal);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
  transition: color 150ms var(--ease-out);
}

.clb125-soon .faq__q:hover {
  color: var(--clb-teal-90);
}

.clb125-soon .faq__q:focus-visible {
  outline: 3px solid var(--clb-beam);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ── Question text ── */
.clb125-soon .faq__q-text {
  flex: 1;
}

/* ── Expand/collapse icon ── */
.clb125-soon .faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clb-cream-90);
  border: 1.5px solid var(--clb-cream-80);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms var(--ease-out),
              border-color 160ms var(--ease-out),
              transform 300ms var(--ease-out);
  color: var(--clb-teal);
}

.clb125-soon .faq__icon svg {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 300ms var(--ease-out);
}

.clb125-soon .faq__q[aria-expanded="true"] .faq__icon {
  background: var(--clb-teal);
  border-color: var(--clb-teal);
  color: var(--clb-beam);
}

.clb125-soon .faq__q[aria-expanded="true"] .faq__icon svg {
  transform: rotate(45deg);
}

/* ── Answer panel — slide animation via calculated height ── */
.clb125-soon .faq__a {
  height: 0;
  overflow: hidden;
  transition: height 350ms cubic-bezier(0.22, 1, 0.36, 1),
              padding 300ms var(--ease-out);
  padding-bottom: 0;
}

.clb125-soon .faq__a.is-open {
  /* height is set by JS via scrollHeight; padding kept for open state */
  padding-bottom: 24px;
}

.clb125-soon .faq__a-inner {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  padding-right: 48px;
}

.clb125-soon .faq__a-inner p {
  margin: 0 0 12px;
}

.clb125-soon .faq__a-inner p:last-child {
  margin-bottom: 0;
}

.clb125-soon .faq__a-inner strong {
  color: var(--clb-teal);
  font-weight: 700;
}

.clb125-soon .faq__a-inner a {
  color: var(--clb-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.clb125-soon .faq__a-inner a:hover {
  color: var(--clb-teal-90);
}

/* Tier list inside an answer */
.clb125-soon .faq__tiers {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clb125-soon .faq__tiers li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-2);
}

.clb125-soon .faq__tiers li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clb-beam);
  border: 1.5px solid var(--clb-teal);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.clb125-soon .faq__tiers .tier-name {
  font-weight: 700;
  color: var(--clb-teal);
}

.clb125-soon .faq__tiers .tier-amount {
  font-weight: 700;
  color: var(--fg-2);
}

/* "No results" message when filter has no matches */
.clb125-soon .faq__empty {
  text-align: center;
  padding: 40px 0 24px;
  font-size: 16px;
  color: var(--fg-3);
  display: none;
}

.clb125-soon .faq__empty.is-visible {
  display: block;
}

/* ── CTA row below the list ── */
.clb125-soon .faq__cta {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--clb-cream-90);
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.clb125-soon .faq__cta-copy {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.5;
}

.clb125-soon .faq__cta-copy strong {
  display: block;
  color: var(--clb-teal);
  font-size: 17px;
  margin-bottom: 3px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .clb125-soon .faq {
    padding: 72px 0 80px;
  }

  .clb125-soon .faq__a-inner {
    padding-right: 12px;
  }

  .clb125-soon .faq__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .clb125-soon .faq {
    padding: 56px 0 64px;
  }

  .clb125-soon .faq__head h2 {
    font-size: clamp(26px, 6vw, 38px);
  }

  .clb125-soon .faq__filter {
    font-size: 11px;
    padding: 7px 14px;
  }

  .clb125-soon .faq__q {
    font-size: 16px;
    padding: 18px 4px 18px 0;
  }

  .clb125-soon .faq__cta {
    padding: 22px 20px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .clb125-soon .faq__a {
    transition: none !important;
  }

  .clb125-soon .faq__icon,
  .clb125-soon .faq__icon svg {
    transition: none !important;
  }

  .clb125-soon .faq__filter {
    transition: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════════════════
   CONTACT CTA SECTION — "Don't Wait"
   Namespace: .clb125-soon .contact-cta
   Placement: after .ways (teal section), before .closing / FAQ
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.clb125-soon .contact-cta {
  padding: 104px 0 96px;
  background: var(--clb-ink);
  color: var(--clb-cream);
  position: relative;
  overflow: hidden;
}

/* ── Radial atmosphere (matches hero/closing ambiance) ── */
.clb125-soon .contact-cta__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 60% 0%,   rgba(254,224,101,0.055) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(6,62,62,0.55)       0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%,  rgba(6,62,62,0.35)       0%, transparent 45%);
}

/* ── All content rides above the atmosphere ── */
.clb125-soon .contact-cta .container {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.clb125-soon .contact-cta__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.clb125-soon .contact-cta__head .eyebrow {
  margin-bottom: 22px;
}

.clb125-soon .contact-cta__title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  font-style: italic;
  color: var(--clb-cream);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 16px;
}

.clb125-soon .contact-cta__sub {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: rgba(248,246,238,0.72);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   URGENCY CARDS — glass on ink
   ═══════════════════════════════════════════════════════════════════════ */

/* 3-column row by default; bottom row is 2-col centered */
.clb125-soon .contact-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* Bottom two cards: span a centered 2-column sub-grid */
.clb125-soon .contact-cta__grid--bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: calc(66.666% + 13px); /* two thirds of grid + one gap */
  margin: 0 auto 56px;
}

/* ── Card base ── */
.clb125-soon .cta-card {
  background: rgba(248,246,238,0.04);
  border: 1px solid rgba(248,246,238,0.10);
  border-radius: var(--r-lg);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    border-color 280ms var(--ease-out),
    transform    280ms var(--ease-out),
    box-shadow   280ms var(--ease-out);
}

/* ── Diagonal light sweep on hover (matches .way::before pattern) ── */
.clb125-soon .cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(254,224,101,0.07) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 620ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.clb125-soon .cta-card:hover::before {
  transform: translateX(40%);
}

.clb125-soon .cta-card:hover {
  border-color: rgba(254,224,101,0.40);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(254,224,101,0.12),
    0 14px 36px rgba(0,0,0,0.25);
}

/* Keep card content above the sweep */
.clb125-soon .cta-card > * {
  position: relative;
  z-index: 1;
}

/* ── Gold icon container (matches .way__icon) ── */
.clb125-soon .cta-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: rgba(254,224,101,0.13);
  color: var(--clb-beam);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 280ms var(--ease-out);
}

.clb125-soon .cta-card:hover .cta-card__icon {
  background: rgba(254,224,101,0.20);
}

.clb125-soon .cta-card__icon svg {
  width: 22px;
  height: 22px;
}

/* ── Card title ── */
.clb125-soon .cta-card__h {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--clb-cream);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* ── Card body ── */
.clb125-soon .cta-card__p {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(248,246,238,0.74);
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA FOOTER — button + email fallback
   ═══════════════════════════════════════════════════════════════════════ */

.clb125-soon .contact-cta__footer {
  text-align: center;
}

.clb125-soon .contact-cta__footer .btn--beam {
  padding: 16px 36px;
  font-size: 17px;
  box-shadow: 0 0 0 0 rgba(254,224,101,0);
  transition:
    background  180ms var(--ease-out),
    box-shadow  240ms var(--ease-out),
    transform    80ms var(--ease-out);
}

.clb125-soon .contact-cta__footer .btn--beam:hover {
  background: #f5d54b;
  box-shadow:
    0 0 28px rgba(254,224,101,0.32),
    0 0 60px rgba(254,224,101,0.14);
}

.clb125-soon .contact-cta__fallback {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(248,246,238,0.52);
  letter-spacing: 0.01em;
}

.clb125-soon .contact-cta__fallback a {
  color: rgba(248,246,238,0.70);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 160ms ease;
}

.clb125-soon .contact-cta__fallback a:hover {
  color: var(--clb-beam);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet: collapse to 2-column grid for top row, 1-column for bottom */
@media (max-width: 860px) {
  .clb125-soon .contact-cta__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
  }

  /* Third card in top row becomes full-width on its own line */
  .clb125-soon .contact-cta__grid .cta-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .clb125-soon .contact-cta__grid--bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 18px;
    margin-bottom: 44px;
  }
}

/* Mobile: single column for everything */
@media (max-width: 560px) {
  .clb125-soon .contact-cta {
    padding: 80px 0 72px;
  }

  .clb125-soon .contact-cta__head {
    margin-bottom: 40px;
  }

  .clb125-soon .contact-cta__grid {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .clb125-soon .contact-cta__grid .cta-card:nth-child(3) {
    max-width: none;
  }

  .clb125-soon .contact-cta__grid--bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .clb125-soon .contact-cta__footer .btn--beam {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
  }
}

/* Reduced motion: disable sweep + lift */
@media (prefers-reduced-motion: reduce) {
  .clb125-soon .cta-card::before {
    display: none;
  }
  .clb125-soon .cta-card:hover {
    transform: none;
  }
}
/* ════════════════════════════════════════════════════════════════════════
   CLB 125 YEARS · DONATION MODAL
   Scoped to .clb-donate- prefix. Paste into the same Custom HTML block
   as clb_125years_v2.html, or load as a separate <style> block.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.clb-donate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 19, 33, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.clb-donate-overlay.is-open {
  display: flex;
}

/* ── Modal shell ── */
.clb-donate-modal {
  background: #0d1321;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(254, 224, 101, 0.10),
    inset 0 1px 0 rgba(254, 224, 101, 0.06);
  color: #f8f6ee;
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Close button ── */
.clb-donate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border: none;
  background: rgba(248, 246, 238, 0.07);
  border-radius: 8px;
  color: rgba(248, 246, 238, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease;
}
.clb-donate-close:hover {
  background: rgba(248, 246, 238, 0.13);
  color: #f8f6ee;
}
.clb-donate-close:focus-visible {
  outline: 3px solid #fee065;
  outline-offset: 2px;
}

/* ── Mini canvas header ── */
.clb-donate-canvas-wrap {
  position: relative;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #070b14 0%,
    #0a1120 60%,
    #0d1321 100%
  );
  border-radius: 18px 18px 0 0;
}
.clb-donate-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Lighthouse silhouette overlay on canvas */
.clb-donate-canvas-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 60%,
    #0d1321 100%
  );
  pointer-events: none;
}

/* Campaign badge inside canvas area */
.clb-donate-canvas-badge {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.clb-donate-canvas-badge span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(254, 224, 101, 0.7);
  border: 1px solid rgba(254, 224, 101, 0.22);
  background: rgba(254, 224, 101, 0.07);
  border-radius: 999px;
  padding: 5px 13px;
}

/* ── Panel track (slides) ── */
.clb-donate-track {
  display: flex;
  flex-direction: row;
  width: 200%;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  flex: 1;
  overflow: hidden;
}
.clb-donate-track.on-panel-2 {
  transform: translateX(-50%);
}

.clb-donate-panel {
  width: 50%;
  flex-shrink: 0;
  padding: 28px 28px 32px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ── Panel headings ── */
.clb-donate-heading {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #f8f6ee;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.clb-donate-sub {
  font-size: 14px;
  color: rgba(248, 246, 238, 0.62);
  line-height: 1.55;
  margin: 0 0 24px;
}

/* ── Frequency toggle ── */
.clb-donate-freq {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(248, 246, 238, 0.14);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.clb-donate-freq button {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: rgba(248, 246, 238, 0.5);
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.clb-donate-freq button.is-active {
  background: rgba(254, 224, 101, 0.12);
  color: #fee065;
}
.clb-donate-freq button:focus-visible {
  outline: 3px solid #fee065;
  outline-offset: -3px;
}

/* ── Preset amount grid ── */
.clb-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.clb-donate-amount-btn {
  position: relative;
  padding: 14px 8px;
  border: 1.5px solid rgba(248, 246, 238, 0.14);
  border-radius: 8px;
  background: rgba(248, 246, 238, 0.04);
  color: rgba(248, 246, 238, 0.82);
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: border-color 150ms ease,
              background 150ms ease,
              color 150ms ease,
              transform 80ms ease;
  line-height: 1.1;
}
.clb-donate-amount-btn:hover {
  border-color: rgba(254, 224, 101, 0.4);
  background: rgba(254, 224, 101, 0.07);
  color: #f8f6ee;
}
.clb-donate-amount-btn.is-selected {
  border-color: #fee065;
  background: rgba(254, 224, 101, 0.12);
  color: #fee065;
}
.clb-donate-amount-btn:active {
  transform: scale(0.97);
}
.clb-donate-amount-btn:focus-visible {
  outline: 3px solid #fee065;
  outline-offset: 2px;
}

/* Gold badge on $125 */
.clb-donate-amount-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fee065;
  opacity: 0.75;
  margin-top: 3px;
}
.clb-donate-amount-btn.is-selected .clb-donate-amount-badge {
  opacity: 1;
}

/* ── Custom amount field ── */
.clb-donate-custom {
  margin-bottom: 20px;
}
.clb-donate-custom-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 224, 101, 0.6);
  margin-bottom: 6px;
}
.clb-donate-custom-wrap {
  position: relative;
}
.clb-donate-custom-wrap::before {
  content: "$";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(248, 246, 238, 0.4);
  font-size: 16px;
  font-weight: 700;
  pointer-events: none;
}
.clb-donate-custom-input {
  width: 100%;
  padding: 12px 14px 12px 26px;
  border: 1.5px solid rgba(248, 246, 238, 0.14);
  border-radius: 8px;
  background: rgba(248, 246, 238, 0.04);
  color: #f8f6ee;
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 150ms ease, background 150ms ease;
}
.clb-donate-custom-input::placeholder {
  color: rgba(248, 246, 238, 0.25);
  font-weight: 400;
}
.clb-donate-custom-input:focus {
  outline: none;
  border-color: #fee065;
  background: rgba(254, 224, 101, 0.05);
}

/* ── Panel 1 continue button ── */
.clb-donate-continue {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #fee065;
  color: #063e3e;
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease, transform 80ms ease;
  margin-top: 4px;
}
.clb-donate-continue:hover {
  background: #f5d54b;
  box-shadow: 0 0 22px rgba(254, 224, 101, 0.28);
}
.clb-donate-continue:active {
  transform: translateY(1px);
}
.clb-donate-continue:focus-visible {
  outline: 3px solid #fee065;
  outline-offset: 3px;
}

/* ── Panel 2 header row ── */
.clb-donate-p2-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.clb-donate-back {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1.5px solid rgba(248, 246, 238, 0.16);
  border-radius: 7px;
  background: transparent;
  color: rgba(248, 246, 238, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 150ms ease, color 150ms ease;
}
.clb-donate-back:hover {
  background: rgba(248, 246, 238, 0.08);
  color: #f8f6ee;
}
.clb-donate-back:focus-visible {
  outline: 3px solid #fee065;
  outline-offset: 2px;
}

/* Amount summary pill */
.clb-donate-amount-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fee065;
  background: rgba(254, 224, 101, 0.10);
  border: 1px solid rgba(254, 224, 101, 0.22);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ── Form fields (panel 2) ── */
.clb-donate-field {
  margin-bottom: 16px;
}
.clb-donate-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 224, 101, 0.6);
  margin-bottom: 6px;
}
.clb-donate-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(248, 246, 238, 0.14);
  border-radius: 8px;
  background: rgba(248, 246, 238, 0.04);
  color: #f8f6ee;
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 16px;
  transition: border-color 150ms ease, background 150ms ease;
  box-sizing: border-box;
}
.clb-donate-input::placeholder {
  color: rgba(248, 246, 238, 0.25);
}
.clb-donate-input:focus {
  outline: none;
  border-color: #fee065;
  background: rgba(254, 224, 101, 0.05);
  box-shadow: 0 0 0 3px rgba(254, 224, 101, 0.08);
}

/* ── Dedication section ── */
.clb-donate-ded-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
  -webkit-user-select: none;
  user-select: none;
}
.clb-donate-ded-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #fee065;
  cursor: pointer;
  flex-shrink: 0;
}
.clb-donate-ded-toggle span {
  font-size: 14px;
  color: rgba(248, 246, 238, 0.72);
}
.clb-donate-ded-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.clb-donate-ded-fields.is-open {
  max-height: 120px;
}

/* ── Divider ── */
.clb-donate-divider {
  border: none;
  height: 1px;
  background: rgba(248, 246, 238, 0.08);
  margin: 18px 0;
}

/* ── Submit (disabled / coming soon) ── */
.clb-donate-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(254, 224, 101, 0.14);
  color: rgba(254, 224, 101, 0.45);
  font-family: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: not-allowed;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(254, 224, 101, 0.16);
}
.clb-donate-submit-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(248, 246, 238, 0.48);
}
.clb-donate-submit-note a {
  color: rgba(254, 224, 101, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.clb-donate-submit-note a:hover {
  color: #fee065;
}

/* ── Step indicator ── */
.clb-donate-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 16px 0 4px;
}
.clb-donate-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 246, 238, 0.18);
  transition: background 300ms ease, transform 300ms ease;
}
.clb-donate-step-dot.is-active {
  background: #fee065;
  transform: scale(1.3);
}

/* ── Mobile ── */
@media (max-width: 520px) {
  .clb-donate-modal {
    border-radius: 14px;
    max-height: 96vh;
  }
  .clb-donate-panel {
    padding: 22px 20px 28px;
  }
  .clb-donate-canvas-wrap {
    height: 160px;
    border-radius: 14px 14px 0 0;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .clb-donate-track {
    transition: none;
  }
  .clb-donate-ded-fields {
    transition: none;
  }
  .clb-donate-canvas {
    display: none;
  }
}
