:root {
  --bg: #fff7f2;
  --bg-soft: #fffcf8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #241b36;
  --muted: #655d74;
  --line: rgba(36, 27, 54, 0.1);
  --pink: #ff5ca8;
  --teal: #23bfd3;
  --gold: #ffcf61;
  --berry: #ff7d66;
  --ink-soft: #403553;
  --shadow: 0 28px 80px rgba(72, 38, 97, 0.14);
  --shadow-soft: 0 14px 34px rgba(72, 38, 97, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 92, 168, 0.16) 0, transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(35, 191, 211, 0.16) 0, transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(255, 207, 97, 0.2) 0, transparent 20%),
    linear-gradient(180deg, #fff6fb 0%, #fff8f1 44%, #f5fffd 100%);
}

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(6px);
}

.site-shell::before {
  top: 10%;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(35, 191, 211, 0.18), transparent 68%);
}

.site-shell::after {
  left: -140px;
  bottom: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 92, 168, 0.14), transparent 70%);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 8px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.site-nav a.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #e63946, #c81d25);
  box-shadow: 0 14px 28px rgba(200, 29, 37, 0.24);
}

.site-nav a.nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #ee4a56, #cf2430);
  box-shadow: 0 18px 32px rgba(200, 29, 37, 0.28);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.page {
  padding: 42px 0 88px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 22px;
}

.panel,
.card,
.callout,
.list-card,
.link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel {
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 97, 0.22), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 18px 0 0 var(--teal), 36px 0 0 var(--gold);
  margin-right: 36px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
}

.hero-copy p,
.lede,
.section-copy,
.list-card p,
.timeline-copy,
.footer-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p {
  margin: 20px 0 0;
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  max-width: 58ch;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button {
  background: linear-gradient(135deg, var(--pink), #ff7c7c);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 92, 168, 0.28);
}

.button-secondary {
  background: linear-gradient(135deg, var(--teal), #44d1b7);
  color: #fff;
  box-shadow: 0 16px 34px rgba(35, 191, 211, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid var(--line);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
  filter: saturate(1.03);
}

.hero-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.stat-card,
.link-card,
.list-card,
.callout,
.card {
  border-radius: var(--radius-lg);
}

.stat-card,
.link-card,
.card,
.list-card,
.callout {
  padding: 24px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 241, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-kicker {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 10px;
  font-size: 1.7rem;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
}

.stat-text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.hours-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hours-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hours-list strong {
  color: var(--text);
}

.stat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.media-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  margin-top: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
}

.grid-3,
.grid-2,
.cta-grid,
.info-grid,
.split-feature,
.tracker-layout {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.info-grid {
  grid-template-columns: 1fr 1fr;
}

.split-feature,
.tracker-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card h3,
.link-card h3,
.list-card h3,
.callout h3 {
  font-size: 1.5rem;
}

.card,
.link-card,
.list-card,
.callout,
.stat-card,
.tracker-panel,
.feature-banner {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.link-card:hover,
.list-card:hover,
.callout:hover,
.stat-card:hover,
.tracker-panel:hover,
.feature-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(72, 38, 97, 0.14);
  border-color: rgba(36, 27, 54, 0.16);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 27, 54, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  opacity: 0.9;
}

.card p,
.link-card p,
.callout p,
.list-card p {
  margin: 12px 0 0;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li,
.timeline li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.list li::before,
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--teal));
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 100%;
}

.link-card .button,
.link-card .button-secondary,
.link-card .button-ghost {
  width: fit-content;
}

.callout {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 255, 252, 0.92));
}

.timeline {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline strong {
  display: block;
  color: var(--text);
  font-weight: 900;
}

.feature-banner {
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 92, 168, 0.18), rgba(35, 191, 211, 0.16)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-banner h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.feature-banner p {
  max-width: 56ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-xl);
  background: #f4f4f4;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-card--wide {
  min-height: 300px;
}

.photo-card--hero {
  min-height: 420px;
}

.photo-card--show-whole-bus {
  min-height: 0;
  aspect-ratio: 2.45 / 1;
  background: linear-gradient(180deg, #f5f3f1 0%, #ebe6e0 100%);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.35s ease;
}

.photo-card--focus-right img {
  object-position: 78% center;
}

.photo-card--focus-center img {
  object-position: center center;
}

.photo-card--show-whole-bus img {
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.photo-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.photo-card--show-whole-bus:hover img {
  transform: none;
}

.photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 26px 28px;
  background: linear-gradient(180deg, rgba(19, 18, 27, 0.02), rgba(19, 18, 27, 0.82));
  color: #fff;
}

.photo-overlay h2,
.photo-overlay h3,
.photo-overlay p {
  color: #fff;
}

.photo-overlay h2,
.photo-overlay h3 {
  max-width: 12ch;
}

.photo-card--wide .photo-overlay {
  padding: 24px 24px 26px;
}

.photo-card--wide .photo-overlay h2,
.photo-card--wide .photo-overlay h3 {
  max-width: 16ch;
}

.photo-card--wide .photo-overlay p {
  max-width: 34ch;
}

.photo-card--show-whole-bus .photo-overlay {
  background: linear-gradient(180deg, rgba(19, 18, 27, 0.04), rgba(19, 18, 27, 0.76));
}

.photo-overlay p {
  margin: 12px 0 0;
  max-width: 40ch;
  line-height: 1.55;
}

.tracker-panel {
  border-radius: var(--radius-xl);
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 255, 252, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tracker-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.booking-choice {
  gap: 24px;
}

.party-package {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.package-price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.package-price {
  margin-top: 12px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.9;
  color: var(--pink);
  text-shadow: 0 8px 0 rgba(255, 207, 97, 0.22);
}

.package-price-card .button {
  margin-top: auto;
}

.party-flyer-card {
  min-height: 560px;
  background: rgba(255, 255, 255, 0.92);
}

.party-flyer-card img {
  object-fit: contain;
  object-position: center top;
  transform: none;
}

.party-flyer-card:hover img {
  transform: none;
}

.price-card {
  min-height: 100%;
}

.price-line {
  margin: 14px 0 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--pink);
}


.site-footer {
  padding: 28px 0 54px;
}

.footer-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.footer-summary {
  display: grid;
  gap: 8px;
}

.footer-copy,
.footer-meta {
  margin: 0;
}

.footer-meta {
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 800;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-2,
  .cta-grid,
  .info-grid,
  .split-feature,
  .party-package,
  .tracker-layout {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-panel {
    align-items: start;
    flex-direction: column;
  }

  .hours-list li {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
  }

  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 16px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 10px;
    gap: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 27, 54, 0.08);
  }

  .panel,
  .stat-card,
  .link-card,
  .card,
  .list-card,
  .callout,
  .feature-banner,
  .tracker-panel {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .photo-card--hero,
  .photo-card--wide {
    min-height: 320px;
  }

  .photo-card--show-whole-bus {
    min-height: 0;
    aspect-ratio: auto;
  }

  .party-flyer-card {
    min-height: 420px;
  }
}
