/* ============================================================
   ZOOMTOWN — standalone fun zone site
   ============================================================ */

:root {
  --fz-pink: #ff3caa;
  --fz-hot: #ff2e63;
  --fz-orange: #ff8a3d;
  --fz-yellow: #ffd23f;
  --fz-lime: #a8ff35;
  --fz-mint: #3ff2c1;
  --fz-cyan: #2ee6ff;
  --fz-blue: #4d7cff;
  --fz-purple: #8a3dff;
  --fz-plum: #2a0f4a;
  --fz-cream: #fff8ec;
  --fz-ink: #1a0730;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  color: var(--fz-ink);
  background: var(--fz-cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Dark mode */
body.dark {
  background: #0a0018;
  color: var(--fz-cream);
}
body.dark .card-white { background: #180a2e; color: var(--fz-cream); }
body.dark .info-tile { background: #180a2e; color: var(--fz-cream); }
body.dark .marquee-section { background: var(--fz-cream); color: var(--fz-ink); border-color: var(--fz-cream); }
body.dark .marquee-track .badge { background: var(--fz-hot); }
body.dark .nav-outer { background: color-mix(in oklab, #0a0018 82%, transparent); }

/* Typography helpers */
.fz-display { font-family: "Bungee", "Fredoka", ui-sans-serif, system-ui, sans-serif; letter-spacing: 0.01em; }
.fz-shade { font-family: "Bungee Shade", "Bungee", ui-sans-serif, system-ui, sans-serif; letter-spacing: 0.02em; }
.fz-round { font-family: "Fredoka", "Nunito", ui-sans-serif, system-ui, sans-serif; font-weight: 600; }

h1, h2, h3, h4 { line-height: 1.1; }

/* Rainbow text */
.rainbow-text {
  background: linear-gradient(90deg,
    var(--fz-hot), var(--fz-orange), var(--fz-yellow), var(--fz-lime),
    var(--fz-cyan), var(--fz-purple), var(--fz-hot));
  background-size: 400% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rainbow 8s linear infinite;
}
@keyframes rainbow { 0% { background-position: 0% 50%; } 100% { background-position: 400% 50%; } }

/* Animations */
@keyframes wobble {
  0%   { transform: rotate(0) scale(1); }
  25%  { transform: rotate(-4deg) scale(1.05); }
  50%  { transform: rotate(4deg) scale(1.08); }
  75%  { transform: rotate(-2deg) scale(1.04); }
  100% { transform: rotate(0) scale(1); }
}
.wobble { transition: transform 0.25s cubic-bezier(.34,1.56,.64,1); }
.wobble:hover { animation: wobble 0.6s ease; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}
.float { animation: float 6s ease-in-out infinite; }

@keyframes bounce-in {
  0%   { transform: scale(0.4) translateY(30px); opacity: 0; }
  60%  { transform: scale(1.1) translateY(-6px); opacity: 1; }
  80%  { transform: scale(0.96) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
.bounce-in { animation: bounce-in 0.9s cubic-bezier(.34,1.56,.64,1) both; }

@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 22s linear infinite; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--fz-hot) 60%, transparent); }
  70%  { box-shadow: 0 0 0 18px color-mix(in oklab, var(--fz-hot) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--fz-hot) 0%, transparent); }
}
.pulse-ring { animation: pulse-ring 2s cubic-bezier(0.4,0,0.6,1) infinite; }

@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* Sticker cards */
.sticker {
  border: 3px solid var(--fz-ink);
  border-radius: 28px;
  box-shadow: 6px 6px 0 var(--fz-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
}
.sticker:hover { transform: translate(-2px, -2px) rotate(-0.5deg); box-shadow: 10px 10px 0 var(--fz-ink); }
.sticker--tight { border-radius: 20px; box-shadow: 4px 4px 0 var(--fz-ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border: 3px solid var(--fz-ink);
  border-radius: 999px;
  font-family: "Bungee", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  color: var(--fz-ink);
  background: var(--fz-yellow);
  box-shadow: 5px 5px 0 var(--fz-ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--fz-ink); }
.btn:active { transform: translate(3px, 3px);   box-shadow: 1px 1px 0 var(--fz-ink); }
.btn--pink { background: var(--fz-hot); color: white; }
.btn--cyan { background: var(--fz-cyan); }
.btn--lime { background: var(--fz-lime); }
.btn--white { background: white; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.875rem; }

/* Icon utility */
.icon-tile {
  display: grid; place-items: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  border: 3px solid var(--fz-ink);
  box-shadow: 3px 3px 0 var(--fz-ink);
  color: white;
}
.icon-tile svg { width: 26px; height: 26px; }

/* Squiggle underline */
.squiggle {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'><path d='M0 6 Q 15 0 30 6 T 60 6 T 90 6 T 120 6' stroke='%23ff2e63' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 120px 12px;
  padding-bottom: 12px;
}

/* Layout */
.container { width: 100%; max-width: 78rem; margin: 0 auto; padding: 0 1rem; }
.grid { display: grid; gap: 1.5rem; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

section { padding: 6rem 0; position: relative; }
@media (max-width: 700px) { section { padding: 4rem 0; } }

/* Nav */
.nav-outer {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--fz-cream) 82%, transparent);
}
.nav-inner {
  max-width: 78rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo-mark {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 1rem;
  background: var(--fz-hot); color: white;
  border: 3px solid var(--fz-ink); box-shadow: 3px 3px 0 var(--fz-ink);
}
.nav-links { display: none; gap: 1.5rem; font-size: 0.875rem; }
.nav-links a:hover { color: var(--fz-hot); }
@media (min-width: 800px) { .nav-links { display: flex; } }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: white; border: 3px solid var(--fz-ink); box-shadow: 3px 3px 0 var(--fz-ink);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.theme-toggle:hover { animation: wobble 0.6s ease; }
.nav-cta { display: none; }
@media (min-width: 600px) { .nav-cta { display: inline-flex; } }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(50% 50% at 20% 30%, color-mix(in oklab, var(--fz-yellow) 55%, transparent) 0%, transparent 60%),
    radial-gradient(45% 55% at 85% 20%, color-mix(in oklab, var(--fz-hot) 55%, transparent) 0%, transparent 60%),
    radial-gradient(55% 60% at 70% 85%, color-mix(in oklab, var(--fz-cyan) 55%, transparent) 0%, transparent 60%),
    radial-gradient(40% 50% at 10% 90%, color-mix(in oklab, var(--fz-lime) 55%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, var(--fz-cream) 0%, #fff 100%);
  padding: 5rem 0 6rem;
}
body.dark .hero { background: #0a0018; }
.hero-grid {
  max-width: 78rem; margin: 0 auto; padding: 0 1rem;
  display: grid; gap: 2.5rem; position: relative;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--fz-ink); background: white;
  padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.875rem;
}
.hero-title {
  font-family: "Bungee", ui-sans-serif, system-ui, sans-serif;
  font-size: 3rem; line-height: 0.9; margin-top: 1.25rem;
  letter-spacing: 0.01em;
}
@media (min-width: 600px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1000px) { .hero-title { font-size: 6rem; } }
.hero-title .shade {
  display: block;
  font-family: "Bungee Shade", "Bungee", sans-serif;
  color: var(--fz-ink);
}
body.dark .hero-title .shade { color: var(--fz-cream); }
.hero-sub { max-width: 32rem; margin-top: 1.5rem; font-size: 1.125rem; opacity: 0.85; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-social { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; font-size: 0.875rem; }
.hero-social .item { display: flex; align-items: center; gap: 0.5rem; }
.hero-social svg { width: 16px; height: 16px; }

.hero-cards { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.ticket-card {
  position: relative; max-width: 26rem; padding: 1.5rem;
  --rot: -4deg;
}
.ticket-card .row1 { display: flex; align-items: start; justify-content: space-between; }
.ticket-card .stamp {
  display: grid; place-items: center;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: var(--fz-purple); color: white;
  border: 3px solid var(--fz-ink);
}
.ticket-card .stamp svg { width: 22px; height: 22px; }
.ticket-card .row2 {
  display: flex; align-items: end; justify-content: space-between;
  border-top: 2px dashed var(--fz-ink); padding-top: 1rem; margin-top: 1.5rem;
}
.ticket-card .price { font-family: "Bungee", sans-serif; font-size: 3rem; line-height: 1; }
.ticket-card .price-note { margin-left: 0.5rem; font-size: 0.875rem; opacity: 0.6; }
.save-badge {
  position: absolute; right: -1rem; top: -1rem;
  display: grid; place-items: center;
  width: 4rem; height: 4rem; border-radius: 999px;
  background: var(--fz-hot); color: white;
  border: 3px solid var(--fz-ink);
  transform: rotate(12deg);
}
.save-badge span {
  font-family: "Bungee", sans-serif; font-size: 0.75rem; text-align: center; line-height: 1.1;
}
.meal-sticker {
  max-width: 20rem; padding: 1rem;
  background: var(--fz-yellow);
  --rot: 3deg;
}
.meal-sticker .inner { display: flex; align-items: center; gap: 0.75rem; }
.meal-sticker svg { width: 28px; height: 28px; }

/* Floating shapes */
.shape { position: absolute; border: 3px solid var(--fz-ink); box-shadow: 4px 4px 0 var(--fz-ink); }
.shape.circle { border-radius: 999px; }
.shape.square { border-radius: 18px; }
.shape.star   { border: none; box-shadow: none; background: transparent; }

.dot {
  position: absolute; width: 14px; height: 14px; border-radius: 999px;
  border: 2px solid var(--fz-ink);
}

/* Marquee */
.marquee-section {
  background: var(--fz-ink); color: var(--fz-cream);
  border-top: 3px solid var(--fz-ink); border-bottom: 3px solid var(--fz-ink);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track .item {
  display: flex; align-items: center; gap: 1.5rem; padding: 0 1.5rem;
}
.marquee-track .badge {
  display: grid; place-items: center;
  width: 1.5rem; height: 1.5rem; border-radius: 999px;
  background: var(--fz-hot);
}
.marquee-track .badge svg { width: 14px; height: 14px; }
.marquee-track .text {
  font-family: "Bungee", sans-serif;
  font-size: 1.125rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* Section header */
.section-header { max-width: 48rem; margin: 0 auto; text-align: center; }
.section-header.left { text-align: left; margin: 0; max-width: 40rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--fz-ink); background: white;
  padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.875rem;
}
.section-eyebrow .dotmark {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  box-shadow: 0 0 0 2px var(--fz-ink);
}
body.dark .section-eyebrow { background: #180a2e; border-color: var(--fz-cream); }
body.dark .hero-eyebrow { background: #180a2e; border-color: var(--fz-cream); }
.section-title {
  font-family: "Bungee", sans-serif;
  font-size: 2.5rem; margin-top: 1rem;
  line-height: 1.1;
}
@media (min-width: 600px) { .section-title { font-size: 3rem; } }
@media (min-width: 1000px) { .section-title { font-size: 3.75rem; } }
.section-sub { margin-top: 1rem; font-size: 1.125rem; opacity: 0.75; }

/* Attractions */
.attraction {
  padding: 1.5rem; background: white; position: relative;
}
.attraction .row {
  display: flex; align-items: start; justify-content: space-between; gap: 0.75rem;
}
.attraction .age-pill {
  border: 2px solid var(--fz-ink); background: var(--fz-cream);
  padding: 0.125rem 0.625rem; border-radius: 999px; font-size: 0.75rem;
}
.attraction h3 { font-family: "Bungee", sans-serif; font-size: 1.5rem; margin-top: 1.25rem; }
.attraction p  { margin-top: 0.5rem; font-size: 0.875rem; opacity: 0.75; }
.attraction .meta {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; font-size: 0.75rem; opacity: 0.6;
}
.attraction .meta svg { width: 14px; height: 14px; }

/* Pricing (night) */
.pricing {
  padding: 5rem 1rem;
  max-width: 110rem; margin: 0 auto;
  border-radius: 40px;
  color: var(--fz-cream);
  background:
    radial-gradient(60% 80% at 20% 20%, color-mix(in oklab, var(--fz-purple) 45%, transparent), transparent 60%),
    radial-gradient(60% 80% at 80% 80%, color-mix(in oklab, var(--fz-hot) 40%, transparent), transparent 60%),
    linear-gradient(160deg, var(--fz-plum) 0%, #0a0018 100%);
}
.pricing .section-eyebrow { background: transparent; border-color: var(--fz-cream); color: var(--fz-cream); }
.pricing-grid {
  display: grid; gap: 2rem; margin-top: 3.5rem;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pass {
  padding: 2rem; position: relative;
  display: flex; flex-direction: column;
  color: var(--fz-ink);
}
.pass.best { background: var(--fz-hot); color: var(--fz-ink); transform: translateY(-1rem); }
.pass .badge-best {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 0.75rem; border-radius: 999px;
  background: var(--fz-ink); color: white;
  font-family: "Bungee", sans-serif; font-size: 0.75rem;
  border: 3px solid var(--fz-ink);
}
.pass .head { display: flex; align-items: center; gap: 0.75rem; }
.pass .crown {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  border: 3px solid var(--fz-ink);
}
.pass .price-row { display: flex; align-items: end; gap: 0.5rem; margin-top: 1.5rem; }
.pass .price { font-family: "Bungee", sans-serif; font-size: 3.75rem; line-height: 1; }
.pass .price-per { padding-bottom: 0.5rem; font-size: 0.875rem; opacity: 0.7; }
.pass ul { list-style: none; margin-top: 1.5rem; }
.pass ul li {
  display: flex; align-items: start; gap: 0.5rem; margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.pass ul li .check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 1.25rem; height: 1.25rem; border-radius: 999px;
  background: var(--fz-ink); color: white; margin-top: 0.125rem;
}
.pass ul li .check svg { width: 12px; height: 12px; }
.pass .btn { margin-top: 2rem; justify-content: center; width: 100%; }

.pricing-foot { margin-top: 2rem; text-align: center; font-size: 0.875rem; opacity: 0.7; }

/* Events */
.events-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 800px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }

.ticket {
  position: relative;
  background: white;
  border: 3px solid var(--fz-ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--fz-ink);
  padding: 1.25rem;
  display: flex; gap: 1.25rem;
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 50%;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--fz-cream); border: 3px solid var(--fz-ink);
  transform: translateY(-50%);
}
body.dark .ticket::before, body.dark .ticket::after { background: #0a0018; }
.ticket::before { left: -14px; }
.ticket::after { right: -14px; }
body.dark .ticket { background: #180a2e; color: var(--fz-cream); }

.ticket .date-block {
  display: grid; place-items: center; text-align: center;
  width: 6rem; flex-shrink: 0;
  padding: 0.75rem;
  border-radius: 16px; border: 3px solid var(--fz-ink);
  color: white;
}
.ticket .date-block .dow { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; }
.ticket .date-block .day { font-family: "Bungee", sans-serif; font-size: 1.25rem; line-height: 1; margin-top: 0.125rem; }
.ticket .date-block .aud { margin-top: 0.25rem; font-family: "Fredoka", sans-serif; font-size: 0.625rem; text-transform: uppercase; opacity: 0.9; }

.ticket .body { flex: 1; border-left: 2px dashed var(--fz-ink); padding-left: 1.25rem; min-width: 0; }
.ticket .body .time-row { display: flex; align-items: center; gap: 0.5rem; }
.ticket .body .time-row svg { width: 18px; height: 18px; }
.ticket .body .time-row .time { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; opacity: 0.6; }
.ticket .body h3 { font-family: "Bungee", sans-serif; font-size: 1.5rem; margin-top: 0.25rem; }
.ticket .body p { margin-top: 0.25rem; font-size: 0.875rem; opacity: 0.75; }
.ticket .body .foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 0.75rem; margin-top: 1rem;
}
.ticket .body .foot .chip {
  font-family: "Bungee", sans-serif; font-size: 0.75rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  background: var(--fz-yellow); color: var(--fz-ink);
  border: 3px solid var(--fz-ink);
}
.ticket .body .foot .reserve {
  font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 0.875rem;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.ticket .body .foot .reserve:hover { color: var(--fz-hot); }

/* Parties */
.party {
  padding: 1.5rem; background: white; display: flex; flex-direction: column;
}
.party h3 { font-family: "Bungee", sans-serif; font-size: 1.5rem; margin-top: 1.25rem; }
.party .price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.25rem; }
.party .price { font-family: "Bungee", sans-serif; font-size: 2.25rem; }
.party .kids { font-size: 0.875rem; opacity: 0.6; }
.party ul { list-style: none; flex: 1; margin-top: 1rem; }
.party ul li {
  display: flex; align-items: start; gap: 0.5rem;
  margin-bottom: 0.5rem; font-size: 0.875rem;
}
.party ul li .dotchip {
  margin-top: 0.5rem; width: 0.5rem; height: 0.5rem; border-radius: 999px;
  box-shadow: 0 0 0 2px var(--fz-ink); flex-shrink: 0;
}
.party .btn { margin-top: 1.5rem; justify-content: center; }

/* Vibes */
.vibe {
  padding: 1.5rem; position: relative;
}
@media (min-width: 600px) { .vibe { padding: 2rem; } }
.vibe .icon-corner {
  position: absolute; right: -0.75rem; top: -0.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: var(--fz-ink); color: white;
  display: grid; place-items: center;
}
.vibe .icon-corner svg { width: 20px; height: 20px; }
.vibe blockquote { font-family: "Bungee", sans-serif; font-size: 1.25rem; line-height: 1.35; }
@media (min-width: 600px) { .vibe blockquote { font-size: 1.5rem; } }
.vibe .who {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem;
  font-family: "Fredoka", sans-serif; font-size: 0.875rem;
}
.vibe .who .avatar {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: var(--fz-ink); color: white;
}
.vibe .who .avatar svg { width: 18px; height: 18px; }
.vibe .who .who-name { font-weight: 700; }
.vibe .who .who-role { opacity: 0.7; }

/* Visit */
.visit-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1000px) { .visit-grid { grid-template-columns: 1.1fr 1fr; } }

.info-tiles { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 600px) { .info-tiles { grid-template-columns: 1fr 1fr; } }

.info-tile {
  padding: 1rem; background: white;
  display: flex; align-items: start; gap: 0.75rem;
  border: 3px solid var(--fz-ink); border-radius: 20px; box-shadow: 4px 4px 0 var(--fz-ink);
}
.info-tile .icon-tile { width: 2.5rem; height: 2.5rem; border-radius: 12px; box-shadow: none; }
.info-tile .icon-tile svg { width: 18px; height: 18px; }
.info-tile .lab { font-family: "Fredoka", sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }
.info-tile .val { font-family: "Bungee", sans-serif; font-size: 1rem; line-height: 1.2; margin-top: 0.125rem; }

.reserve-card {
  padding: 1.5rem; background: var(--fz-yellow); position: relative; color: var(--fz-ink);
}
@media (min-width: 600px) { .reserve-card { padding: 2rem; } }
.reserve-card .tab {
  position: absolute; top: -1rem; left: 1.5rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  background: var(--fz-ink); color: white;
  font-family: "Bungee", sans-serif; font-size: 0.75rem;
}
.reserve-card h3 { font-family: "Bungee", sans-serif; font-size: 1.875rem; }
.reserve-card p { margin-top: 0.5rem; font-size: 0.875rem; opacity: 0.75; }

.form-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.form-grid .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid label { display: block; font-family: "Fredoka", sans-serif; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.form-grid input, .form-grid select {
  width: 100%; padding: 0.5rem 0.75rem;
  border: 3px solid var(--fz-ink); background: white;
  border-radius: 12px;
  font: inherit; color: var(--fz-ink);
}
.form-grid input:focus, .form-grid select:focus { outline: 4px solid color-mix(in oklab, var(--fz-hot) 30%, transparent); outline-offset: 2px; }

.reserve-card .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* Footer */
footer.night {
  padding: 3.5rem 1rem;
  border-radius: 40px 40px 0 0;
  color: var(--fz-cream);
  background:
    radial-gradient(60% 80% at 20% 20%, color-mix(in oklab, var(--fz-purple) 45%, transparent), transparent 60%),
    radial-gradient(60% 80% at 80% 80%, color-mix(in oklab, var(--fz-hot) 40%, transparent), transparent 60%),
    linear-gradient(160deg, var(--fz-plum) 0%, #0a0018 100%);
}
footer .footer-grid {
  max-width: 78rem; margin: 0 auto;
  display: grid; gap: 2.5rem;
}
@media (min-width: 800px) {
  footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
footer .brand { display: flex; align-items: center; gap: 0.5rem; }
footer .brand-mark {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 1rem;
  background: var(--fz-hot); color: white;
  border: 3px solid var(--fz-cream);
}
footer .brand-name { font-family: "Bungee", sans-serif; font-size: 1.5rem; }
footer .brand-tag { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; opacity: 0.8; }
footer .pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
footer .pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.625rem; border-radius: 999px;
  border: 1px solid var(--fz-cream); font-size: 0.75rem; opacity: 0.9;
  font-family: "Fredoka", sans-serif;
}
footer .pill svg { width: 12px; height: 12px; }
footer h4 { font-family: "Bungee", sans-serif; font-size: 1.125rem; color: var(--fz-yellow); }
footer ul { list-style: none; margin-top: 0.75rem; font-family: "Fredoka", sans-serif; font-size: 0.875rem; opacity: 0.9; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a:hover { color: var(--fz-cyan); }
footer .foot-bar {
  max-width: 78rem; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-family: "Fredoka", sans-serif; font-size: 0.875rem; opacity: 0.7;
}
footer .foot-bar .links { display: flex; gap: 1rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float, .spin-slow, .pulse-ring, .marquee-track, .rainbow-text, .bounce-in {
    animation: none !important;
  }
}
