/* =====================================================================
   Волшебна сцена — premium kids' playground site
   ===================================================================== */

:root {
  --cream: #fff8f0;
  --cream-2: #fdf0e4;
  --blush: #ffe6df;
  --ink: #2a1f3d;
  --ink-2: #4a3f5e;
  --muted: #6b6180;
  --line: rgba(42, 31, 61, 0.1);
  --coral: #ff7a6b;
  --coral-strong: #d0413a;
  --raspberry: #b8325a;
  --pink: #ffa3bc;
  --yellow: #ffd166;
  --sky: #8fd3ff;
  --lavender: #b9a6ff;
  --mint: #93e3c4;
  --plum-1: #221836;
  --plum-2: #36275a;

  --font-display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 6px rgba(58, 30, 70, 0.06), 0 8px 24px rgba(58, 30, 70, 0.06);
  --shadow-md: 0 4px 10px rgba(58, 30, 70, 0.06), 0 22px 48px -12px rgba(58, 30, 70, 0.18);
  --shadow-lg: 0 10px 24px rgba(58, 30, 70, 0.08), 0 40px 80px -24px rgba(58, 30, 70, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 600; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; }
h3 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.015em; }
p { margin: 0; }
address { font-style: normal; }
.ic { width: 1.15em; height: 1.15em; flex: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid #7a5cff; outline-offset: 3px; border-radius: 8px; }

.only-coarse { display: none; }
@media (pointer: coarse) {
  .only-fine { display: none !important; }
  .only-coarse { display: inline; }
}

/* ---------- Eyebrow & section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-strong);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
}
.hero .eyebrow::before { display: none; }
.eyebrow--light { color: #ffc2b5; }
.section { position: relative; padding-block: clamp(80px, 11vw, 150px); }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head__lead { margin-top: 1rem; font-size: 1.125rem; color: var(--muted); max-width: 60ch; }
.section-head--center .section-head__lead { margin-inline: auto; }
.disclaimer { margin-top: 18px; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.45em;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.25s, border-color 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn .ic { transition: transform 0.35s var(--ease); }
.btn:hover .ic:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--sm { min-height: 42px; padding: 0.6em 1.15em; font-size: 0.92rem; }
.btn--lg { min-height: 56px; padding: 0.95em 1.7em; font-size: 1.04rem; }
.btn--block { width: 100%; }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #d0413a 0%, #c23a4e 55%, #b8325a 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 10px 24px -8px rgba(208, 65, 58, 0.65);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 16px 34px -10px rgba(208, 65, 58, 0.75); }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--glass {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
}
.btn--glass:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.85); }
.btn--glass-dark { color: #fff; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(8px); }
.btn--glass-dark:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.18); }
.btn--ghost { color: var(--ink); border-color: rgba(42, 31, 61, 0.18); background: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--ink); background: #fff; }
.btn--ig { color: #fff; background: var(--ink); box-shadow: 0 10px 24px -10px rgba(42, 31, 61, 0.6); }
.btn--ig .ic { color: #ffb4c6; }
.btn--ig:hover { transform: translateY(-2px); background: #3b2c55; }
.link-btn { background: none; border: 0; padding: 6px 2px; color: var(--coral-strong); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.icon-btn {
  width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.85); color: var(--ink);
  font-size: 1.3rem; font-weight: 600; line-height: 1; cursor: pointer; text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.icon-btn:hover { transform: translateY(-2px); background: #fff; }
.icon-btn--solid { background: var(--ink); color: #fff; border: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s, height 0.35s var(--ease);
}
.site-header.is-scrolled {
  --header-h: 66px;
  background: rgba(255, 248, 240, 0.8);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(42, 31, 61, 0.25);
}
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: none; }
.logo__mark { width: 40px; height: 40px; filter: drop-shadow(0 4px 8px rgba(42, 31, 61, 0.25)); transition: transform 0.6s var(--ease); }
.logo:hover .logo__mark { transform: rotate(72deg); }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; line-height: 1.02; letter-spacing: 0.06em; text-transform: uppercase; }
.logo--light { color: var(--cream); }
.nav { margin-inline: auto; }
.nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.nav__link { display: block; padding: 8px 15px; border-radius: 999px; font-weight: 600; font-size: 0.93rem; color: var(--ink-2); text-decoration: none; transition: background 0.25s, color 0.25s; }
.nav__link:hover { color: var(--ink); background: rgba(255, 255, 255, 0.9); }
.nav__link.is-active { color: #fff; background: var(--ink); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.8); cursor: pointer; padding: 0; position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.2s; }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
  background: radial-gradient(120% 60% at 100% 0%, #ffe1d8 0%, transparent 60%), radial-gradient(100% 60% at 0% 100%, #ebe4ff 0%, transparent 60%), var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li a { display: block; padding: 12px 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 7vw, 2rem); color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu__actions { display: grid; gap: 10px; margin-top: 28px; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-block; }
  .site-header__actions { margin-left: auto; }
}
@media (max-width: 560px) {
  .site-header__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 980px);
  padding-top: calc(var(--header-h) + 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 75% 45%, #ffe9e1 0%, rgba(255, 233, 225, 0) 70%),
    linear-gradient(180deg, #fff4ec 0%, var(--cream) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.hero__glow--a { width: 520px; height: 520px; right: 8%; top: 12%; background: #ffd3e0; }
.hero__glow--b { width: 420px; height: 420px; right: 30%; bottom: -10%; background: #d9ecff; }
.hero__glow--c { width: 360px; height: 360px; left: -8%; top: -6%; background: #fff0c4; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 560px) 1fr; align-items: center; min-height: calc(min(100svh, 980px) - var(--header-h) - 24px); padding-bottom: 56px; }
.hero__copy { position: relative; z-index: 3; }
.hero__title { font-size: clamp(2.15rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -0.035em; font-weight: 600; }
.magic-word {
  font-style: normal;
  background: linear-gradient(100deg, #e0544a 0%, #ff7f9c 45%, #9b7bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  white-space: normal;
}
.hero__lead { margin-top: 1.4rem; font-size: clamp(1.06rem, 1.3vw, 1.2rem); color: var(--ink-2); max-width: 36em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.hero__facts { list-style: none; padding: 0; margin: 2.2rem 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.fact {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; text-decoration: none;
  color: var(--ink-2); background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), background 0.2s;
}
.fact:hover { transform: translateY(-2px); background: #fff; }
.fact strong { color: var(--ink); }
.fact .ic { color: var(--coral-strong); width: 1em; height: 1em; }
.fact__stars .ic { color: #f4b400; }

.hero__visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(64vw, 1100px);
}
.hero__visual canvas, .party3d canvas, .scene3d__canvas canvas {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.is-ready > canvas, .scene3d.is-ready canvas { opacity: 1; }
.is-ready > .poster, .scene3d.is-ready .scene3d__poster { opacity: 0; transform: scale(0.98); }
.has-3d .poster__balloon, .has-3d .poster__star { animation: none; }

.hero__fg { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.prop { position: absolute; opacity: 0; transition: opacity 1.4s var(--ease); will-change: transform; }
.prop.is-loaded { opacity: 1; }
.prop--blur { filter: blur(7px); }
.hero__fg-a { width: 190px; left: 43%; bottom: -40px; }
.hero__fg-b { width: 120px; right: 3%; top: 16%; filter: blur(4px); }
.hero__fg-c { width: 200px; left: -40px; top: 18%; opacity: 0; }
.hero__fg-c.is-loaded { opacity: 0.85; }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; z-index: 3; width: 28px; height: 44px; margin-left: -14px; border-radius: 16px; border: 2px solid rgba(42, 31, 61, 0.25); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--ink); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* CSS poster: shown while 3D loads, and as the fallback when WebGL is unavailable */
.poster { position: absolute; inset: 0; transition: opacity 1s var(--ease), transform 1s var(--ease); pointer-events: none; }
.poster__stage {
  position: absolute; left: 50%; top: 62%; width: 70%; aspect-ratio: 2.4; transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 35%, #fff6ec 0%, #ffe3d6 60%, #ffc8b8 100%);
  box-shadow: 0 16px 0 -2px #ff8a78, 0 30px 60px -10px rgba(120, 60, 80, 0.35);
}
.poster__balloon {
  position: absolute; width: 13%; aspect-ratio: 0.82; border-radius: 50% 50% 48% 48% / 55% 55% 45% 45%;
  background: radial-gradient(35% 30% at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%), radial-gradient(90% 90% at 40% 35%, var(--c1), var(--c2));
  box-shadow: inset -8px -14px 22px rgba(0, 0, 0, 0.1), 0 20px 30px -12px rgba(120, 50, 70, 0.35);
  animation: float 6s ease-in-out infinite;
}
.poster__balloon::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1.5px; height: 90%; background: rgba(90, 60, 80, 0.3); transform: translateX(-50%); }
.poster__balloon--a { --c1: #ff9c8f; --c2: #ec5a4c; left: 58%; top: 16%; }
.poster__balloon--b { --c1: #b7e3ff; --c2: #62b3ec; left: 70%; top: 24%; animation-delay: -2s; }
.poster__balloon--c { --c1: #fff0b8; --c2: #ffc94d; left: 46%; top: 28%; animation-delay: -4s; width: 10%; }
.poster__star {
  position: absolute; left: 30%; top: 22%; width: 9%; aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #fff5c8, #ffc34d 60%, #f0a03a);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }

@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 20px); display: block; }
  .hero__inner { grid-template-columns: 1fr; min-height: 0; padding-bottom: 0; }
  .hero__copy { max-width: 680px; }
  .hero__visual { position: relative; width: auto; height: clamp(360px, 72vw, 620px); margin: 8px calc(var(--gutter) * -1) 0; }
  .hero__fg-a { left: auto; right: 4%; bottom: 10px; width: 130px; }
  .hero__fg-b { top: 8%; width: 80px; }
  .hero__fg-c { display: none; }
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .hero__title { font-size: clamp(1.95rem, 8.4vw, 2.4rem); }
  .hero__ctas .btn { width: 100%; }
  .hero__facts { gap: 6px; }
  .fact { font-size: 0.84rem; padding: 7px 12px; }
  .hero__visual { height: clamp(320px, 96vw, 460px); }
  .hero__fg-a { width: 96px; }
}

/* ---------- Why ---------- */
.why { background: linear-gradient(180deg, var(--cream) 0%, #fff 55%, var(--cream) 100%); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1200px; }
.why-card {
  --tint: #eaf6ff;
  position: relative;
  padding: 18px 22px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--tint) 0%, #fff 78%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-lg); }
.why-card--sky { --tint: #e3f3ff; }
.why-card--pink { --tint: #ffe6ec; }
.why-card--lav { --tint: #eee9ff; }
.why-card--yellow { --tint: #fff2cf; }
.why-card__art { position: relative; aspect-ratio: 1; margin: -4px -8px 8px; display: grid; place-items: center; transform: translateZ(40px); }
.why-card__art img { position: relative; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.9s var(--ease); animation: bob 6s ease-in-out infinite; }
.why-card:nth-child(2) .why-card__art img { animation-delay: -1.5s; }
.why-card:nth-child(3) .why-card__art img { animation-delay: -3s; }
.why-card:nth-child(4) .why-card__art img { animation-delay: -4.5s; }
.why-card__art img.is-loaded { opacity: 1; }
.why-card__art img:not([src]) { visibility: hidden; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.why-card__fallback { position: absolute; inset: 18%; border-radius: 30%; transition: opacity 0.6s; }
.why-card__art:has(img.is-loaded) .why-card__fallback { opacity: 0; }
.why-card__fallback--play { background: linear-gradient(145deg, #bfe6ff, #62b3ec); box-shadow: inset -10px -14px 24px rgba(0, 0, 0, 0.1), 0 20px 30px -12px rgba(60, 120, 180, 0.4); border-radius: 22%; inset: 26%; }
.why-card__fallback--cake { background: linear-gradient(180deg, #fff 0 22%, #ffb3c6 22% 100%); border-radius: 18% 18% 12% 12%; inset: 30% 22% 22%; box-shadow: 0 20px 30px -12px rgba(200, 80, 110, 0.4); }
.why-card__fallback--balloons { background: radial-gradient(35% 30% at 32% 28%, #fff, transparent 70%), radial-gradient(circle at 40% 35%, #d4c8ff, #9a82ff); border-radius: 50% 50% 46% 46%; inset: 20% 28% 30%; }
.why-card__fallback--pin { background: radial-gradient(circle at 40% 30%, #ffb0a5, #e0544a); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); inset: 28%; }
.why-card h3 { transform: translateZ(24px); }
.why-card p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; transform: translateZ(16px); }

.why__quote { margin: clamp(40px, 5vw, 64px) auto 0; max-width: 760px; text-align: center; }
.why__quote blockquote { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.4; color: var(--ink); letter-spacing: -0.015em; }
.why__quote figcaption { margin-top: 14px; font-size: 0.92rem; color: var(--muted); }
.why__quote a { color: var(--coral-strong); font-weight: 700; }
.stars-inline { color: #f4b400; letter-spacing: 2px; margin-right: 6px; }

@media (max-width: 1024px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { display: grid; grid-template-columns: 112px 1fr; column-gap: 14px; align-items: center; padding: 12px 18px 12px 10px; }
  .why-card__art { grid-row: span 2; margin: 0; }
  .why-card h3 { align-self: end; font-size: 1.08rem; }
  .why-card p { align-self: start; margin-top: 4px; font-size: 0.94rem; }
}

/* ---------- Interactive scene ---------- */
.scene-sec { background: radial-gradient(70% 50% at 50% 0%, #fff 0%, transparent 70%), var(--cream); padding-top: clamp(40px, 6vw, 80px); }
.scene3d {
  position: relative;
  height: clamp(460px, 58vw, 720px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(70% 70% at 50% 40%, #fffaf5 0%, #ffece4 60%, #fbdcd6 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), var(--shadow-lg);
  isolation: isolate;
}
.scene3d__canvas { position: absolute; inset: 0; cursor: grab; }
.scene3d__canvas:active { cursor: grabbing; }
.scene3d__poster { position: absolute; inset: 0; transition: opacity 1s var(--ease); }
.poster--room .poster__stage { width: 64%; top: 64%; border-radius: 26px; aspect-ratio: 2; transform: translate(-50%, -50%) perspective(600px) rotateX(55deg); }
.scene3d__labels { position: absolute; inset: 0; pointer-events: none; }
.hotspot {
  position: absolute; left: 0; top: 0; pointer-events: auto; display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: 0; padding: 0; cursor: pointer; transition: opacity 0.4s;
}
.hotspot.is-off { opacity: 0; pointer-events: none; }
.hotspot__label {
  order: -1; padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; color: var(--ink);
  background: rgba(255, 255, 255, 0.82); border: 1px solid #fff; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px);
  transform: translateY(4px) scale(0.96); opacity: 0.92; transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, opacity 0.3s;
}
.hotspot__dot { position: relative; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255, 122, 107, 0.35), 0 6px 14px rgba(208, 65, 58, 0.45); }
.hotspot__dot::before { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--coral-strong); }
.hotspot__dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255, 122, 107, 0.7); animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.hotspot:hover .hotspot__label, .hotspot.is-hover .hotspot__label, .hotspot:focus-visible .hotspot__label { transform: translateY(0) scale(1); opacity: 1; background: #fff; }
.hotspot.is-active .hotspot__label { background: var(--ink); color: #fff; border-color: var(--ink); transform: none; }
.is-focused .hotspot:not(.is-active) { opacity: 0.35; }
.scene3d__info {
  position: absolute; left: 20px; bottom: 20px; z-index: 4; width: min(380px, calc(100% - 40px)); padding: 22px 22px 18px;
  border-radius: var(--r-md); background: rgba(255, 255, 255, 0.86); border: 1px solid #fff; box-shadow: var(--shadow-lg); backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(12px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.scene3d__info.is-open { opacity: 1; transform: none; }
.scene3d__info-kicker { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-strong); }
.scene3d__info-title { margin-top: 6px; font-size: 1.35rem; }
.scene3d__info-text { margin-top: 8px; color: var(--ink-2); font-size: 0.98rem; }
.scene3d__info-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.scene3d__controls { position: absolute; right: 18px; bottom: 18px; z-index: 3; display: flex; align-items: center; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.7); border: 1px solid #fff; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.scene3d__controls .icon-btn { width: 40px; height: 40px; border: 0; background: transparent; }
.scene3d__controls .icon-btn:hover { background: #fff; }
.scene3d__sep { width: 1px; height: 22px; background: var(--line); }
.scene3d__hint { position: absolute; left: 20px; top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.6); transition: opacity 0.4s; }
.is-focused .scene3d__hint { opacity: 0; }
.no-3d .scene3d__controls, .no-3d .scene3d__hint { display: none; }
/* without WebGL the hotspots become a simple button row */
.no-3d .scene3d__labels { inset: auto 0 20px 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; padding: 0 16px; }
.no-3d .hotspot { position: static; flex-direction: row; }
.no-3d .hotspot__label { order: 0; }
.no-3d .scene3d__info { bottom: 90px; }
@media (max-width: 640px) {
  .scene3d { height: clamp(440px, 118vw, 560px); border-radius: var(--r-lg); margin-inline: calc(var(--gutter) * -0.5); }
  .hotspot__label { font-size: 0.8rem; padding: 6px 11px; }
  .scene3d__info { left: 10px; right: 10px; bottom: 74px; width: auto; padding: 18px; }
  .scene3d__controls { right: 50%; transform: translateX(50%); bottom: 12px; }
  .scene3d__info-title { font-size: 1.15rem; }
}

/* ---------- Birthday (dark, magical) ---------- */
.party-sec {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(50% 60% at 78% 50%, rgba(255, 150, 120, 0.28) 0%, transparent 70%),
    radial-gradient(40% 50% at 10% 10%, rgba(155, 123, 255, 0.35) 0%, transparent 70%),
    linear-gradient(160deg, var(--plum-1) 0%, var(--plum-2) 60%, #3f2a5c 100%);
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 56px);
  margin-inline: clamp(0px, 1.2vw, 16px);
}
.party-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: radial-gradient(1.5px 1.5px at 20% 30%, #fff 50%, transparent 51%), radial-gradient(1px 1px at 70% 20%, #fff 50%, transparent 51%), radial-gradient(1.2px 1.2px at 40% 80%, #ffe2a0 50%, transparent 51%), radial-gradient(1px 1px at 85% 70%, #fff 50%, transparent 51%), radial-gradient(1.4px 1.4px at 10% 60%, #ffd1dc 50%, transparent 51%);
  background-size: 320px 320px;
}
.party-sec h2, .party-sec h3 { color: #fff; }
.party-sec h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.party-sec__inner { position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.party-sec__lead { margin-top: 1.2rem; font-size: 1.15rem; max-width: 34em; }
.steps { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r-md); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
.steps__n { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--plum-1); background: linear-gradient(135deg, #ffe08a, #ff9c86); }
.steps h3 { font-size: 1.02rem; }
.steps p { margin-top: 3px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); }
.party-sec__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.party-sec__visual { position: relative; }
.party3d { position: relative; height: clamp(400px, 46vw, 640px); }
.poster--party .poster__cake {
  position: absolute; left: 50%; top: 58%; width: 36%; aspect-ratio: 1.3; transform: translate(-50%, -50%); border-radius: 20px 20px 14px 14px;
  background: linear-gradient(180deg, #fff 0 18%, #ffb3c6 18% 55%, #fff 55% 62%, #ffc9d7 62% 100%); box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
}
.poster--party .poster__balloon--a { left: 14%; top: 10%; }
.poster--party .poster__balloon--b { left: 76%; top: 8%; }
.poster--party .poster__balloon--c { left: 64%; top: 22%; }
.ask-card {
  position: relative; z-index: 2; margin: -60px auto 0; max-width: 520px; padding: 20px 22px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.ask-card__title { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #fff; }
.ask-card__title .ic { color: #ffc2b5; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 12px 0 0; }
.chips li { padding: 6px 12px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: #fff; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.16); }
.ask-card__note { margin-top: 12px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }
.party-sec__confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetto { position: absolute; top: -20px; width: 8px; height: 12px; border-radius: 2px; opacity: 0.8; animation: fall linear infinite; }
.party-sec:not(.is-visible) .confetto { animation-play-state: paused; }
@keyframes fall { to { transform: translate3d(var(--dx, 20px), 110vh, 0) rotate(var(--rot, 540deg)); } }
@media (max-width: 1024px) {
  .party-sec__inner { grid-template-columns: 1fr; }
  .party-sec__visual { order: -1; }
  .party3d { height: clamp(340px, 70vw, 520px); }
}
@media (max-width: 560px) {
  .party-sec { margin-inline: 0; border-radius: 28px; }
  .party-sec__ctas .btn { width: 100%; }
  .party3d { height: clamp(300px, 88vw, 420px); margin-inline: calc(var(--gutter) * -1); }
  .ask-card { margin-top: -30px; }
}

/* ---------- Gallery ---------- */
.gallery-sec { background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; gap: 18px; }
.tile { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--g, linear-gradient(135deg, #ffe6df, #eee9ff)); box-shadow: var(--shadow-md); isolation: isolate; }
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.6;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 40%), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 14px, transparent 14px 28px);
}
.tile img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.tile img.is-loaded { opacity: 1; transform: scale(1); }
.tile img:not([src]) { visibility: hidden; }
.tile:hover img.is-loaded { transform: scale(1.05); }
.tile figcaption { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tile__badge { padding: 4px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: rgba(255, 255, 255, 0.85); }
.tile__cap { padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 0.92rem; color: #fff; background: rgba(42, 31, 61, 0.55); backdrop-filter: blur(8px); transform: translateY(6px); opacity: 0.9; transition: transform 0.4s var(--ease), opacity 0.4s; }
.tile:hover .tile__cap { transform: none; opacity: 1; }
.tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; --g: linear-gradient(135deg, #ffe6df, #e3f3ff); }
.tile:nth-child(2) { grid-column: 3; grid-row: 1 / 4; --g: linear-gradient(160deg, #ffe6ec, #fff2cf); }
.tile:nth-child(3) { grid-column: 1; grid-row: 3 / 5; --g: linear-gradient(160deg, #fff2cf, #ffe6ec); }
.tile:nth-child(4) { grid-column: 2; grid-row: 3 / 6; --g: linear-gradient(160deg, #e3f3ff, #eee9ff); }
.tile:nth-child(5) { grid-column: 3; grid-row: 4 / 6; --g: linear-gradient(160deg, #eee9ff, #ffe6df); }
.tile:nth-child(6) { grid-column: 1; grid-row: 5 / 7; --g: linear-gradient(160deg, #e2f8ef, #fff2cf); }
.tile--cta {
  grid-column: 2 / 4; grid-row: 6; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 22px 28px; text-decoration: none; color: #fff;
  background: linear-gradient(120deg, #2a1f3d 0%, #4a2f6b 60%, #b8325a 130%); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tile--cta::before { opacity: 0.15; }
.tile--cta > * { position: relative; z-index: 1; }
.tile--cta > .ic { width: 28px; height: 28px; color: #ffb4c6; }
.tile--cta__title { font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 600; line-height: 1.25; }
.tile--cta__handle { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #ffd6df; }
.tile--cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .tile:nth-child(n) { grid-column: auto; grid-row: span 2; }
  .tile:nth-child(1) { grid-column: 1 / 3; grid-row: span 2; }
  .tile--cta { grid-column: 1 / 3 !important; grid-row: span 1 !important; }
}
@media (max-width: 480px) {
  .gallery { grid-auto-rows: 118px; }
  .tile { border-radius: var(--r-md); }
  .tile figcaption { left: 10px; right: 10px; bottom: 10px; }
  .tile__cap { font-size: 0.8rem; padding: 5px 10px; }
  .tile__badge { font-size: 0.64rem; }
}

/* ---------- Reviews ---------- */
.reviews-sec { background: linear-gradient(180deg, var(--cream) 0%, #fff4ee 100%); }
.reviews { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.score { display: flex; align-items: center; gap: 18px; margin: 28px 0 28px; }
.score__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 8vw, 6rem); line-height: 1; letter-spacing: -0.05em; background: linear-gradient(135deg, #e0544a, #ff8fa8 60%, #9b7bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.score__stars { position: relative; display: inline-block; font-size: 1.6rem; letter-spacing: 3px; line-height: 1; }
.score__stars-bg { color: rgba(42, 31, 61, 0.15); }
.score__stars-fill { position: absolute; inset: 0 auto 0 0; overflow: hidden; white-space: nowrap; color: #f4b400; }
.score__meta { margin-top: 8px; color: var(--muted); }
.score__meta strong { color: var(--ink); }
.review {
  position: relative; margin: 0; padding: clamp(26px, 4vw, 44px); border-radius: var(--r-xl); background: #fff; box-shadow: var(--shadow-lg);
}
.review::before {
  content: "“"; position: absolute; right: 26px; top: -10px; font-family: Georgia, serif; font-size: 9rem; line-height: 1; color: #ffd9d2;
}
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, #8fd3ff, #9b7bff); }
.review__who { font-weight: 800; color: var(--ink); }
.review__src { font-size: 0.88rem; color: var(--muted); }
.review__stars { color: #f4b400; letter-spacing: 1px; }
.review__text { position: relative; margin: 22px 0 0; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--ink); }
.review__foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.86rem; color: var(--muted); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- Location ---------- */
.location-sec { background: #fff4ee; }
.location { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.info-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.info-list li { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border-radius: var(--r-md); background: rgba(255, 255, 255, 0.75); border: 1px solid #fff; box-shadow: var(--shadow-sm); }
.info-list__ic { flex: none; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: var(--coral-strong); background: #ffe6df; }
.info-list__label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.info-list a, .info-list address, .info-list p:not(.info-list__label) { font-weight: 700; color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--coral-strong); }
.location__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.map-card { position: relative; aspect-ratio: 1.2; border-radius: var(--r-xl); overflow: hidden; background: #fbf1e7; box-shadow: var(--shadow-lg); isolation: isolate; }
.map-card__art { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 46px, rgba(42, 31, 61, 0.035) 46px 48px), repeating-linear-gradient(90deg, transparent 0 46px, rgba(42, 31, 61, 0.035) 46px 48px), linear-gradient(160deg, #fff8ef, #fbeee4); }
.map-card__road { position: absolute; background: #fff; border-radius: 20px; box-shadow: 0 0 0 1px rgba(42, 31, 61, 0.05), 0 4px 10px rgba(42, 31, 61, 0.05); }
.map-card__road--a { left: -10%; right: -10%; top: 52%; height: 26px; transform: rotate(-9deg); }
.map-card__road--b { top: -10%; bottom: -10%; left: 30%; width: 16px; transform: rotate(14deg); }
.map-card__road--c { top: -10%; bottom: -10%; left: 72%; width: 12px; transform: rotate(-4deg); }
.map-card__park { position: absolute; left: 6%; top: 10%; width: 22%; height: 28%; border-radius: 40% 60% 50% 50%; background: #dff5ea; }
.map-card__river { position: absolute; left: -10%; right: -10%; bottom: 6%; height: 40px; border-radius: 50%; background: #dcefff; transform: rotate(-4deg); }
.map-card__pin { position: absolute; left: 50%; top: 46%; width: 34%; transform: translate(-50%, -62%); opacity: 0; transition: opacity 0.8s; filter: drop-shadow(0 18px 18px rgba(120, 50, 70, 0.25)); animation: bob 5s ease-in-out infinite; }
.map-card__pin.is-loaded { opacity: 1; }
.map-card__pin-fallback { position: absolute; left: 50%; top: 46%; width: 54px; height: 54px; transform: translate(-50%, -90%) rotate(-45deg); border-radius: 50% 50% 50% 0; background: radial-gradient(circle at 40% 30%, #ffb0a5, #e0544a); box-shadow: 0 14px 20px rgba(120, 50, 70, 0.3); transition: opacity 0.5s; }
.map-card__art:has(.map-card__pin.is-loaded) .map-card__pin-fallback { opacity: 0; }
.map-card__pulse { position: absolute; left: 50%; top: 52%; width: 90px; height: 30px; margin: -15px 0 0 -45px; border-radius: 50%; background: rgba(224, 84, 74, 0.25); animation: ping 2.4s var(--ease) infinite; }
.map-card__label { position: absolute; left: 50%; top: 60%; transform: translateX(-50%); padding: 10px 16px; border-radius: 16px; text-align: center; background: #fff; box-shadow: var(--shadow-md); white-space: nowrap; }
.map-card__label strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.map-card__label span { font-size: 0.85rem; color: var(--muted); }
.map-card__load { position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%); white-space: nowrap; }
.map-card__load:hover { transform: translate(-50%, -2px); }
.map-card__note { position: absolute; left: 0; right: 0; bottom: 14px; text-align: center; font-size: 0.78rem; color: var(--muted); }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; }
@media (max-width: 900px) {
  .location { grid-template-columns: 1fr; }
  .map-card { aspect-ratio: 1; }
}

/* ---------- Contact ---------- */
.contact-sec {
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 0% 0%, #ffe0d6 0%, transparent 60%),
    radial-gradient(60% 70% at 100% 100%, #e7e0ff 0%, transparent 60%),
    #fff6ef;
}
.contact-sec__props { position: absolute; inset: 0; pointer-events: none; }
.contact-prop-a { width: 150px; left: 3%; top: 10%; }
.contact-prop-b { width: 120px; left: 38%; bottom: 4%; }
.contact-prop-c { width: 90px; right: 4%; top: 7%; }
.contact { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 520px); gap: clamp(28px, 5vw, 72px); align-items: center; }
.contact__copy h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.contact__lead { margin-top: 1.2rem; font-size: 1.15rem; max-width: 32em; }
.contact__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.contact__small { margin-top: 1.4rem; font-size: 0.92rem; color: var(--muted); }
.form-card { position: relative; padding: clamp(24px, 3.5vw, 38px); border-radius: var(--r-xl); background: rgba(255, 255, 255, 0.92); border: 1px solid #fff; box-shadow: var(--shadow-lg); }
.form-card__title { font-size: 1.4rem; }
.form-card__sub { margin: 6px 0 20px; color: var(--muted); }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; min-height: 50px; border-radius: 16px; border: 1.5px solid rgba(42, 31, 61, 0.12); background: #fffcf9;
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #9a90ab; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px rgba(255, 122, 107, 0.18); }
.field__err { display: none; margin-top: 6px; font-size: 0.85rem; font-weight: 600; color: #b3261e; }
.field.is-invalid input { border-color: #d9463d; }
.field.is-invalid .field__err { display: block; }
.form-card__legal { margin-top: 12px; font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-done { position: absolute; inset: 0; z-index: 2; padding: clamp(24px, 3.5vw, 38px); border-radius: inherit; background: #fff; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; overflow-y: auto; }
.form-done[hidden] { display: none; }
.form-done__icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #ffcf70, #ff7a6b); }
.form-done__icon .ic { width: 26px; height: 26px; }
.form-done h3 { font-size: 1.4rem; }
.form-done__text { color: var(--ink-2); }
.form-done__summary { width: 100%; margin: 6px 0; padding: 14px 16px; border-radius: 14px; background: #fff6ef; border: 1px dashed rgba(42, 31, 61, 0.15); font-family: var(--font-body); font-size: 0.9rem; white-space: pre-wrap; color: var(--ink); }
.form-done__actions { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact-prop-b { display: none; }
}
@media (max-width: 560px) {
  .contact__buttons .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-prop-a { width: 90px; left: auto; right: 2%; top: 2%; }
  .contact-prop-c { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 96px) 0 28px; color: rgba(255, 248, 240, 0.72); background: var(--plum-1); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer__wordmark { margin: 22px 0 8px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: 0.02em; color: #fff; }
.site-footer__h { font-family: var(--font-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #ffc2b5; margin-bottom: 14px; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer__list--cols { grid-template-columns: 1fr 1fr; column-gap: 16px; }
.site-footer a { color: rgba(255, 248, 240, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__cta p { color: #fff; font-weight: 700; margin-bottom: 14px; }
.site-footer__cta .btn { color: #fff; }
.site-footer__cta .btn:hover { text-decoration: none; }
.site-footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.88rem; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta {
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40; display: flex; align-items: center; gap: 8px; padding: 8px;
    border-radius: 999px; background: rgba(255, 250, 245, 0.88); border: 1px solid #fff; box-shadow: 0 14px 40px -12px rgba(42, 31, 61, 0.35); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
    transition: transform 0.45s var(--ease), opacity 0.3s;
  }
  .sticky-cta.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
  .sticky-cta__main { flex: 1; min-height: 46px; }
  .sticky-cta .icon-btn { width: 46px; height: 46px; }
  .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .why-card.reveal.is-in { transform: var(--tilt, none); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.15s !important; }
  .js .reveal { transform: none; }
  .party-sec__confetti { display: none; }
}

/* Touch-first layouts: keep the page responsive while preserving its artwork. */
@media (max-width: 760px) {
  .section { padding-block: clamp(58px, 12vw, 76px); }
  .section-head { margin-bottom: 32px; }
  .hero__glow { filter: blur(34px); opacity: 0.42; }
  .hero__glow--a { width: 360px; height: 360px; }
  .hero__glow--b { width: 300px; height: 300px; }
  .hero__glow--c { width: 260px; height: 260px; }
  .party-sec__confetti { display: none; }
  .sticky-cta { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(255, 250, 245, 0.97); }
}

@media (pointer: coarse) {
  .poster__balloon, .poster__star, .scroll-cue span, .why-card__art img,
  .map-card__pin, .map-card__pulse, .hotspot__dot::after { animation: none; }
  .prop { will-change: auto; }
}
