/* =========================================================
   Bigtime The Encouraging Bear — WordPress Theme CSS
   Mirrors the React design system (layout + animations).
   ========================================================= */

:root {
  --radius: 1.25rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 6px);
  --radius-2xl: calc(var(--radius) + 14px);
  --radius-3xl: calc(var(--radius) + 22px);
  --radius-4xl: calc(var(--radius) + 36px);

  --grape: #5d2e8c;
  --grape-foreground: #fafafa;
  --cherry: #e63946;
  --cherry-foreground: #fafafa;
  --sun: #ffc93c;
  --sun-foreground: #2a1f0a;
  --sky: #62b6ff;
  --sky-foreground: #0f1a2e;
  --grass: #5dbb63;
  --grass-foreground: #fafafa;
  --tangerine: #ff8a3d;
  --tangerine-foreground: #2a1408;

  --cream: #fff9f0;
  --blush: #fce8e6;
  --mint: #e6f6ea;
  --lavender: #efe6f8;
  --butter: #fff4d6;
  --ink: #1a1228;

  --background: var(--cream);
  --foreground: var(--ink);
  --card: #ffffff;
  --muted-foreground: #6b6280;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Nunito", ui-sans-serif, system-ui, sans-serif;
  --font-marker: "Caveat", "Comic Sans MS", cursive;

  --shadow-soft: 0 10px 30px -12px rgba(26, 18, 40, 0.18);
  --shadow-pop: 0 22px 60px -18px rgba(93, 46, 140, 0.45);
  --shadow-glow: 0 0 0 6px rgba(255, 201, 60, 0.35);

  --max: 80rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: rgba(26, 18, 40, 0.08);
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

::selection {
  background: rgba(255, 201, 60, 0.7);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Typography helpers ---- */
.font-display { font-family: var(--font-display); font-optical-sizing: auto; }
.font-marker { font-family: var(--font-marker); }
.font-sans { font-family: var(--font-sans); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---- Colors / backgrounds ---- */
.bg-cream { background-color: var(--cream); }
.bg-blush { background-color: var(--blush); }
.bg-mint { background-color: var(--mint); }
.bg-lavender { background-color: var(--lavender); }
.bg-butter { background-color: var(--butter); }
.bg-grape { background-color: var(--grape); }
.bg-cherry { background-color: var(--cherry); }
.bg-sun { background-color: var(--sun); }
.bg-sky { background-color: var(--sky); }
.bg-grass { background-color: var(--grass); }
.bg-ink { background-color: var(--ink); }
.bg-card { background-color: var(--card); }

.text-cream { color: var(--cream); }
.text-grape { color: var(--grape); }
.text-cherry { color: var(--cherry); }
.text-sun { color: var(--sun); }
.text-sky { color: var(--sky); }
.text-grass { color: var(--grass); }
.text-ink { color: var(--ink); }
.text-grape-fg { color: var(--grape-foreground); }
.text-muted { color: var(--muted-foreground); }

.bg-paper {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 201, 60, 0.2) 0, transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(230, 57, 70, 0.14) 0, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(98, 182, 255, 0.16) 0, transparent 50%);
}

.bg-grain {
  background-image: radial-gradient(rgba(26, 18, 40, 0.07) 1px, transparent 1px);
  background-size: 4px 4px;
}

.bg-hero-gradient {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 201, 60, 0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 10%, rgba(230, 57, 70, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(98, 182, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 95%, rgba(93, 187, 99, 0.35) 0%, transparent 50%),
    var(--cream);
}

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-pop { box-shadow: var(--shadow-pop); }

.underline-wavy {
  text-decoration: underline wavy rgba(255, 201, 60, 0.9);
  text-underline-offset: 8px;
  text-decoration-thickness: 4px;
}

.sticker {
  border-radius: var(--radius-3xl);
  background: var(--card);
  box-shadow:
    0 1px 0 0 rgba(26, 18, 40, 0.1),
    0 12px 0 -6px rgba(26, 18, 40, 0.06),
    0 20px 40px -16px rgba(26, 18, 40, 0.22);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  position: relative;
  padding-block: 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding-block: 6.5rem; }
}

.section-eyebrow {
  display: block;
  font-family: var(--font-marker);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.1;
  color: var(--cherry);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--ink);
}

.section-lede {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 1.125rem;
  color: rgba(26, 18, 40, 0.72);
}

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-12 { grid-template-columns: repeat(12, 1fr); }
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.isolate { isolation: isolate; }
.z-2 { z-index: 2; }
.z-40 { z-index: 40; }
.pointer-events-none { pointer-events: none; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-4xl { border-radius: var(--radius-3xl); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-inline: 1rem; }
.px-6 { padding-inline: 1.5rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-20 { padding-block: 5rem; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: clamp(2.5rem, 6vw, 3.5rem); }
.text-6xl { font-size: clamp(3rem, 8vw, 4.5rem); }
.text-7xl { font-size: 4.5rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.12em; }
.leading-tight { line-height: 1.15; }
.leading-snug { line-height: 1.35; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.opacity-75 { opacity: 0.75; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-inline: auto; }

.hidden { display: none; }
@media (min-width: 640px) {
  .sm-flex { display: flex; }
  .sm-flex-col { flex-direction: column; }
}
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-grid { display: grid; }
  .md-hidden { display: none; }
  .md-block { display: block; }
  .md-inline-flex { display: inline-flex; }
}
@media (max-width: 767px) {
  .md-only { display: none !important; }
}

/* ---- Buttons ---- */
.btn {
  group: true;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-soft);
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  will-change: transform;
}
.btn:hover { filter: brightness(1.08); }
.btn-primary { background: var(--grape); color: var(--grape-foreground); }
.btn-secondary {
  background: var(--card);
  color: var(--grape);
  box-shadow: inset 0 0 0 2px rgba(93, 46, 140, 0.15), var(--shadow-soft);
}
.btn-secondary:hover { box-shadow: inset 0 0 0 2px rgba(93, 46, 140, 0.4), var(--shadow-soft); }
.btn-ghost { background: transparent; color: var(--grape); box-shadow: none; }
.btn-ghost:hover { background: var(--lavender); }
.btn-sun { background: var(--sun); color: var(--sun-foreground); }
.btn-cherry { background: var(--cherry); color: var(--cherry-foreground); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ---- Animations ---- */
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 201, 60, 0.55); }
  50% { box-shadow: 0 0 0 18px rgba(255, 201, 60, 0); }
}
.animate-pulse-soft { animation: pulse-soft 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.animate-float { animation: float-y 6s ease-in-out infinite; }

@keyframes drift {
  0% { transform: translate3d(0, 100vh, 0) scale(0.6) rotate(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translate3d(var(--tx, 40px), -10vh, 0) scale(1) rotate(360deg); opacity: 0; }
}
.animate-drift { animation: drift var(--dur, 14s) linear infinite; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.hover-wiggle { transition: transform 0.25s ease; }
.hover-wiggle:hover { animation: wiggle 0.5s ease-in-out infinite; }

.lift {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 767px) {
  .site-header__bar {
    margin-inline: 1rem;
    width: calc(100% - 2rem);
  }
}
@media (min-width: 768px) {
  .site-header__bar { padding-inline: 1.5rem; }
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: contain;
}
.site-logo__text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .site-logo__text { display: flex; }
}
.site-logo__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
}
.site-logo__tag {
  font-family: var(--font-marker);
  font-size: 0.875rem;
  color: var(--cherry);
  margin-top: -0.15rem;
}
.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .primary-nav { display: flex; }
}
.primary-nav a,
.primary-nav .menu-item > a {
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(26, 18, 40, 0.8);
  transition: background 0.2s, color 0.2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: var(--lavender);
  color: var(--grape);
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-donate {
  display: none;
  border-radius: 9999px;
  background: var(--cherry);
  color: var(--cherry-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .nav-donate { display: inline-flex; }
}
.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--lavender);
  color: var(--grape);
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--grape);
  margin: 3px 0;
}
.mobile-nav {
  display: none;
  margin: 0.5rem 1rem 0;
  border-radius: 1.5rem;
  background: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-pop);
}
.mobile-nav.is-open { display: block; }
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  display: block;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: rgba(26, 18, 40, 0.8);
}
.mobile-nav a:hover {
  background: var(--lavender);
  color: var(--grape);
}
.mobile-nav .nav-donate {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* ---- Mouse glow ---- */
.mouse-glow {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(255, 201, 60, 0.22), transparent);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 768px) {
  .mouse-glow { display: block; }
}

/* ---- Floating hearts ---- */
.floating-hearts {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.floating-hearts span {
  position: absolute;
  bottom: 0;
  font-size: inherit;
  line-height: 1;
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.site-footer__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}
.site-footer__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 5fr 7fr; }
}
.site-footer__tagline {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: rgba(255, 249, 240, 0.75);
}
.site-footer__newsletter {
  margin-top: 1.5rem;
  display: flex;
  max-width: 28rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem;
}
.site-footer__newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.site-footer__newsletter input::placeholder { color: rgba(255, 249, 240, 0.5); }
.site-footer__social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s;
}
.site-footer__social a:hover {
  background: var(--sun);
  color: var(--sun-foreground);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .site-footer__cols { grid-template-columns: repeat(4, 1fr); }
}
.site-footer__cols h4 {
  font-family: var(--font-marker);
  font-size: 1.5rem;
  color: var(--sun);
  font-weight: 600;
}
.site-footer__cols ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.site-footer__cols li { margin-top: 0.5rem; }
.site-footer__cols a {
  color: rgba(255, 249, 240, 0.75);
}
.site-footer__cols a:hover { color: var(--sun); }
.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 249, 240, 0.6);
}
@media (min-width: 768px) {
  .site-footer__bottom-inner { flex-direction: row; }
}

/* ---- Floating hearts ---- */
.floating-hearts {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.floating-hearts span {
  position: absolute;
  bottom: 0;
  line-height: 1;
  color: inherit;
}

/* ---- Blob + Wave ---- */
.bt-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 420px;
  height: 420px;
  max-width: 90vw;
}
.bt-wave {
  pointer-events: none;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.bt-wave__svg {
  display: block;
  width: 100%;
  height: 80px;
}
@media (min-width: 768px) {
  .bt-wave__svg { height: 120px; }
}

/* ---- Hero (React-faithful) ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 4rem 1.5rem 8rem;
  }
  .hero__copy { grid-column: span 6; }
  .hero__visual-wrap { grid-column: span 6; }
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 88px; }
}
.hero__love {
  position: relative;
  display: inline-block;
  margin-inline: 0.35rem;
}
.hero__love-text {
  position: relative;
  z-index: 1;
  color: var(--cherry);
}
.hero__love-underline {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 0.75rem;
  color: var(--sun);
}
.hero__body {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(26, 18, 40, 0.75);
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .hero__body { font-size: 1.25rem; }
}
.hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.hero__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
}
.hero__stat {
  text-align: center;
  padding: 0.75rem 1rem;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--grape);
  line-height: 1.1;
}
.hero__stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 18, 40, 0.6);
}
.hero__visual {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 1;
  width: 100%;
  max-width: 620px;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 40%;
  background: radial-gradient(closest-side, rgba(255, 201, 60, 0.55), transparent);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42%;
  box-shadow: var(--shadow-pop);
}
.hero__sticker {
  position: absolute;
  z-index: 2;
  background: var(--card);
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-marker);
  font-size: 1.5rem;
  white-space: nowrap;
}
.hero__sticker--1 {
  top: 2.5rem;
  left: -1rem;
  transform: rotate(-6deg);
  display: none;
}
@media (min-width: 768px) {
  .hero__sticker--1 { display: block; }
}
.hero__sticker--2 {
  bottom: -1.5rem;
  right: 0.5rem;
  transform: rotate(3deg);
}
.hero__scroll {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto 2rem;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(93, 46, 140, 0.7);
}
.hero__scroll svg {
  animation: bounce-y 1.2s ease-in-out infinite;
}
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--card);
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grape);
  box-shadow: var(--shadow-soft);
}
.hero-badge svg { color: var(--sun); flex-shrink: 0; }

/* Impact */
.impact-section {
  position: relative;
  margin-top: -1px;
  background: var(--grape);
  color: var(--grape-foreground);
}
.impact-section .section-eyebrow { color: var(--sun); }
.impact-stat {
  text-align: left;
  padding: 0;
}
.impact-stat .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}
.impact-stat .label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
}

/* Family 4-col */
@media (min-width: 1280px) {
  .family-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
.family-card h3 {
  font-size: 1.875rem !important;
}

/* Story timeline */
.story-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-block: 8rem;
  }
  .story-grid__media { grid-column: span 5; }
  .story-grid__timeline { grid-column: span 7; }
}
.story-founder {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-pop);
}
.story-founder img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story-founder__quote {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26, 18, 40, 0.75), transparent);
  color: var(--cream);
}
.timeline-rail {
  position: relative;
}
@media (min-width: 768px) {
  .timeline-rail { padding-left: 2.5rem; }
}
.timeline-rail__bar {
  display: none;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  width: 4px;
  height: calc(100% - 1rem);
  border-radius: 9999px;
  background: linear-gradient(to bottom, var(--grape), var(--cherry), var(--sun), var(--grass));
}
@media (min-width: 768px) {
  .timeline-rail__bar { display: block; }
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 0;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .timeline-item { padding-left: 1.5rem; }
}
.timeline-item__dot {
  display: none;
  position: absolute;
  left: -0.25rem;
  top: 0.75rem;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  box-shadow: 0 0 0 4px var(--cream);
}
@media (min-width: 768px) {
  .timeline-item__dot { display: block; }
}
.timeline-item article {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .timeline-item article { padding: 2rem; }
}
.timeline-item h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 900;
}

/* Meet Bigtime */
.meet-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .meet-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-block: 7rem;
  }
  .meet-grid__visual { grid-column: span 6; }
  .meet-grid__copy { grid-column: span 6; }
}
.meet-mascot {
  display: block;
  width: 88%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 30px rgba(93, 46, 140, 0.25));
}
.meet-bubble {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 28px;
  border-bottom-left-radius: 6px;
  font-family: var(--font-marker);
  font-size: 1.5rem;
  box-shadow: var(--shadow-pop);
  transform: rotate(3deg);
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .meet-bubble {
    top: 2.5rem;
    right: 2.5rem;
    font-size: 1.875rem;
  }
}
.meet-title-hl {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0 0.75rem;
  background: var(--sun);
  border-radius: 1rem;
  transform: rotate(-1deg);
}
.traits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .traits-grid { grid-template-columns: repeat(3, 1fr); }
}
.trait-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
}

/* School / booking */
.booking-panel {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 36px;
  background: var(--lavender);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .booking-panel { padding: 3rem; }
}
.school-img {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.school-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Contact chips 2-col */
@media (min-width: 640px) {
  .contact-chips { display: grid !important; grid-template-columns: 1fr 1fr !important; }
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
form[data-bigtime-form] input:focus,
form[data-bigtime-form] textarea:focus,
form[data-bigtime-form] select:focus {
  border-color: var(--grape) !important;
  outline: none;
}

/* FAQ aside desktop only */
@media (max-width: 767px) {
  .faq-aside { display: none !important; }
}

/* Page hero titles */
.page-hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 900;
}

/* Grain overlay helper */
.bt-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.section-pad {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 7rem; }
}

.container-7xl {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ---- Cards / grids ---- */
.impact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
}
.impact-stat {
  text-align: center;
  padding: 1.5rem;
}
.impact-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}
.impact-stat .label {
  margin-top: 0.5rem;
  font-weight: 700;
  opacity: 0.85;
}

.family-grid,
.product-grid,
.programs-grid,
.category-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .family-grid,
  .product-grid,
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .family-grid,
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
}

.family-card,
.product-card,
.program-card,
.category-card,
.value-card,
.topic-card,
.event-card,
.tier-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  cursor: pointer;
  color: inherit;
  width: 100%;
  text-decoration: none;
}
.family-card:hover,
.product-card:hover,
.category-card:hover,
.program-card:hover,
.topic-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

/* Sponsor tier cards — equal height, aligned CTAs */
.tier-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 0.75rem;
}
@media (min-width: 700px) {
  .tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tier-card {
  min-width: 0;
  position: relative;
  padding-top: 1.75rem;
}
.tier-card--featured {
  box-shadow:
    0 1px 0 0 rgba(26, 18, 40, 0.1),
    0 14px 0 -6px rgba(26, 18, 40, 0.08),
    0 28px 48px -18px rgba(26, 18, 40, 0.28);
}
.tier-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}
.tier-card__price {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.tier-card__price-amount {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
}
.tier-card__price-cadence {
  opacity: 0.6;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.tier-card__perks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  flex: 1 1 auto;
}
.tier-card__cta {
  margin-top: auto;
  padding: 0.9rem 0.65rem;
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.tier-links {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .tier-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tier-links .sticker {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 1rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
}
.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.family-card__img,
.product-card__img {
  margin-top: 1.5rem;
  aspect-ratio: 1;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
}
.family-card__img img,
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s;
}
.family-card:hover .family-card__img img,
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

/* ---- Timeline ---- */
.timeline {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.timeline-item {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--grape);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 1rem 1rem 0;
}
.timeline-item .year {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- FAQ ---- */
.faq-list { margin-top: 2rem; display: grid; gap: 0.75rem; }
.faq-item {
  border-radius: 1.25rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--grape); }
.faq-item .answer {
  padding: 0 1.5rem 1.25rem;
  color: rgba(26, 18, 40, 0.75);
}

/* ---- Forms ---- */
.form-card {
  background: var(--card);
  border-radius: var(--radius-3xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grape);
}
.form-field input,
.form-field textarea,
.form-field select {
  border: 2px solid rgba(93, 46, 140, 0.12);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--grape);
}
.form-field textarea { min-height: 8rem; resize: vertical; }

/* ---- Marquee ---- */
.love-marquee {
  border-block: 4px solid var(--grape);
  background: var(--sun);
  padding-block: 1.5rem;
  overflow: hidden;
}
.love-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--grape);
  white-space: nowrap;
}
.love-marquee__track span::after {
  content: " ✦ ";
  margin-left: 2rem;
  color: var(--cherry);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background: rgba(26, 18, 40, 0.55);
  backdrop-filter: blur(4px);
}
.modal.is-open { display: grid; }
.modal__panel {
  width: min(100%, 32rem);
  max-height: 90vh;
  overflow: auto;
  background: var(--card);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: var(--shadow-pop);
  position: relative;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: var(--lavender);
  color: var(--grape);
  font-size: 1.25rem;
  cursor: pointer;
}

/* ---- Progress ---- */
.progress {
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(26, 18, 40, 0.08);
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  border-radius: inherit;
  background: var(--cherry);
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---- Misc ---- */
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--lavender);
  color: var(--grape);
}
.chip.is-active {
  background: var(--grape);
  color: var(--grape-foreground);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.contact-list a { font-weight: 700; color: var(--grape); }
.contact-list a:hover { color: var(--cherry); }

.page-hero {
  padding-block: 4rem 3rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 900;
}
.page-hero .marker {
  font-family: var(--font-marker);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cherry);
  margin-top: 0.5rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-tile {
  display: grid;
  place-items: center;
  border-radius: var(--radius-3xl);
  font-size: 3rem;
  box-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.step {
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
  color: rgba(26, 18, 40, 0.7);
}

.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
