/* Trash Bandits — cartoony single-page welcome theme */

/*
 * ═══ REVERT CHEAT SHEET (paste :root values + notes below) ═══
 *
 * — Original “sky + grass” —
 *   --sky-top:#7ec8e3; --sky-mid:#b8e0f0; --cream:#fff9e6; --bg-bottom:#e8f5e9;
 *   --grass:#5cb85c; --grass-dark:#3d8b40; --sun:#ffd93d; --coral:#ff6b6b; --lavender:#c9b8ff;
 *   --ink:#2d3436; --ink-soft:#636e72;
 *   theme-color #7ec8e3 · SVG wave #fff9e6 · .welcome-card #fffef8 → cream
 *
 * — Creamsicle (before UT) —
 *   --sky-top:#ff9a56; --sky-mid:#ffc48a; --cream:#fff5eb; --bg-bottom:#ffe4c9;
 *   --grass:#f97316; --grass-dark:#c2410c; --sun:#ffb020; --coral:#ff6b4a; --lavender:#ffd6ae;
 *   --ink:#3d2914; --ink-soft:#7a6558;
 *   theme-color #ff9a56 · SVG wave #fff5eb · .welcome-card #fffaf5 → cream
 *
 * — UT Vols (orange + Smokey) —
 *   --sky-top:#ffb347; --sky-mid:#ff9930; --cream:#fafafa; --bg-bottom:#e4e4e6;
 *   --grass:#ff8200; --grass-dark:#c06800; --sun:#ffd666; --coral:#8b8c8e; --lavender:#d7d7da;
 *   --ink:#2c2c2e; --ink-soft:#58595b;
 *   theme-color #ff8200 · SVG wave #fafafa · .welcome-card #fff → cream · .schedule-strip #fff1e6
 *
 * body gradient always: var(--sky-top) → var(--sky-mid) → var(--cream) → var(--bg-bottom)
 * ═══════════════════════════════════════════════════════════════
 */

:root {
  /* UT Vols: Tennessee Orange + Smokey Gray */
  --sky-top: #ffb347;
  --sky-mid: #ff9930;
  --cream: #fafafa;
  --bg-bottom: #e4e4e6;
  --grass: #ff8200;
  --grass-dark: #c06800;
  --sun: #ffd666;
  --coral: #8b8c8e;
  --lavender: #d7d7da;
  --ink: #2c2c2e;
  --ink-soft: #58595b;
  --white: #ffffff;
  --card-shadow: 6px 6px 0 var(--ink);
  --card-shadow-hover: 8px 8px 0 var(--ink);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 20px;
  --radius-pill: 999px;
  --border-thick: 4px solid var(--ink);
  --facebook: #1877f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@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;
  }

  .logo-float,
  .logo-wiggle,
  .logo-tap {
    animation: none !important;
  }

  .pop-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 35%, var(--cream) 70%, var(--bg-bottom) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--grass-dark);
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(900px, 100% - 2rem);
  margin-inline: auto;
}

.container--welcome {
  width: min(920px, 100% - 2rem);
}

/* Top bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 230, 0.95);
  border-bottom: var(--border-thick);
  box-shadow: 0 4px 0 rgba(45, 52, 54, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(900px, 100% - 2rem);
  margin-inline: auto;
  padding: 0.65rem 0;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.top-brand:hover {
  text-decoration: none;
}

.top-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 2px;
  transition: transform 0.2s ease;
}

.top-brand:hover .top-logo-wrap {
  transform: rotate(-4deg) scale(1.03);
}

.top-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  grid-area: 1 / 1;
}

.top-logo.is-logo-missing {
  display: none;
}

.top-logo-fallback {
  display: none;
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--grass-dark);
  line-height: 1;
}

.top-logo-fallback:not([hidden]) {
  display: block;
}

.top-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.top-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.top-brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.top-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  color: var(--white);
  background: var(--facebook);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.top-facebook__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.62rem, 2.4vw, 0.78rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  max-width: 6.75rem;
}

@media (min-width: 380px) {
  .top-facebook__text {
    max-width: none;
    white-space: nowrap;
  }
}

@media (min-width: 480px) {
  .top-facebook {
    padding: 0.4rem 0.9rem 0.4rem 0.55rem;
    gap: 0.55rem;
  }

  .top-facebook__text {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}

.top-facebook:hover {
  color: var(--white);
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.top-facebook:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.top-facebook__icon {
  display: block;
  flex-shrink: 0;
}

.top-phone {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.top-phone:hover {
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.top-phone:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  .top-actions {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .top-brand {
    width: 100%;
    justify-content: center;
  }
}

/* Main flow */
.main-flow {
  position: relative;
  z-index: 1;
}

/* Welcome hero — single centered card (no empty side column if logo is missing) */
.welcome {
  padding: clamp(1.25rem, 4vw, 2rem) 0 0;
  position: relative;
}

.welcome-card {
  position: relative;
  background: var(--white);
  border: var(--border-thick);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  padding: clamp(1.75rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 2.75rem);
  overflow: visible;
}

.welcome-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 38rem;
  margin-inline: auto;
}

.welcome-visual {
  position: relative;
  width: 100%;
  z-index: 0;
}

.hero-logo-slot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(200px, 52vw);
  margin-inline: auto;
}

.hero-mascot {
  width: min(200px, 52vw);
  height: min(200px, 52vw);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0 rgba(45, 52, 54, 0.1));
}

.hero-mascot.is-logo-missing {
  display: none;
}

.hero-logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(200px, 52vw);
  height: min(200px, 52vw);
  margin-inline: auto;
  border: var(--border-thick);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sky-mid) 100%);
  box-shadow: 5px 5px 0 rgba(45, 52, 54, 0.12);
}

.hero-logo-fallback:not([hidden]) {
  display: flex;
}

.hero-logo-fallback__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 4.5rem);
  line-height: 1;
  color: var(--grass-dark);
  text-shadow: 2px 2px 0 rgba(45, 52, 54, 0.12);
}

.logo-float {
  animation: bob 3.2s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.mascot-caption {
  margin: 0.75rem 0 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 22rem;
  margin-inline: auto;
}

.welcome-copy {
  width: 100%;
}

.welcome-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.brand-highlight {
  color: var(--grass-dark);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  text-decoration-color: var(--sun);
}

.welcome-lead {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.88;
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* Staggered entrance */
.pop-in {
  opacity: 0;
  transform: translateY(14px);
  animation: pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pop-in--2 {
  animation-delay: 0.1s;
}

.pop-in--3 {
  animation-delay: 0.2s;
}

.pop-in--4 {
  animation-delay: 0.28s;
}

@keyframes pop-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-bubble {
  display: inline-block;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transform: rotate(-1.5deg);
}

.price-bubble-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
}

.price-bubble-amount {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3rem);
  line-height: 1;
  color: var(--grass-dark);
}

.price-bubble-amount .currency {
  font-size: 0.55em;
  vertical-align: super;
}

.price-bubble-amount .per {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--ink-soft);
}

.price-bubble-note {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.welcome-hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Inline email is used in the bottom CTA section. */
.inline-email {
  color: var(--grass-dark);
  font-weight: 800;
  text-decoration: none;
}

.inline-email:hover,
.inline-email:focus-visible {
  text-decoration: underline;
}

.welcome-wave {
  line-height: 0;
  margin-top: -1px;
}

.welcome-wave__svg {
  display: block;
  width: 100%;
  height: clamp(40px, 8vw, 56px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:hover {
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-call {
  background: var(--grass);
  color: var(--white);
}

.btn-text {
  background: var(--lavender);
}

.btn-copy {
  background: var(--sun);
}

.btn-email {
  background: var(--white);
}

.btn-facebook {
  background: var(--facebook);
  color: var(--white);
}

.btn-facebook:hover {
  color: var(--white);
  filter: brightness(1.06);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1.1rem;
}

/* Panel sections */
.panel-section {
  padding: clamp(2rem, 5vw, 3rem) 0;
  position: relative;
}

.panel-section--alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: var(--border-thick);
}

.panel-section--areas {
  background: linear-gradient(180deg, rgba(184, 224, 240, 0.28) 0%, rgba(255, 249, 230, 0.55) 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 36ch;
  font-weight: 600;
  color: var(--ink-soft);
}

#areas .section-intro .inline-phone {
  color: var(--grass);
  text-decoration: none;
  font-weight: 800;
}

#areas .section-intro .inline-phone:hover,
#areas .section-intro .inline-phone:focus-visible {
  text-decoration: underline;
}

#areas .section-intro .inline-phone strong {
  color: inherit;
  font-weight: inherit;
}

.fun-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .fun-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fun-card {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fun-card:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: var(--card-shadow-hover);
}

.fun-card-emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.fun-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.fun-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Service areas — click cards for pickup day (not a “route” map) */
.schedule-board {
  margin-top: 0.5rem;
  padding: clamp(1.35rem, 4vw, 2rem) clamp(1.15rem, 3vw, 1.85rem) clamp(1.5rem, 4vw, 2.1rem);
  border-radius: 24px;
  border: var(--border-thick);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.schedule-instructions {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  max-width: 36rem;
  margin-inline: auto;
}

.schedule-facebook {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.schedule-facebook a {
  color: var(--facebook);
  font-weight: 800;
}

.schedule-facebook a:hover {
  text-decoration: underline;
}

.schedule-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 0.65rem;
  align-items: stretch;
}

@media (max-width: 559px) {
  .schedule-card:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 22rem;
    width: 100%;
    margin-inline: auto;
  }
}

@media (min-width: 560px) and (max-width: 719px) {
  .schedule-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .schedule-card:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 24rem;
    width: 100%;
    margin-inline: auto;
  }
}

@media (min-width: 720px) {
  .schedule-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem 0.6rem;
  }

  .schedule-card:nth-child(1) {
    grid-column: 1 / 4;
  }

  .schedule-card:nth-child(2) {
    grid-column: 4 / 7;
  }

  .schedule-card:nth-child(3) {
    grid-column: 7 / 10;
  }

  .schedule-card:nth-child(4) {
    grid-column: 10 / 13;
  }

  .schedule-card:nth-child(5) {
    grid-column: 1 / 5;
    grid-row: 2;
  }

  .schedule-card:nth-child(6) {
    grid-column: 5 / 9;
    grid-row: 2;
  }

  .schedule-card:nth-child(7) {
    grid-column: 9 / 13;
    grid-row: 2;
  }
}

.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.schedule-card__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 0.65rem 0.85rem 0.85rem;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 4px 4px 0 rgba(45, 52, 54, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.schedule-card--tue .schedule-card__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--sun);
  border-radius: 12px 0 0 12px;
}

.schedule-card--thu .schedule-card__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--lavender);
  border-radius: 12px 0 0 12px;
}

.schedule-card__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(45, 52, 54, 0.14);
  background: var(--white);
}

.schedule-card__btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(45, 52, 54, 0.12);
}

.schedule-card__btn[aria-expanded="true"] {
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.schedule-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.1vw, 0.95rem);
  line-height: 1.25;
  color: var(--ink);
  padding-inline: 0.25rem;
}

.schedule-card__cta {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.schedule-card__btn[aria-expanded="true"] .schedule-card__cta {
  color: var(--grass-dark);
}

.schedule-card__answer {
  margin: 0;
  padding: 0.55rem 0.65rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(201, 184, 255, 0.35) 0%, rgba(255, 249, 230, 0.9) 100%);
  border: 3px solid var(--ink);
  border-top: none;
  border-radius: 0 0 14px 14px;
  line-height: 1.4;
}

.schedule-card__answer strong {
  font-family: var(--font-display);
  font-size: 1.05em;
  color: var(--grass-dark);
}

/* Accordion */
.cartoon-accordion {
  max-width: 640px;
  margin-inline: auto;
  border: var(--border-thick);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.accordion-item + .accordion-item {
  border-top: 3px solid var(--ink);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  background: #fff1e6;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: var(--sun);
}

.accordion-trigger[aria-expanded="true"] {
  background: var(--lavender);
}

.accordion-face {
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-trigger[aria-expanded="true"] .accordion-face {
  transform: scale(1.2) rotate(12deg);
}

.accordion-panel {
  padding: 0 1.15rem 1rem;
  background: var(--white);
}

.accordion-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Big CTA */
.big-cta {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.big-cta-card {
  text-align: center;
  background: var(--white);
  border: var(--border-thick);
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--card-shadow);
  max-width: 520px;
  margin-inline: auto;
}

.big-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  margin: 0.5rem 0 0.75rem;
}

.big-cta-card > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.cta-logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 0.5rem;
}

.big-cta-logo {
  grid-area: 1 / 1;
  width: 88px;
  height: 88px;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--cream);
}

.big-cta-logo.is-logo-missing {
  display: none;
}

.cta-logo-fallback {
  display: none;
  grid-area: 1 / 1;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--grass-dark);
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--cream), var(--sky-mid));
}

.cta-logo-fallback:not([hidden]) {
  display: flex;
}

.logo-wiggle {
  animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(4deg);
  }
}

.cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--grass-dark);
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.cta-email {
  margin: -0.65rem 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.cta-phone:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.big-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: var(--border-thick);
  background: rgba(255, 249, 230, 0.9);
  padding: 1.5rem 0 2rem;
  position: relative;
  z-index: 20;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 560px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.footer-logo {
  grid-area: 1 / 1;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  object-fit: contain;
  background: var(--white);
}

.footer-logo.is-logo-missing {
  display: none;
}

.footer-logo-fallback {
  display: none;
  grid-area: 1 / 1;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--grass-dark);
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
}

.footer-logo-fallback:not([hidden]) {
  display: flex;
}

.logo-tap {
  animation: tap-bounce 2.5s ease-in-out infinite;
}

@keyframes tap-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.08);
  }
  20% {
    transform: scale(1);
  }
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-line {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.65rem 1rem 0.75rem;
  max-width: 22rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(45, 52, 54, 0.1);
  border-radius: 16px;
  box-shadow: 3px 3px 0 rgba(45, 52, 54, 0.06);
}

.footer-credit__line {
  margin: 0;
  line-height: 1.35;
}

.footer-credit__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.footer-credit__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.footer-credit__fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  background: var(--facebook);
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.footer-credit__fb:hover {
  color: var(--white);
  text-decoration: none;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
  filter: brightness(1.05);
}

.footer-credit__fb:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.footer-credit__fb-icon {
  flex-shrink: 0;
  display: block;
}

@media (min-width: 560px) {
  .footer-credit {
    margin-inline: auto;
    max-width: 18rem;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fun-cards .fun-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.fun-cards .fun-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.fun-cards .fun-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.schedule-grid .schedule-card.reveal:nth-child(1) {
  transition-delay: 0.02s;
}

.schedule-grid .schedule-card.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.schedule-grid .schedule-card.reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.schedule-grid .schedule-card.reveal:nth-child(4) {
  transition-delay: 0.14s;
}

.schedule-grid .schedule-card.reveal:nth-child(5) {
  transition-delay: 0.18s;
}

.schedule-grid .schedule-card.reveal:nth-child(6) {
  transition-delay: 0.22s;
}

.schedule-grid .schedule-card.reveal:nth-child(7) {
  transition-delay: 0.28s;
}
