/* ═══════════════════════════════════════════════════════════════
   0 · WORDPRESS OVERRIDES  (hide default page title + bust
   theme container so the page runs edge-to-edge)
   ═══════════════════════════════════════════════════════════════ */
html { overflow-x: hidden !important; }

.entry-title,
.page-title,
.post-title,
h1.wp-block-post-title,
.entry-header,
.page-header { display: none !important; }

.entry-content,
.wp-block-post-content,
.site-main,
.site-content,
main.site-main,
article.page,
.content-area {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   1 · DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Verdana Pro";
  src: url("https://eevebxcxzubbsmdmehjz.supabase.co/storage/v1/object/public/assets/fonts/VerdanaPro-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Verdana Pro";
  src: url("https://eevebxcxzubbsmdmehjz.supabase.co/storage/v1/object/public/assets/fonts/VerdanaPro-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Color */
  --clb-teal:      #063e3e;
  --clb-teal-90:   #1b4f4f;
  --clb-teal-20:   #d6e0e0;
  --clb-ink:       #0d1321;
  --clb-beam:      #fee065;
  --clb-cream:     #f8f6ee;
  --clb-cream-90:  #efece0;
  --clb-cream-80:  #e6e2d3;
  --fg-2:          #3a4151;
  --fg-3:          #6b7280;

  /* Type */
  --font-sans: "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  --font-primary: "Atkinson Hyperlegible", "Verdana Pro", Verdana, Geneva, "DejaVu Sans", sans-serif;
  --fs-eyebrow: 12px;
  --fs-body:    17px;
  --fs-lead:    19px;
  --fs-h3:      24px;
  --fs-h2:      clamp(30px, 3.4vw, 44px);
  --fs-h1:      clamp(40px, 5.4vw, 68px);
  --tracking-eyebrow: 0.22em;

  /* Radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(6,62,62,.06), 0 1px 1px rgba(13,19,33,.04);
  --elev-2: 0 10px 30px rgba(6,62,62,.10), 0 2px 6px rgba(13,19,33,.05);
  --elev-3: 0 24px 60px rgba(6,62,62,.18), 0 8px 16px rgba(13,19,33,.08);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);

  /* Spacing */
  --container-max: 1240px;
  --container-narrow: 960px;
  --container-pad: 32px;
  --section-pad: 88px;
}

/* ═══════════════════════════════════════════════════════════════
   2 · BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--clb-cream);
  color: var(--clb-ink);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--clb-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--clb-ink); }

button { font-family: inherit; cursor: pointer; }

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

::selection { background: var(--clb-beam); color: var(--clb-teal); }

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--clb-teal);
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-wrap: balance;
}
h2 { font-size: var(--fs-h2); line-height: 1.08; }
h3 { font-size: var(--fs-h3); line-height: 1.15; }
p  { text-wrap: pretty; }

ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   3 · LAYOUT PRIMITIVES   (section → container → content)
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--white  { background: #ffffff; }
.section--cream  { background: var(--clb-cream); }
.section--ink    { background: var(--clb-ink);   color: var(--clb-cream); }
.section--teal   { background: var(--clb-teal);  color: var(--clb-cream); }

.section--ink h2,
.section--teal h2,
.section--teal h3 { color: var(--clb-cream); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* Standard centered section head */
.section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2       { margin-bottom: 16px; }
.section__head p {
  font-size: var(--fs-lead);
  color: var(--fg-2);
  line-height: 1.55;
}
.section--ink .section__head p,
.section--teal .section__head p { color: rgba(248,246,238,.78); }

/* Split section head (heading on the left, scroll nav on the right) */
.section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  max-width: none;
  text-align: left;
  margin-bottom: 36px;
}
.section__head--split .section__head-text { max-width: 720px; min-width: 0; }

/* ═══════════════════════════════════════════════════════════════
   4 · UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--clb-cream-90);
  color: var(--clb-teal);
  border: 1px solid var(--clb-cream-80);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clb-teal);
}
.eyebrow--on-white {
  background: var(--clb-cream);
  color: var(--clb-teal);
  border-color: var(--clb-cream-80);
}
.eyebrow--on-white::before { background: var(--clb-teal); }
.eyebrow--on-ink {
  background: rgba(254,224,101,.12);
  color: var(--clb-beam);
  border-color: rgba(254,224,101,.32);
}
.eyebrow--on-ink::before { background: var(--clb-beam); }
.eyebrow--on-teal {
  background: rgba(254,224,101,.14);
  color: var(--clb-beam);
  border-color: rgba(254,224,101,.32);
}
.eyebrow--on-teal::before { background: var(--clb-beam); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms var(--ease-out),
              color 180ms var(--ease-out),
              border-color 180ms var(--ease-out),
              transform 80ms var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--teal  { background: var(--clb-teal);  color: var(--clb-cream); }
.btn--teal:hover { background: var(--clb-teal-90); color: var(--clb-cream); }
.btn--beam  { background: var(--clb-beam);  color: var(--clb-teal); }
.btn--beam:hover { background: #f5d54b; color: var(--clb-teal); }
.btn--ghost { background: transparent; color: var(--clb-teal); border-color: var(--clb-teal); }
.btn--ghost:hover { background: var(--clb-teal); color: var(--clb-cream); }
.btn--ghost-light {
  background: transparent;
  color: var(--clb-cream);
  border-color: rgba(248,246,238,.4);
}
.btn--ghost-light:hover {
  background: var(--clb-cream);
  color: var(--clb-teal);
  border-color: var(--clb-cream);
}
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* Inline button groups (used in hero CTA row, celebration, sponsor) */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-row--center { justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   5 · NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 238, .92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--clb-cream-80);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clb-teal);
  text-decoration: none;
  font-weight: 700;
  min-width: 0;
}
.nav__logo-mark {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--clb-teal);
  color: var(--clb-beam);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo-text { font-size: 16px; line-height: 1.1; min-width: 0; }
.nav__logo-text small {
  display: block;
  font-size: 11px; font-weight: 400;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: var(--clb-ink);
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.nav__links a:hover {
  color: var(--clb-teal);
  border-bottom-color: var(--clb-beam);
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--clb-teal);
}
.nav__toggle-icon--close { display: none; }
.nav--open .nav__toggle-icon--open  { display: none; }
.nav--open .nav__toggle-icon--close { display: block; }

/* ═══════════════════════════════════════════════════════════════
   6 · HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: 48px 0 132px;
  background: var(--clb-ink);
  color: var(--clb-cream);
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero > .container { position: relative; z-index: 3; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__text  { min-width: 0; }
.hero__text .eyebrow { margin-bottom: 24px; }
.hero__title {
  font-size: var(--fs-h1);
  line-height: 0.98;
  color: var(--clb-cream);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero__title-accent {
  display: inline-block;
  position: relative;
}
.hero__title-accent::after {
  content: none;
}
.hero__body {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(248,246,238,.78);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__cta { margin-bottom: 28px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(254,224,101,.18);
}
.hero__meta-item .num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--clb-beam);
  line-height: 1;
}
.hero__meta-item .lbl {
  font-size: 13px;
  color: rgba(248,246,238,.6);
  line-height: 1.4;
  margin-top: 6px;
  max-width: 180px;
}

/* Hero media (image + floating cards) */
.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--clb-cream-90);
  min-width: 0;
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, var(--clb-teal-20) 0%, var(--clb-cream-90) 60%, var(--clb-beam) 200%),
    var(--clb-cream-90);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__photo-inner {
  padding: 24px;
  text-align: center;
  color: var(--clb-teal);
}
.hero__photo-inner svg { margin: 0 auto 12px; opacity: .55; }
.hero__photo-inner .hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-3);
  max-width: 240px;
  margin: 0 auto;
}
.hero__photo-inner .hint strong {
  display: block;
  color: var(--clb-teal);
  font-size: 14px;
  margin-bottom: 4px;
}

.float-card {
  position: absolute;
  background: #ffffff;
  border-radius: var(--r-lg);
  box-shadow: var(--elev-3);
  padding: 18px 22px;
  max-width: calc(100% + 36px);
}
.float-card--progress {
  top: 56px;
  right: -36px;
  width: 340px;
}
.float-card--donate {
  bottom: 40px;
  right: -36px;
  width: 360px;
  padding: 22px 24px 24px;
}

.progress__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
  gap: 12px;
}
.progress__amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--clb-teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.progress__pct {
  font-size: 18px;
  font-weight: 700;
  color: var(--clb-teal);
  line-height: 1;
}
.progress__track {
  height: 8px;
  background: var(--clb-cream-90);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 10px;
}
.progress__fill {
  height: 100%;
  width: 0;
  background: var(--clb-teal);
  border-radius: var(--r-pill);
  transition: width 1800ms var(--ease-out);
}
.progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-3);
}
.progress__meta--top { margin-top: 6px; }
.progress__meta strong { color: var(--clb-teal); font-weight: 700; }

.donor-ticker {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--clb-cream-80);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  font-size: 13px;
  color: var(--fg-2);
  overflow: hidden;
}
.donor-ticker__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clb-teal);
  position: relative;
  flex-shrink: 0;
}
.donor-ticker__pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--clb-teal);
  opacity: 0;
  animation: dt-pulse 2200ms ease-out infinite;
}
@keyframes dt-pulse {
  0%   { transform: scale(.8); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.donor-ticker__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clb-teal);
  flex-shrink: 0;
}
.donor-ticker__line {
  font-size: 13px;
  color: var(--clb-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}
.donor-ticker__line.fade {
  opacity: 0;
  transform: translateY(8px);
}

/* Donate float card */
.donate-card__tag {
  display: inline-block;
  background: var(--clb-beam);
  color: var(--clb-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}
.donate-card__title {
  font-size: 20px;
  line-height: 1.2;
  color: var(--clb-teal);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.donate-card__body {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-bottom: 16px;
}
.donate-card__btn {
  width: 100%;
  background: var(--clb-teal);
  color: var(--clb-cream);
  border: 0;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 180ms;
}
.donate-card__btn:hover { background: var(--clb-teal-90); }

/* ─── 6b · HERO ATMOSPHERE (lighthouse · sea · stars · beam) ─── */
.hero__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 25%, rgba(254,224,101,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 85%, rgba(6,62,62,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(13,19,33,0.3) 0%, transparent 70%);
}
.hero__stars { position: absolute; inset: 0; }
.hero__stars::before,
.hero__stars::after {
  content: "";
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(248,246,238,0.5);
}
.hero__stars::before {
  top: 8%; left: 12%;
  box-shadow:
    80px 30px 0 rgba(248,246,238,0.2),
    220px -10px 0 rgba(254,224,101,0.15),
    400px 20px 0 rgba(248,246,238,0.3),
    560px -5px 0 rgba(254,224,101,0.12),
    700px 35px 0 rgba(248,246,238,0.25),
    850px 10px 0 rgba(254,224,101,0.1),
    180px 80px 0 rgba(248,246,238,0.15),
    480px 60px 0 rgba(254,224,101,0.08);
  animation: twinkle 6s ease-in-out infinite alternate;
}
.hero__stars::after {
  top: 15%; left: 30%;
  box-shadow:
    60px -20px 0 rgba(254,224,101,0.12),
    300px 15px 0 rgba(248,246,238,0.2),
    520px -30px 0 rgba(248,246,238,0.18),
    200px 50px 0 rgba(254,224,101,0.1);
  animation: twinkle 8s ease-in-out infinite alternate-reverse;
}
.hero__beam-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__lighthouse {
  position: absolute;
  bottom: 40px;
  left: 4%;
  width: 84px;
  height: 280px;
  z-index: 1;
}
.hero__sea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  z-index: 1;
}
.hero__sea-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(6,62,62,0.15) 30%,
    rgba(6,62,62,0.35) 100%);
}
.hero__wave {
  position: absolute;
  bottom: 0;
  left: -2%;
  width: 104%;
  height: 110px;
  display: block;
}
.hero__wave-back { animation: wave-drift 10s ease-in-out infinite; }
.hero__wave-mid  { animation: wave-drift 7s ease-in-out infinite reverse; }
.hero__wave-front{ animation: wave-drift 5s ease-in-out infinite; }
.hero__reflections {
  position: absolute;
  bottom: 50px;
  left: 0; right: 0;
  height: 40px;
}
.hero__reflections::before,
.hero__reflections::after {
  content: "";
  position: absolute;
  width: 3px; height: 2px;
  border-radius: 50%;
  background: rgba(254,224,101,0.4);
}
.hero__reflections::before {
  left: 15%;
  box-shadow:
    80px 8px 0 rgba(254,224,101,0.2),
    200px -3px 0 rgba(248,246,238,0.25),
    350px 5px 0 rgba(254,224,101,0.3),
    520px -6px 0 rgba(248,246,238,0.15),
    680px 3px 0 rgba(254,224,101,0.2);
  animation: sparkle-a 4s ease-in-out infinite alternate;
}
.hero__reflections::after {
  left: 25%;
  box-shadow:
    60px -4px 0 rgba(254,224,101,0.15),
    170px 6px 0 rgba(248,246,238,0.2),
    440px -2px 0 rgba(254,224,101,0.25),
    600px 7px 0 rgba(248,246,238,0.12);
  animation: sparkle-a 5s ease-in-out infinite alternate-reverse;
}
/* Shimmer treatment on the hero accent word */
.hero__title-accent {
  background: linear-gradient(120deg,
    var(--clb-beam) 0%, #fff8d6 25%, var(--clb-beam) 50%,
    #ffd633 75%, var(--clb-beam) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 6s linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}
@keyframes sparkle-a {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50%      { opacity: 0.7; transform: translateY(-3px); }
}
@keyframes wave-drift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-30px); }
}
@keyframes text-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stars::before, .hero__stars::after,
  .hero__wave-back, .hero__wave-mid, .hero__wave-front,
  .hero__reflections::before, .hero__reflections::after,
  .hero__title-accent { animation: none !important; }
  .hero__beam-canvas { display: none; }
  .hero__title-accent {
    -webkit-text-fill-color: var(--clb-beam);
    background: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   7 · STATS (Impact)
   ═══════════════════════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  position: relative;
  background: var(--clb-teal);
  color: var(--clb-cream);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.stat::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--clb-beam);
  opacity: 0;
  transform: scale(.6);
  transition: opacity 320ms var(--ease-out), transform 480ms var(--ease-out);
  pointer-events: none;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--elev-3); }
.stat:hover::after { opacity: .14; transform: scale(1); }

.stat--accent {
  background: var(--clb-beam);
  color: var(--clb-teal);
}
.stat--accent .stat__num,
.stat--accent .stat__label { color: var(--clb-teal); }
.stat--accent .stat__icon { background: var(--clb-teal); color: var(--clb-beam); }
.stat--accent::after { background: var(--clb-teal); }
.stat--accent:hover::after { opacity: .08; }

.stat__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(254,224,101,.16);
  color: var(--clb-beam);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out);
}
.stat:hover .stat__icon {
  background: var(--clb-beam);
  color: var(--clb-teal);
  transform: scale(1.06) rotate(-3deg);
}
.stat--accent:hover .stat__icon { background: var(--clb-teal); color: var(--clb-beam); }
.stat__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--clb-cream);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.stat__label {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(248,246,238,.85);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   8 · PROGRAMS — single-card carousel
   ═══════════════════════════════════════════════════════════════ */
.scroll-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.scroll-nav__btn {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--clb-teal);
  color: var(--clb-cream);
  border: 0;
  display: grid;
  place-items: center;
  transition: background 180ms var(--ease-out), opacity 180ms;
}
.scroll-nav__btn:hover { background: var(--clb-teal-90); }
.scroll-nav__btn:disabled {
  background: var(--clb-cream-90);
  color: var(--fg-3);
  cursor: not-allowed;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
}

.program {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: #ffffff;
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  transition: box-shadow 320ms var(--ease-out);
}
.program:hover { box-shadow: var(--elev-2); }
.program__text {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
}
.program__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.program__step strong { color: var(--clb-teal); }
.program__icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--clb-beam);
  color: var(--clb-teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.program__text h3 { font-size: 28px; line-height: 1.15; margin: 0; }
.program__text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 480px;
}
.program__image {
  background: var(--clb-cream);
  position: relative;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--clb-cream-80);
  overflow: hidden;
  min-height: 280px;
}
.program__image-inner {
  text-align: center;
  color: var(--fg-3);
  padding: 24px;
}
.program__image-inner svg { margin: 0 auto 12px; opacity: .35; }
.program__image-inner .hint {
  font-size: 13px;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}
.program__image-inner .hint strong {
  display: block;
  color: var(--clb-teal);
  font-size: 14px;
  margin-bottom: 4px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.carousel-dots button {
  width: 28px; height: 5px;
  border-radius: var(--r-pill);
  background: var(--clb-cream-80);
  border: 0;
  cursor: pointer;
  transition: background 220ms, width 220ms;
}
.carousel-dots button.active { background: var(--clb-teal); width: 40px; }

/* ═══════════════════════════════════════════════════════════════
   9 · DONATE
   ═══════════════════════════════════════════════════════════════ */
.donate {
  background: rgba(248,246,238,.04);
  border: 1px solid rgba(254,224,101,.18);
  border-radius: var(--r-lg);
  padding: 44px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.amt-btn {
  background: transparent;
  border: 2px solid rgba(248,246,238,.18);
  border-radius: var(--r-md);
  padding: 14px 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clb-cream);
  transition: all 160ms var(--ease-out);
}
.amt-btn:hover  { border-color: var(--clb-beam); color: var(--clb-beam); }
.amt-btn.active { background: var(--clb-beam); color: var(--clb-teal); border-color: var(--clb-beam); }

.freq-row {
  display: inline-flex;
  background: rgba(248,246,238,.06);
  border: 1px solid rgba(248,246,238,.12);
  border-radius: var(--r-pill);
  padding: 4px;
  margin: 8px 0 20px;
}
.freq-btn {
  background: transparent;
  border: 0;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  color: rgba(248,246,238,.6);
  transition: color 160ms, background 160ms;
}
.freq-btn:hover { color: var(--clb-cream); }
.freq-btn.active { background: var(--clb-cream); color: var(--clb-ink); }

.donate__custom-wrap {
  display: none;
  margin: -4px 0 14px;
}
.donate__custom-wrap.show { display: block; }
.donate__custom-input {
  background: transparent;
  border: 2px solid rgba(248,246,238,.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--clb-cream);
  text-align: center;
  width: 200px;
  max-width: 100%;
}
.donate__custom-input::placeholder { color: rgba(248,246,238,.4); }

.donate__submit {
  margin-top: 8px;
  width: 100%;
  max-width: 380px;
  background: var(--clb-beam);
  color: var(--clb-teal);
  justify-content: center;
}
.donate__submit:hover { background: #f5d54b; color: var(--clb-teal); }
.donate__legal {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(248,246,238,.5);
}

/* ═══════════════════════════════════════════════════════════════
   10 · SPONSORSHIP TIERS
   ═══════════════════════════════════════════════════════════════ */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tier {
  background: #ffffff;
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}
.tier:hover {
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
  border-color: var(--clb-teal-20);
}
.tier--featured {
  background: var(--clb-teal);
  color: var(--clb-cream);
  border-color: var(--clb-teal);
  position: relative;
}
.tier--featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clb-beam);
  color: var(--clb-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.tier__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--clb-cream);
  color: var(--clb-teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 220ms var(--ease-out),
              color 220ms var(--ease-out),
              transform 220ms var(--ease-out);
}
.tier:hover .tier__icon {
  background: var(--clb-beam);
  color: var(--clb-teal);
  transform: rotate(-4deg);
}
.tier--featured .tier__icon {
  background: rgba(254,224,101,.16);
  color: var(--clb-beam);
}
.tier--featured:hover .tier__icon { background: var(--clb-beam); color: var(--clb-teal); }
.tier__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--clb-teal);
  margin-bottom: 4px;
}
.tier--featured .tier__name { color: var(--clb-cream); }
.tier__tag {
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 32px;
}
.tier--featured .tier__tag { color: rgba(248,246,238,.65); }
.tier__amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--clb-teal);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.tier__amount-plus { font-size: 18px; }
.tier--featured .tier__amount { color: var(--clb-beam); }
.tier__tickets {
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.tier--featured .tier__tickets { color: rgba(248,246,238,.7); }
.tier__divider {
  height: 1px;
  background: var(--clb-cream-80);
  margin-bottom: 18px;
}
.tier--featured .tier__divider { background: rgba(248,246,238,.2); }
.tier__benefits {
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.tier__benefits li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  padding: 7px 0 7px 22px;
  position: relative;
}
.tier--featured .tier__benefits li { color: rgba(248,246,238,.85); }
.tier__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--clb-teal);
  border-bottom: 2px solid var(--clb-teal);
  transform: rotate(-45deg);
}
.tier--featured .tier__benefits li::before { border-color: var(--clb-beam); }

.sponsor__cta { margin-top: 44px; }

/* ═══════════════════════════════════════════════════════════════
   11 · QUOTES — 3-up carousel
   ═══════════════════════════════════════════════════════════════ */
.quote {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.quote:hover { box-shadow: var(--elev-2); transform: translateY(-2px); }

.quote__head {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.quote__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clb-teal-20);
  display: grid;
  place-items: center;
  color: var(--clb-teal);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.quote__mark {
  font-size: 40px;
  line-height: 0.6;
  color: var(--clb-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.quote__text {
  font-size: 20px;
  line-height: 1.4;
  color: var(--clb-ink);
  letter-spacing: -0.005em;
  margin: 0 0 auto;
}
.quote__attr {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--clb-cream-80);
}
.quote__attr .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clb-ink);
  margin-bottom: 4px;
}
.quote__attr .role {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   12 · CELEBRATION
   ═══════════════════════════════════════════════════════════════ */
.celebration {
  padding: 96px 0;
  background: var(--clb-teal);
  color: var(--clb-cream);
  position: relative;
  overflow: hidden;
}
.celebration::before,
.celebration::after {
  content: "";
  position: absolute;
  right: -300px;
  bottom: -300px;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(254,224,101,.08);
  pointer-events: none;
}
.celebration::after {
  right: -200px;
  bottom: -200px;
  width: 600px; height: 600px;
  border-color: rgba(254,224,101,.16);
}
.celebration__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.celebration__text { min-width: 0; }
.celebration__text .eyebrow { margin-bottom: 28px; }
.celebration__title {
  color: var(--clb-cream);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.celebration__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--clb-beam);
}
.celebration__lead {
  font-size: var(--fs-lead);
  color: rgba(248,246,238,.78);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Venue image placeholder — sits in left column, above event details.
   Tinted surface that reads as a card on the dark teal background. */
.celebration__venue {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(254,224,101,.10) 0%, rgba(254,224,101,.04) 60%, rgba(13,19,33,.20) 100%),
    rgba(254,224,101,.04);
  border: 1px solid rgba(254,224,101,.18);
  overflow: hidden;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
}
.celebration__venue-inner {
  text-align: center;
  padding: 24px;
  color: var(--clb-beam);
}
.celebration__venue-inner svg {
  margin: 0 auto 14px;
  opacity: .65;
}
.celebration__venue-inner .hint {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248,246,238,.7);
  max-width: 280px;
  margin: 0 auto;
}
.celebration__venue-inner .hint strong {
  display: block;
  color: var(--clb-beam);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.event-details {
  margin: 0 0 28px;
  padding: 0;
}
.event-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(254,224,101,.18);
  font-size: 16px;
}
.event-details li:last-child { border-bottom: 1px solid rgba(254,224,101,.18); }
.event-details .label {
  flex: 0 0 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clb-beam);
  padding-top: 4px;
}
.event-details .val {
  flex: 1;
  min-width: 0;
  color: var(--clb-cream);
  line-height: 1.5;
}
.event-details .val small {
  display: block;
  color: rgba(248,246,238,.6);
  font-size: 14px;
  margin-top: 2px;
}

.celebration__card {
  background: rgba(248,246,238,.04);
  border: 1px solid rgba(254,224,101,.22);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  min-width: 0;
}
.celebration__card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clb-beam);
  margin-bottom: 20px;
}
.celebration__card h3 {
  color: var(--clb-cream);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.evening-list { margin: 0 0 28px; padding: 0; }
.evening-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: rgba(248,246,238,.88);
  line-height: 1.4;
}
.evening-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  height: 1px;
  background: var(--clb-beam);
}
.celebration__contact {
  padding-top: 20px;
  border-top: 1px solid rgba(254,224,101,.22);
}
.celebration__contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,246,238,.6);
  margin-bottom: 8px;
}
.celebration__contact-body {
  font-size: 15px;
  color: var(--clb-cream);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   13b · FAQ ACCORDION  (ported from v2 — uniquely namespaced as
   `clbfaq-` so no external stylesheet can override the mechanics)
   ═══════════════════════════════════════════════════════════════ */
.clbfaq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.clbfaq-filter {
  background: var(--clb-cream-90);
  border: 1px solid var(--clb-cream-80);
  color: var(--fg-2);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 160ms var(--ease-out),
              color 160ms var(--ease-out),
              border-color 160ms var(--ease-out);
}
.clbfaq-filter:hover { border-color: var(--clb-teal-20); color: var(--clb-teal); }
.clbfaq-filter.is-active {
  background: var(--clb-teal);
  border-color: var(--clb-teal);
  color: var(--clb-cream);
}

.clbfaq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clbfaq-item {
  background: #ffffff;
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.clbfaq-item[hidden] { display: none !important; }
.clbfaq-item:hover { border-color: var(--clb-teal-20); }
.clbfaq-item.is-open { border-color: var(--clb-teal-20); box-shadow: var(--elev-1); }

.clbfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-primary);
}
.clbfaq-q-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--clb-teal);
  line-height: 1.35;
}
.clbfaq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--clb-cream-90);
  color: var(--clb-teal);
  display: grid;
  place-items: center;
  transition: transform 260ms var(--ease-out), background 200ms var(--ease-out);
}
.clbfaq-icon svg { width: 14px; height: 14px; }
.clbfaq-item.is-open .clbfaq-icon {
  background: var(--clb-beam);
  transform: rotate(45deg);
}

.clbfaq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-out);
}
.clbfaq-item.is-open .clbfaq-a { grid-template-rows: 1fr; }
.clbfaq-a-clip { overflow: hidden; min-height: 0; }
.clbfaq-a-inner {
  padding: 0 24px 24px;
  border-top: 1px solid var(--clb-cream-80);
}
.clbfaq-a-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin-top: 14px;
}
.clbfaq-a-inner p strong { color: var(--clb-teal); }
.clbfaq-a-inner a { color: var(--clb-teal); font-weight: 700; }

.clbfaq-mail {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px !important;
  line-height: 1.7 !important;
  background: var(--clb-cream-90);
  border: 1px solid var(--clb-cream-80);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--clb-teal) !important;
}

.clbfaq-tiers {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clbfaq-tiers li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  padding: 12px 14px;
  background: var(--clb-cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--clb-cream-80);
}
.clbfaq-tiers .tier-name,
.clbfaq-tiers .tier-amount {
  font-weight: 700;
  color: var(--clb-teal);
  margin-right: 8px;
}

@media (max-width: 480px) {
  .clbfaq-q { padding: 18px 18px; }
  .clbfaq-q-text { font-size: 15px; }
  .clbfaq-a-inner { padding: 0 18px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   13c · DONATION MODAL  (dark theme — matches external clb-extras.css;
   self-contained fallback, scoped to .clb125-soon)
   ═══════════════════════════════════════════════════════════════ */
.clb125-soon .clb-donate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13,19,33,.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.clb125-soon .clb-donate-overlay.is-open { display: flex; }

.clb125-soon .clb-donate-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 94vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--clb-ink);
  color: var(--clb-cream);
  border: 1px solid rgba(254,224,101,.14);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  font-family: var(--font-primary);
  scrollbar-width: none;
}
.clb125-soon .clb-donate-modal::-webkit-scrollbar { display: none; }
.clb125-soon .clb-donate-modal:focus { outline: none; }

.clb125-soon .clb-donate-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 4;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-md);
  background: rgba(248,246,238,.10);
  color: rgba(248,246,238,.85);
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.clb125-soon .clb-donate-close:hover {
  background: rgba(248,246,238,.18);
  color: var(--clb-cream);
}

.clb125-soon .clb-donate-canvas-wrap {
  position: relative;
  height: 200px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(254,224,101,.10) 0%, transparent 55%),
    var(--clb-ink);
  overflow: hidden;
}
.clb125-soon .clb-donate-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.clb125-soon .clb-donate-canvas-badge {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  padding: 11px 22px;
  border: 1px solid rgba(254,224,101,.45);
  border-radius: var(--r-pill);
  background: rgba(13,19,33,.55);
}
.clb125-soon .clb-donate-canvas-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clb-beam);
}

.clb125-soon .clb-donate-steps {
  display: flex;
  gap: 9px;
  justify-content: center;
  padding: 22px 0 6px;
}
.clb125-soon .clb-donate-step-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(248,246,238,.22);
  transition: background 220ms var(--ease-out), width 220ms var(--ease-out);
}
.clb125-soon .clb-donate-step-dot.is-active {
  background: var(--clb-beam);
}

.clb125-soon .clb-donate-track {
  display: block;
}
.clb125-soon .clb-donate-panel {
  padding: 26px 44px 44px;
  animation: clb-donate-fade 360ms var(--ease-out);
}
.clb125-soon .clb-donate-panel[aria-hidden="true"] { display: none; }
@keyframes clb-donate-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.clb125-soon .clb-donate-heading {
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: var(--clb-cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.clb125-soon .clb-donate-sub {
  font-size: 16px;
  color: rgba(248,246,238,.62);
  line-height: 1.5;
  margin-bottom: 24px;
}

.clb125-soon .clb-donate-freq {
  display: flex;
  width: 100%;
  background: rgba(248,246,238,.05);
  border: 1px solid rgba(248,246,238,.12);
  border-radius: var(--r-md);
  padding: 5px;
  margin-bottom: 22px;
}
.clb125-soon .clb-donate-freq button {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: rgba(248,246,238,.6);
  padding: 12px 20px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.clb125-soon .clb-donate-freq button:hover { color: var(--clb-cream); }
.clb125-soon .clb-donate-freq button.is-active,
.clb125-soon .clb-donate-freq button[aria-pressed="true"] {
  background: rgba(254,224,101,.10);
  color: var(--clb-beam);
}

.clb125-soon .clb-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.clb125-soon .clb-donate-amount-btn {
  border: 1.5px solid rgba(248,246,238,.14);
  background: rgba(248,246,238,.04);
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  color: var(--clb-cream);
  padding: 18px 6px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 150ms var(--ease-out),
              background 150ms var(--ease-out),
              color 150ms var(--ease-out);
}
.clb125-soon .clb-donate-amount-btn:hover {
  border-color: rgba(254,224,101,.45);
  background: rgba(254,224,101,.06);
}
.clb125-soon .clb-donate-amount-btn.is-active,
.clb125-soon .clb-donate-amount-btn[aria-pressed="true"] {
  background: var(--clb-beam);
  border-color: var(--clb-beam);
  color: var(--clb-ink);
}

.clb125-soon .clb-donate-custom { margin-bottom: 28px; }
.clb125-soon .clb-donate-custom-label,
.clb125-soon .clb-donate-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clb-beam);
  margin-bottom: 9px;
}
.clb125-soon .clb-donate-custom-wrap { position: relative; }
.clb125-soon .clb-donate-custom-wrap::before {
  content: "$";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  font-weight: 700;
  color: rgba(248,246,238,.45);
  pointer-events: none;
  z-index: 1;
}
.clb125-soon .clb-donate-custom-input,
.clb125-soon .clb-donate-input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid rgba(248,246,238,.16);
  border-radius: var(--r-md);
  font-family: var(--font-primary);
  font-size: 17px;
  color: var(--clb-cream);
  background: rgba(248,246,238,.04);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.clb125-soon .clb-donate-custom-input { padding-left: 36px; }
.clb125-soon .clb-donate-custom-input::placeholder,
.clb125-soon .clb-donate-input::placeholder { color: rgba(248,246,238,.4); }
.clb125-soon .clb-donate-custom-input:focus,
.clb125-soon .clb-donate-input:focus {
  outline: none;
  border-color: var(--clb-beam);
  box-shadow: 0 0 0 3px rgba(254,224,101,.22);
}

.clb125-soon .clb-donate-continue,
.clb125-soon .clb-donate-submit {
  width: 100%;
  padding: 18px;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
}
.clb125-soon .clb-donate-continue {
  background: var(--clb-beam);
  color: var(--clb-teal);
}
.clb125-soon .clb-donate-continue:hover {
  background: #f5d54b;
  box-shadow: 0 0 26px rgba(254,224,101,.32);
}
.clb125-soon .clb-donate-submit {
  background: rgba(254,224,101,.08);
  border-color: rgba(254,224,101,.30);
  color: rgba(254,224,101,.7);
}
.clb125-soon .clb-donate-submit:not(:disabled):hover {
  background: var(--clb-beam);
  border-color: var(--clb-beam);
  color: var(--clb-teal);
}
.clb125-soon .clb-donate-submit:disabled { cursor: not-allowed; }
.clb125-soon .clb-donate-submit-note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248,246,238,.55);
  margin-top: 16px;
  text-align: center;
}
.clb125-soon .clb-donate-submit-note a { color: var(--clb-beam); }

.clb125-soon .clb-donate-p2-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.clb125-soon .clb-donate-back {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(248,246,238,.16);
  border-radius: var(--r-md);
  background: rgba(248,246,238,.04);
  color: var(--clb-cream);
  cursor: pointer;
  transition: border-color 150ms var(--ease-out), background 150ms var(--ease-out);
}
.clb125-soon .clb-donate-back:hover {
  border-color: rgba(254,224,101,.45);
  background: rgba(254,224,101,.06);
}
.clb125-soon .clb-donate-amount-pill {
  font-size: 16px;
  font-weight: 700;
  color: var(--clb-beam);
  background: rgba(254,224,101,.10);
  border: 1px solid rgba(254,224,101,.32);
  border-radius: var(--r-pill);
  padding: 9px 20px;
}
.clb125-soon .clb-donate-field { margin-bottom: 20px; }
.clb125-soon .clb-donate-divider {
  border: 0;
  height: 1px;
  background: rgba(248,246,238,.12);
  margin: 24px 0;
}
.clb125-soon .clb-donate-ded-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 400;
  color: var(--clb-cream);
  cursor: pointer;
}
.clb125-soon .clb-donate-ded-toggle input {
  width: 22px; height: 22px;
  accent-color: var(--clb-beam);
  cursor: pointer;
}
.clb125-soon .clb-donate-ded-fields { margin-top: 20px; }
.clb125-soon .clb-donate-ded-fields[aria-hidden="true"] { display: none; }

@media (max-width: 480px) {
  .clb125-soon .clb-donate-panel { padding: 22px 24px 32px; }
  .clb125-soon .clb-donate-amounts { grid-template-columns: repeat(2, 1fr); }
  .clb125-soon .clb-donate-canvas-wrap { height: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   14 · RESPONSIVE  (1024 / 768 / 480)
   ═══════════════════════════════════════════════════════════════ */

/* ── Large tablet / small laptop ───────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
    --container-pad: 24px;
  }

  .hero__inner { gap: 40px; }
  .float-card { max-width: 100%; }
  .float-card--progress { right: 0; width: min(320px, 90%); }
  .float-card--donate   { right: 0; width: min(340px, 92%); }

  .tiers { grid-template-columns: repeat(2, 1fr); }
  .celebration__inner { gap: 48px; }
}

/* ── Small desktop / large tablet (769–1024px) ──────────────────
   In this band the hero is still side-by-side, but the photo column
   is too narrow for the float-cards to hang off it. Pull them inside
   the column and shrink them so nothing escapes the viewport. */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__inner { gap: 36px; }

  .float-card {
    max-width: 100%;            /* kill the calc(100% + 36px) bleed */
  }
  .float-card--progress {
    right: 12px;                /* tuck inside the column */
    top: 24px;
    width: min(320px, calc(100% - 24px));
    padding: 16px 18px;
  }
  .float-card--donate {
    right: 12px;
    bottom: 20px;
    width: min(320px, calc(100% - 24px));
    padding: 18px 20px 20px;
  }
  .donate-card__title { font-size: 18px; }
  .donate-card__body  { font-size: 13px; margin-bottom: 12px; }
}

/* ── Tablet ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  /* Mobile nav: links collapse into a slide-down panel under the bar.
     Donate button stays in the bar (never more than one tap away). */
  #primaryNav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 246, 238, .98);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--clb-cream-80);
    box-shadow: var(--elev-2);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 280ms var(--ease-out),
                visibility 0s linear 280ms;
  }
  .nav--open #primaryNav {
    max-height: 60vh;
    visibility: visible;
    transition: max-height 320ms var(--ease-out),
                visibility 0s linear 0s;
  }
  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--container-pad) 16px;
  }
  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--clb-cream-80);
  }
  .nav__links li:last-child a { border-bottom: 0; }
  .nav__links a:hover { border-bottom-color: var(--clb-cream-80); }

  .nav__toggle { display: inline-grid; place-items: center; }

  /* Mobile nav row: logo on the left, then Donate + hamburger grouped
     together on the right with a tight gap (no odd space between). */
  .nav__inner { gap: 0; }
  .nav__donate { margin-left: auto; }
  .nav__toggle { margin-left: 8px; }
  .nav__logo { margin-right: 12px; }

  /* Hero stacks; float-cards become inline */
  .hero { padding: 32px 0 56px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__media {
    aspect-ratio: auto;          /* let content drive height; cards must flow */
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    display: block;
  }
  .hero__photo {
    position: relative;          /* drop out of absolute fill */
    inset: auto;
    aspect-ratio: 16/12;         /* photo keeps a defined shape */
    width: 100%;
  }
  .float-card {
    position: static;
    width: 100%;
    max-width: 100%;
    top: auto; right: auto; bottom: auto; left: auto;
  }
  .float-card--progress { margin-top: 24px; }
  .float-card--donate   { margin-top: 16px; box-shadow: var(--elev-2); }

  /* Stats 2-up */
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* Program cards stack */
  .program {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .program__image {
    border-left: 0;
    border-top: 1px solid var(--clb-cream-80);
    aspect-ratio: 16/10;
    min-height: 0;
  }
  .program__text { padding: 32px 28px; gap: 16px; }
  .program__text h3 { font-size: 24px; }

  /* Quotes 2-up */
  .quote {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 340px;
  }
  .quote__text { font-size: 18px; }

  /* Celebration stacks */
  .celebration { padding: 72px 0; }
  .celebration__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Donate spacing */
  .donate { padding: 32px 24px; }
  .donate__amounts { grid-template-columns: repeat(3, 1fr); }

  /* Section heads */
  .section__head { margin-bottom: 36px; }
  .section__head--split { margin-bottom: 28px; }

  .scroll-nav__btn { width: 40px; height: 40px; }
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
    --container-pad: 20px;
  }

  .nav__inner { padding: 12px var(--container-pad); }
  .nav__logo-text small { display: none; }

  /* Type slight clamp lower bound already handles H1/H2; tighten body extras */
  .hero { padding: 24px 0 48px; }
  .hero__title { margin-bottom: 18px; }
  .hero__body { margin-bottom: 24px; font-size: 17px; }
  .hero__meta { gap: 20px; }

  /* Pull the hero photo shorter so the stacked cards appear sooner */
  .hero__photo { aspect-ratio: 4/3; }

  /* Cards inherit full-width from the 768px block; trim padding for narrow screens */
  .float-card--progress { padding: 16px 18px; }
  .float-card--donate   { padding: 18px 18px 20px; }

  /* Single-column stats */
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 170px; padding: 22px; }
  .stat__num { font-size: 34px; }

  /* Single-column tiers */
  .tiers { grid-template-columns: 1fr; }

  /* Donate */
  .donate { padding: 28px 20px; }
  .donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .donate__submit { max-width: 100%; }

  /* Quotes single-up */
  .quote {
    flex: 0 0 100%;
    min-height: 320px;
    padding: 22px 22px 20px;
  }
  .quote__text { font-size: 17px; }

  /* Programs */
  .program__text { padding: 24px 20px; }
  .program__text h3 { font-size: 20px; }
  .program__text p { font-size: 15px; }

  /* Float-cards on mobile */
  .progress__amount { font-size: 24px; }
  .donate-card__title { font-size: 18px; }

  /* Celebration */
  .celebration { padding: 56px 0; }
  .celebration__card { padding: 28px 22px; }
  .celebration__venue { aspect-ratio: 4/3; margin-bottom: 24px; }
  .event-details .label { flex: 0 0 80px; font-size: 10px; }
  .event-details li { font-size: 15px; }

  /* Buttons wrap full-width feels right on tiny screens */
  .hero__cta .btn,
  .btn-row .btn { width: 100%; }
}
/* ─── Preview image sizing ─── */
.program__image { position: relative; }
.program__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); }
.celebration__venue img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); }

/* ═══════════════════════════════════════════════════════════════
   14b · SPONSOR INQUIRY MODAL  (dark theme — matches donate modal;
   self-contained, scoped to .clb125-soon)
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Modal shell ── */
.clb125-soon .clb-sponsor-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 94vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--clb-ink);
  color: var(--clb-cream);
  border: 1px solid rgba(254,224,101,.14);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  font-family: var(--font-primary);
  scrollbar-width: none;
}
.clb125-soon .clb-sponsor-modal::-webkit-scrollbar { display: none; }
.clb125-soon .clb-sponsor-modal:focus { outline: none; }

/* ── Close button ── */
.clb125-soon .clb-sponsor-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 4;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r-md);
  background: rgba(248,246,238,.10);
  color: rgba(248,246,238,.85);
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.clb125-soon .clb-sponsor-close:hover {
  background: rgba(248,246,238,.18);
  color: var(--clb-cream);
}
.clb125-soon .clb-sponsor-close:focus-visible {
  outline: 3px solid var(--clb-beam);
  outline-offset: 2px;
}

/* ── Header ── */
.clb125-soon .clb-sponsor-header {
  padding: 44px 44px 0;
}
.clb125-soon .clb-sponsor-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clb-beam);
  margin-bottom: 12px;
}
.clb125-soon .clb-sponsor-heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--clb-cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.clb125-soon .clb-sponsor-sub {
  font-size: 16px;
  color: rgba(248,246,238,.62);
  line-height: 1.5;
  margin-top: 8px;
}

/* ── Form ── */
.clb125-soon .clb-sponsor-form {
  padding: 28px 44px 44px;
}
.clb125-soon .clb-sponsor-field {
  margin-bottom: 20px;
}
.clb125-soon .clb-sponsor-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clb-beam);
  margin-bottom: 9px;
}
.clb125-soon .clb-sponsor-input,
.clb125-soon .clb-sponsor-select,
.clb125-soon .clb-sponsor-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid rgba(248,246,238,.16);
  border-radius: var(--r-md);
  font-family: var(--font-primary);
  font-size: 17px;
  color: var(--clb-cream);
  background: rgba(248,246,238,.04);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
  box-sizing: border-box;
}
.clb125-soon .clb-sponsor-input::placeholder,
.clb125-soon .clb-sponsor-textarea::placeholder {
  color: rgba(248,246,238,.4);
}
.clb125-soon .clb-sponsor-input:focus,
.clb125-soon .clb-sponsor-select:focus,
.clb125-soon .clb-sponsor-textarea:focus {
  outline: none;
  border-color: var(--clb-beam);
  box-shadow: 0 0 0 3px rgba(254,224,101,.22);
}

/* Select — match input styling, override browser chrome */
.clb125-soon .clb-sponsor-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(248,246,238,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.clb125-soon .clb-sponsor-select option {
  background: var(--clb-ink);
  color: var(--clb-cream);
}

/* Textarea */
.clb125-soon .clb-sponsor-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

/* ── Row layout for side-by-side fields ── */
.clb125-soon .clb-sponsor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Divider ── */
.clb125-soon .clb-sponsor-divider {
  border: 0;
  height: 1px;
  background: rgba(248,246,238,.12);
  margin: 8px 0 24px;
}

/* ── Submit button ── */
.clb125-soon .clb-sponsor-submit {
  width: 100%;
  padding: 18px;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  background: var(--clb-beam);
  color: var(--clb-teal);
  transition: background 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
}
.clb125-soon .clb-sponsor-submit:hover {
  background: #f5d54b;
  box-shadow: 0 0 26px rgba(254,224,101,.32);
}
.clb125-soon .clb-sponsor-submit:active {
  transform: translateY(1px);
}
.clb125-soon .clb-sponsor-submit:focus-visible {
  outline: 3px solid var(--clb-beam);
  outline-offset: 3px;
}
.clb125-soon .clb-sponsor-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Error message ── */
.clb125-soon .clb-sponsor-error {
  font-size: 14px;
  line-height: 1.5;
  color: #f87171;
  margin-bottom: 16px;
  text-align: center;
}
.clb125-soon .clb-sponsor-error[aria-hidden="true"] {
  display: none;
}

/* ── Success view ── */
.clb125-soon .clb-sponsor-success {
  padding: 64px 44px 72px;
  text-align: center;
}
.clb125-soon .clb-sponsor-success[aria-hidden="true"] {
  display: none;
}
.clb125-soon .clb-sponsor-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(254,224,101,.12);
  border: 2px solid rgba(254,224,101,.30);
  display: grid;
  place-items: center;
  color: var(--clb-beam);
}
.clb125-soon .clb-sponsor-success-heading {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--clb-cream);
  line-height: 1.15;
  margin-bottom: 12px;
}
.clb125-soon .clb-sponsor-success-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248,246,238,.62);
  max-width: 360px;
  margin: 0 auto;
}
.clb125-soon .clb-sponsor-success-body a {
  color: var(--clb-beam);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.clb125-soon .clb-sponsor-success-body a:hover {
  color: #f5d54b;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .clb125-soon .clb-sponsor-header { padding: 36px 24px 0; }
  .clb125-soon .clb-sponsor-form { padding: 22px 24px 32px; }
  .clb125-soon .clb-sponsor-success { padding: 48px 24px 56px; }
  .clb125-soon .clb-sponsor-row { grid-template-columns: 1fr; gap: 0; }
  .clb125-soon .clb-sponsor-modal { max-height: 96vh; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .clb125-soon .clb-sponsor-modal {
    transition: none;
  }
}

