/* ============================================================
   CuteAbilities Foundation — ABA Therapy & Special Needs Support
   Design system: "Paper Playground"
   Palette: rani pink · peacock teal · marigold · periwinkle · sky
   Type: Baloo 2 (display) + Nunito (body)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --cream: #FFF8EF;
  --cream-2: #FFF1DE;
  --paper: #FFFFFF;
  --ink: #3A2E33;
  --ink-soft: #77676D;
  --line: rgba(58, 46, 51, 0.10);

  --pink: #EF5B93;
  --pink-deep: #C42B62;
  --pink-soft: #FFE7F0;

  --teal: #14A79F;
  --teal-deep: #0B7E77;
  --teal-soft: #DDF4F1;

  --gold: #FFC145;
  --gold-deep: #A96A00;
  --gold-soft: #FFF0D2;

  --peri: #7A6FF0;
  --peri-deep: #5A50C8;
  --peri-soft: #ECEAFF;

  --sky: #56C4F2;
  --sky-deep: #1B7FAE;
  --sky-soft: #E1F4FE;

  --leaf: #8FCF9F;

  --font-display: "Baloo 2", "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;

  --wrap: 1160px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-card: 0 8px 0 rgba(58, 46, 51, 0.06);
  --shadow-card-hover: 0 14px 0 rgba(58, 46, 51, 0.08);
  --shadow-pop: 0 18px 45px rgba(58, 46, 51, 0.14);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: inline-block; vertical-align: middle; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

a { color: var(--teal-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--pink-deep); }

ul, ol { padding-left: 1.3em; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 3px dashed var(--pink-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 14px 14px;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; color: var(--cream); }

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

/* ---------- 3. Layout ---------- */
.container {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(3.5rem, 7vw, 5.5rem); position: relative; }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }

.section--pink   { background: var(--pink-soft); }
.section--teal   { background: var(--teal-soft); }
.section--gold   { background: var(--gold-soft); }
.section--peri   { background: var(--peri-soft); }
.section--sky    { background: var(--sky-soft); }
.section--cream2 { background: var(--cream-2); }

.grid { display: grid; gap: 1.5rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Wavy paper-cut dividers.
   Place AFTER a tinted section (wave color = that tint, curving into the next
   section) or use .wave--flip BEFORE a tinted section. */
.wave { line-height: 0; margin-top: -1px; position: relative; z-index: 1; }
.wave svg { display: block; width: 100%; height: clamp(28px, 4vw, 52px); }
.wave path { fill: currentColor; }
.wave--flip svg { transform: scaleY(-1); }
.wave--flip { margin-top: 0; margin-bottom: -1px; }

.wave--pink { color: var(--pink-soft); }
.wave--teal { color: var(--teal-soft); }
.wave--gold { color: var(--gold-soft); }
.wave--peri { color: var(--peri-soft); }
.wave--sky  { color: var(--sky-soft); }
.wave--ink  { color: var(--ink); }
.wave--cream2 { color: var(--cream-2); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 2.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.96); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary {
  background: var(--pink-deep);
  color: #fff;
  box-shadow: 0 6px 0 rgba(58, 46, 51, 0.18);
}
.btn--primary:hover { background: #AD2154; color: #fff; box-shadow: 0 9px 0 rgba(58, 46, 51, 0.2); }

.btn--teal {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 6px 0 rgba(58, 46, 51, 0.18);
}
.btn--teal:hover { background: #085F5A; color: #fff; box-shadow: 0 9px 0 rgba(58, 46, 51, 0.2); }

.btn--outline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 6px 0 rgba(58, 46, 51, 0.14);
}
.btn--outline:hover { background: var(--gold-soft); color: var(--ink); box-shadow: 0 9px 0 rgba(58, 46, 51, 0.16); }

.btn--light {
  background: var(--paper);
  color: var(--pink-deep);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}
.btn--light:hover { background: var(--gold-soft); color: var(--pink-deep); }

.btn--sm { padding: 0.5rem 1.15rem; font-size: 0.95rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.2rem; }

.btn .heart { color: currentColor; }
.btn:hover .heart { animation: heartbeat 0.9s ease-in-out infinite; }

/* ---------- 5. Kickers, headings, squiggles ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--paper);
  border: 2px dashed currentColor;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.1rem;
}
.kicker--teal { color: var(--teal-deep); }
.kicker--peri { color: var(--peri-deep); }
.kicker--gold { color: var(--gold-deep); }
.kicker--sky  { color: var(--sky-deep); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 0; }

/* crayon squiggle under a key word */
.squig { position: relative; white-space: nowrap; isolation: isolate; }
.squig::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.26em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'><path d='M3 8 Q15 2 30 7 T60 7 T90 7 T117 6' fill='none' stroke='%23FFC145' stroke-width='6' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  z-index: -1;
}
.squig--pink::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'><path d='M3 8 Q15 2 30 7 T60 7 T90 7 T117 6' fill='none' stroke='%23EF5B93' stroke-width='6' stroke-linecap='round'/></svg>");
}
.squig--teal::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'><path d='M3 8 Q15 2 30 7 T60 7 T90 7 T117 6' fill='none' stroke='%2314A79F' stroke-width='6' stroke-linecap='round'/></svg>");
}

/* ---------- 6. Header & nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(58, 46, 51, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.logo-img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  flex: none;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-link:hover { background: var(--gold-soft); color: var(--ink); transform: translateY(-2px); }
.nav-link.is-active { background: var(--ink); color: var(--cream); }
.nav-donate { margin-left: 0.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(58, 46, 51, 0.15);
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 7. Home hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-title { margin-bottom: 0.4em; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-soft);
}
.hero-badges li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-badges .tick {
  width: 20px; height: 20px; flex: none;
  color: var(--teal-deep);
}

.hero-art { position: relative; }
.hero-art > svg { width: 100%; height: auto; display: block; }

/* floating confetti bits around the hero */
.confetti { position: absolute; pointer-events: none; z-index: 0; }
.confetti svg { width: 100%; height: 100%; display: block; }

/* ---------- 8. Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--gold);
  overflow: hidden;
  padding-block: 0.8rem;
  border-block: 2px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-item .spark { color: var(--pink); }

/* ---------- 9. Stats ---------- */
.stats-grid { text-align: center; }
.stat {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1rem 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover { transform: translateY(-5px) rotate(-0.6deg); box-shadow: var(--shadow-card-hover); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.1;
  display: block;
}
.stat:nth-child(1) .stat-num { color: var(--pink-deep); }
.stat:nth-child(2) .stat-num { color: var(--teal-deep); }
.stat:nth-child(3) .stat-num { color: var(--peri-deep); }
.stat:nth-child(4) .stat-num { color: var(--gold-deep); }
.stat-label { font-weight: 800; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- 10. Cards ---------- */
.card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-card-hover); }
.card h3 { margin-bottom: 0.35em; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card .more {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 800;
  font-size: 0.98rem;
}

.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 1.1rem;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.card:hover .icon-bubble { transform: rotate(3deg) scale(1.08); }
.icon-bubble--pink { background: var(--pink-soft); }
.icon-bubble--teal { background: var(--teal-soft); }
.icon-bubble--gold { background: var(--gold-soft); }
.icon-bubble--peri { background: var(--peri-soft); }
.icon-bubble--sky  { background: var(--sky-soft); }

/* donation impact tiers */
.tier-card {
  position: relative;
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.3rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card:hover { transform: translateY(-6px) rotate(0.6deg); box-shadow: var(--shadow-card-hover); }
.tier-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal-deep);
  display: block;
  line-height: 1.1;
}
.tier-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0.6rem 0 0; }
.tier-emoji { font-size: 1.9rem; display: block; margin-bottom: 0.5rem; }
.tier-card--star { border: 2.5px solid var(--pink); }
.tier-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--pink-deep);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* story / testimonial */
.story-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}
.story-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-soft);
  border-radius: var(--radius);
  padding: 1rem;
}
.story-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  margin-bottom: 0.8rem;
}
.story-quote .hl { color: var(--pink-deep); }
.story-by { color: var(--ink-soft); font-weight: 800; margin-bottom: 0; }
.story-by span { color: var(--teal-deep); }

/* events */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }

.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 86px;
  padding: 0.7rem 0.4rem;
  background: var(--paper);
  border: 2.5px dashed var(--pink);
  border-radius: 18px;
  transform: rotate(-3deg);
  text-align: center;
}
.date-badge .d {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--pink-deep);
}
.date-badge .m {
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.date-badge--teal { border-color: var(--teal); }
.date-badge--teal .d { color: var(--teal-deep); }
.date-badge--peri { border-color: var(--peri); }
.date-badge--peri .d { color: var(--peri-deep); }

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-soft);
  margin: 0.3rem 0 0.7rem;
  padding: 0;
  list-style: none;
}
.event-card p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.event-tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.15rem 0.8rem;
  margin-bottom: 0.4rem;
}
.event-tag--gold { background: var(--gold-soft); color: var(--gold-deep); }
.event-tag--peri { background: var(--peri-soft); color: var(--peri-deep); }

.past-event {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.past-event h3 { font-size: 1.15rem; margin-bottom: 0.2em; }
.past-event .when { font-size: 0.88rem; font-weight: 900; color: var(--pink-deep); text-transform: uppercase; letter-spacing: 0.06em; }
.past-event p { color: var(--ink-soft); font-size: 0.98rem; margin: 0.5rem 0 0; }

/* team */
.team-card { text-align: center; }
.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  border: 4px solid var(--paper);
  box-shadow: 0 6px 0 rgba(58, 46, 51, 0.12);
}
.avatar--pink { background: var(--pink); }
.avatar--teal { background: var(--teal); }
.avatar--peri { background: var(--peri); }
.avatar--gold { background: var(--gold); color: var(--ink); }
.avatar--sky  { background: var(--sky); color: var(--ink); }
.team-card .role {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 0.5rem;
}

/* program blocks (programs page) */
.program-card { display: flex; flex-direction: column; }
.program-card .provides {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.program-card .provides li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 600;
}
.provides .heart-dot {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--pink);
}

/* generic info card (contact page etc.) */
.info-card { text-align: center; }
.info-card .big { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.info-card a { font-weight: 800; }

/* callout — the name story */
.callout {
  background: var(--paper);
  border: 3px dashed var(--pink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.callout .word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
}
.callout .word .c1 { color: var(--pink-deep); }
.callout .word .c2 { color: var(--teal-deep); }
.callout p { color: var(--ink-soft); margin: 0.8rem auto 0; max-width: 46em; }

/* ---------- 11. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--pink-deep), #A02452 55%, #7E1E44);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.3rem, 5vw, 4rem);
  box-shadow: var(--shadow-pop);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 42em; margin-inline: auto; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; margin-top: 1.6rem; margin-bottom: 0; }
.cta-band .float-bit { position: absolute; opacity: 0.5; pointer-events: none; }
.cta-band--teal { background: linear-gradient(115deg, var(--teal-deep), #096560 55%, #07514D); }

/* ---------- 12. Inner page hero ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 40em;
  margin-inline: auto;
  margin-bottom: 0;
}
.page-hero--pink { background: var(--pink-soft); }
.page-hero--teal { background: var(--teal-soft); }
.page-hero--gold { background: var(--gold-soft); }
.page-hero--peri { background: var(--peri-soft); }
.page-hero--sky  { background: var(--sky-soft); }
.page-hero .confetti { opacity: 0.9; }

/* ---------- 13. Timeline ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  border-left: 3px dashed rgba(58, 46, 51, 0.22);
}
.tl-item { position: relative; padding: 0 0 2rem 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--paper);
  border: 3px solid var(--pink);
  box-shadow: 0 4px 0 rgba(58, 46, 51, 0.1);
}
.tl-item:nth-child(2) .tl-dot { border-color: var(--teal); }
.tl-item:nth-child(3) .tl-dot { border-color: var(--gold); }
.tl-item:nth-child(4) .tl-dot { border-color: var(--peri); }
.tl-item:nth-child(5) .tl-dot { border-color: var(--sky); }
.tl-item:nth-child(6) .tl-dot { border-color: var(--pink); }
.tl-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--pink-deep);
  letter-spacing: 0.04em;
}
.tl-item:nth-child(2) .tl-year { color: var(--teal-deep); }
.tl-item:nth-child(3) .tl-year { color: var(--gold-deep); }
.tl-item:nth-child(4) .tl-year { color: var(--peri-deep); }
.tl-item:nth-child(5) .tl-year { color: var(--sky-deep); }
.tl-item h3 { font-size: 1.2rem; margin: 0.15em 0 0.3em; }
.tl-item p { color: var(--ink-soft); margin: 0; }

/* ---------- 14. Gallery ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(58, 46, 51, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.filter-btn:hover { transform: translateY(-2px); background: var(--gold-soft); }
.filter-btn.is-active { background: var(--ink); color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.tile {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.tile:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: var(--shadow-card-hover); }
.tile.is-hidden { display: none; }

.tile-art {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  line-height: 1;
  overflow: hidden;
}
.tile-art::before, .tile-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.tile-art::before { width: 130px; height: 130px; background: rgba(255, 255, 255, 0.6); top: -40px; left: -35px; }
.tile-art::after { width: 90px; height: 90px; background: rgba(255, 255, 255, 0.45); bottom: -28px; right: -20px; }

.tile-art--pink { background: linear-gradient(135deg, var(--pink-soft), #FFD3E4); }
.tile-art--teal { background: linear-gradient(135deg, var(--teal-soft), #BDEAE4); }
.tile-art--gold { background: linear-gradient(135deg, var(--gold-soft), #FFE1A6); }
.tile-art--peri { background: linear-gradient(135deg, var(--peri-soft), #D8D3FF); }
.tile-art--sky  { background: linear-gradient(135deg, var(--sky-soft), #C2E9FC); }

.tile-cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
}
.tile-cap strong { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.tile-cat {
  flex: none;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-soft);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(58, 46, 51, 0.75);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox-card {
  position: relative;
  width: min(560px, 100%);
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-card .tile-art { height: 300px; font-size: 5.5rem; }
.lightbox-cap { padding: 1.1rem 1.4rem 1.4rem; }
.lightbox-cap strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; display: block; }
.lightbox-cap span { color: var(--ink-soft); font-size: 0.95rem; }
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(58, 46, 51, 0.15);
  transition: transform 0.2s ease;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(58, 46, 51, 0.15);
  transition: transform 0.2s ease;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 0.8rem; }
.lightbox-next { right: 0.8rem; }

.note-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  font-weight: 800;
  color: var(--ink-soft);
  background: var(--paper);
  border: 2px dashed var(--teal);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  max-width: 640px;
  margin: 2.2rem auto 0;
  font-size: 0.95rem;
}

/* ---------- 15. FAQ ---------- */
.faq {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq[open] summary::after { content: "−"; transform: rotate(180deg); background: var(--pink-soft); color: var(--pink-deep); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq-body p { margin-bottom: 0; }

/* ---------- 16. Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}
.field label .req { color: var(--pink-deep); }
.input, .select, .textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid rgba(58, 46, 51, 0.18);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.textarea { resize: vertical; min-height: 140px; }
.form-hint { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- 17. Donate page: copy rows, bank table, QR ---------- */
.method-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.method-card h3 { display: flex; align-items: center; gap: 0.5rem; }

.qr-frame {
  background: var(--paper);
  border: 3px dashed var(--teal);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin: 0.5rem 0 1rem;
  max-width: 240px;
}
.qr-frame img { width: 100%; height: auto; border-radius: 12px; display: block; }

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 0.7rem 0.7rem 0.7rem 1.1rem;
  margin-top: 0.7rem;
}
.copy-row code {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--ink);
  word-break: break-all;
  text-align: left;
}
.copy-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-deep);
  background: var(--teal-soft);
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.copy-btn:hover { transform: translateY(-2px); background: #C8EEE9; }
.copy-btn svg { width: 14px; height: 14px; }

.bank-list { width: 100%; display: grid; gap: 0.55rem; margin-top: 0.6rem; text-align: left; }
.bank-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.6rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  font-size: 0.95rem;
}
.bank-item .k { font-weight: 900; color: var(--ink-soft); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; flex: none; }
.bank-item .v { font-weight: 900; color: var(--ink); text-align: right; word-break: break-word; margin-left: auto; }

.upi-apps { color: var(--ink-soft); font-size: 0.9rem; font-weight: 800; margin-top: 0.4rem; }

/* numbered steps — a true sequence */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  counter-increment: step;
  position: relative;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.4rem 1.5rem 1.5rem;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: var(--pink-deep);
  box-shadow: 0 5px 0 rgba(58, 46, 51, 0.15);
}
.step:nth-child(2)::before { background: var(--teal-deep); }
.step:nth-child(3)::before { background: var(--peri-deep); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- 18. Contact extras ---------- */
.map-card {
  position: relative;
  overflow: hidden;
  background: var(--teal-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-card .inner { position: relative; z-index: 2; background: rgba(255,255,255,0.92); border-radius: var(--radius); padding: 1.6rem 1.8rem; max-width: 380px; box-shadow: var(--shadow-card); }
.map-card .inner p { color: var(--ink-soft); font-size: 0.98rem; }
.map-doodle { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  margin-top: 0.6rem;
}
.hours td { padding: 0.45rem 0; border-bottom: 2px dashed var(--line); }
.hours td:last-child { text-align: right; font-weight: 900; }
.hours tr:last-child td { border-bottom: none; }

/* ---------- 19. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #EDE0DA;
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .logo-img { height: 56px; }
.footer-brand p { color: rgba(237, 224, 218, 0.75); font-size: 0.98rem; margin-top: 0.9rem; max-width: 30em; }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.social-row a:hover { background: var(--gold); color: var(--ink); transform: translateY(-4px) rotate(-6deg); }
.social-row svg { width: 20px; height: 20px; }

.footer-col h4 {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(237, 224, 218, 0.85); text-decoration: none; font-weight: 700; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col li { font-size: 0.98rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; color: rgba(237, 224, 218, 0.85); font-weight: 700; }
.footer-contact .ic { flex: none; width: 20px; height: 20px; margin-top: 4px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(237, 224, 218, 0.65);
  font-weight: 700;
}
.footer-bottom .love { color: var(--pink); }

/* ---------- 20. Toast & back-to-top ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translate(-50%, 250%);
  visibility: hidden;
  z-index: 400;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow-pop);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s 0.35s;
  pointer-events: none;
}
.toast.is-shown { transform: translate(-50%, 0); visibility: visible; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s; }

.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(58, 46, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- 21. Reveal on scroll ----------
   Hidden state only applies when JS is running (html.js is set by an
   inline script in <head>), so content is never lost without JS. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 22. Keyframes & ambient animation classes ---------- */
@keyframes marquee { to { transform: translateX(-50%); } }

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.25); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.18); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(6deg); }
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

@keyframes drift {
  from { transform: translateX(-12px); }
  to { transform: translateX(14px); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.55); opacity: 0.5; }
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes pend {
  0%, 100% { transform: rotate(-2.5deg); }
  50% { transform: rotate(2.5deg); }
}

/* ambient classes (used on SVG groups & decor) */
.anim-floaty { animation: floaty 5s ease-in-out infinite; }
.anim-bob    { animation: bob 3.8s ease-in-out infinite; }
.anim-sway   { animation: sway 5.5s ease-in-out infinite; }
.anim-spin   { animation: spinSlow 24s linear infinite; }
.anim-drift  { animation: drift 7s ease-in-out infinite alternate; }
.anim-twinkle{ animation: twinkle 2.6s ease-in-out infinite; }
.anim-pulse  { animation: heartbeat 1.8s ease-in-out infinite; }
.anim-wiggle { animation: wiggle 3s ease-in-out infinite; }
.anim-pend   { animation: pend 6s ease-in-out infinite; }

.d1 { animation-delay: 0.6s; }
.d2 { animation-delay: 1.2s; }
.d3 { animation-delay: 1.8s; }
.d4 { animation-delay: 2.6s; }

svg .anim-floaty, svg .anim-bob, svg .anim-sway, svg .anim-spin,
svg .anim-drift, svg .anim-twinkle, svg .anim-pulse, svg .anim-wiggle {
  transform-box: fill-box;
  transform-origin: center;
}
/* balloons swing like a pendulum anchored at the child's hand */
svg .anim-pend {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

/* ---------- 23. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ---------- 24. Responsive ---------- */
@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-pop);
    padding: 1rem;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .nav-link { display: block; text-align: center; padding: 0.7rem; font-size: 1.05rem; }
  .nav-donate { margin: 0.4rem 0 0; }
  .nav-donate .btn { width: 100%; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-art { max-width: 540px; margin-inline: auto; }

  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-card { grid-template-columns: 1fr; text-align: center; }
  .story-art { max-width: 260px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .stats-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .date-badge { flex-direction: row; gap: 0.5rem; width: auto; justify-self: start; padding: 0.4rem 1rem; }
  .date-badge .d { font-size: 1.4rem; }
  .hero-actions .btn { width: 100%; }
  .cta-band .hero-actions .btn { width: 100%; }
  .logo-img { height: 44px; }
  .footer-brand .logo-img { height: 50px; }
  .to-top { right: 1rem; bottom: 1rem; width: 46px; height: 46px; }
}
