:root {
  --sky-top: #7edcff;
  --sky-mid: #9de7ff;
  --sky-bottom: #fff9df;
  --sun-yellow: #ffd447;
  --sun-orange: #ff9d1d;
  --carrot: #ff7f24;
  --bubblegum: #ff7bb8;
  --grass: #6fd16e;
  --navy: #0e4a72;
  --teal: #1c7ca8;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(14, 74, 114, 0.18);
  --shadow-cloud: 0 18px 36px rgba(33, 97, 123, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.7), transparent 18rem),
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.68), transparent 16rem),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 50%, var(--sky-bottom) 100%);
  overflow-x: hidden;
}

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

button,
a {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 0;
  pointer-events: none;
  z-index: -2;
}

.page-shell::before {
  left: -8vw;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: rgba(255, 237, 120, 0.28);
  filter: blur(28px);
}

.page-shell::after {
  right: -10vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255, 162, 68, 0.2);
  filter: blur(32px);
}

.sky-particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  display: block;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  top: var(--top);
  animation: drift-up var(--duration) linear infinite;
  animation-delay: var(--delay);
  opacity: 0.7;
}

.particle.star {
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.particle.bubble {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.particle.dot {
  border-radius: 999px;
  background: rgba(255, 222, 111, 0.85);
}

.real-cloud {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  filter: drop-shadow(0 18px 28px rgba(49, 113, 140, 0.1));
  animation: cloud-drift linear infinite;
}

.cloud-a {
  top: 2.5rem;
  left: -10rem;
  width: min(18rem, 24vw);
  animation-duration: 42s;
}

.cloud-b {
  top: 12rem;
  right: -15rem;
  width: min(31rem, 42vw);
  opacity: 0.16;
  animation-duration: 58s;
  animation-delay: -18s;
}

.cloud-c {
  top: 27rem;
  left: -14rem;
  width: min(22rem, 30vw);
  opacity: 0.18;
  animation-duration: 48s;
  animation-delay: -8s;
}

.cloud-d {
  right: -14rem;
  bottom: 10rem;
  width: min(30rem, 40vw);
  opacity: 0.13;
  transform: scaleX(-1);
  animation-duration: 62s;
  animation-delay: -24s;
}

.cloud-e {
  top: 46rem;
  right: -18rem;
  width: min(25rem, 34vw);
  opacity: 0.14;
  animation-duration: 54s;
  animation-delay: -12s;
}

.cloud-f {
  top: 62rem;
  left: -12rem;
  width: min(17rem, 22vw);
  opacity: 0.2;
  animation-duration: 44s;
  animation-delay: -30s;
}

main {
  position: relative;
  z-index: 1;
}

section {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2rem;
  padding: 4.5rem 0 7rem;
}

.hero-rings {
  position: absolute;
  inset: 10% auto auto 50%;
  transform: translateX(-50%);
  width: min(54vw, 40rem);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.52;
  animation: ring-pulse 8s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 100%;
  height: 100%;
  background: rgba(255, 167, 38, 0.44);
}

.ring-2 {
  width: 78%;
  height: 78%;
  background: rgba(255, 215, 79, 0.62);
}

.ring-3 {
  width: 58%;
  height: 58%;
  background: rgba(255, 150, 25, 0.5);
}

.ring-4 {
  width: 38%;
  height: 38%;
  background: rgba(255, 236, 168, 0.94);
}

.ring-5 {
  width: 18%;
  height: 18%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.9);
}

.hero-copy,
.hero-actions,
.hero-photo-zone {
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  min-height: 29rem;
  margin-top: -14rem;
  padding: 1.1rem 0.25rem 1.25rem 0.1rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 16%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 225, 118, 0.4), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -2;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 47%;
  width: 7.4rem;
  height: 7.4rem;
  border-top: 2px dashed rgba(255, 213, 92, 0.58);
  border-right: 2px dashed rgba(255, 213, 92, 0.58);
  border-radius: 0 6rem 0 0;
  transform: translateY(-50%) rotate(8deg);
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
  animation: connector-wave 4.8s ease-in-out infinite;
}

.hero-story-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doodle-star {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.12);
  animation: twinkle 2.8s ease-in-out infinite;
}

.doodle-star-a {
  top: 1rem;
  left: 0.35rem;
  width: 1rem;
  height: 1rem;
}

.doodle-star-b {
  top: 4.9rem;
  left: 16.8rem;
  width: 0.72rem;
  height: 0.72rem;
  animation-delay: 0.55s;
}

.doodle-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(14, 74, 114, 0.08);
  animation: doodle-cloud-float 5.2s ease-in-out infinite;
}

.doodle-cloud::before,
.doodle-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.doodle-cloud::before {
  width: 1.55rem;
  height: 1.55rem;
  left: 0.55rem;
  top: -0.55rem;
}

.doodle-cloud::after {
  width: 1.95rem;
  height: 1.95rem;
  right: 0.65rem;
  top: -0.7rem;
}

.doodle-cloud-a {
  left: 0.15rem;
  top: 2rem;
  width: 4.7rem;
  height: 2rem;
}

.doodle-cloud-b {
  left: 15.6rem;
  bottom: 3.6rem;
  width: 4rem;
  height: 1.8rem;
  animation-delay: 0.6s;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-cloud);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-kicker {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;
  width: fit-content;
  padding: 0.72rem 1.15rem;
  border-radius: 1.4rem 1.6rem 1.3rem 1.55rem;
  background: linear-gradient(135deg, rgba(255, 222, 103, 0.98), rgba(255, 170, 195, 0.96));
  box-shadow: 0 18px 30px rgba(14, 74, 114, 0.14);
  color: #7d3f6f;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  animation: sticker-sway 4.4s ease-in-out infinite;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}

.hero-kicker::before {
  left: -0.35rem;
  top: 0.55rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.3rem;
  transform: rotate(-28deg);
}

.hero-kicker::after {
  right: 0.75rem;
  bottom: -0.18rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
}

.hero h1,
.section-head h2,
.route-card h2,
.final-cta h2,
.cloud-panel h3 {
  margin: 0;
  font-family: "Bubblegum Sans", cursive;
  line-height: 0.92;
}

.hero h1 {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  margin-top: 0.15rem;
  max-width: 25rem;
  padding: 1.45rem 1.55rem 1.3rem 1.35rem;
  text-wrap: balance;
}

.hero h1::before,
.hero h1::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero h1::before {
  inset: -0.95rem -1rem -0.85rem -1rem;
  filter: drop-shadow(0 22px 36px rgba(14, 74, 114, 0.12));
  z-index: -2;
}

.hero h1::after {
  inset: 0.2rem 0.15rem 0.2rem 0.2rem;
  border: 2px dashed rgba(255, 255, 255, 0.72);
  border-radius: 2.45rem;
  z-index: -1;
}

.hero-title-line {
  display: block;
  position: relative;
  font-size: clamp(2.55rem, 4.7vw, 4.1rem);
  color: #123f72;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.35),
    0 16px 28px rgba(14, 74, 114, 0.12);
}

.hero-name {
  display: inline-flex;
  justify-self: start;
  position: relative;
  width: fit-content;
  padding: 0 0.45rem 0.2rem;
  color: var(--carrot);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  text-shadow:
    0 5px 0 rgba(255, 250, 240, 0.92),
    0 16px 24px rgba(255, 136, 43, 0.18);
  animation: name-pop 4.5s ease-in-out infinite;
}

.hero-name::after {
  content: "";
  position: absolute;
  left: 0.05rem;
  right: 0.05rem;
  bottom: 0.52rem;
  height: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 220, 116, 0.82), rgba(255, 189, 79, 0.48));
  transform: rotate(-1.6deg);
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin: 0.25rem 0 0 0.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 252, 255, 0.92));
  box-shadow: 0 16px 30px rgba(22, 84, 110, 0.08);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.hero-text::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.7rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
}

.hero-text::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 1.65rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
}

.hero-bubbles {
  position: relative;
  display: flex;
  gap: 0.65rem;
  margin: 0.2rem 0 0 2rem;
}

.hero-bubbles span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 237, 181, 0.92));
  box-shadow: 0 10px 16px rgba(14, 74, 114, 0.08);
  animation: bubble-pulse 2.8s ease-in-out infinite;
}

.hero-bubbles span:nth-child(2) {
  width: 1.05rem;
  height: 1.05rem;
  animation-delay: 0.35s;
}

.hero-bubbles span:nth-child(3) {
  width: 0.6rem;
  height: 0.6rem;
  animation-delay: 0.75s;
}

.hero-photo-zone {
  display: grid;
  place-items: center;
  min-height: 30rem;
}

.photo-frame {
  position: relative;
  width: min(82vw, 24.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0.85rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 188, 0.95)),
    linear-gradient(145deg, rgba(255, 121, 163, 0.8), rgba(255, 128, 36, 0.9));
  box-shadow: 0 30px 70px rgba(13, 54, 92, 0.26);
  animation: photo-float 4.5s ease-in-out infinite;
  margin-top: 2rem;
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -0.8rem;
  border: 10px dashed rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  background: #f7ffff;
}

.photo-caption {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-cloud);
  font-size: 1.02rem;
  font-weight: 700;
}

.photo-orbit,
.photo-spark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 22rem;
  height: 22rem;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  animation: spin-slow 24s linear infinite reverse;
}

.orbit-b {
  width: 29rem;
  height: 29rem;
  border: 2px dotted rgba(255, 216, 111, 0.82);
  animation: spin-slow 34s linear infinite;
}

.spark-a,
.spark-b {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}

.spark-a {
  width: 1.4rem;
  height: 1.4rem;
  left: 22%;
  top: 18%;
  animation: twinkle 2.4s ease-in-out infinite;
}

.spark-b {
  width: 1rem;
  height: 1rem;
  right: 18%;
  bottom: 20%;
  animation: twinkle 2.8s ease-in-out infinite 0.6s;
}

.hero-actions {
  display: grid;
  gap: 1rem;
}

.detail-card {
  padding: 1.1rem 1.2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.detail-card-wide {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 252, 255, 0.64));
}

.detail-label {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.detail-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.detail-card small {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.25;
}

.cloud-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

.cloud-button,
.cta-pill {
  position: relative;
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cloud-button {
  min-width: 11.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 800;
  box-shadow: var(--shadow-cloud);
}

.cloud-button::before,
.cloud-button::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
}

.cloud-button::before {
  width: 2.6rem;
  height: 2.6rem;
  left: 0.9rem;
  top: -0.75rem;
}

.cloud-button::after {
  width: 3.2rem;
  height: 3.2rem;
  right: 1.15rem;
  top: -1rem;
}

.cloud-primary {
  background: linear-gradient(145deg, #ffd54d, #ff9e21);
  color: #15395b;
}

.cloud-button:hover,
.cloud-button:focus-visible,
.cta-pill:hover,
.cta-pill:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 24px 36px rgba(18, 89, 119, 0.22);
}

.cloud-button:focus-visible,
.cta-pill:focus-visible,
.music-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}

.cta-pill {
  margin-top: 1.1rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffe1ef, #ffc6df);
  color: #a53371;
  box-shadow: var(--shadow-cloud);
  font-weight: 800;
}

.helper-text {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.character,
.floating-sticker {
  position: absolute;
  pointer-events: none;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  z-index: 2;
}

.character {
  filter: drop-shadow(0 18px 22px rgba(16, 60, 95, 0.18));
}

.character-tweety {
  width: min(11vw, 8.5rem);
  left: -0.3rem;
  bottom: 6rem;
  animation: bob 4.2s ease-in-out infinite;
}

.character-daffy {
  width: min(9vw, 7rem);
  right: -0.4rem;
  top: 7rem;
  animation: bob 5s ease-in-out infinite 0.4s;
}

.floating-sticker {
  width: min(10vw, 6.8rem);
  padding: 0.35rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-cloud);
}

.sticker-bow {
  top: 1.6rem;
  right: 2.8rem;
  animation: wiggle 4.8s ease-in-out infinite;
}

.sticker-taz {
  left: 2rem;
  bottom: 3rem;
  animation: wiggle 5.4s ease-in-out infinite 0.6s;
}

.scroll-cue {
  position: absolute;
  inset: auto 50% 1.8rem auto;
  transform: translateX(50%);
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: rgba(19, 63, 114, 0.86);
  z-index: 2;
}

.scroll-cue span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.scroll-cue span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-cue span:nth-child(3) {
  animation-delay: 0.4s;
}

.scroll-cue p {
  margin: 0.2rem 0 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.size-showcase {
  padding: 0 0 4rem;
}

.size-shell {
  position: relative;
  padding: 2.2rem 1.7rem 2.4rem;
  border-radius: 3rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 14rem),
    linear-gradient(145deg, rgba(255, 252, 235, 0.92), rgba(233, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.size-shell::before,
.size-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.size-shell::before {
  width: 14rem;
  height: 14rem;
  left: -4rem;
  top: -5rem;
  background: rgba(255, 214, 77, 0.18);
}

.size-shell::after {
  width: 12rem;
  height: 12rem;
  right: -3rem;
  bottom: -4rem;
  background: rgba(255, 123, 184, 0.14);
}

.size-head {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.size-head h2 {
  margin: 0.9rem 0 0;
  font-family: "Bubblegum Sans", cursive;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.size-head p {
  margin: 1rem auto 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.size-stage {
  position: relative;
  margin-top: 2.25rem;
  padding-top: 3.1rem;
}

.size-line {
  position: absolute;
  top: 1rem;
  left: 2rem;
  right: 2rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9adfff, #ffd451, #ff94c2, #9adfff);
  box-shadow: 0 10px 20px rgba(43, 133, 176, 0.18);
}

.party-world {
  padding-bottom: 4rem;
}

.party-world-shell {
  position: relative;
  padding: 2.3rem 1.45rem 1.7rem;
  border-radius: 3.1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 16rem),
    radial-gradient(circle at 85% 88%, rgba(255, 223, 109, 0.2), transparent 14rem),
    linear-gradient(180deg, rgba(220, 248, 255, 0.78), rgba(243, 252, 255, 0.86));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.party-world-shell::before,
.party-world-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.party-world-shell::before {
  width: 16rem;
  height: 16rem;
  top: -7rem;
  left: -5rem;
  background: rgba(255, 211, 75, 0.16);
}

.party-world-shell::after {
  width: 14rem;
  height: 14rem;
  right: -4.5rem;
  bottom: -5rem;
  background: rgba(255, 143, 191, 0.12);
}

.party-world .scene-section {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.party-world .section-head {
  padding-top: 0;
}

.story-bridge {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin: 1.55rem auto 1.7rem;
  text-align: center;
}

.story-bridge p {
  max-width: 42rem;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
}

.scene-section,
.route-section,
.final-cta {
  padding-bottom: 4rem;
}

.section-head {
  text-align: center;
  padding-top: 2rem;
}

.section-head h2,
.route-card h2,
.final-cta h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-support {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.filmstrip {
  position: relative;
  margin-top: 2rem;
  padding: 1.45rem 1.15rem 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.5rem;
  background:
    linear-gradient(180deg, rgba(18, 48, 72, 0.96), rgba(31, 86, 113, 0.94));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.filmstrip::before {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border-radius: 1.95rem;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.filmstrip::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0.78rem;
  height: 0.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 0.16rem, transparent 0.17rem)
      center/1.5rem 100%;
  opacity: 0.55;
  pointer-events: none;
}

.film-track {
  display: flex;
  gap: 1.25rem;
}

.film-track.is-looping {
  width: max-content;
  animation: film-roll 34s linear infinite;
}

.scene-card {
  position: relative;
  flex: 0 0 18.2rem;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 198, 0.96));
  box-shadow: 0 16px 28px rgba(7, 28, 44, 0.18);
  scroll-snap-align: start;
  animation: scene-card-sway 5.2s ease-in-out infinite;
}

.scene-card:nth-child(2n) {
  animation-delay: 0.25s;
}

.scene-card:nth-child(3n) {
  animation-delay: 0.55s;
}

.scene-card::before {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd451, #ffb22d);
  box-shadow: 0 0 0 0.28rem rgba(255, 212, 81, 0.16);
}

.scene-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.2rem;
  background: #d8eef9;
}

.scene-copy strong {
  display: block;
  font-size: 1.2rem;
}

.scene-copy p {
  margin: 0.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.28;
}

.info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  padding-bottom: 0;
}

.cloud-panel {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 2.6rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cloud-panel::before,
.cloud-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 79, 0.28);
  pointer-events: none;
}

.cloud-panel::before {
  width: 9rem;
  height: 9rem;
  right: -2.2rem;
  top: -2rem;
}

.cloud-panel::after {
  width: 6.8rem;
  height: 6.8rem;
  left: -1.2rem;
  bottom: -1.1rem;
}

.cloud-panel > * {
  position: relative;
  z-index: 1;
}

.panel-party {
  background:
    radial-gradient(circle at top right, rgba(255, 231, 154, 0.76), transparent 6rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 255, 0.92));
}

.panel-gifts {
  background:
    radial-gradient(circle at top right, rgba(255, 231, 154, 0.76), transparent 6rem),
    radial-gradient(circle at bottom left, rgba(255, 198, 226, 0.42), transparent 6rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 252, 255, 0.92));
}

.panel-party .panel-kicker {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(220, 245, 255, 0.96));
}

.panel-gifts .panel-kicker {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 248, 0.96));
}

.panel-mascot {
  position: absolute;
  right: 0.8rem;
  bottom: 0.55rem;
  z-index: 0;
  opacity: 0.17;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(14, 74, 114, 0.1));
  animation: mascot-float 5.6s ease-in-out infinite;
}

.panel-mascot-tweety {
  width: 6.4rem;
}

.panel-mascot-bugs {
  width: 7rem;
  animation-delay: 0.5s;
}

.cloud-panel h3 {
  margin-top: 1rem;
  max-width: 9ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.fun-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.fun-list li {
  position: relative;
  padding: 0.9rem 1rem;
  padding-left: 1.45rem;
  border-radius: 1.35rem 1.6rem 1.35rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 255, 0.9));
  box-shadow: 0 14px 25px rgba(13, 72, 105, 0.1);
  font-size: 1.05rem;
  font-weight: 700;
}

.fun-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd451, #ffb22d);
  box-shadow: 0 0 0 0.28rem rgba(255, 212, 81, 0.18);
}

.gift-cloud-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.gift-cloud {
  position: relative;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 255, 255, 0.9));
  box-shadow: 0 14px 28px rgba(17, 96, 124, 0.12);
  font-size: 1rem;
  font-weight: 800;
  animation: bob 4.5s ease-in-out infinite;
  animation-delay: var(--gift-delay);
}

.gift-cloud::before,
.gift-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
}

.gift-cloud::before {
  width: 1.35rem;
  height: 1.35rem;
  left: 0.55rem;
  top: -0.3rem;
}

.gift-cloud::after {
  width: 1.65rem;
  height: 1.65rem;
  right: 0.75rem;
  top: -0.45rem;
}

.party-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.feature-playground,
.feature-giftland {
  position: relative;
  padding: 1.95rem 1.55rem 1.75rem;
  border: 3px solid rgba(255, 255, 255, 0.62);
  border-radius: 3.2rem 3rem 2.65rem 2.95rem / 2.75rem 3.2rem 2.55rem 3rem;
  box-shadow: 0 24px 48px rgba(14, 74, 114, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.feature-playground {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.96) 0 4rem, transparent 4.02rem),
    radial-gradient(circle at 88% 14%, rgba(255, 214, 88, 0.42) 0 4.2rem, transparent 4.24rem),
    linear-gradient(180deg, rgba(255, 252, 235, 0.97), rgba(227, 247, 255, 0.94));
  transform: rotate(-0.9deg);
}

.feature-giftland {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.95) 0 4rem, transparent 4.04rem),
    radial-gradient(circle at 84% 14%, rgba(255, 197, 223, 0.36) 0 4.4rem, transparent 4.44rem),
    linear-gradient(180deg, rgba(255, 244, 250, 0.97), rgba(233, 247, 255, 0.95));
  transform: rotate(0.9deg);
}

.feature-playground::before,
.feature-playground::after,
.feature-giftland::before,
.feature-giftland::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.feature-playground::before {
  left: -1.2rem;
  bottom: -1.35rem;
  width: 6.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    3rem -0.75rem 0 0 rgba(255, 255, 255, 0.56),
    6rem 0.1rem 0 0 rgba(255, 255, 255, 0.6),
    8.8rem -0.72rem 0 0 rgba(255, 255, 255, 0.5);
}

.feature-playground::after {
  width: 11rem;
  height: 11rem;
  right: -2.7rem;
  top: -2.5rem;
  background:
    radial-gradient(circle, rgba(255, 214, 88, 0.74) 0 24%, rgba(255, 214, 88, 0.24) 25% 45%,
      transparent 46%);
  opacity: 0.76;
  animation: bubble-pulse 6s ease-in-out infinite;
}

.feature-giftland::before {
  right: -1rem;
  top: -0.55rem;
  width: 5.8rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    -2.7rem 0.6rem 0 0 rgba(255, 255, 255, 0.48),
    -5.2rem -0.2rem 0 0 rgba(255, 255, 255, 0.56),
    -7.9rem 0.7rem 0 0 rgba(255, 255, 255, 0.4);
}

.feature-giftland::after {
  width: 11.2rem;
  height: 11.2rem;
  left: -3rem;
  bottom: -2.8rem;
  background: radial-gradient(circle, rgba(255, 193, 224, 0.3), transparent 70%);
}

.feature-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  max-width: 20rem;
}

.feature-head h3 {
  margin: 0;
  max-width: 8ch;
  font-family: "Bubblegum Sans", cursive;
  font-size: clamp(2.3rem, 3.6vw, 3.35rem);
  line-height: 0.92;
  color: #123f72;
  text-shadow:
    0 4px 0 rgba(255, 255, 255, 0.38),
    0 16px 26px rgba(14, 74, 114, 0.1);
}

.feature-head p {
  margin: 0;
  max-width: 20rem;
  font-size: 1.02rem;
  line-height: 1.36;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.58rem 1rem;
  border-radius: 1.1rem 1.35rem 1rem 1.2rem;
  box-shadow: var(--shadow-cloud);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: sticker-sway 4.8s ease-in-out infinite;
}

.feature-tag-party {
  background: linear-gradient(145deg, rgba(226, 245, 255, 0.98), rgba(255, 255, 255, 0.96));
  color: var(--navy);
}

.feature-tag-gifts {
  background: linear-gradient(145deg, rgba(255, 242, 248, 0.98), rgba(255, 255, 255, 0.96));
  color: #a24878;
}

.feature-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.feature-sparkles span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 231, 160, 0.92));
  box-shadow: 0 10px 18px rgba(14, 74, 114, 0.08);
  animation: bubble-pulse 3.6s ease-in-out infinite;
}

.feature-sparkles span:nth-child(1) {
  top: 1rem;
  left: 1.15rem;
  width: 0.75rem;
  height: 0.75rem;
}

.feature-sparkles span:nth-child(2) {
  right: 5.8rem;
  top: 1.5rem;
  width: 0.55rem;
  height: 0.55rem;
  animation-delay: 0.45s;
}

.feature-sparkles span:nth-child(3) {
  left: 2.8rem;
  bottom: 1.5rem;
  width: 0.9rem;
  height: 0.9rem;
  animation-delay: 0.82s;
}

.feature-sparkles-pink span {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 211, 231, 0.92));
}

.feature-mascot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(14, 74, 114, 0.08));
  animation: mascot-float 5.8s ease-in-out infinite;
}

.feature-mascot-tweety {
  right: 0.7rem;
  bottom: 0.1rem;
  width: 6.4rem;
  opacity: 0.34;
}

.feature-mascot-bugs {
  right: 0.25rem;
  bottom: 0.05rem;
  width: 7.6rem;
  opacity: 0.22;
  animation-delay: 0.45s;
}

.party-features .fun-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.95rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.party-features .fun-list li {
  position: relative;
  padding: 1rem 1rem 1rem 1.45rem;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.8rem 1.95rem 1.55rem 1.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 251, 255, 0.92));
  box-shadow: 0 14px 26px rgba(13, 72, 105, 0.1);
  font-size: 1.02rem;
  font-weight: 800;
  transform: rotate(var(--tilt));
  animation: feature-ticket-float 5.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.party-features .fun-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd451, #ffb22d);
  box-shadow: 0 0 0 0.3rem rgba(255, 212, 81, 0.18);
}

.party-features .fun-list li::after {
  content: "";
  position: absolute;
  top: -0.22rem;
  right: 1rem;
  width: 2rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 238, 169, 0.98), rgba(255, 206, 122, 0.92));
  transform: rotate(8deg);
}

.party-features .gift-cloud-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.party-features .gift-cloud {
  position: relative;
  padding: 0.92rem 1.18rem 0.96rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 1.85rem 2rem 1.55rem 1.95rem;
  box-shadow: 0 14px 26px rgba(17, 96, 124, 0.12);
  font-size: 0.98rem;
  font-weight: 800;
  transform: rotate(var(--gift-tilt));
  animation: feature-cloud-pop 5.2s ease-in-out infinite;
  animation-delay: var(--gift-delay);
}

.party-features .gift-cloud:nth-child(3n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(228, 246, 255, 0.94));
}

.party-features .gift-cloud:nth-child(3n + 2) {
  background: linear-gradient(145deg, rgba(255, 249, 224, 0.98), rgba(255, 234, 189, 0.94));
}

.party-features .gift-cloud:nth-child(3n) {
  background: linear-gradient(145deg, rgba(255, 241, 248, 0.98), rgba(255, 225, 240, 0.94));
}

.party-features .gift-cloud::before {
  width: 0.58rem;
  height: 0.58rem;
  left: 0.72rem;
  top: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #7fd0ff, #3aa9ea);
  box-shadow: 0 0 0 0.26rem rgba(127, 208, 255, 0.16);
}

.party-features .gift-cloud::after {
  left: 1.2rem;
  right: 1.2rem;
  top: auto;
  bottom: -0.18rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(18, 48, 72, 0.08);
  filter: blur(6px);
}

.gift-cta {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(145deg, rgba(255, 195, 223, 0.98), rgba(255, 226, 154, 0.94));
  box-shadow: 0 18px 28px rgba(255, 174, 212, 0.2);
  color: #933f6d;
}

.gift-size-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gift-size-card {
  position: relative;
  padding: 3rem 1rem 1.15rem;
  border-radius: 2.3rem 2.3rem 1.7rem 1.7rem / 3rem 3rem 1.7rem 1.7rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 32px rgba(17, 96, 124, 0.14);
  text-align: center;
  transform-origin: top center;
  animation: sway 4.8s ease-in-out infinite;
}

.gift-size-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.4rem;
  width: 0.2rem;
  height: 1.6rem;
  background: linear-gradient(180deg, #9dd4ff, #ffd451);
  transform: translateX(-50%);
}

.gift-size-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.52rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 16px rgba(17, 96, 124, 0.14);
}

.gift-size-card.variant-1 {
  animation-delay: 0s;
}

.gift-size-card.variant-1::after {
  background: linear-gradient(145deg, #ffd451, #ffb22d);
}

.gift-size-card.variant-2 {
  animation-delay: 0.3s;
}

.gift-size-card.variant-2::after {
  background: linear-gradient(145deg, #9edfff, #70bff2);
}

.gift-size-card.variant-3 {
  animation-delay: 0.6s;
}

.gift-size-card.variant-3::after {
  background: linear-gradient(145deg, #ffc0db, #ff92c3);
}

.gift-size-card.variant-4 {
  animation-delay: 0.9s;
}

.gift-size-card.variant-4::after {
  background: linear-gradient(145deg, #c8f27a, #8edc6f);
}

.gift-size-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #eef8ff;
  color: #3b7ba9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gift-size-label {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.gift-size-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.3rem;
  line-height: 1.05;
}

.gift-size-note {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
  line-height: 1.28;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 79, 0.55), transparent 12rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.route-copy p,
.final-cta p {
  margin-top: 1rem;
  font-size: 1.12rem;
  line-height: 1.35;
}

.route-pillars {
  display: grid;
  gap: 1rem;
}

.address-cloud {
  position: relative;
  padding: 1.4rem 1.4rem 1.55rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-cloud);
}

.address-cloud::before,
.address-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.address-cloud::before {
  width: 4rem;
  height: 4rem;
  top: -1rem;
  left: 1.1rem;
}

.address-cloud::after {
  width: 5rem;
  height: 5rem;
  top: -1.3rem;
  right: 1rem;
}

.address-cloud span {
  position: relative;
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
  z-index: 1;
}

.address-cloud strong,
.address-cloud p {
  position: relative;
  z-index: 1;
}

.address-cloud strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.36rem;
  line-height: 1.08;
}

.address-cloud p {
  margin: 0.45rem 0 0;
  font-size: 1.03rem;
  line-height: 1.28;
}

.address-cloud-small {
  background: linear-gradient(145deg, rgba(255, 240, 248, 0.96), rgba(255, 255, 255, 0.88));
}

.address-cloud-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.address-cloud-link:hover,
.address-cloud-link:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 40px rgba(33, 97, 123, 0.22);
  outline: none;
}

.final-cta {
  padding-bottom: 5rem;
}

.cta-ribbon {
  position: relative;
  padding: 2.35rem;
  text-align: center;
  border-radius: 2.8rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 12rem),
    linear-gradient(135deg, rgba(255, 214, 77, 0.92), rgba(255, 123, 184, 0.78));
  box-shadow: var(--shadow-soft);
}

.cta-ribbon::before,
.cta-ribbon::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 2.2rem;
  pointer-events: none;
}

.cloud-big {
  margin-top: 1rem;
  font-size: 1.18rem;
  min-width: 15rem;
}

.music-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 74, 114, 0.92);
  color: white;
  box-shadow: 0 20px 34px rgba(4, 26, 40, 0.22);
  cursor: pointer;
}

.music-icon {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.2rem;
  height: 1.25rem;
}

.music-icon span {
  width: 0.22rem;
  border-radius: 999px;
  background: var(--sun-yellow);
  animation: equalizer 1.3s ease-in-out infinite;
}

.music-icon span:nth-child(1) {
  height: 0.7rem;
}

.music-icon span:nth-child(2) {
  height: 1.15rem;
  animation-delay: 0.15s;
}

.music-icon span:nth-child(3) {
  height: 0.85rem;
  animation-delay: 0.3s;
}

.music-toggle[data-playing="false"] .music-icon span {
  animation-play-state: paused;
  opacity: 0.6;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 0.6rem;
  z-index: 19;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(calc(100vw - 1rem), 27rem);
  padding: 0.5rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 32px rgba(4, 26, 40, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.dock-button {
  min-height: 3rem;
  padding: 0.78rem 0.45rem;
  border: 0;
  border-radius: 1.2rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(14, 74, 114, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dock-rsvp {
  background: linear-gradient(145deg, rgba(255, 214, 77, 0.96), rgba(255, 158, 33, 0.94));
}

.dock-map {
  background: linear-gradient(145deg, rgba(168, 231, 255, 0.96), rgba(120, 197, 244, 0.94));
}

.dock-gifts {
  background: linear-gradient(145deg, rgba(255, 225, 237, 0.98), rgba(255, 181, 211, 0.94));
}

.dock-button:hover,
.dock-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(14, 74, 114, 0.08),
    0 10px 18px rgba(14, 74, 114, 0.12);
}

.site-footer {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(14, 74, 114, 0.86);
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bob {
  0%,
  100% {
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  }
  50% {
    transform: translate3d(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) - 12px), 0);
  }
}

@keyframes bubble-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes cloud-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 24rem));
  }
}

@keyframes drift-up {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  10%,
  80% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(var(--drift-x), -34vh, 0) scale(1.08);
    opacity: 0;
  }
}

@keyframes equalizer {
  0%,
  100% {
    transform: scaleY(0.65);
  }
  50% {
    transform: scaleY(1.15);
  }
}

@keyframes film-roll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

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

@keyframes ring-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(0.98);
  }
  50% {
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes wiggle {
  0%,
  100% {
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) - 9px), 0)
      rotate(3deg);
  }
}

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

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes name-pop {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04) rotate(-1deg);
  }
  70% {
    transform: scale(0.985) rotate(1deg);
  }
}

@keyframes sparkle-pop {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes sticker-sway {
  0%,
  100% {
    transform: rotate(-1.6deg) translateY(0);
  }
  50% {
    transform: rotate(1.2deg) translateY(-3px);
  }
}

@keyframes topper-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scene-card-sway {
  0%,
  100% {
    transform: rotate(-1.1deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-6px);
  }
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes feature-ticket-float {
  0%,
  100% {
    transform: rotate(var(--tilt)) translateY(0);
  }
  50% {
    transform: rotate(calc(var(--tilt) + 1deg)) translateY(-6px);
  }
}

@keyframes feature-cloud-pop {
  0%,
  100% {
    transform: rotate(var(--gift-tilt)) translateY(0);
  }
  50% {
    transform: rotate(calc(var(--gift-tilt) + 1deg)) translateY(-8px);
  }
}

@keyframes doodle-cloud-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.6rem;
    padding-top: 6rem;
  }

  .hero-copy,
  .hero-actions {
    max-width: 42rem;
    width: 100%;
  }

  .hero-copy {
    justify-items: center;
    min-height: auto;
    margin-top: 0;
    padding: 0.9rem 0 0.6rem;
  }

  .hero-copy::before {
    left: 50%;
    top: 12%;
    width: 20rem;
    height: 20rem;
    transform: translateX(-50%);
  }

  .hero-copy::after {
    display: none;
  }

  .hero-photo-zone {
    min-height: 27rem;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-kicker,
  .hero-bubbles {
    margin-inline: auto;
  }

  .hero-name {
    justify-self: center;
  }

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

  .cloud-buttons {
    justify-content: center;
  }

  .character-tweety {
    left: 2%;
    bottom: 7.5rem;
  }

  .character-daffy {
    right: 0;
    top: 5.8rem;
  }

  .party-features,
  .info-grid,
  .route-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 2rem;
  }

  /* Scroll cue não pode ficar absoluto numa coluna — vira relativo no final do hero */
  .scroll-cue {
    position: relative;
    inset: auto;
    transform: none;
    margin: 0.5rem auto 0;
    padding-bottom: 0.5rem;
  }

  section,
  .site-footer {
    width: min(calc(100vw - 2rem), 42rem);
  }

  .hero {
    min-height: auto;
    gap: 1.2rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero-rings {
    width: min(90vw, 28rem);
    top: 8rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-inline: auto;
    padding: 0.8rem 0.75rem 0.9rem;
  }

  .hero-copy,
  .hero-actions,
  .hero-photo-zone {
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin-inline: auto;
  }

  .hero-copy {
    justify-items: center;
    gap: 0.7rem;
    margin-top: 0;
    min-height: auto;
    padding: 0.9rem 0.5rem 0.8rem;
  }

  .hero-photo-zone {
    min-height: auto;
    padding: 1rem 0 0.5rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy::before {
    top: 6%;
    width: 14rem;
    height: 14rem;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-story-doodles {
    opacity: 0.8;
  }

  .hero h1::before {
    inset: -0.65rem -0.7rem -0.6rem;
  }

  .hero h1::after {
    inset: 0.2rem;
    border-radius: 1.8rem;
  }

  .hero-kicker {
    margin-inline: auto;
    padding: 0.58rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-title-line {
    font-size: clamp(1.7rem, 8vw, 2.8rem);
  }

  .hero-name {
    justify-self: center;
    font-size: clamp(2.6rem, 9.5vw, 3.6rem);
  }

  .hero-text {
    max-width: min(100%, 18rem);
    margin: 0.15rem auto 0;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-text::before {
    left: 1.2rem;
    top: auto;
    bottom: -0.35rem;
    width: 1rem;
    height: 1rem;
  }

  .hero-text::after {
    left: 0.55rem;
    top: auto;
    bottom: -0.78rem;
    width: 0.68rem;
    height: 0.68rem;
  }

  .hero-bubbles {
    margin: 0.1rem auto 0;
    justify-content: center;
  }

  .size-shell {
    padding: 1.3rem 0.9rem 1.5rem;
    border-radius: 1.8rem;
  }

  .size-head h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    margin-top: 0.5rem;
  }

  .size-head p {
    font-size: 0.88rem;
    margin-top: 0.5rem;
  }

  .size-head .section-kicker {
    font-size: 0.78rem;
    padding: 0.38rem 0.8rem;
  }

  .size-line {
    left: 1rem;
    right: 1rem;
  }

  /* ---- FOTO EM CÍRCULO: centralizada e contida ---- */
  .photo-frame {
    width: min(72vw, 15rem);
    padding: 0.6rem;
    margin-top: 0;
    flex-shrink: 0;
    align-self: center;
  }

  .photo-frame img {
    object-position: center top;
  }

  .photo-frame::before {
    inset: -0.4rem;
    border-width: 6px;
  }

  .orbit-a {
    width: 13rem;
    height: 13rem;
  }

  .orbit-b {
    width: 17rem;
    height: 17rem;
  }

  .photo-caption {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    text-align: left;
  }

  .detail-card {
    padding: 0.8rem 0.85rem;
    border-radius: 1.3rem;
  }

  .detail-card .detail-label {
    font-size: 0.82rem;
  }

  .detail-card strong {
    font-size: 1rem;
  }

  .detail-card small {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .detail-card-wide,
  .cloud-buttons,
  .helper-text {
    grid-column: 1 / -1;
  }

  .cloud-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0;
  }

  .cloud-button {
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .helper-text {
    text-align: center;
    font-size: 0.88rem;
  }

  .character,
  .floating-sticker {
    opacity: 0.75;
  }

  /* Personagens menores e mais para a borda no mobile */
  .character-tweety {
    width: 4rem;
    left: 0;
    bottom: 5rem;
  }

  .character-daffy {
    width: 3.5rem;
    top: 3rem;
    right: 0;
  }

  .sticker-bow {
    width: 3.5rem;
    right: 0;
    top: 0.8rem;
  }

  .sticker-taz {
    width: 3.8rem;
    left: 0;
    bottom: 0.6rem;
  }

  .section-head {
    padding-top: 0.6rem;
  }

  .section-head h2 {
    margin-top: 0.5rem;
  }

  /* Reduz padding-bottom de todas as seções */
  .scene-section,
  .route-section,
  .final-cta,
  .party-world,
  .info-grid {
    padding-bottom: 1.8rem;
  }

  .final-cta {
    padding-bottom: 2.5rem;
  }

  .party-world-shell {
    padding: 1.3rem 0.8rem 1.1rem;
    border-radius: 2rem;
  }

  .story-bridge {
    gap: 0.7rem;
    margin: 1.15rem auto 1.25rem;
    padding-inline: 0.35rem;
  }

  .story-bridge p {
    font-size: 0.96rem;
  }

  .section-support {
    font-size: 1rem;
  }

  /* Filmstrip: container vira carrossel com peek lateral */
  .filmstrip {
    margin-top: 1rem;
    padding: 0.85rem 0;
    border-radius: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 10%;
  }

  .filmstrip::-webkit-scrollbar {
    display: none;
  }

  /* Decoração oculta no mobile */
  .filmstrip::before,
  .filmstrip::after {
    display: none;
  }

  /* film-track fica inline, padding lateral cria espaço para peek */
  .film-track {
    width: max-content;
    gap: 0.75rem;
    padding: 0.2rem 10vw;
    animation: none !important;
  }

  .film-track.is-mobile {
    width: max-content;
  }

  /* Card: 78% da tela = card central cheio + ~11% de cada lado visível */
  .scene-card {
    flex: 0 0 78vw;
    max-width: 18rem;
    gap: 0.7rem;
    padding: 0.9rem;
    animation: none;
    scroll-snap-align: center;
    transition: transform 300ms ease, box-shadow 300ms ease;
    transform: scale(0.93);
    opacity: 0.82;
  }

  /* Card ativo (centralizado) fica maior */
  .scene-card.is-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 18px 40px rgba(14, 74, 114, 0.22);
  }

  /* Texto dos cards menor no mobile */
  .scene-copy strong {
    font-size: 0.95rem;
  }

  .scene-copy p {
    font-size: 0.82rem;
    line-height: 1.22;
    margin-top: 0.15rem;
  }

  .party-features {
    gap: 1rem;
  }

  .feature-playground,
  .feature-giftland {
    padding: 1.45rem 1.2rem 1.35rem;
    border-radius: 2.2rem;
    transform: none;
  }

  .feature-head h3 {
    max-width: 11ch;
  }

  .feature-head p {
    font-size: 0.96rem;
  }

  .party-features .fun-list li {
    padding: 0.9rem 0.9rem 0.9rem 1.25rem;
    font-size: 0.98rem;
  }

  .feature-mascot-tweety {
    width: 5rem;
    right: 0.3rem;
    bottom: -0.15rem;
    opacity: 0.28;
  }

  .feature-mascot-bugs {
    width: 5.8rem;
    right: 0.1rem;
    bottom: -0.2rem;
    opacity: 0.18;
  }

  .feature-sparkles span:nth-child(2) {
    right: 4.2rem;
  }

  .party-features .fun-list li::before {
    left: 0.62rem;
    top: 0.94rem;
  }

  .party-features .gift-cloud {
    padding: 0.82rem 1rem;
    font-size: 0.93rem;
  }

  .gift-cta {
    width: 100%;
    justify-content: center;
  }

  /* Tamanhos em 2 colunas no mobile */
  .gift-size-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gift-size-card {
    padding: 2rem 0.65rem 0.8rem;
  }

  .gift-size-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.6rem;
  }

  .gift-size-label {
    font-size: 0.78rem;
    margin-top: 0.5rem;
  }

  .gift-size-card strong {
    font-size: 0.95rem;
    margin-top: 0.2rem;
  }

  .gift-size-note {
    font-size: 0.75rem;
    margin-top: 0.3rem;
  }

  /* Seções: títulos menores */
  .section-head h2,
  .route-card h2,
  .final-cta h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.8rem);
  }

  .cloud-panel h3 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .route-card {
    padding: 1.2rem;
    border-radius: 1.7rem;
  }

  .route-copy p,
  .final-cta p {
    font-size: 0.95rem;
  }

  .address-cloud {
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 1.5rem;
  }

  .address-cloud strong {
    font-size: 1.05rem;
  }

  .address-cloud p {
    font-size: 0.9rem;
  }

  .cta-ribbon {
    padding: 1.5rem 1rem 1.8rem;
    border-radius: 1.9rem;
  }

  .cta-ribbon h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.6rem);
  }

  .music-toggle {
    right: 0.5rem;
    bottom: 0.7rem;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.88rem;
  }

  .mobile-dock {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.8rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .cloud-button::before {
    width: 2.2rem;
    height: 2.2rem;
    left: 0.75rem;
    top: -0.6rem;
  }

  .cloud-button::after {
    width: 2.7rem;
    height: 2.7rem;
    right: 0.95rem;
    top: -0.8rem;
  }

  .mobile-dock {
    width: calc(100vw - 0.8rem);
  }

  .dock-button {
    font-size: 0.88rem;
  }

  .music-toggle {
    max-width: 10rem;
  }
}

@media (max-width: 420px) {
  section,
  .site-footer {
    width: calc(100vw - 1.4rem);
  }

  .hero {
    padding-top: 3.5rem;
    gap: 0.9rem;
  }

  .hero-kicker {
    font-size: 0.72rem;
    padding: 0.5rem 0.75rem;
  }

  .hero-title-line {
    font-size: clamp(1.5rem, 7.5vw, 2.4rem);
  }

  .hero-name {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .photo-frame {
    width: min(68vw, 13rem);
  }

  .orbit-a {
    width: 11rem;
    height: 11rem;
  }

  .orbit-b {
    width: 14.5rem;
    height: 14.5rem;
  }

  .gift-size-guide {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .route-card h2,
  .final-cta h2,
  .cta-ribbon h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .cloud-panel h3 {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
  }

  .character-tweety {
    display: block;
    width: 3.4rem;
    left: 0;
    bottom: 4.5rem;
  }

  .character-daffy {
    display: block;
    width: 3rem;
    top: 2.5rem;
    right: 0;
  }

  .sticker-bow {
    display: block;
    width: 3rem;
    right: 0;
    top: 0.5rem;
  }

  .sticker-taz {
    display: block;
    width: 3.2rem;
    left: 0;
    bottom: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
