/* ============================================================
   BounceUp — landing layer around the scroll-world flight
   Light clay theme: cream, ink navy, hot pink, toy shapes.
   Unlayered rules deliberately outrank the engine's @layer sw.
   ============================================================ */

:root {
  --cream: #FFF6EC;
  --paper: #FFFDF9;
  --ink: #223047;
  --ink-soft: #6b7285;
  --pink: #FF4FA3;
  --green: #35B36B;
  --yellow: #FFC93C;
  --blue: #59C3E8;
  --violet: #8A6CF0;
  --navy: #1D2A47;
  --spring: cubic-bezier(.3, 1.4, .4, 1);
  --easeout: cubic-bezier(.2, .7, .2, 1);
  --sw-font-display: 'Baloo 2', ui-rounded, 'SF Pro Rounded', system-ui, sans-serif;
  --sw-font-body: 'Bricolage Grotesque', -apple-system, 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
html.loading { overflow: hidden; }
body { font-family: var(--sw-font-body); }

::selection { background: var(--pink); color: #fff; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 6px; }

/* ---------- preloader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  background: var(--cream);
  transition: opacity .55s ease, visibility .55s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader__ball {
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ff8ec4, var(--pink) 62%);
  box-shadow: 0 18px 30px -12px rgba(255, 79, 163, .55);
  animation: ball-bounce 1s var(--easeout) infinite alternate;
}
@keyframes ball-bounce {
  0% { transform: translateY(-44px) scale(1, 1); }
  78% { transform: translateY(10px) scale(1, 1); }
  100% { transform: translateY(16px) scale(1.28, .72); }
}
.loader__word {
  font-family: var(--sw-font-display); font-weight: 800; font-size: 1.6rem; color: var(--ink);
}
.loader__sub {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}

/* ---------- logo ---------- */
.logo { display: block; flex: 0 0 auto; filter: drop-shadow(0 5px 10px rgba(255, 79, 163, .38)); }
.logo--nav { width: 32px; height: 32px; }
.logo--foot { width: 46px; height: 46px; }
.loader__word b, .sw-brand__name b { color: var(--pink); font-weight: 800; }

/* ---------- engine refinements (in-world) ---------- */
.sw-hint { pointer-events: none; }
.sw-brand { gap: 11px; }
.sw-brand:hover .logo { transform: rotate(-6deg) scale(1.06); transition: transform .3s var(--spring); }
.sw-brand__name { font-weight: 800; font-size: 1.24rem; letter-spacing: -.01em; }
.sw-nav {
  background: color-mix(in srgb, #fff 74%, transparent);
  border: 1.5px solid rgba(34, 48, 71, .08);
  box-shadow: 0 12px 30px -20px rgba(34, 48, 71, .45);
}
.sw-nav__item { font-size: .84rem; }
.topstatus {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sw-font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; color: var(--ink);
  background: color-mix(in srgb, #fff 74%, transparent);
  border: 1.5px solid rgba(53, 179, 107, .35);
  padding: 8px 15px; border-radius: 999px; white-space: nowrap;
}
.topstatus i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 179, 107, .5); }
  55% { box-shadow: 0 0 0 6px rgba(53, 179, 107, 0); }
}

/* ---------- mobile sheet menu ---------- */
.menu-btn {
  display: none; position: fixed; top: 12px; right: 14px; z-index: 260;
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(34, 48, 71, .1);
  background: var(--paper); cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(34, 48, 71, .4);
}
.menu-btn span {
  position: absolute; left: 13px; right: 13px; height: 2.6px; border-radius: 2px;
  background: var(--ink); transition: transform .35s var(--spring), top .35s var(--spring);
}
.menu-btn span:first-child { top: 18px; }
.menu-btn span:last-child { top: 26px; }
.menu-btn.open span:first-child { top: 22px; transform: rotate(45deg); }
.menu-btn.open span:last-child { top: 22px; transform: rotate(-45deg); }
.sheet {
  position: fixed; inset: 0; z-index: 250; background: var(--cream);
  padding: 84px 26px 30px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .35s ease, transform .35s var(--easeout), visibility .35s;
}
.sheet.open { opacity: 1; visibility: visible; transform: none; }
html.sheet-open { overflow: hidden; }
.sheet__label {
  display: block; margin: 26px 4px 12px;
  font-family: var(--sw-font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--pink);
}
.sheet__label:first-child { margin-top: 0; }
.sheet__scenes { display: flex; flex-direction: column; }
.sheet__scenes button {
  display: flex; align-items: baseline; gap: 14px; text-align: left;
  border: 0; border-bottom: 1.5px solid rgba(34, 48, 71, .1); background: transparent; cursor: pointer;
  font-family: var(--sw-font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink);
  padding: 13px 4px;
}
.sheet__scenes em {
  font-style: normal; font-family: ui-monospace, Menlo, monospace;
  font-size: .8rem; color: var(--pink);
}
.sheet__links { display: flex; flex-wrap: wrap; gap: 10px; }
.sheet__links a {
  text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid rgba(34, 48, 71, .12);
  padding: 10px 18px; border-radius: 999px;
}
.sheet__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.sheet__cta .btn { text-align: center; }
.sw-copy__title { font-weight: 800; letter-spacing: -.02em; }
.sw-copy:first-child .sw-copy__title { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: .98; }
.sw-copy__eyebrow { letter-spacing: .2em; }
.sw-route__label, .sw-nav__item, .sw-topcta { font-family: var(--sw-font-display); font-weight: 700; }
.sw-topcta { background: var(--pink); box-shadow: 0 10px 22px -10px rgba(255, 79, 163, .6); transition: transform .2s var(--spring); }
.sw-topcta:hover { transform: translateY(-2px); }

/* topbar gains a solid shell once we're past the flight */
.sw-topbar { transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease; }
html.pw .sw-topbar {
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(34, 48, 71, .08);
}
.sw-route, .sw-copylayer { transition: opacity .45s ease; }
html.pw .sw-route { opacity: 0; pointer-events: none; }
html.pw .sw-copylayer { opacity: 0; }
html.pw .sw-copylayer * { pointer-events: none !important; }

/* ---------- ground (post-flight content) ---------- */
.ground { position: relative; z-index: 25; color: var(--ink); }

.sec { padding: clamp(80px, 10vw, 132px) clamp(20px, 5vw, 64px); position: relative; }
.sec__head { text-align: center; max-width: 780px; margin: 0 auto; }
.sec__head p { margin: 18px auto 0; font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.6; color: var(--ink-soft); max-width: 54ch; }

h2 {
  font-family: var(--sw-font-display); font-weight: 800; margin: 14px 0 0;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.02; letter-spacing: -.015em; color: var(--ink);
}
.tint { color: var(--pink); }
.tint--violet { color: #A88BFF; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sw-font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--pink);
}
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 3px 6px -2px currentColor; }
.kicker--violet { color: #A88BFF; }

/* reveals */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--easeout) var(--d, 0s), transform .8s var(--easeout) var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }

/* buttons */
.btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btns--center { justify-content: center; }
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: 0;
  font-family: var(--sw-font-body); font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px; color: var(--ink);
  transition: transform .25s var(--spring), box-shadow .25s ease;
}
.btn:active { transform: scale(.96); }
.btn--pink { background: var(--pink); color: #fff; box-shadow: 0 14px 28px -12px rgba(255, 79, 163, .6); }
.btn--pink:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(255, 79, 163, .65); }
.btn--ghost { border: 2px solid rgba(34, 48, 71, .22); background: transparent; }
.btn--ghost:hover { transform: translateY(-3px); border-color: rgba(34, 48, 71, .45); }
.btn--ghost-light { border: 2px solid rgba(255, 255, 255, .38); background: transparent; color: #fff; font-family: var(--sw-font-body); }
.btn--ghost-light:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .7); }
.btn--big { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- marquee ribbon ---------- */
.marquee {
  margin-top: 6vh;
  transform: rotate(-1.6deg); width: 104vw; margin-left: -2vw;
  background: var(--pink); color: var(--cream);
  overflow: hidden; padding: 15px 0;
  box-shadow: 0 22px 44px -22px rgba(255, 79, 163, .55);
}
.marquee__in { display: flex; white-space: nowrap; width: max-content; animation: mq 30s linear infinite; }
.marquee__in span {
  font-family: var(--sw-font-display); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: .12em; padding-right: 18px;
}
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- sticker board ---------- */
.board {
  list-style: none; margin: clamp(40px, 6vw, 70px) auto 0; padding: 0;
  max-width: 1240px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: 10px 30px;
}
.board li { text-align: center; }
.board li:nth-child(even) { margin-top: 44px; }
.st button {
  border: 0; background: transparent; padding: 0; cursor: pointer; display: block; width: 100%;
  transition: transform .5s var(--spring);
}
.st img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 26px 20px rgba(34, 48, 71, .16));
  transition: filter .4s ease;
}
.st button:hover { transform: translateY(-12px) rotate(0deg) scale(1.045); }
.st button:hover img { filter: drop-shadow(0 40px 30px rgba(34, 48, 71, .2)); }
.st--1 { width: clamp(230px, 24vw, 320px); } .st--1 button { transform: rotate(-3deg); }
.st--2 { width: clamp(250px, 26vw, 350px); } .st--2 button { transform: rotate(2deg); }
.st--3 { width: clamp(230px, 24vw, 315px); } .st--3 button { transform: rotate(-2deg); }
.st--4 { width: clamp(215px, 22vw, 295px); } .st--4 button { transform: rotate(3deg); }
.st--5 { width: clamp(240px, 25vw, 330px); } .st--5 button { transform: rotate(-3deg); }
.st--6 { width: clamp(230px, 24vw, 315px); } .st--6 button { transform: rotate(2deg); }
.st--7 { width: clamp(240px, 25vw, 330px); } .st--7 button { transform: rotate(-2deg); }
.st__chip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: -6px;
  font-family: var(--sw-font-display); font-weight: 700; font-size: .95rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid rgba(34, 48, 71, .12);
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(34, 48, 71, .25);
}
.st__chip i { font-style: normal; font-size: .78rem; color: var(--pink); font-family: var(--sw-font-body); font-weight: 600; }
.st p { margin: 12px auto 0; font-size: .88rem; line-height: 1.5; color: var(--ink-soft); max-width: 26ch; }
.board__note {
  text-align: center; margin: clamp(40px, 5vw, 60px) auto 0; max-width: 60ch;
  font-size: .95rem; color: var(--ink-soft);
  border: 1.5px dashed rgba(34, 48, 71, .2); border-radius: 18px; padding: 16px 26px;
}

/* ---------- glow band (navy) ---------- */
.band { position: relative; background: var(--navy); color: #fff; padding: clamp(110px, 13vw, 170px) clamp(20px, 5vw, 64px); }
.band::before, .band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 56px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 34 C 180 62 400 4 720 26 C 1040 48 1260 8 1440 30 L 1440 0 L 0 0 Z' fill='%23FFF6EC'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.band::before { top: -1px; }
.band::after { bottom: -1px; transform: scaleY(-1); }
.band__grid {
  max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.band h2 { color: #fff; }
.band p { margin: 20px 0 0; line-height: 1.65; color: rgba(255, 255, 255, .78); max-width: 46ch; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; }
.chips li {
  font-size: .84rem; font-weight: 600; color: #D9CCFF;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(138, 108, 240, .18); border: 1px solid rgba(138, 108, 240, .45);
}
.band .btn { margin-top: 34px; }
.band__fig { margin: 0; }
.band__fig img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }

/* ---------- party section ---------- */
.sec--party { padding-top: clamp(70px, 8vw, 110px); }
.party {
  max-width: 1180px; margin: 0 auto;
  background: color-mix(in srgb, var(--pink) 7%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--pink) 22%, transparent);
  border-radius: 44px;
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(36px, 5vw, 70px);
}
.party__fig { margin: 0; }
.party__fig img { width: 100%; height: auto; display: block; filter: drop-shadow(0 26px 22px rgba(34, 48, 71, .18)); transform: rotate(-2deg); }
.party__copy p { margin: 20px 0 0; line-height: 1.65; color: var(--ink-soft); max-width: 48ch; }

/* ---------- visit ticket ---------- */
.ticket {
  position: relative; max-width: 920px; margin: clamp(46px, 6vw, 70px) auto 0;
  display: grid; grid-template-columns: 112px 1fr 92px;
  background: var(--paper); border: 2px solid rgba(34, 48, 71, .1); border-radius: 26px;
  box-shadow: 0 34px 64px -32px rgba(34, 48, 71, .35);
  transform: rotate(-1.2deg);
}
.ticket__stub {
  background: var(--pink); color: #fff; border-radius: 23px 0 0 23px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  font-family: var(--sw-font-display); font-weight: 800; letter-spacing: .24em; font-size: .72rem;
  text-transform: uppercase;
}
.ticket__stub strong { font-size: 1.7rem; letter-spacing: .06em; }
.ticket__body {
  position: relative; margin: 0; padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 46px);
  border-left: 2px dashed rgba(34, 48, 71, .2); border-right: 2px dashed rgba(34, 48, 71, .2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 36px;
}
.ticket__body::before, .ticket__body::after,
.ticket__code::before, .ticket__code::after {
  content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream); left: -14px; z-index: 2;
}
.ticket__body::before { top: -14px; } .ticket__body::after { bottom: -14px; }
.ticket__code::before { top: -14px; left: auto; right: 78px; } .ticket__code::after { bottom: -14px; left: auto; right: 78px; }
.ticket__body div { min-width: 0; }
.ticket__body dt {
  font-family: var(--sw-font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--pink);
}
.ticket__body dd { margin: 7px 0 0; line-height: 1.55; color: var(--ink); font-size: .97rem; }
.ticket__body a { color: var(--pink); font-weight: 600; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.ticket__code {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.ticket__code i {
  width: 44px; height: 62%; border-radius: 3px; opacity: .8;
  background: repeating-linear-gradient(180deg, var(--ink) 0 3px, transparent 3px 7px);
}

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: clamp(36px, 5vw, 56px) auto 0; }
.faq details { border-bottom: 1.5px solid rgba(34, 48, 71, .13); }
.faq summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 6px; cursor: pointer;
  font-family: var(--sw-font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 600; color: var(--pink);
  background: color-mix(in srgb, var(--pink) 12%, #fff);
  transition: transform .35s var(--spring);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 6px 24px; line-height: 1.65; color: var(--ink-soft); max-width: 62ch; }
.faq details a { color: var(--pink); font-weight: 600; }

/* ---------- final cta ---------- */
.sec--cta { text-align: center; overflow: hidden; padding-top: clamp(110px, 14vw, 180px); padding-bottom: clamp(110px, 14vw, 180px); }
.giant {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--sw-font-display); font-weight: 800;
  font-size: clamp(7rem, 21vw, 19rem); letter-spacing: .02em; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(34, 48, 71, .08);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.sec--cta > div { position: relative; }
.cta__h { font-size: clamp(2.8rem, 6.4vw, 5rem); }
.sec--cta p { margin: 20px auto 0; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- footer ---------- */
.foot { position: relative; background: var(--ink); color: var(--cream); padding: clamp(100px, 11vw, 150px) clamp(20px, 5vw, 64px) 40px; }
.foot::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 56px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 34 C 180 62 400 4 720 26 C 1040 48 1260 8 1440 30 L 1440 0 L 0 0 Z' fill='%23FFF6EC'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.foot__top {
  max-width: 1180px; margin: 0 auto clamp(44px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding-bottom: clamp(34px, 4vw, 50px); border-bottom: 1px solid rgba(255, 246, 236, .14);
}
.foot__logo {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--cream);
  font-family: var(--sw-font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: -.01em;
}
.foot__logo b { color: #FF8EC4; }
.foot__logo:hover .logo { transform: rotate(-6deg) scale(1.06); transition: transform .3s var(--spring); }
.foot__tag { margin: 14px 0 0; line-height: 1.6; color: rgba(255, 246, 236, .62); max-width: 40ch; font-size: .98rem; }
.foot__replay { flex: 0 0 auto; }
.foot__grid {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: clamp(30px, 4vw, 56px);
}
.foot h3 {
  margin: 0 0 16px; font-family: var(--sw-font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: #FF8EC4;
}
.foot p { margin: 0 0 12px; line-height: 1.7; color: rgba(255, 246, 236, .82); font-size: .95rem; }
.foot__glow { color: #C9B8FF; }
.foot a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(255, 246, 236, .25); transition: color .2s, border-color .2s; }
.foot a:hover { color: #FF8EC4; border-color: #FF8EC4; }
.foot__bottom {
  max-width: 1180px; margin: clamp(46px, 5vw, 64px) auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255, 246, 236, .12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: rgba(255, 246, 236, .5);
}
.foot__bottom a { color: rgba(255, 246, 236, .75); }
.foot__made { color: rgba(255, 246, 236, .38); }

/* ---------- custom cursor ---------- */
html.cur-on, html.cur-on * { cursor: none; }
.cur-dot, .cur-ring { position: fixed; left: 0; top: 0; z-index: 400; pointer-events: none; }
.cur-dot::after {
  content: ""; position: absolute; left: -4px; top: -4px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--pink);
}
.cur-ring::after {
  content: ""; position: absolute; left: -19px; top: -19px; width: 38px; height: 38px;
  border-radius: 50%; border: 1.5px solid color-mix(in srgb, var(--pink) 65%, transparent);
  transition: transform .3s var(--easeout), background .3s ease;
}
html.cur-grow .cur-ring::after { transform: scale(1.6); background: color-mix(in srgb, var(--pink) 10%, transparent); }

/* ---------- responsive ---------- */
@media (max-width: 1120px) { .topstatus { display: none; } }
@media (max-width: 960px) {
  .band__grid, .party { grid-template-columns: 1fr; }
  .band__fig { order: -1; max-width: 480px; margin: 0 auto; }
  .party__fig { max-width: 440px; margin: 0 auto; }
  .ticket { grid-template-columns: 84px 1fr; }
  .ticket__code { display: none; }
  .ticket__body { grid-template-columns: 1fr; border-right: 0; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu-btn { display: block; }
  .sw-topcta { display: none; }
  .sw-topbar { padding-right: 74px; }
}
@media (max-width: 620px) {
  .board li:nth-child(even) { margin-top: 0; }
  .st { width: min(78vw, 340px) !important; }
  .board { gap: 34px 20px; }
  .marquee { padding: 11px 0; }
  .party { padding: 26px 22px; border-radius: 30px; }
  .band { padding-left: 22px; padding-right: 22px; }
  .ticket { grid-template-columns: 1fr; transform: rotate(-.6deg); }
  .ticket__stub { flex-direction: row; gap: 8px; padding: 12px; border-radius: 23px 23px 0 0; }
  .ticket__stub strong { font-size: 1.15rem; }
  .ticket__body { border-left: 0; border-top: 2px dashed rgba(34, 48, 71, .2); padding: 24px 22px; }
  .ticket__body::before, .ticket__body::after { display: none; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot__top { flex-direction: column; align-items: flex-start; }
  .foot__bottom { flex-direction: column; }
  .giant { font-size: 34vw; }
  .sec { padding-left: 20px; padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee__in { animation: none; }
  .band__fig img { animation: none; }
  .loader__ball { animation: none; }
  html { scroll-behavior: auto; }
}
