*,
*::before,
*::after {
  box-sizing: border-box;
}

i[class^="ri-"],
i[class*=" ri-"] {
  font-family: "remixicon" !important;
  font-style: normal;
  line-height: 1;
}

:root {
  color-scheme: light;
  --midnight: #18212a;
  --jungle: #0c6b6a;
  --lime: #d4f28a;
  --mango: #ffb25f;
  --coral: #ff7b6b;
  --sky: #7cc6ff;
  --orchid: #f4c7b8;
  --paper: #f8f4ec;
  --card: #ffffff;
  --muted: #5b6a63;
  --shadow-strong: 0 22px 40px rgba(24, 33, 42, 0.18);
  --shadow-soft: 0 16px 28px rgba(24, 33, 42, 0.12);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
}

body {
  margin: 0;
  font-family: "Outfit", "DM Serif Display", sans-serif;
  color: var(--midnight);
  min-height: 100vh;
  background: radial-gradient(1200px 800px at 90% -20%, #fff2db 0%, #f6f0e6 45%, #e9f2f1 100%);
  position: relative;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 14% 16%, rgba(124, 198, 255, 0.22) 0 160px, transparent 200px),
    radial-gradient(circle at 88% 18%, rgba(255, 178, 95, 0.2) 0 180px, transparent 230px),
    radial-gradient(circle at 70% 82%, rgba(255, 123, 107, 0.16) 0 200px, transparent 250px),
    linear-gradient(120deg, rgba(212, 242, 138, 0.12) 0%, rgba(244, 199, 184, 0.18) 100%);
  pointer-events: none;
  z-index: -1;
}

main {
  padding-bottom: 60px;
}

.kids-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.kid {
  position: absolute;
  opacity: 0.9;
  animation: floaty 8s ease-in-out infinite;
  will-change: transform;
}

.kid.cloud {
  opacity: 0.6;
  animation: drift 20s linear infinite;
}

.kid.butterfly {
  animation: flutter 5s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes flutter {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 18px 6vw;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(24, 33, 42, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 24px rgba(16, 35, 31, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.brand-text span {
  display: block;
  font-family: "DM Serif Display", "Outfit", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text span:last-child {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--midnight);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--jungle);
  background: rgba(143, 215, 255, 0.28);
}

.nav-cta {
  border: 1px solid rgba(24, 33, 42, 0.3);
  color: #18212a;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 178, 95, 0.35), rgba(124, 198, 255, 0.28));
  box-shadow: 0 12px 22px rgba(24, 33, 42, 0.12);
  white-space: nowrap;
}

.nav-cta:hover {
    background: #18212a;
    color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16, 35, 31, 0.2);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 35, 31, 0.12);
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #18212a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 90px 6vw 120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
  overflow: hidden;
  min-height: 72vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 178, 95, 0.25) 0%, rgba(255, 178, 95, 0) 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% auto auto -4%;
  width: 320px;
  height: 320px;
  border-radius: 44px;
  background: linear-gradient(140deg, rgba(212, 242, 138, 0.35), rgba(124, 198, 255, 0.28));
  filter: blur(0px);
  transform: rotate(8deg);
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  animation: revealUp 0.9s ease both;
}

.hero-visual {
  animation-delay: 0.2s;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(124, 198, 255, 0.18);
  border: 1px solid rgba(24, 33, 42, 0.12);
}

.hero-copy h1 {
  font-family: "DM Serif Display", "Outfit", serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 3.4vw + 1.4rem, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 14px;
  color: #18212a;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0 8px;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  inset: 60% 0 6% 0;
  background: rgba(255, 178, 95, 0.45);
  border-radius: 14px;
  z-index: -1;
}

.lead {
  font-size: 1.05rem;
  color: #2d3a36;
  margin: 0 0 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quick-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 33, 42, 0.08);
  box-shadow: 0 12px 20px rgba(24, 33, 42, 0.08);
}

.quick-item i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124, 198, 255, 0.2);
  color: var(--jungle);
  font-size: 1.05rem;
  font-weight: 400;
}

.quick-item strong {
  display: block;
  font-size: 0.95rem;
  color: #18212a;
}

.quick-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffb25f, #ff7b6b);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 123, 107, 0.32);
}

.btn.ghost {
  border: 1px solid rgba(24, 33, 42, 0.35);
  color: #18212a;
  background: rgba(255, 255, 255, 0.8);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(44, 63, 66, 0.2);
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0 6px;
}

.hero-stats div {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  min-width: 140px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 220, 200, 0.8);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #18212a;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-note {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  font-weight: 600;
  color: #2d3a36;
}

.hero-note div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 10px 14px;
  border: 1px dashed rgba(15, 123, 92, 0.45);
}

.hero-note i {
  font-size: 1.1rem;
  color: var(--jungle);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-collage {
  position: relative;
  width: clamp(300px, 40vw, 520px);
  display: grid;
  place-items: center;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(124, 198, 255, 0.18), rgba(255, 178, 95, 0.18));
  z-index: 0;
  transform: rotate(-2deg);
}

.hero-stack {
  position: relative;
  width: clamp(280px, 38vw, 480px);
  display: grid;
  place-items: center;
}

.hero-stack::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(124, 198, 255, 0.22), rgba(255, 178, 95, 0.22));
  z-index: 0;
  transform: rotate(-2deg);
}

.hero-main {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  border: 8px solid rgba(255, 255, 255, 0.95);
  display: block;
  position: relative;
  z-index: 0;
}

.hero-mini {
  position: absolute;
  bottom: -22px;
  right: -10px;
  width: 42%;
  border-radius: 18px;
  border: 8px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 30px rgba(24, 33, 42, 0.16);
  transform: rotate(3deg);
  z-index: 1;
}

.hero-float {
  position: absolute;
  bottom: -26px;
  right: -18px;
  width: 46%;
  border-radius: 20px;
  border: 8px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(16, 35, 31, 0.2);
  transform: rotate(3deg);
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 33, 42, 0.08);
  box-shadow: 0 12px 24px rgba(24, 33, 42, 0.12);
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 240px;
  z-index: 2;
}

.hero-card i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 178, 95, 0.18);
  color: var(--jungle);
  font-size: 1rem;
  font-weight: 400;
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
}

.hero-card span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-card-top {
  top: -14px;
  left: -10px;
}

.hero-card-bottom {
  bottom: -14px;
  left: -6px;
}

.hero-badge {
  position: absolute;
  top: -20px;
  left: -12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 33, 42, 0.1);
  box-shadow: 0 12px 24px rgba(24, 33, 42, 0.14);
}

.hero-badge strong {
  display: block;
  font-size: 1rem;
}

.hero-badge span {
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-ribbon {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 198, 255, 0.22);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 700;
  color: #18212a;
}

.hero-ribbon i {
  color: var(--mango);
}

.vibe-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: -34px 6vw 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  box-shadow: 0 20px 34px rgba(24, 33, 42, 0.12);
  border: 1px solid rgba(24, 33, 42, 0.08);
  position: relative;
  z-index: 1;
}

.vibe-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #122622;
}

.vibe-item i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 198, 255, 0.2);
  color: var(--jungle);
  font-size: 1.1rem;
  font-weight: 400;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}

.section-head span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 700;
}

.section-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 2.1vw + 1rem, 2.8rem);
  font-family: "DM Serif Display", "Outfit", serif;
  color: #18212a;
}

.section-head p {
  margin: 0;
  color: #2d3a36;
}

.section-head.align-left {
  text-align: left;
}

.experience,
.zones,
.gallery,
.contact {
  padding: 46px 6vw 54px;
}

.contact {
  position: relative;
  margin: 24px 4vw 54px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(212, 242, 138, 0.14), rgba(124, 198, 255, 0.18) 45%, rgba(255, 178, 95, 0.18));
  box-shadow: inset 0 18px 34px rgba(24, 33, 42, 0.04);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 199, 184, 0.32) 0%, rgba(244, 199, 184, 0) 70%);
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(124, 198, 255, 0.3) 0%, rgba(124, 198, 255, 0) 70%);
  z-index: 0;
}

.contact .section-head,
.contact .contact-card,
.contact .map-card {
  position: relative;
  z-index: 1;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.experience-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(24, 33, 42, 0.08);
  border-top: 4px solid rgba(124, 198, 255, 0.6);
  animation: revealUp 0.8s ease both;
}

.experience-card:nth-child(2) {
  animation-delay: 0.1s;
}

.experience-card:nth-child(3) {
  animation-delay: 0.2s;
}

.experience-card i {
  font-size: 1.6rem;
  color: var(--jungle);
}

.experience-card h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.zone-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(24, 33, 42, 0.08);
  display: grid;
  gap: 14px;
  align-content: start;
  animation: revealUp 0.8s ease both;
}

.zone-card:nth-child(2) {
  animation-delay: 0.1s;
}

.zone-card:nth-child(3) {
  animation-delay: 0.2s;
}

.zone-card:nth-child(4) {
  animation-delay: 0.3s;
}

.zone-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: linear-gradient(140deg, rgba(124, 198, 255, 0.2), rgba(255, 178, 95, 0.2));
  border-radius: 16px;
  padding: 16px;
}

.zone-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.zone-card p {
  margin: 0;
  color: var(--muted);
}

.party {
  padding: 32px 6vw 58px;
}

.party-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(124, 198, 255, 0.2), rgba(255, 178, 95, 0.18), rgba(244, 199, 184, 0.18));
  border: 1px solid rgba(24, 33, 42, 0.08);
  box-shadow: 0 22px 40px rgba(24, 33, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.party-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 178, 95, 0.35) 0%, rgba(255, 178, 95, 0) 70%);
  opacity: 0.7;
}

.party-copy span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 700;
}

.party-copy h2 {
  margin: 12px 0 12px;
  font-family: "DM Serif Display", "Outfit", serif;
  font-size: clamp(2rem, 2.4vw + 1rem, 2.8rem);
}

.party-copy p {
  margin: 0 0 18px;
  color: #2d3a36;
}

.party-features {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 600;
}

.party-features div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.party-features i {
  color: var(--coral);
  font-size: 1.1rem;
}

.party-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.party-main {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.party-side {
  position: absolute;
  bottom: -18px;
  right: 12px;
  width: 50%;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16, 35, 31, 0.2);
  border: 8px solid rgba(255, 255, 255, 0.95);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 8px solid #ffffff;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: rotate(-1deg);
}

.gallery-grid img:nth-child(even) {
  transform: rotate(1deg);
}

.gallery-grid img:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 24px 34px rgba(16, 35, 31, 0.2);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 22px 40px rgba(16, 35, 31, 0.12);
  border: 1px solid rgba(16, 35, 31, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: linear-gradient(180deg, rgba(15, 123, 92, 0.8), rgba(255, 179, 71, 0.7));
  border-radius: 999px;
}

.contact-details {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 18px;
  padding: 8px 6px 8px 16px;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(16, 35, 31, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #2b3d37;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  color: #2f3f3a;
}

.contact-card p i {
  color: var(--jungle);
  font-size: 1.1rem;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  align-items: flex-start;
}

.contact-actions .btn {
  padding: 12px 20px;
  letter-spacing: 0.02em;
}

.contact-actions .btn.ghost {
  background: #ffffff;
  border: 1px solid rgba(16, 35, 31, 0.25);
  box-shadow: 0 10px 18px rgba(16, 35, 31, 0.1);
}

.map-card {
  margin-top: 22px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(232, 220, 200, 0.9);
  background: #ffffff;
}

.map-card iframe {
  width: 100%;
  height: min(420px, 65vh);
  border: 0;
  display: block;
}

#map {
  scroll-margin-top: 90px;
}

.site-footer {
  padding: 32px 6vw 44px;
  background: linear-gradient(180deg, #f3efe6, #fbf7f0);
  border-top: 1px solid rgba(24, 33, 42, 0.08);
  box-shadow: 0 -16px 30px rgba(24, 33, 42, 0.06);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--midnight);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111827;
  width: 52px;
  height: 52px;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.footer-social i {
  font-size: 1.35rem;
}

.footer-social a:visited {
  color: #111827;
}

.footer-social span {
  display: none;
}

.footer-social a::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  background: #e13b6e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(225, 59, 110, 0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}

.footer-social a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #e13b6e;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.footer-social a:hover::after,
.footer-social a:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.footer-social a:hover::before,
.footer-social a:focus-visible::before {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 6vw 100px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .quick-item {
    width: min(100%, 220px);
  }

  .hero-mini {
    right: 4px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vibe-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .party-visual {
    margin-top: 16px;
  }

  .party-side {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    width: 60%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .kids-bg {
    display: none;
  }
  .hero {
    padding: 70px 6vw 90px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(100%, 280px);
    justify-content: center;
  }

  .hero-quick {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-collage {
    width: min(100%, 420px);
    display: grid;
    gap: 12px;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .hero-mini {
    display: none;
  }

  .hero-card {
    position: relative;
    inset: auto;
    max-width: none;
    width: min(100%, 320px);
  }

  .hero-card-top,
  .hero-card-bottom {
    top: auto;
    bottom: auto;
    left: auto;
  }

  .contact {
    margin: 18px 4vw 46px;
    padding: 40px 5vw 46px;
    border-radius: 28px;
  }
  body {
    background: radial-gradient(900px 600px at 50% -20%, #ffffff 0%, #f6f0e6 45%, #e9f2f1 100%);
  }

  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    text-align: left;
  }

  .brand-text span:last-child {
    font-size: 0.8rem;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    flex-direction: column;
    gap: 12px;
    width: min(100%, 340px);
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(16, 35, 31, 0.16);
    border: 1px solid rgba(232, 220, 200, 0.9);
    position: absolute;
    top: calc(100% + 12px);
    right: 6vw;
    z-index: 8;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    gap: 6px;
    cursor: pointer;
    z-index: 9;
  }

  .nav-toggle span {
    width: 4px;
    height: 4px;
    border-radius: 999px;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1),
  .site-header.nav-open .nav-toggle span:nth-child(2),
  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: none;
    opacity: 1;
  }

  .experience-grid,
  .zones-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .vibe-strip {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-details {
    width: 100%;
  }

  .contact-card p {
    justify-content: center;
  }

  .contact-actions {
    width: 100%;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-social {
    justify-content: center;
  }

  .vibe-strip {
    margin: -26px 6vw 24px;
  }

  .party-card {
    padding: 26px;
  }

  .party-visual {
    display: none;
  }

  .party-main {
    max-width: 280px;
  }

  .contact-card {
    padding: 22px;
  }

  .map-card iframe {
    height: min(340px, 55vh);
  }
}

@media (max-width: 480px) {
  .contact {
    margin: 14px 4vw 40px;
    padding: 34px 5vw 40px;
    border-radius: 24px;
  }

  .site-header {
    padding: 16px 5vw;
  }

  .hero {
    padding: 64px 5vw 84px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text span:last-child {
    font-size: 0.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 2.7rem);
  }

  .hero-card {
    width: min(100%, 300px);
  }

  .party-main {
    max-width: 240px;
  }

  .party-side {
    width: 70%;
  }
}
