/* ============================================================
   Bloom — Sponsorship Site Styles
   Palette inspired by the event flyer:
     pink/burgundy  #B8125B / #7A0A3D
     soft mint      #B7F0DA
     warm yellow    #FFD93D
     coral          #FF7B7B
     lilac          #E5C8FF
     off-white      #FFF9F4
   ============================================================ */

:root {
  --pink: #B8125B;
  --pink-deep: #7A0A3D;
  --pink-soft: #FFE3EE;
  --mint: #B7F0DA;
  --mint-deep: #4DBF94;
  --mint-ink: #1F8E66;
  --yellow: #FFD93D;
  --coral: #FF7B7B;
  --lilac: #E5C8FF;
  --grey: #E8E8EE;
  --ink: #1B1623;
  --ink-soft: #4A4356;
  --bg: #FFF9F4;
  --card: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(27, 22, 35, 0.06);
  --shadow-md: 0 8px 28px rgba(27, 22, 35, 0.08);
  --shadow-lg: 0 16px 48px rgba(184, 18, 91, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Scroll-triggered entrance animation */
.scroll-anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.scroll-anim.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.sponsor-btn:focus-visible,
.copy-btn:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 4px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 22, 35, 0.06);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand__logo {
  height: 52px;
  width: auto;
  max-width: min(52vw, 280px);
}
.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.site-nav a:hover { color: var(--pink); text-decoration: none; }
.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-cta:hover { background: var(--pink-deep); text-decoration: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 24px 24px;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star, .bolt {
  position: absolute;
  font-size: 28px;
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
}
.star--pink { top: 8%; left: 6%; color: var(--coral); }
.star--yellow { top: 18%; right: 8%; color: var(--yellow); font-size: 36px; animation-delay: -2s; }
.star--purple { bottom: 12%; left: 12%; color: var(--lilac); font-size: 32px; animation-delay: -3s; }
.bolt { top: 38%; right: 4%; color: var(--yellow); font-size: 32px; animation-delay: -1s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(80px, 18vw, 180px);
  line-height: 0.85;
  margin: 0;
  color: var(--pink);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 0 rgba(122, 10, 61, 0.12);
}
.hero__sub {
  display: inline-block;
  margin: 16px auto 28px;
  padding: 6px 16px;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}

.hero__when {
  margin: 0 auto 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 24px;
}
.countdown__cell {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 6px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 4px;
}

.limited-badge {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 28px;
}
.limited-badge strong { color: var(--pink); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 200px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--pink-deep); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 17px; }

/* ---------- SECTIONS ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
}
.section--alt {
  background: #fff;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr min(100%, var(--maxw)) 1fr;
}
.section--alt > * { grid-column: 2; max-width: 100%; }
.section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  color: var(--pink);
}
.section__lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 32px;
}

/* ---------- ABOUT ---------- */
.about { text-align: center; padding-top: 40px; }
.about .section__title, .about .section__lede { margin-left: auto; margin-right: auto; }
.feature-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.feature-pills .pill {
  flex-shrink: 0;
  white-space: nowrap;
}
.pill {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.pill--mint   { background: var(--mint); }
.pill--yellow { background: var(--yellow); }
.pill--coral  { background: var(--coral); color: var(--ink); }
.pill--lilac  { background: var(--lilac); }
.pill--grey   { background: var(--grey); }
.about__outcome {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--pink);
  max-width: 640px;
  margin: 24px auto 0;
}

/* ---------- WHY ---------- */
/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0 40px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 8px;
  box-shadow: var(--shadow-sm);
}
.stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(27, 22, 35, 0.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat__lbl {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 500;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  position: relative;
  background: var(--bg);
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--pink);
  overflow: hidden;
}
.why-card__num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.18;
  position: absolute;
  top: 12px;
  right: 18px;
  letter-spacing: -0.03em;
}
.why-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}
.why-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* Timeline (What sponsors get) */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  position: relative;
}
.timeline__col {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.timeline__col--feature {
  background: linear-gradient(160deg, var(--pink-soft) 0%, #fff 100%);
  border: 2px solid var(--pink);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.timeline__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 22, 35, 0.1);
}
.timeline__step {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.timeline__head h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
}
.timeline__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline__col li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.timeline__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---------- MENU ---------- */
.menu__header { margin-bottom: 40px; max-width: 760px; }
.menu__how {
  background: var(--pink-soft);
  border-left: 4px solid var(--pink);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--pink-deep);
  margin: 0;
}
.menu__group { margin-bottom: 48px; }
.menu__group-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.menu__group-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--pink-soft);
  border-radius: 12px;
  font-size: 22px;
}

/* Carousel wrapper */
.carousel-wrap { position: relative; }
.carousel-arrow { display: none; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.card-grid--monetary {
  grid-template-columns: 1fr 1.6fr;
}
@media (max-width: 720px) {
  .card-grid--monetary { grid-template-columns: 1fr; }
}
.sponsor-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}
.sponsor-card:active { transform: translateY(-2px); }

/* Product media area (replaces emoji) */
.sponsor-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--pink-soft) 0%, #fff 60%, var(--mint) 130%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.25s ease;
}
.sponsor-card__media svg {
  width: 56px;
  height: 56px;
  color: var(--pink-deep);
  stroke-width: 1.6;
  transition: transform 0.25s ease;
}
.sponsor-card:hover .sponsor-card__media svg {
  transform: scale(1.08);
}

/* Legacy emoji icon (keep for any non-converted cards) */
.sponsor-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.sponsor-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  margin: 0 0 6px;
}
.sponsor-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
  line-height: 1.5;
}

/* Price line */
.sponsor-card__price {
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.sponsor-card__price--inkind {
  color: var(--mint-ink);
  font-size: 15px;
}
.sponsor-card__unit {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 4px;
}

/* Quantity stepper */
.sponsor-card__stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 6px;
  background: var(--bg);
  border-radius: 999px;
  border: 1px solid rgba(27, 22, 35, 0.08);
}
.qty-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--pink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  font-variant-numeric: tabular-nums;
}
.qty-btn:hover { background: var(--pink); color: #fff; }
.qty-btn:active { transform: scale(0.92); }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; background: #fff; color: var(--pink); }
.qty {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.sponsor-card__total {
  margin-left: auto;
  padding-right: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  font-variant-numeric: tabular-nums;
}

.sponsor-card .btn { width: 100%; pointer-events: none; }
/* button is purely visual; the card itself is the click target */
.sponsor-card--feature {
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%);
  border-color: var(--pink);
  position: relative;
}
.sponsor-card--feature::before {
  content: 'PREMIUM';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}
.sponsor-card--headline {
  padding: 28px;
}
.sponsor-card--headline .sponsor-card__media svg { width: 64px; height: 64px; }
.sponsor-card--headline h4 { font-size: 26px; margin-bottom: 10px; }
.sponsor-card--headline p { font-size: 15px; }
.sponsor-card--headline .sponsor-card__price {
  font-size: 24px;
  margin-bottom: 18px;
}
.sponsor-card--headline::before {
  content: 'HEADLINE TIER';
}
@media (max-width: 720px) {
  .sponsor-card--headline { padding: 20px; }
  .sponsor-card--headline h4 { font-size: 22px; }
  .sponsor-card--headline .sponsor-card__price { font-size: 20px; }
}

/* ---------- BANK CARD ---------- */
.bank-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
}
.bank-card__head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  margin: 0 0 6px;
}
.bank-card__head p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.bank-card__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 0;
}
.bank-card__details > div {
  border-left: 2px solid var(--pink);
  padding-left: 14px;
}
.bank-card__details dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.bank-card__details dd {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.copy-btn {
  background: var(--pink);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  min-height: 44px;
  min-width: 80px;
  transition: background 0.15s ease;
}
.copy-btn:hover { background: var(--pink-deep); }
.copy-btn.copied { background: var(--mint-deep); }

/* ---------- BENEFITS ---------- */
.benefits__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.benefits__list li {
  background: var(--bg);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.benefits__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--mint);
  color: var(--mint-deep);
  border-radius: 50%;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- CUSTOM ---------- */
.custom { text-align: center; }
.custom .section__title, .custom .section__lede { margin-left: auto; margin-right: auto; }

/* ---------- REVIEWS ---------- */
.reviews__track {
  align-items: flex-start;
  gap: 14px;
}
.review-tile {
  display: block;
  flex-shrink: 0;
  width: 280px;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-tile img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--pink-soft);
}

/* ---------- MARQUEE (constant motion) ---------- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Soft fade at the left/right edges so content doesn't cut harshly */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 40s) linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track,
.marquee:active .marquee__track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--pills {
  margin: 32px 0;
}
.marquee--pills .marquee__track {
  --marquee-duration: 32s;
  gap: 10px;
  padding: 4px 0;
}
.marquee--reviews {
  margin-top: 8px;
}
.marquee--reviews .marquee__track {
  --marquee-duration: 90s;
  padding: 4px 0;
}

/* Reduced-motion fallback: no auto-scroll; pills wrap, reviews swipe manually */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    -webkit-mask-image: none;
            mask-image: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee__track {
    animation: none;
    width: auto;
  }
  .marquee--pills .marquee__track {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .marquee--reviews .review-tile {
    scroll-snap-align: center;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  cursor: zoom-out;
}
.lightbox[aria-hidden="false"] {
  display: flex;
  animation: lightboxIn 0.18s ease-out;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ---------- GALLERY ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.gallery__tile {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.gallery__tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 24px 24px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.footer-col h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: #fff;
  font-size: 18px;
  margin: 0 0 12px;
}
.footer-col p { margin: 0 0 8px; font-size: 14px; }
.footer-col a { color: var(--mint); }
.footer-col a:hover { color: #fff; }

.icon-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.icon-link:hover {
  background: var(--mint);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}
.icon-link svg {
  width: 20px;
  height: 20px;
  display: block;
}
.site-footer__copy {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .site-header { padding: 10px 16px; }
  .brand__logo { height: 40px; }
  .site-nav { gap: 12px; }
  .site-nav a:not(.nav-cta) { display: none; }

  /* Hero — tighter on mobile */
  .hero { padding: 32px 16px 28px; }
  .hero__title {
    font-size: clamp(64px, 22vw, 120px);
    text-shadow: 0 3px 0 rgba(122, 10, 61, 0.12);
  }
  .hero__sub { font-size: 16px; margin: 12px auto 16px; }
  .hero__when { font-size: 13px; margin-bottom: 18px; }
  .eyebrow { font-size: 11px; margin-bottom: 12px; }
  .countdown { margin-bottom: 18px; max-width: 360px; }
  .countdown__cell { padding: 10px 4px; }
  .countdown__num { font-size: 24px; }
  .countdown__lbl { font-size: 9px; }
  .limited-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 20px; }

  /* Sections — less vertical padding on mobile */
  .section { padding: 40px 16px; }
  .section__title { font-size: clamp(24px, 6vw, 32px); }
  .section__lede { font-size: 16px; margin-bottom: 24px; }

  /* About — tighter */
  .feature-pills { gap: 8px; }
  .marquee--pills { margin: 20px 0; }
  .marquee--pills .marquee__track { --marquee-duration: 26s; }
  .pill { padding: 8px 14px; font-size: 13px; }
  .about__outcome { font-size: 18px; margin-top: 16px; }

  /* Why section — compact on mobile */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 4px;
    margin: 20px 0 28px;
    gap: 4px 0;
  }
  .stat { padding: 10px 6px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(27, 22, 35, 0.08); }
  .stat__num { font-size: 36px; }
  .stat__lbl { font-size: 11px; margin-top: 4px; }

  .why-card { padding: 24px 20px 18px; }
  .why-card__num { font-size: 48px; top: 8px; right: 14px; }
  .why-card__icon { font-size: 28px; margin-bottom: 8px; }
  .why-card h3 { font-size: 19px; }
  .why-card p { font-size: 14px; }
  .why__grid { gap: 12px; }

  /* Timeline — horizontal swipe carousel on mobile */
  .timeline {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 8px 16px 16px;
    margin: 0 -16px;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .timeline::-webkit-scrollbar { display: none; }
  .timeline__col {
    flex: 0 0 82%;
    min-width: 0;
    max-width: 82%;
    padding: 20px;
    scroll-snap-align: center;
  }
  .timeline__col li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .timeline__col--feature { transform: none; }
  .timeline__head { margin-bottom: 12px; padding-bottom: 10px; }
  .timeline__step { font-size: 24px; }
  .timeline__head h3 { font-size: 19px; }
  .timeline__col li { font-size: 14px; padding: 6px 0 6px 20px; }
  .timeline__col li::before { top: 14px; }

  /* Sponsor cards — much more compact */
  .menu__group { margin-bottom: 32px; }
  .menu__group-title { font-size: 20px; margin-bottom: 14px; }
  .menu__group-emoji { width: 36px; height: 36px; font-size: 18px; }
  .menu__how { font-size: 13px; padding: 12px 14px; }
  .menu__header { margin-bottom: 28px; }

  /* Card-grids — horizontal swipe carousel on mobile (Monetary excepted) */
  .card-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 8px 16px 16px;
    margin: 0 -16px;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid > .sponsor-card {
    flex: 0 0 78%;
    min-width: 0;
    max-width: 78%;
    scroll-snap-align: center;
  }
  /* Carousel arrows — mobile only */
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: var(--pink);
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(27,22,35,0.18);
    cursor: pointer;
    line-height: 1;
    padding: 0 0 2px;
  }
  .carousel-arrow:active { transform: translateY(-50%) scale(0.9); }
  .carousel-arrow--prev { left: 4px; }
  .carousel-arrow--next { right: 4px; }
  .carousel-arrow:disabled { opacity: 0.25; pointer-events: none; }

  /* Monetary keeps its single-column stack on mobile */
  .card-grid--monetary {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
    gap: 12px;
  }
  .card-grid--monetary > .sponsor-card {
    flex: initial;
    min-width: 0;
    max-width: none;
    scroll-snap-align: none;
  }
  .sponsor-card { padding: 12px; }
  .sponsor-card__media { aspect-ratio: 4 / 3; margin-bottom: 10px; }
  .sponsor-card__media svg { width: 44px; height: 44px; }
  .sponsor-card h4 { font-size: 16px; margin-bottom: 4px; }
  .sponsor-card p { font-size: 13px; margin-bottom: 10px; }
  .sponsor-card__price { font-size: 16px; margin-bottom: 10px; }
  .sponsor-card__unit { font-size: 12px; }
  .sponsor-card__price--inkind { font-size: 14px; }
  .sponsor-card__stepper { gap: 6px; padding: 5px; margin-bottom: 10px; }
  .qty-btn { width: 30px; height: 30px; font-size: 16px; }
  .qty { font-size: 14px; }
  .sponsor-card__total { font-size: 12px; padding-right: 6px; }
  .sponsor-card--feature::before { font-size: 9px; padding: 3px 7px; top: 10px; right: 10px; }

  /* Bank card */
  .bank-card { padding: 20px; margin-top: 28px; }
  .bank-card__head h3 { font-size: 20px; }
  .bank-card__head p { font-size: 13px; margin-bottom: 16px; }
  .bank-card__details { gap: 14px; }
  .bank-card__details dd { font-size: 16px; }

  /* Benefits list — compact */
  .benefits__list { gap: 8px; }
  .benefits__list li { padding: 12px 14px; font-size: 14px; }

  /* Reviews marquee — narrower tiles on mobile, slightly faster pace */
  .reviews__track { gap: 10px; }
  .review-tile { width: 220px; }
  .marquee--reviews .marquee__track { --marquee-duration: 70s; }
  .lightbox { padding: 16px; }
  .lightbox__close { top: 8px; right: 8px; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery__tile { font-size: 22px; }

  /* Footer */
  .site-footer { padding: 36px 16px 20px; }
  .site-footer__inner { gap: 24px; }

  .star, .bolt { display: none; }
}

@media (max-width: 380px) {
  .countdown { gap: 6px; }
  .countdown__cell { padding: 10px 3px; }
  .countdown__num { font-size: 20px; }
  .hero__title { font-size: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .star, .bolt { animation: none; }
  html { scroll-behavior: auto; }
}
