:root {
  --sky: #11a5e8;
  --sky-deep: #0878c8;
  --navy: #10295d;
  --ink: #182344;
  --cream: #fff5df;
  --paper: #fffdf6;
  --pink: #e61d73;
  --green: #40aa35;
  --blue: #147bc2;
  --yellow: #f6bd22;
  --orange: #ef7b19;
  --purple: #713aa7;
  --shadow: 0 18px 45px rgba(13, 35, 82, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #e9f8ff 0%, #fff8e7 54%, #f4ffe9 100%);
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 18px;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 8px 24px rgba(18, 45, 92, 0.1);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--pink);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 7px 0 #b91458;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #263a72;
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.nav-cta,
.button-primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 6px 0 #b91458;
}

.button-secondary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 6px 0 #d28d00;
}

.button-secondary.dark {
  color: white;
  background: var(--navy);
  box-shadow: 0 6px 0 #091738;
}

.poster-button {
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 72px 18px 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.95) 0 52px, transparent 54px),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.88) 0 72px, transparent 74px),
    linear-gradient(180deg, var(--sky) 0%, #46c4ee 55%, #93d858 56%, #53ad36 100%);
}

.hero::after {
  position: absolute;
  right: -6vw;
  bottom: -54px;
  left: -6vw;
  height: 145px;
  background:
    radial-gradient(circle at 12% 52%, #62b536 0 42px, transparent 43px),
    radial-gradient(circle at 90% 48%, #46a332 0 58px, transparent 59px),
    #67bd39;
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 38px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.wood-sign {
  display: inline-block;
  margin: 0 0 26px;
  padding: 14px 30px;
  color: #12285b;
  background:
    linear-gradient(90deg, rgba(111, 66, 22, 0.12), transparent 22%, rgba(111, 66, 22, 0.12) 50%, transparent 78%),
    #f3c985;
  border: 4px solid #e4ad5f;
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(112, 67, 23, 0.2);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 640px;
  margin-bottom: 18px;
  padding: 18px 24px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  font-size: clamp(2.4rem, 6.1vw, 4.6rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(12, 29, 68, 0.1);
}

h1 span:nth-child(1),
h1 span:nth-child(7) {
  color: var(--pink);
}

h1 span:nth-child(2),
h1 span:nth-child(8) {
  color: var(--green);
}

h1 span:nth-child(3),
h1 span:nth-child(9) {
  color: var(--blue);
}

h1 span:nth-child(4),
h1 span:nth-child(10) {
  color: var(--orange);
}

h1 span:nth-child(5) {
  color: var(--purple);
}

h1 span:nth-child(6) {
  color: var(--yellow);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 3px 0 rgba(15, 38, 75, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cloud {
  position: absolute;
  z-index: 1;
  width: 180px;
  height: 58px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  filter: drop-shadow(0 6px 0 rgba(255, 255, 255, 0.26));
}

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

.cloud::before {
  bottom: 12px;
  left: 28px;
  width: 74px;
  height: 74px;
}

.cloud::after {
  right: 26px;
  bottom: 8px;
  width: 92px;
  height: 92px;
}

.cloud-one {
  top: 130px;
  right: 12vw;
}

.cloud-two {
  top: 235px;
  left: 14vw;
  opacity: 0.72;
  transform: scale(0.78);
}

.sun {
  position: absolute;
  top: 78px;
  left: 7vw;
  width: 104px;
  height: 104px;
  background: #ffd943;
  border: 7px solid #ffe97a;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 223, 72, 0.16);
}

.sun span,
.sun span::before {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.sun span {
  top: 34px;
  left: 29px;
  width: 10px;
  height: 10px;
  background: #182344;
  box-shadow: 34px 0 0 #182344;
}

.sun span::before {
  top: 24px;
  left: 7px;
  width: 46px;
  height: 22px;
  border-bottom: 6px solid #182344;
}

.playground-scene {
  position: relative;
  min-height: 455px;
}

.tower,
.bridge,
.slide,
.swing,
.grass {
  position: absolute;
}

.tower {
  bottom: 92px;
  width: 150px;
  height: 245px;
}

.tower-left {
  left: 10px;
}

.tower-right {
  right: 38px;
  width: 180px;
  height: 285px;
}

.roof {
  position: absolute;
  top: 0;
  left: 8px;
  width: 0;
  height: 0;
  border-right: 68px solid transparent;
  border-bottom: 64px solid #f44135;
  border-left: 68px solid transparent;
}

.tower-right .roof {
  border-right-width: 84px;
  border-bottom-color: #ffd22c;
  border-left-width: 84px;
}

.deck {
  position: absolute;
  top: 60px;
  left: 22px;
  width: 106px;
  height: 108px;
  background: linear-gradient(90deg, #29a94d 0 36%, #1875c1 36% 70%, #ffd33a 70%);
  border: 8px solid #744323;
  border-radius: 8px;
}

.tower-right .deck {
  left: 22px;
  width: 136px;
  height: 132px;
  background: linear-gradient(90deg, #29a94d 0 46%, #1875c1 46%);
}

.legs {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 110px;
  border-right: 10px solid #744323;
  border-left: 10px solid #744323;
}

.bridge {
  bottom: 250px;
  left: 140px;
  width: 230px;
  height: 48px;
  border-top: 8px solid #7c4a25;
  border-bottom: 8px solid #7c4a25;
  border-radius: 0 0 60px 60px;
}

.bridge::after {
  position: absolute;
  inset: 6px 0;
  background: repeating-linear-gradient(90deg, transparent 0 20px, #f7cf7a 20px 26px);
  content: "";
}

.slide {
  bottom: 86px;
  width: 210px;
  height: 42px;
  border-radius: 999px;
}

.slide-yellow {
  left: -6px;
  background: #ffd12b;
  transform: rotate(-29deg);
  transform-origin: right center;
}

.slide-pink {
  right: 8px;
  bottom: 78px;
  width: 180px;
  background: #f24e83;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.swing {
  right: 230px;
  bottom: 92px;
  width: 120px;
  height: 160px;
  border-top: 8px solid #f2cf63;
}

.swing::before,
.swing::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #794624;
  content: "";
}

.swing::before {
  left: 12px;
  transform: skewX(-12deg);
}

.swing::after {
  right: 12px;
  transform: skewX(12deg);
}

.swing span {
  position: absolute;
  right: 38px;
  bottom: 30px;
  left: 38px;
  height: 12px;
  background: #1875c1;
  border-radius: 12px;
}

.grass {
  right: 0;
  bottom: 58px;
  left: 0;
  height: 52px;
  background: linear-gradient(180deg, #7bd74a, #44a633);
  border-radius: 50% 50% 0 0;
}

.quick-contact {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: -42px auto 0;
  padding: 0 18px;
}

.quick-contact a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 22px 24px;
  color: white;
  background: var(--navy);
  border: 5px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-contact strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.quick-contact span {
  overflow-wrap: anywhere;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
}

.quick-contact a:nth-child(2) span {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.22;
  word-break: break-word;
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 18px 34px;
}

.poster-copy p:not(.eyebrow) {
  color: #3a4b72;
  font-size: 1.14rem;
  line-height: 1.65;
}

.poster-frame {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 420px;
  margin: 0;
  padding: 14px;
  background: white;
  border: 6px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-frame img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(17, 165, 232, 0.12), rgba(246, 189, 34, 0.18)),
    #fffdf6;
  border-radius: 6px;
}

.poster-frame img[hidden] {
  display: none;
}

.poster-frame.poster-missing::before {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 28px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(17, 165, 232, 0.12), rgba(246, 189, 34, 0.18)),
    #fffdf6;
  border: 3px dashed rgba(16, 41, 93, 0.22);
  border-radius: 6px;
  content: "Dodaj plik: assets/plakat-wariatkowo.jpg";
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  text-align: center;
}

.poster-frame figcaption {
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.gallery-hero {
  padding: 88px 18px 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 217, 67, 0.36) 0 70px, transparent 72px),
    linear-gradient(180deg, #e9f8ff 0%, #fffdf6 100%);
}

.gallery-title {
  display: block;
  max-width: 860px;
  margin: 0 auto 16px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border-radius: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.02;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}

.gallery-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 18px 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item,
.gallery-empty {
  margin: 0;
  padding: 14px;
  background: white;
  border: 5px solid #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
  font: inherit;
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef8ff;
  border-radius: 6px;
}

.gallery-item video {
  object-fit: contain;
}

.gallery-item figcaption {
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 45, 0.78);
  border: 0;
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(1100px, 100%);
  max-height: calc(100vh - 44px);
  padding: 14px;
  background: white;
  border: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: var(--pink);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 5px 0 #b91458;
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.lightbox-media {
  display: grid;
  min-height: 180px;
  place-items: center;
}

.lightbox-media img,
.lightbox-media video {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-caption {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
}

.gallery-empty h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.gallery-empty p {
  margin-bottom: 0;
  color: #3a4b72;
  font-size: 1.12rem;
  line-height: 1.6;
}

.section,
.split-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 18px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: #3a4b72;
  font-size: 1.14rem;
  line-height: 1.65;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.attraction {
  min-width: 0;
  padding: 24px 18px;
  color: white;
  border: 5px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.attraction h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.attraction p {
  margin-bottom: 0;
  line-height: 1.45;
}

.pink {
  background: var(--pink);
}

.green {
  background: var(--green);
}

.blue {
  background: var(--blue);
}

.orange {
  background: var(--orange);
}

.purple {
  background: var(--purple);
}

.icon {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 4px solid white;
  border-radius: 50%;
}

.slide-icon::before,
.climb-icon::before,
.swing-icon::before,
.jump-icon::before,
.relax-icon::before {
  position: absolute;
  content: "";
}

.slide-icon::before {
  top: 19px;
  left: 20px;
  width: 34px;
  height: 23px;
  border-bottom: 7px solid white;
  border-left: 7px solid white;
  transform: skewX(-25deg);
}

.climb-icon::before {
  inset: 17px;
  background:
    linear-gradient(90deg, white 3px, transparent 4px),
    linear-gradient(0deg, white 3px, transparent 4px);
  background-size: 13px 13px;
}

.swing-icon::before {
  inset: 14px 19px 20px;
  border-top: 5px solid white;
  border-right: 4px solid white;
  border-left: 4px solid white;
}

.jump-icon::before {
  top: 15px;
  left: 28px;
  width: 13px;
  height: 13px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 20px 0 9px transparent;
}

.jump-icon::after {
  position: absolute;
  top: 33px;
  left: 19px;
  width: 32px;
  height: 24px;
  border-top: 6px solid white;
  border-right: 6px solid white;
  transform: rotate(-28deg);
  content: "";
}

.relax-icon::before {
  right: 14px;
  bottom: 18px;
  left: 14px;
  height: 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 9px -18px 0 -2px white;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.76fr);
  gap: 34px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.04fr);
}

.feature-card,
.contact-panel {
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
  border: 6px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 22px;
  color: #34466f;
  font-size: 1.08rem;
  line-height: 1.5;
}

.feature-card li::marker {
  color: var(--pink);
}

.fire-card li::marker {
  color: var(--orange);
}

.feature-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 6px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.birthday-visual {
  background:
    radial-gradient(circle at 20% 82%, rgba(230, 29, 115, 0.16) 0 48px, transparent 49px),
    linear-gradient(180deg, #8ddaf7, #fef2c8);
}

.balloons span {
  position: absolute;
  bottom: 120px;
  width: 72px;
  height: 92px;
  border-radius: 48% 48% 46% 46%;
}

.balloons span:nth-child(1) {
  left: 60px;
  background: var(--pink);
}

.balloons span:nth-child(2) {
  left: 122px;
  bottom: 155px;
  background: var(--green);
}

.balloons span:nth-child(3) {
  left: 190px;
  background: var(--blue);
}

.balloons span::after {
  position: absolute;
  top: 90px;
  left: 35px;
  width: 2px;
  height: 112px;
  background: rgba(24, 35, 68, 0.3);
  content: "";
}

.cake {
  position: absolute;
  right: 50px;
  bottom: 70px;
  width: 220px;
  height: 100px;
  background: linear-gradient(180deg, #ff79a3 0 42%, #ffd76a 42%);
  border: 7px solid white;
  border-radius: 16px 16px 26px 26px;
}

.cake i {
  position: absolute;
  top: -58px;
  width: 12px;
  height: 44px;
  background: #6b42a5;
  border-radius: 10px;
}

.cake i:nth-child(1) {
  left: 58px;
}

.cake i:nth-child(2) {
  left: 104px;
}

.cake i:nth-child(3) {
  left: 150px;
}

.cake i::before {
  position: absolute;
  top: -17px;
  left: -4px;
  width: 20px;
  height: 22px;
  background: #ffcc2d;
  border-radius: 50% 50% 45% 45%;
  content: "";
}

.bonfire-visual {
  background:
    radial-gradient(circle at 50% 74%, rgba(255, 182, 48, 0.3), transparent 34%),
    linear-gradient(180deg, #fff4d6, #b9e777);
}

.logs {
  position: absolute;
  right: 72px;
  bottom: 82px;
  width: 250px;
  height: 42px;
  background: #8b4c20;
  border: 6px solid #653411;
  border-radius: 999px;
  transform: rotate(13deg);
}

.logs::before {
  position: absolute;
  inset: -6px;
  background: #a45c28;
  border: 6px solid #653411;
  border-radius: 999px;
  content: "";
  transform: rotate(-28deg);
}

.flame {
  position: absolute;
  bottom: 116px;
  left: 50%;
  border-radius: 52% 48% 50% 50%;
  transform: translateX(-50%) rotate(45deg);
}

.flame-one {
  width: 150px;
  height: 150px;
  background: #f05a22;
}

.flame-two {
  width: 112px;
  height: 112px;
  background: #ffb127;
}

.flame-three {
  width: 72px;
  height: 72px;
  background: #ffe35a;
}

.group-section {
  max-width: none;
  background: #10295d;
}

.group-section .section-heading {
  color: white;
}

.group-section h2,
.group-section .section-heading p {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.steps div {
  display: grid;
  min-height: 140px;
  place-items: center;
  padding: 20px;
  color: var(--navy);
  background: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 9px 0 rgba(255, 210, 44, 0.8);
}

.steps strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--pink);
  border-radius: 50%;
  font-size: 1.4rem;
}

.steps span {
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-line {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
}

.contact-line:nth-child(2) {
  background: var(--green);
}

.contact-line strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #273d70;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 3px solid #dce8ff;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(246, 189, 34, 0.58);
  outline-offset: 3px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 26px 18px;
  color: white;
  background: var(--purple);
  font-weight: 900;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #ffe35a;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-inner,
  .poster-section,
  .split-section,
  .split-section.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .playground-scene {
    min-height: 370px;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav {
    align-items: stretch;
  }

  .brand,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    text-align: center;
  }

  .nav-links a {
    padding: 10px;
    background: #eef8ff;
    border-radius: 8px;
  }

  h1 {
    justify-content: center;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .hero-lead {
    font-size: 1.14rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-contact,
  .attractions-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section,
  .poster-section,
  .gallery-section,
  .split-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .poster-frame {
    min-height: 260px;
    padding: 9px;
  }

  .playground-scene {
    min-height: 310px;
    transform: scale(0.78);
    transform-origin: top center;
  }

  .feature-visual {
    min-height: 300px;
  }

  .cake {
    right: 22px;
    width: 180px;
  }

  .balloons span:nth-child(1) {
    left: 28px;
  }

  .balloons span:nth-child(2) {
    left: 86px;
  }

  .balloons span:nth-child(3) {
    left: 146px;
  }
}
