/* ============================================================
   Manchester Roller Skating — "Bee Disco"
   Dark neon roller-disco aesthetic · bee yellow / hot pink / cyan
   Type: Shrikhand (display) + Outfit (body)
   ============================================================ */

:root {
  --ink: #14110d;
  --ink-2: #1d1912;
  --ink-3: #2a2318;
  --bee: #ffc900;
  --bee-deep: #e0a800;
  --pink: #ff2e88;
  --cyan: #38e1ff;
  --cream: #fff6e0;
  --muted: #cdc2ab;
  --line: rgba(255, 246, 224, 0.14);

  --font-display: "Shrikhand", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --radius: 20px;
  --shadow-pop: 8px 8px 0 rgba(0, 0, 0, 0.45);
  --glow-bee: 0 0 18px rgba(255, 201, 0, 0.55), 0 0 60px rgba(255, 201, 0, 0.22);
  --glow-pink: 0 0 18px rgba(255, 46, 136, 0.6), 0 0 60px rgba(255, 46, 136, 0.25);

  --z-nav: 50;
  --z-overlay: 40;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4, dl, p, ul, ol, figure { margin: 0; }
a { color: inherit; }
button { font: inherit; }

::selection { background: var(--bee); color: var(--ink); }

/* warm stage-light wash, like sodium lamps on a rink wall */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1000px 700px at 88% -8%, rgba(255, 201, 0, 0.06), transparent 60%),
    radial-gradient(900px 650px at -12% 65%, rgba(255, 46, 136, 0.05), transparent 60%);
}

/* film grain over everything, projector style */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--bee);
  color: var(--ink);
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:is(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
/* grid/flex children must be allowed to shrink below min-content */
.about__layout > *, .skating__layout > *, .faq__layout > *,
.contact__layout > *, .parties__layout > *, .parties__right > * { min-width: 0; }
.ticket { min-width: 0; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; scroll-margin-top: 84px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--bee);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--ink); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.tilt {
  display: inline-block;
  transform: rotate(-2deg);
  padding: 0.05em 0.28em 0.12em;
  border-radius: 10px;
}
.tilt--pink { background: var(--pink); color: var(--ink); box-shadow: var(--glow-pink); }
.tilt--bee { background: var(--bee); color: var(--ink); box-shadow: var(--glow-bee); }
.tilt--cyan { background: var(--cyan); color: var(--ink); box-shadow: 0 0 18px rgba(56,225,255,.5); }
.tilt--ink { background: var(--ink); color: var(--bee); }

.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; margin-bottom: 1rem; }
.lead--dark { color: rgba(14, 11, 22, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.btn span { transition: transform 0.2s ease; }
.btn:hover span { transform: translateX(4px); }

.btn--bee {
  background: var(--bee);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5), var(--glow-bee);
}
.btn--bee:hover { box-shadow: 8px 8px 0 rgba(0,0,0,0.5), var(--glow-bee); }

.btn--pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5), var(--glow-pink);
}
.btn--pink:hover { box-shadow: 8px 8px 0 rgba(0,0,0,0.5), var(--glow-pink); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--full { width: 100%; justify-content: center; }

/* ---------- Checkerboard motif ---------- */
.checker {
  height: 26px;
  background:
    repeating-conic-gradient(var(--bee) 0% 25%, var(--ink) 0% 50%) 0 0 / 26px 26px;
}
.checker--hero { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }
.checker--footer { margin-bottom: 0; }

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  z-index: calc(var(--z-nav) + 1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.55rem 1.5rem;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.topbar__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--bee); flex: none; }
.topbar__link { text-decoration: none; transition: color 0.2s ease; }
.topbar__link:hover { color: var(--bee); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(14, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.is-scrolled { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.nav.is-hidden { transform: translateY(-110%); }

.nav__progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--bee), var(--pink) 55%, var(--cyan));
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}
.nav__inner {
  width: min(1240px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav__brand img { filter: drop-shadow(0 0 10px rgba(255, 201, 0, 0.35)); }
.nav__brand-text {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
}
.nav__brand-text em { font-style: normal; color: var(--bee); }

.nav__links { display: flex; align-items: center; gap: 1.4rem; }
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
  transition: right 0.25s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--bee); }
.nav__links a:not(.nav__cta):hover::after { right: 0; }
.nav__links a.is-active { color: var(--bee); }
.nav__links a.is-active::after { right: 0; background: var(--bee); }

.nav__cta {
  text-decoration: none;
  background: var(--bee);
  color: var(--ink) !important;
  font-weight: 800;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(0,0,0,0.5); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 17, 13, 0.92) 0%, rgba(20, 17, 13, 0.72) 45%, rgba(20, 17, 13, 0.35) 100%),
    linear-gradient(to top, rgba(20, 17, 13, 0.95) 0%, transparent 40%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 9vw, 7rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--cream);
  background: var(--ink);
  border: 1px dashed rgba(255, 246, 224, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.6rem;
  transform: rotate(-1deg);
}
.hero__eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 8.4vw, 6.4rem);
  line-height: 1.02;
  margin-bottom: 1.6rem;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}
.hero__title > span { display: block; }
.hero__title-glow {
  color: var(--bee);
  text-shadow:
    0 0 14px rgba(255, 201, 0, 0.65),
    0 0 55px rgba(255, 201, 0, 0.35),
    4px 4px 0 rgba(0, 0, 0, 0.4);
}
.hero__bang { font-style: normal; color: var(--pink); text-shadow: 0 0 18px rgba(255, 46, 136, 0.8), 4px 4px 0 rgba(0,0,0,0.4); }

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 246, 224, 0.88);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  width: fit-content;
  overflow: hidden;
}
.hero__facts li {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.6rem;
}
.hero__facts li + li { border-left: 1px solid var(--line); }
.hero__facts strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--bee);
}
.hero__facts span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--pink);
  color: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__track i { font-style: normal; color: var(--cream); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Why ---------- */
.why { background: var(--ink); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
/* pinned-up rink flyers: mismatched colours, slight tilt, hard shadows */
.why__card {
  position: relative;
  background: var(--ink-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 1.9rem 1.5rem 1.6rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why__card:nth-child(odd) { transform: rotate(-1.1deg); }
.why__card:nth-child(even) { transform: rotate(1deg) translateY(10px); }
.why__card:nth-child(1) { background: var(--bee); color: var(--ink); }
.why__card:nth-child(4) { background: var(--pink); color: var(--ink); }
.why__card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.4);
}
/* drawing pin */
.why__card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffbe8, #b8a568 65%, #6d5c2c);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.why__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.8rem;
  color: var(--pink);
}
.why__card:nth-child(1) .why__num,
.why__card:nth-child(4) .why__num { color: var(--ink); opacity: 0.85; }
.why__card:nth-child(3) .why__num { color: var(--cyan); }
.why__card:nth-child(5) .why__num { color: var(--bee); }
.why__card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.45rem; }
.why__card p { font-size: 0.95rem; color: var(--muted); }
.why__card:nth-child(1) p,
.why__card:nth-child(4) p { color: rgba(20, 17, 13, 0.78); }

/* ---------- About ---------- */
.about { background: var(--ink-2); }
.about__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.values { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.3rem; }
.values li { display: flex; gap: 1.1rem; align-items: flex-start; }
.values__badge {
  flex: none;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
  color: var(--ink);
}
.values__badge--bee { background: var(--bee); }
.values__badge--pink { background: var(--pink); }
.values__badge--cyan { background: var(--cyan); }
.values h3 { font-size: 1.12rem; font-weight: 800; }
.values p { color: var(--muted); font-size: 0.98rem; }

.about__media { position: relative; min-height: 460px; }
.about__photo { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--ink); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

/* polaroid treatment: cream mount, taped corner, handwritten caption */
.polaroid {
  background: var(--cream);
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 10px 46px;
  overflow: visible !important;
  box-shadow: var(--shadow-pop) !important;
}
.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.05) contrast(1.02);
}
.polaroid .scribble {
  position: absolute;
  left: 10px; right: 10px; bottom: 8px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.45rem;
  color: #40372a;
  transform: rotate(-1.2deg);
  white-space: nowrap;
  overflow: hidden;
}
.polaroid::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 28px;
  margin-left: -48px;
  background: rgba(255, 249, 227, 0.45);
  border-left: 1px dashed rgba(20, 17, 13, 0.12);
  border-right: 1px dashed rgba(20, 17, 13, 0.12);
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}
.about__photo--main {
  position: absolute;
  inset: 0 12% 8% 0;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-pop), var(--glow-pink);
}
.about__photo--float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1;
  transform: rotate(3deg);
  box-shadow: var(--shadow-pop), var(--glow-bee);
}
.about__sticker {
  position: absolute;
  top: -1.4rem;
  right: 6%;
  width: 96px; height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--bee);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
  transform: rotate(8deg);
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-10px); }
}

.offer__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 1.6rem;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}
.offer__card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-left: 5px solid var(--bee);
  border-radius: 14px;
  padding: 1.3rem 1.3rem 1.4rem;
  transition: transform 0.25s ease, border-left-color 0.25s ease;
}
.offer__card:nth-child(2) { border-left-color: var(--pink); }
.offer__card:nth-child(3) { border-left-color: var(--cyan); }
.offer__card:nth-child(4) { border-left-color: var(--pink); }
.offer__card:nth-child(5) { border-left-color: var(--cyan); }
.offer__card:hover { transform: translateY(-4px); }
.offer__card h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 0.4rem; }
.offer__card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Skating (yellow section) ---------- */
.skating {
  background: var(--bee);
  color: var(--ink);
  padding-top: 0;
}
.skating .checker { margin-bottom: clamp(3.5rem, 6vw, 5.5rem); }
.skating__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.skating .section__title { color: var(--ink); }

.skating__media { position: relative; min-height: 520px; }
.skating__photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
}
.skating__photo img { width: 100%; height: 100%; object-fit: cover; }
.skating__photo:first-child {
  position: absolute;
  inset: 0 14% 12% 0;
  transform: rotate(-2.5deg);
}
.skating__photo--b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  aspect-ratio: 4/3;
  transform: rotate(3deg);
}

.ticket {
  position: relative;
  margin-top: 2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.9rem 2rem 0;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.ticket__punch {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 28px; height: 28px;
  background: var(--bee);
  border-radius: 50%;
}
.ticket__punch::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100vw - 28px);
}
.ticket__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--bee);
  margin-bottom: 1.1rem;
}
.ticket__rows { display: grid; gap: 0; }
.ticket__rows > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px dashed rgba(255, 246, 224, 0.2);
  font-size: 0.98rem;
}
.ticket__rows dt {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--pink);
  padding-top: 0.15rem;
}
.ticket__rows dd { margin: 0; color: rgba(255, 246, 224, 0.9); }
.ticket__rows strong { color: var(--bee); font-size: 1.15rem; }
.ticket__strip {
  margin: 1.3rem -2rem 0;
  padding: 0.55rem 0;
  text-align: center;
  background: var(--pink);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- Parties ---------- */
.parties { background: var(--ink); }

/* taped-up notice card */
.notice {
  position: relative;
  max-width: 62ch;
  background: var(--cream);
  color: #40372a;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  padding: 1.15rem 1.5rem;
  border-radius: 8px;
  transform: rotate(-0.6deg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  margin: 0.4rem 0 1.6rem;
}
.notice strong { color: var(--pink); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem; }
.notice::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 34px;
  width: 88px;
  height: 26px;
  background: rgba(255, 249, 227, 0.5);
  border-left: 1px dashed rgba(20, 17, 13, 0.12);
  border-right: 1px dashed rgba(20, 17, 13, 0.12);
  transform: rotate(-4deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* rubber stamp over the dimmed price card */
.parties__price-card.is-unavailable ul,
.parties__price-card.is-unavailable .parties__price-figure,
.parties__price-card.is-unavailable .parties__price-label { opacity: 0.35; }
.stamp {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-10deg);
  border: 4px solid var(--pink);
  border-radius: 10px;
  color: var(--pink);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0.05'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0.05'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (max-width: 560px) {
  .stamp { font-size: 0.92rem; letter-spacing: 0.1em; white-space: normal; width: 80%; }
}
.parties__lead { margin-bottom: 2.6rem; }
.parties__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.parties__price-card {
  position: relative;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(255, 46, 136, 0.45);
  border-radius: var(--radius);
  padding: 2.1rem 2rem;
  box-shadow: 0 0 50px rgba(255, 46, 136, 0.14);
}
.parties__price-label {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--ink);
  background: var(--pink);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.parties__price-figure {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--bee);
  text-shadow: 0 0 25px rgba(255, 201, 0, 0.4);
  margin-bottom: 1.2rem;
}
.parties__price-figure span { font-size: 0.5em; vertical-align: 0.6em; }
.parties__price-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.55rem; }
.parties__price-card li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 246, 224, 0.92);
  font-size: 0.98rem;
}
.parties__price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 0.85em; height: 0.45em;
  border-left: 3px solid var(--bee);
  border-bottom: 3px solid var(--bee);
  transform: rotate(-45deg);
}
.parties__price-note { margin-top: 1.1rem; font-size: 0.85rem; color: var(--muted); }

.parties__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.parties__photos img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--ink-3);
  transition: transform 0.3s ease;
}
.parties__photos img:first-child { transform: rotate(-1.5deg); }
.parties__photos img:last-child { transform: rotate(1.5deg) translateY(14px); }
.parties__photos img:hover { transform: rotate(0) scale(1.02); }

.parties__perfect { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.parties__perfect li {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-size: 0.98rem;
  color: var(--muted);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.parties__perfect li:hover { border-color: rgba(255, 201, 0, 0.5); transform: translateX(6px); }
.parties__perfect strong { color: var(--cream); }

/* ---------- Tips ---------- */
.tips { background: var(--ink-2); }
.tips__list {
  list-style: none;
  counter-reset: tip;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.tips__list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.tips__list li:hover { transform: translateY(-4px); border-color: rgba(56, 225, 255, 0.45); }
.tips__num {
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(-4deg);
}
.tips__list li:nth-child(2n) .tips__num { background: var(--bee); transform: rotate(3deg); }
.tips__list li:nth-child(3n) .tips__num { background: var(--pink); }
.tips__list h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 0.35rem; }
.tips__list p { font-size: 0.95rem; color: var(--muted); }

.tips__terms {
  margin-top: 2.6rem;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--bee);
  background: rgba(255, 201, 0, 0.06);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 75ch;
}
.tips__terms a { color: var(--bee); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { background: var(--ink); }
.faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.faq__intro { position: sticky; top: 110px; }
.faq__intro .lead a { color: var(--bee); font-weight: 700; }
.faq__img {
  margin-top: 2rem;
  border-radius: var(--radius);
  border: 3px solid var(--ink-3);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.faq__list { display: grid; gap: 0.8rem; }
.faq__list details {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq__list details[open] { border-color: rgba(255, 201, 0, 0.55); }
.faq__list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 1.3rem;
  transition: color 0.2s ease;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--bee); }
.faq__chev {
  flex: none;
  width: 12px; height: 12px;
  border-right: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}
.faq__list details[open] .faq__chev { transform: rotate(225deg); margin-top: 4px; }
.faq__list details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(255, 46, 136, 0.1), transparent 60%),
    var(--ink-2);
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__details { list-style: none; margin: 1.8rem 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__details li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 1rem; }
.contact__details svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--bee);
  margin-top: 0.15rem;
}
.contact__details a { color: var(--cream); font-weight: 600; text-decoration-color: var(--pink); text-underline-offset: 4px; transition: color 0.2s ease; }
.contact__details a:hover { color: var(--bee); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--ink-3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.contact__form {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--bee);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}
.field__optional { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--cream);
  background: var(--ink-2);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bee);
  box-shadow: 0 0 0 4px rgba(255, 201, 0, 0.15);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--pink); }
.field__error { margin-top: 0.4rem; font-size: 0.85rem; color: var(--pink); font-weight: 600; }
.contact__form-note { margin-top: 1rem; font-size: 0.83rem; color: var(--muted); text-align: center; }

/* ---------- Terms page ---------- */
.terms__container { max-width: 860px; }
.terms h1 { margin-bottom: 1.6rem; }
.terms__list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.terms__list > li {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: var(--ink-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 1.7rem 1.6rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}
.terms__list > li:nth-child(odd) { transform: rotate(-0.4deg); }
.terms__list > li:nth-child(even) { transform: rotate(0.4deg); }
.terms__num {
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  background: var(--bee);
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}
.terms__list > li:nth-child(3n) .terms__num { background: var(--pink); }
.terms__list > li:nth-child(3n+2) .terms__num { background: var(--cyan); }
.terms__list h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.7rem; font-family: var(--font-body); }
.terms__list ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.terms__list ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.terms__list ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bee);
}
.terms__back { margin-top: 2.8rem; }

@media (max-width: 560px) {
  .terms__list > li { flex-direction: column; gap: 1rem; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: none; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand img { filter: drop-shadow(0 0 12px rgba(255, 201, 0, 0.35)); }
.footer__brand p {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  line-height: 1.3;
}
.footer__brand em { font-style: normal; color: var(--bee); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--bee); }
.footer__legal { font-size: 0.85rem; color: var(--muted); text-align: right; }
.footer__legal span { font-size: 0.78rem; opacity: 0.75; }
.footer__legal a { color: var(--muted); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s ease, translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; translate: 0 0; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.44s; }
.d6 { transition-delay: 0.54s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .about__layout, .skating__layout, .faq__layout, .contact__layout, .parties__layout {
    grid-template-columns: 1fr;
  }
  .about__media { min-height: 420px; }
  .skating__media { min-height: 440px; order: 2; }
  .faq__intro { position: static; }
  .faq__img { max-width: 420px; }
}

@media (max-width: 1020px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.4rem 1.2rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.8rem 0.2rem; font-size: 1.05rem; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: 0.8rem; text-align: center; justify-content: center; display: inline-flex; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .topbar { justify-content: center; text-align: center; }
  .hero__facts { width: 100%; }
  .hero__facts li { flex: 1 1 33%; padding: 0.8rem 1rem; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero { min-height: 88vh; }
  .hero__facts li { flex: 1 1 100%; }
  .hero__facts li + li { border-left: 0; border-top: 1px solid var(--line); }
  .about__media { min-height: 360px; }
  .about__sticker { width: 78px; height: 78px; font-size: 0.85rem; top: -1rem; }
  .skating__media { min-height: 340px; }
  .ticket { padding: 1.5rem 1.3rem 0; }
  .ticket__strip { margin: 1.2rem -1.3rem 0; }
  .ticket__rows > div { grid-template-columns: 1fr; gap: 0.1rem; }
  .parties__photos img:last-child { transform: rotate(1.5deg); }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__legal { text-align: center; }
  .footer__links { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; translate: none; }
  .ticker__track { animation: none; }
  .hero__media video { display: none; }
  .hero__media { background: url("https://images.pexels.com/photos/5788788/pexels-photo-5788788.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover; }
}
