@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Caveat:wght@600;700&display=swap");

:root {
  --bg: #f3f8ff;
  --white: #ffffff;
  --blue: #2a6fdb;
  --blue-soft: #9bc3ff;
  --blue-strong: #1f5fbf;
  --yellow: #f8c530;
  --pink: #f66cab;
  --mint: #6ecb63;
  --purple: #8f78ff;
  --ink: #1f2d42;
  --muted: #5a687d;
  --line: #d8dde4;
  --orange: #ff9f43;
  --shadow: 0 16px 34px rgba(27, 49, 77, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(120px 86px at 12% 14%, rgba(248, 197, 48, 0.72), transparent 70%),
    radial-gradient(108px 122px at 82% 12%, rgba(246, 108, 171, 0.62), transparent 72%),
    radial-gradient(132px 92px at 8% 80%, rgba(110, 203, 99, 0.58), transparent 72%),
    radial-gradient(124px 102px at 88% 77%, rgba(143, 120, 255, 0.6), transparent 72%),
    radial-gradient(82px 62px at 62% 8%, rgba(255, 159, 67, 0.5), transparent 74%),
    radial-gradient(58px 42px at 28% 68%, rgba(42, 111, 219, 0.46), transparent 76%),
    linear-gradient(130deg, #eef8ff 0%, #fff0e6 22%, #eefee8 42%, #efe9ff 64%, #ffeef8 84%, #ebfbff 100%);
  background-size: auto, auto, auto, auto, auto, auto, 220% 220%;
  background-attachment: fixed;
  line-height: 1.6;
  position: relative;
  animation: bg-rainbow-shift 8s ease-in-out infinite alternate;
}

.theme-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9400;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(198, 217, 238, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(4px);
  color: #204a75;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.32rem 0.58rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 47, 78, 0.14);
}

.theme-switch:hover {
  filter: brightness(1.03);
}

.theme-icon {
  line-height: 1;
}

.page-loading {
  overflow: hidden;
}

.cookie-open {
  overflow: hidden;
}

body.theme-dark {
  color: #dbe9f8;
  background-color: #0d1724;
  background-image:
    radial-gradient(140px 96px at 12% 14%, rgba(248, 197, 48, 0.18), transparent 76%),
    radial-gradient(120px 110px at 82% 12%, rgba(246, 108, 171, 0.18), transparent 76%),
    radial-gradient(132px 92px at 8% 80%, rgba(110, 203, 99, 0.18), transparent 72%),
    radial-gradient(124px 102px at 88% 77%, rgba(143, 120, 255, 0.2), transparent 72%),
    linear-gradient(135deg, #0e1a29 0%, #112236 48%, #0d1a2c 100%);
}

body.theme-dark .theme-switch {
  background: rgba(20, 36, 54, 0.42);
  border-color: rgba(85, 123, 165, 0.62);
  color: #e8f1fb;
}

body.theme-dark .hero,
body.theme-dark .showcase,
body.theme-dark .card,
body.theme-dark .section-title,
body.theme-dark .contact-form,
body.theme-dark .time-options,
body.theme-dark .child-row,
body.theme-dark .left-panel,
body.theme-dark .cookie-modal,
body.theme-dark .intro-loader-box {
  background: linear-gradient(145deg, rgba(20, 36, 54, 0.96), rgba(15, 30, 47, 0.95));
  border-color: #2f4d6f;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

body.theme-dark .claim,
body.theme-dark .claim-kicker,
body.theme-dark .logo-text,
body.theme-dark .logo-text span {
  color: #eef6ff;
}

body.theme-dark .claim-kicker,
body.theme-dark .quick-info p,
body.theme-dark .about-tags span,
body.theme-dark .cookie-option,
body.theme-dark .footer-side a,
body.theme-dark .footer-contact-links a {
  background: rgba(20, 38, 58, 0.88);
  border-color: #3a5a7f;
  color: #e5f0fd;
}

body.theme-dark .section-title h1,
body.theme-dark .card h2,
body.theme-dark .card h3,
body.theme-dark .feature-content h3,
body.theme-dark .cookie-modal h2 {
  color: #f2f8ff;
}

body.theme-dark .section-title p,
body.theme-dark .card p,
body.theme-dark .card li,
body.theme-dark .feature-content p,
body.theme-dark .cookie-modal p,
body.theme-dark .contact-form label,
body.theme-dark .check-option,
body.theme-dark .time-options legend {
  color: #ffffff;
}

body.theme-dark .eyebrow,
body.theme-dark .about-points li,
body.theme-dark .feature-content p {
  color: #ffffff;
}

body.theme-dark .contact-form input,
body.theme-dark .contact-form textarea,
body.theme-dark .contact-form select {
  background: #16293d;
  border-color: #36587d;
  color: #e8f1fb;
}

body.theme-dark .contact-form input:focus,
body.theme-dark .contact-form textarea:focus,
body.theme-dark .contact-form select:focus {
  border-color: #6aaeff;
  box-shadow: 0 0 0 3px rgba(106, 174, 255, 0.22);
}

body.theme-dark .site-footer {
  background: linear-gradient(135deg, #13263b, #1a3552, #20466e);
}

body.theme-dark .scroll-down {
  background: rgba(16, 34, 54, 0.6);
  border-color: rgba(180, 210, 245, 0.7);
  color: #e8f2ff;
}

body.theme-dark .section-title,
body.theme-dark .about-showcase .section-title,
body.theme-dark .play-showcase .section-title,
body.theme-dark .contact-showcase .section-title {
  background: linear-gradient(145deg, rgba(21, 39, 58, 0.96), rgba(16, 31, 48, 0.95));
  border-color: #355575;
}

body.theme-dark .feature-card {
  background: linear-gradient(145deg, rgba(20, 37, 56, 0.98), rgba(15, 30, 47, 0.96));
  border-color: #365678;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

body.theme-dark .feature-content {
  background: transparent;
}

body.theme-dark .about-modern,
body.theme-dark .about-person-card,
body.theme-dark .modern-card {
  background: linear-gradient(145deg, rgba(20, 37, 56, 0.98), rgba(15, 30, 47, 0.96));
  border-color: #365678;
}

body.theme-dark .about-person-text h2,
body.theme-dark .about-person-text p {
  color: #ffffff;
}

body.theme-dark .about-profile img {
  border-color: #365678;
  background: #162a3f;
}

body.theme-dark a {
  color: #ffffff;
}

body.theme-dark .back-home-link {
  background: linear-gradient(135deg, rgba(24, 43, 64, 0.95), rgba(18, 34, 52, 0.95));
  border-color: #3a5d84;
  color: #e6f2ff;
}

body.theme-dark .intro-loader-welcome {
  color: #ffffff;
}

.intro-loader {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(240px 180px at 8% 12%, rgba(248, 197, 48, 0.58), transparent 76%),
    radial-gradient(220px 160px at 92% 10%, rgba(246, 108, 171, 0.56), transparent 74%),
    radial-gradient(240px 180px at 14% 86%, rgba(110, 203, 99, 0.54), transparent 76%),
    radial-gradient(220px 170px at 88% 90%, rgba(143, 120, 255, 0.56), transparent 74%),
    linear-gradient(145deg, #eaf4ff, #f7fbff 45%, #edf5ff);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  animation: intro-bg-shift 3s ease-in-out 1;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-loader-box {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 56px rgba(12, 42, 76, 0.28);
  isolation: isolate;
  transform: translateY(10px) scale(0.97);
  animation: intro-box-in 0.75s ease-out forwards;
}

.intro-splashes {
  position: absolute;
  inset: -24px;
  pointer-events: none;
  z-index: 2;
}

.splash {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 58% 42% 52% 48% / 44% 56% 40% 60%;
  opacity: 0;
  filter: saturate(1.15);
  transform: translate(0, 0) scale(0.2) rotate(0deg);
  animation: splash-fly-in 1.05s cubic-bezier(.18,.8,.22,1) forwards,
             splash-wobble 1.7s ease-in-out 1.05s infinite alternate;
}

.splash.s1 { background: #f8c530; left: -58px; top: 24px; --tx: 120px; --ty: 38px; animation-delay: 0s, 1.1s; }
.splash.s2 { background: #2a6fdb; right: -62px; top: 30px; --tx: -126px; --ty: 46px; animation-delay: 0.08s, 1.18s; }
.splash.s3 { background: #f66cab; left: -46px; bottom: 28px; --tx: 108px; --ty: -44px; animation-delay: 0.16s, 1.26s; }
.splash.s4 { background: #6ecb63; right: -56px; bottom: 18px; --tx: -118px; --ty: -36px; animation-delay: 0.24s, 1.34s; }
.splash.s5 { background: #8f78ff; left: 34%; top: -62px; --tx: 0px; --ty: 96px; animation-delay: 0.3s, 1.4s; }
.splash.s6 { background: #ff9f43; left: 54%; bottom: -58px; --tx: -8px; --ty: -94px; animation-delay: 0.38s, 1.48s; }

.intro-loader-box::before,
.intro-loader-box::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  animation: intro-bubble 2.8s ease-in-out infinite alternate;
}

.intro-loader-box::before {
  width: 220px;
  height: 220px;
  left: -78px;
  top: -72px;
  background:
    radial-gradient(circle at 26% 30%, rgba(248, 197, 48, 0.68), transparent 62%),
    radial-gradient(circle at 72% 66%, rgba(246, 108, 171, 0.62), transparent 64%),
    rgba(255, 255, 255, 0.12);
}

.intro-loader-box::after {
  width: 230px;
  height: 230px;
  right: -84px;
  bottom: -78px;
  background:
    radial-gradient(circle at 24% 24%, rgba(42, 111, 219, 0.66), transparent 62%),
    radial-gradient(circle at 68% 70%, rgba(110, 203, 99, 0.62), transparent 64%),
    rgba(255, 255, 255, 0.1);
  animation-delay: 0.5s;
}

.intro-loader-logo {
  width: clamp(200px, 42vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(20, 68, 120, 0.26));
  opacity: 0;
  transform: scale(0.9);
  animation: logo-pop-in 0.65s ease-out 0.9s forwards, logo-kids-mood 1.7s ease-in-out 1.6s infinite alternate;
}

.intro-loader-welcome {
  margin: -0.15rem 0 0.08rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #28598d;
  text-shadow: 0 2px 12px rgba(42, 111, 219, 0.25);
  opacity: 0;
  animation: intro-text-in 0.35s ease-out 1.25s forwards;
}

.intro-paintbar {
  width: min(260px, 74vw);
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(46, 93, 142, 0.38);
  background: rgba(255, 255, 255, 0.68);
  padding: 2px;
  overflow: hidden;
  opacity: 0;
  animation: intro-text-in 0.35s ease-out 1.55s forwards;
}

.paint-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8c530, #f66cab, #2a6fdb, #6ecb63);
  background-size: 240% 100%;
  animation: paint-grow 1.35s ease-out 1.65s forwards, paint-flow 0.9s linear 1.65s infinite;
}


@keyframes intro-bubble {
  0% { transform: scale(0.96) rotate(0deg); filter: hue-rotate(0deg); }
  100% { transform: scale(1.06) rotate(8deg); filter: hue-rotate(28deg); }
}

@keyframes intro-box-in {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-bg-shift {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  100% {
    filter: hue-rotate(22deg) saturate(1.15);
  }
}

@keyframes splash-fly-in {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.22) rotate(0deg);
  }
  55% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1.12) rotate(120deg);
  }
  100% {
    opacity: 0.85;
    transform: translate(calc(var(--tx) * 0.9), calc(var(--ty) * 0.9)) scale(0.78) rotate(190deg);
  }
}

@keyframes splash-wobble {
  0% { transform: translate(calc(var(--tx) * 0.9), calc(var(--ty) * 0.9)) scale(0.78) rotate(186deg); }
  100% { transform: translate(calc(var(--tx) * 0.92), calc(var(--ty) * 0.88)) scale(0.86) rotate(204deg); }
}

@keyframes logo-kids-mood {
  0% {
    transform: translateY(0) rotate(-1.2deg) scale(1);
  }
  35% {
    transform: translateY(-4px) rotate(1deg) scale(1.02);
  }
  70% {
    transform: translateY(-1px) rotate(-0.5deg) scale(1.01);
  }
  100% {
    transform: translateY(-5px) rotate(0.8deg) scale(1.025);
  }
}

@keyframes logo-pop-in {
  0% { opacity: 0; transform: scale(0.88); }
  70% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes intro-text-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes paint-grow {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes paint-flow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 34, 61, 0.42);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.cookie-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-overlay.is-hidden {
  opacity: 0;
}

.cookie-modal {
  width: min(94vw, 520px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1rem 1rem 0.95rem;
  background:
    radial-gradient(90px 64px at 14% 14%, rgba(248, 197, 48, 0.25), transparent 72%),
    radial-gradient(86px 62px at 82% 18%, rgba(246, 108, 171, 0.22), transparent 74%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 255, 0.95));
  box-shadow: 0 20px 42px rgba(14, 41, 70, 0.28);
}

.cookie-logo {
  width: min(180px, 42vw);
  display: block;
  margin: 0 auto 0.45rem;
}

.cookie-modal h2 {
  text-align: center;
  color: #1c4c80;
  margin-bottom: 0.2rem;
}

.cookie-modal p {
  text-align: center;
  color: #45617f;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.68rem;
}

.cookie-options {
  display: grid;
  gap: 0.48rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d2e1f2;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  color: #325779;
  font-weight: 800;
}

.cookie-option input {
  width: 17px;
  height: 17px;
  accent-color: #2a6fdb;
}

.cookie-actions {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.cookie-btn {
  border: none;
  border-radius: 12px;
  padding: 0.66rem 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-btn-accept {
  background: linear-gradient(120deg, #2a6fdb, #2ca576);
  color: #fff;
  width: 100%;
}

.cookie-btn-decline {
  background: #ecf2fa;
  color: #2d4e72;
}

.cookie-btn-save {
  grid-column: 1 / span 2;
  background: linear-gradient(120deg, #f8c530, #ff9f43);
  color: #1e3552;
}

.cookie-fab {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 9200;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 22px rgba(18, 49, 82, 0.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px rgba(18, 49, 82, 0.24);
}

.cookie-fab img {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 1024px) {
  .intro-loader {
    padding: 1rem;
  }

  .intro-loader-box {
    width: min(78vw, 500px);
    border-radius: 22px;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
  }

  .intro-loader-logo {
    width: clamp(190px, 42vw, 300px);
  }

  .cookie-modal {
    width: min(94vw, 500px);
    border-radius: 22px;
  }

  .cookie-fab {
    width: 44px;
    height: 44px;
    right: 12px;
    bottom: 14px;
  }

  .cookie-fab img {
    width: 28px;
    height: 28px;
  }
}

@keyframes bg-rainbow-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 45% 0%, 20% 75%, 0% 50%;
  }
  50% {
    background-position: 28% 22%, 72% 16%, 20% 80%, 78% 72%, 66% 26%, 42% 54%, 100% 50%;
  }
  100% {
    background-position: 44% 34%, 58% 30%, 34% 68%, 62% 56%, 82% 40%, 58% 42%, 0% 50%;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 48% 52% 40% 60% / 58% 40% 60% 42%;
  transform: rotate(10deg);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: blob-color-shift 6s ease-in-out infinite alternate;
}

body::before {
  top: 11%;
  right: 3%;
  background:
    radial-gradient(28% 24% at 22% 30%, #f8c530 0, transparent 100%),
    radial-gradient(32% 28% at 68% 24%, #2a6fdb 0, transparent 100%),
    radial-gradient(30% 26% at 32% 72%, #8f78ff 0, transparent 100%),
    radial-gradient(34% 30% at 72% 72%, #f66cab 0, transparent 100%);
  animation-delay: 0s;
}

body::after {
  bottom: 8%;
  left: 2%;
  background:
    radial-gradient(30% 26% at 20% 28%, #6ecb63 0, transparent 100%),
    radial-gradient(32% 26% at 72% 24%, #f8c530 0, transparent 100%),
    radial-gradient(30% 26% at 28% 74%, #f66cab 0, transparent 100%),
    radial-gradient(34% 28% at 74% 74%, #2a6fdb 0, transparent 100%);
  animation-delay: 1s;
}

@keyframes blob-color-shift {
  0% {
    transform: rotate(8deg) scale(1);
    filter: hue-rotate(0deg) saturate(1.1);
  }
  50% {
    transform: rotate(16deg) scale(1.06);
    filter: hue-rotate(40deg) saturate(1.25);
  }
  100% {
    transform: rotate(24deg) scale(1.12);
    filter: hue-rotate(80deg) saturate(1.35);
  }
}

.home-body {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(260px 170px at 8% 16%, rgba(248, 197, 48, 0.34), transparent 74%),
    radial-gradient(280px 190px at 92% 12%, rgba(246, 108, 171, 0.3), transparent 76%),
    radial-gradient(240px 180px at 14% 88%, rgba(110, 203, 99, 0.28), transparent 76%),
    radial-gradient(250px 170px at 84% 84%, rgba(143, 120, 255, 0.3), transparent 75%),
    linear-gradient(145deg, #ffffff, #f6fbff 52%, #fff7ef 100%);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 420px 1fr;
  height: 100svh;
  position: relative;
}

.left-panel {
  background:
    radial-gradient(circle at 10% 18%, rgba(248, 197, 48, 0.28) 0, transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(246, 108, 171, 0.22) 0, transparent 24%),
    linear-gradient(180deg, #f2f7ff, #eaf3ff);
  position: relative;
  padding: 1.2rem 1rem 1.2rem 2.1rem;
  z-index: 2;
}

.left-panel::after,
.left-panel::before {
  content: "";
  position: absolute;
  right: -34px;
  border-radius: 999px;
  pointer-events: none;
}

.left-panel::after {
  top: 140px;
  width: 52px;
  height: 520px;
  background: var(--blue-soft);
  transform: rotate(7deg);
}

.left-panel::before {
  top: 10px;
  width: 38px;
  height: 300px;
  background: var(--yellow);
  transform: rotate(7deg);
}

.left-accent {
  position: absolute;
  right: -22px;
  bottom: 20px;
  width: 26px;
  height: 180px;
  background: var(--blue-strong);
  border-radius: 999px;
  transform: rotate(22deg);
}

.logo {
  color: var(--blue);
  width: fit-content;
}

.logo-image {
  width: min(340px, 84vw);
  height: auto;
  display: block;
}

.logo-mark {
  display: flex;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.arc {
  width: 34px;
  height: 78px;
  border-radius: 40px 40px 0 0;
  border: 12px solid;
  border-bottom: 0;
}

.arc.yellow { border-color: var(--yellow); }
.arc.blue { border-color: var(--blue-strong); }
.arc.light { border-color: #a8c8ed; }

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-top: 0.2rem;
}

.claim {
  margin-top: 4.2rem;
  font-family: "Nunito", sans-serif;
  color: #0e4789;
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 330px;
  text-align: center;
}

.claim-kicker {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #c9dbef;
  color: #375c84;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.quick-info {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.45rem;
  max-width: 330px;
}

.quick-info p {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cadff4;
  border-radius: 12px;
  padding: 0.4rem 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.page-links {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 330px;
}

.page-links a {
  text-decoration: none;
  border: 1px solid #b7cae3;
  color: var(--blue);
  background: #ffffff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
}

.page-links a:hover {
  background: #f4f8ff;
}

.right-panel {
  position: relative;
  min-height: 100%;
  background: transparent;
}

.hero-collage {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.hero-tile {
  width: min(100%, 980px);
  height: min(100%, 760px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.hero-tile-main {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.03);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #184f89;
  text-decoration: none;
  display: grid;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(18, 57, 98, 0.2);
  z-index: 3;
}

.scroll-down:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(18, 57, 98, 0.26);
}

.scroll-icon {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  font-family: "Nunito", sans-serif;
  animation: arrow-bounce 1.45s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(3px);
  }
}

.page-wrap {
  width: min(1120px, 92%);
  margin: 1.4rem auto 2.4rem;
  display: grid;
  gap: 1.15rem;
}

.showcase {
  position: relative;
  border-radius: 28px;
  padding: 1.1rem;
  border: 1px solid #b8d2ef;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 150px;
  border-radius: 58% 42% 64% 36% / 46% 58% 42% 54%;
  top: -32px;
  right: -28px;
  opacity: 0.62;
  pointer-events: none;
  transform: rotate(-12deg);
}

.showcase::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 126px;
  border-radius: 44% 56% 38% 62% / 60% 44% 56% 40%;
  bottom: -30px;
  left: -24px;
  opacity: 0.5;
  pointer-events: none;
  transform: rotate(14deg);
}

.about-showcase {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg opacity='0.2'%3E%3Ccircle cx='40' cy='38' r='10' fill='%23f6c267'/%3E%3Cpath d='M40 51v18M30 60h20M33 73l7-8 7 8' stroke='%232a6fdb' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3Ccircle cx='144' cy='54' r='10' fill='%23ff9ec6'/%3E%3Cpath d='M144 67v18M134 76h20M137 89l7-8 7 8' stroke='%236ecb63' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3Ccircle cx='92' cy='140' r='10' fill='%239bc3ff'/%3E%3Cpath d='M92 153v18M82 162h20M85 175l7-8 7 8' stroke='%23f66cab' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(140deg, #eef5ff, #fff5fb 65%);
  background-size: 240px 240px, auto;
  background-repeat: no-repeat, no-repeat;
  background-position: 92% 20%, center;
  box-shadow: 0 20px 38px rgba(45, 116, 218, 0.14);
  background-size: 240px 240px, 220% 220%;
  animation: section-color-flow 9s ease-in-out infinite alternate;
}

.about-showcase::before {
  background: linear-gradient(135deg, #2a6fdb, #9bc3ff);
  filter: saturate(1.15);
}

.about-showcase::after {
  background: linear-gradient(135deg, #f66cab, #ffd0e6);
  filter: saturate(1.15);
}

.about-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
  padding: 2rem clamp(1rem, 3vw, 2rem);
}

.about-title {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.about-age {
  margin-top: 0.35rem;
  font-weight: 800;
  color: #2a5d95;
}

.about-modern {
  max-width: 1020px;
  margin: 0.2rem auto 1rem;
}

.about-person-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(140px 80px at 12% 20%, rgba(248, 197, 48, 0.22), transparent 75%),
    radial-gradient(130px 90px at 86% 18%, rgba(246, 108, 171, 0.2), transparent 76%),
    radial-gradient(120px 90px at 18% 86%, rgba(110, 203, 99, 0.2), transparent 74%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.99), rgba(243, 250, 255, 0.96));
  border: 1px solid #c7dbf1;
  border-radius: 24px;
  padding: 1.05rem 1.15rem;
  box-shadow: 0 18px 34px rgba(28, 77, 125, 0.14);
}

.about-person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.2rem 0 0.9rem;
}

.about-profile {
  position: relative;
  isolation: isolate;
  margin: 0.35rem auto 0.8rem;
  text-align: center;
}

.about-profile::before,
.about-profile::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 56% 44% 48% 52% / 52% 42% 58% 48%;
}

.about-profile::before {
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background:
    radial-gradient(circle at 22% 26%, rgba(248, 197, 48, 0.72), transparent 56%),
    radial-gradient(circle at 76% 22%, rgba(246, 108, 171, 0.7), transparent 58%),
    radial-gradient(circle at 34% 74%, rgba(42, 111, 219, 0.62), transparent 58%),
    radial-gradient(circle at 74% 78%, rgba(110, 203, 99, 0.66), transparent 56%);
  filter: blur(0.4px) saturate(1.1);
  opacity: 0.88;
}

.about-profile::after {
  width: 248px;
  height: 248px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(8deg);
  border: 2px dashed rgba(137, 173, 214, 0.6);
  opacity: 0.62;
}

.about-profile img {
  width: clamp(130px, 18vw, 180px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 28px rgba(16, 55, 93, 0.24);
  background: #eaf4ff;
}

.about-profile figcaption {
  margin-top: 0.5rem;
  color: #1f4f83;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #c8dbef;
}

.about-person-text h2 {
  color: #1b4f85;
  margin-bottom: 0.3rem;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
}

.about-person-text p {
  color: #4f6986;
  font-weight: 700;
  line-height: 1.55;
}

.about-facts {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-facts span {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #c8dbef;
  color: #295683;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-points {
  margin-top: 0.55rem;
  padding-left: 1.05rem;
}

.about-points li {
  color: #35577f;
  font-weight: 700;
}

.about-points li + li {
  margin-top: 0.2rem;
}

.about-highlights {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.about-highlight {
  border-radius: 14px;
  border: 1px solid #c9dcf1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.92));
  padding: 0.58rem 0.66rem;
  box-shadow: 0 8px 16px rgba(24, 68, 108, 0.08);
}

.about-highlight h3 {
  margin: 0;
  color: #1f4f82;
  font-size: 0.92rem;
}

.about-highlight p {
  margin-top: 0.2rem;
  color: #506b88;
  font-size: 0.82rem;
  line-height: 1.42;
  font-weight: 700;
}

.about-contact-btn {
  margin-top: 0.68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: linear-gradient(115deg, #f66cab, #8f78ff);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 10px 18px rgba(132, 87, 168, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(132, 87, 168, 0.28);
  filter: brightness(1.04);
}

.about-tags span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #bfd7f2;
  color: #2f5f95;
  font-weight: 800;
  font-size: 0.84rem;
}

.about-grid {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.modern-card {
  border: 1px solid #c7daf0;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.92));
}

.play-showcase {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(170px 110px at 12% 16%, rgba(248, 197, 48, 0.28), transparent 74%),
    radial-gradient(180px 120px at 86% 18%, rgba(246, 108, 171, 0.22), transparent 74%),
    radial-gradient(150px 100px at 18% 86%, rgba(110, 203, 99, 0.2), transparent 74%),
    linear-gradient(140deg, #fff4e4, #fffdf7 58%);
  box-shadow: 0 24px 44px rgba(230, 148, 34, 0.18);
  background-size: 220% 220%;
  animation: section-color-flow 8s ease-in-out infinite alternate;
}

.play-showcase::before {
  background: linear-gradient(135deg, #f8c530, #ffe196);
  filter: saturate(1.2);
}

.play-showcase::after {
  background: linear-gradient(135deg, #f66cab, #ffc7e1);
  filter: saturate(1.2);
}

.play-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  border-radius: 0;
  padding: 2.2rem clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-showcase {
  background:
    radial-gradient(120px 90px at 15% 20%, rgba(110, 203, 99, 0.28), transparent 76%),
    radial-gradient(120px 90px at 82% 14%, rgba(42, 111, 219, 0.22), transparent 74%),
    linear-gradient(138deg, #e7fff2, #f6fff9 55%, #eff8ff);
  box-shadow: 0 22px 44px rgba(30, 123, 94, 0.16);
  background-size: auto, auto, 220% 220%;
  animation: section-color-flow 10s ease-in-out infinite alternate;
}

@keyframes section-color-flow {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  50% {
    filter: hue-rotate(12deg) saturate(1.08);
  }
  100% {
    filter: hue-rotate(22deg) saturate(1.15);
  }
}

.contact-showcase::before {
  background: linear-gradient(135deg, #6ecb63, #d7ffcf);
  filter: saturate(1.35);
}

.contact-showcase::after {
  background: linear-gradient(135deg, #2a6fdb, #c5ddff);
  filter: saturate(1.35);
}

.contact-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  border-radius: 0;
  padding: 2rem clamp(1rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(150deg, #ffffff, #f8fcff);
  border: 1px solid #d6e6f7;
}

.about-showcase .section-title {
  border-left: 10px solid #2f84da;
  animation: box-color-cycle 7.5s ease-in-out infinite alternate;
}

.play-showcase .section-title {
  border-left: 0;
  border-top: 8px solid #efab37;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.95)),
    linear-gradient(120deg, rgba(248, 197, 48, 0.12), rgba(246, 108, 171, 0.08));
  border-color: #f3dcb5;
  box-shadow: 0 14px 30px rgba(201, 132, 34, 0.14);
  animation: box-color-cycle 7.5s ease-in-out infinite alternate;
}

.play-showcase .section-title {
  text-align: left;
}

.play-showcase .section-title h1,
.play-showcase .section-title p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-showcase .section-title {
  border-left: 10px solid #2ca576;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 255, 251, 0.9)),
    linear-gradient(120deg, rgba(110, 203, 99, 0.1), rgba(42, 111, 219, 0.08));
  border-color: #bfe8d2;
  box-shadow: 0 14px 28px rgba(24, 95, 74, 0.12);
  animation: box-color-cycle 7.5s ease-in-out infinite alternate;
}

@keyframes box-color-cycle {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  50% {
    filter: hue-rotate(14deg) saturate(1.08);
  }
  100% {
    filter: hue-rotate(28deg) saturate(1.14);
  }
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d7391;
  margin-bottom: 0.25rem;
}

.section-title h1 {
  color: #17385f;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.section-title p {
  color: #57708f;
  font-weight: 700;
  max-width: 74ch;
}

.section-title.centered {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.94)),
    linear-gradient(20deg, rgba(246, 108, 171, 0.08), rgba(110, 203, 99, 0.08));
}

.section-title.centered p {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.82rem;
}

.card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.94));
  border: 1px solid #d5e3f0;
  border-radius: 16px;
  padding: 1.02rem;
  box-shadow: 0 10px 20px rgba(18, 45, 76, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(18, 45, 76, 0.14);
}

.card h2,
.card h3 {
  color: #1a4c83;
  margin-bottom: 0.28rem;
  font-size: 1.12rem;
}

.card p,
.card li {
  color: #4f647f;
  font-weight: 600;
}

.card ul {
  padding-left: 1rem;
}

.card li + li {
  margin-top: 0.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.05rem;
}

.feature-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(246, 252, 255, 0.96));
  border: 1px solid #c9def3;
  box-shadow: 0 14px 28px rgba(24, 51, 85, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #f8c530, #f66cab, #2a6fdb, #6ecb63);
  opacity: 0.82;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #b9d5ef;
  box-shadow: 0 20px 32px rgba(24, 51, 85, 0.2);
}

.feature-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: 0.9rem 0.95rem 1rem;
}

.feature-content h3 {
  color: #1d4d84;
  margin-bottom: 0.26rem;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}

.feature-content p {
  color: #536985;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.48;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.contact-form h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 0.55rem;
  color: #1a4e7a;
  letter-spacing: 0.01em;
}

.contact-form {
  display: grid;
  gap: 0.56rem;
  width: 100%;
  padding: clamp(1rem, 1.8vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 255, 252, 0.9)),
    linear-gradient(120deg, rgba(110, 203, 99, 0.08), rgba(42, 111, 219, 0.06));
  border: 1px solid #cfe8da;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(24, 85, 69, 0.14);
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #2f5776;
  margin-top: 0.32rem;
}

.required::after {
  content: " *";
  color: #e23c5a;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #bfd6eb;
  border-radius: 14px;
  padding: 0.66rem 0.78rem;
  font: inherit;
  color: #213046;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4a96e2;
  box-shadow: 0 0 0 3px rgba(74, 150, 226, 0.18);
  background: #ffffff;
}

.children-fields {
  display: grid;
  gap: 0.55rem;
}

.child-row {
  display: grid;
  gap: 0.36rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 252, 255, 0.88));
  border: 1px solid #cfe1f3;
  border-radius: 14px;
  padding: 0.65rem;
}

.time-options {
  border: 1px solid #c9dfd3;
  border-radius: 16px;
  padding: 0.68rem 0.75rem 0.78rem;
  margin-top: 0.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 255, 248, 0.9));
}

.time-options legend {
  font-weight: 800;
  color: #2f5a75;
  font-size: 0.9rem;
  padding: 0 0.25rem;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #3f5f7a;
  font-weight: 700;
  margin-top: 0.42rem;
}

.check-option input {
  width: 17px;
  height: 17px;
  accent-color: #2f8ed9;
}

.consent-option {
  align-items: flex-start;
  margin-top: 0.55rem;
}

.consent-option span {
  line-height: 1.35;
}

.consent-option a {
  font-weight: 800;
  text-decoration: underline;
}

.time-options label[for="custom-time"] {
  display: block;
  margin-top: 0.45rem;
}

.contact-form button {
  margin-top: 0.6rem;
  border: none;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: linear-gradient(120deg, #2a6fdb 0%, #2ca576 52%, #6ecb63 100%);
  box-shadow: 0 12px 22px rgba(30, 112, 88, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(29, 108, 85, 0.32);
}

.site-footer {
  margin-top: 1.2rem;
  padding: 0.9rem clamp(1rem, 3vw, 2rem) 0.75rem;
  background: linear-gradient(135deg, #1f5fbf, #2a6fdb, #8f78ff);
  color: #e7f1ff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.55rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand img {
  width: 64px;
  height: auto;
  display: block;
}

.footer-name {
  position: relative;
  z-index: 1;
  padding: 0.15rem 0.45rem;
}

.footer-name::before,
.footer-name::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  opacity: 0.95;
}

.footer-name::before {
  width: 46px;
  height: 22px;
  background: #ff76b2;
  left: -14px;
  top: -6px;
  transform: rotate(-12deg);
}

.footer-name::after {
  width: 52px;
  height: 24px;
  background: #ffd45c;
  right: -16px;
  bottom: -7px;
  transform: rotate(10deg);
}

.footer-side {
  display: flex;
  align-items: center;
}

.footer-side-left {
  justify-self: start;
}

.footer-side-right {
  justify-self: end;
}

.footer-side a {
  color: #dce9fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.24rem 0.5rem;
}

.footer-side a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 0.65rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #dbe9ff;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.footer-contact-links span {
  opacity: 0.8;
}

.footer-contact-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact-links a:hover {
  text-decoration: underline;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.back-home-wrap {
  margin-top: 0.95rem;
  text-align: center;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #1f4f81;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.95));
  border: 1px solid #c9ddf2;
  box-shadow: 0 8px 18px rgba(23, 66, 108, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.back-home-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(23, 66, 108, 0.18);
  filter: brightness(1.02);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    height: 100svh;
  }

  .left-panel {
    padding: 1rem;
  }

  .left-panel::before,
  .left-panel::after,
  .left-accent {
    display: none;
  }

  .claim {
    margin-top: 0.9rem;
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .quick-info,
  .page-links {
    max-width: none;
  }

  .right-panel {
    min-height: 52svh;
  }

  .hero-collage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
  }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    width: 180px;
    height: 180px;
    opacity: 0.5;
  }

  .showcase::before {
    width: 170px;
    height: 96px;
    opacity: 0.64;
  }

  .showcase::after {
    width: 140px;
    height: 84px;
    opacity: 0.52;
  }

  .home-body {
    overflow: auto;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100svh;
    min-height: 100svh;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 14px 28px rgba(17, 54, 90, 0.18);
    overflow: hidden;
    position: relative;
  }

  .right-panel {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
    z-index: 1;
  }

  .hero-collage {
    padding: 0.35rem;
    height: 100%;
  }

  .hero-tile {
    border-radius: 0;
    border: none;
    box-shadow: none;
    object-fit: contain;
  }

  .left-panel {
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: min(92%, 560px);
    padding: 0.9rem 0.85rem 0.8rem;
    text-align: center;
  }

  .logo {
    margin: 0 auto;
  }

  .logo-image {
    width: min(280px, 78vw);
  }

  .claim {
    margin-top: 0.7rem;
    font-size: clamp(2.1rem, 8.8vw, 2.95rem);
    line-height: 1.04;
    max-width: none;
    text-align: center;
  }

  .quick-info {
    margin-top: 0.7rem;
    max-width: 100%;
  }

  .quick-info p {
    text-align: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-wrap {
    width: min(96%, 680px);
    margin: 0.95rem auto 1.8rem;
    gap: 0.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .feature-card {
    border-radius: 18px;
  }

  .feature-card img {
    height: 170px;
  }

  .feature-content {
    padding: 0.72rem 0.78rem 0.86rem;
  }

  .feature-content h3 {
    font-size: 1.02rem;
  }

  .feature-content p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .name-grid {
    grid-template-columns: 1fr;
  }

  .about-full {
    width: 100%;
    margin-left: 0;
    min-height: auto;
    border-radius: 18px;
    padding: 0.82rem;
  }

  .about-title {
    text-align: left;
    margin-bottom: 0.55rem;
  }

  .about-title .eyebrow {
    margin-bottom: 0.2rem;
  }

  .about-title h1 {
    line-height: 1.08;
    margin-bottom: 0.3rem;
  }

  .about-title p {
    max-width: none;
  }

  .about-modern {
    gap: 0.52rem;
    margin-bottom: 0.6rem;
  }

  .about-person-card {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    padding: 0.78rem 0.82rem;
    border-radius: 16px;
  }

  .about-profile {
    width: 100%;
    display: grid;
    place-items: center;
    margin: 0.1rem auto 0.35rem;
    padding: 0.55rem 0.45rem 0.45rem;
    border: none;
    border-radius: 16px;
    background: transparent;
  }

  .about-profile img {
    width: clamp(112px, 28vw, 132px);
    border-width: 3px;
  }

  .about-profile::before {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(circle at 26% 28%, rgba(248, 197, 48, 0.86), transparent 56%),
      radial-gradient(circle at 74% 22%, rgba(246, 108, 171, 0.82), transparent 58%),
      radial-gradient(circle at 30% 74%, rgba(42, 111, 219, 0.78), transparent 60%),
      radial-gradient(circle at 72% 78%, rgba(110, 203, 99, 0.8), transparent 58%);
    filter: none;
    opacity: 0.95;
  }

  .about-profile::after {
    width: 196px;
    height: 196px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.72);
    opacity: 0.78;
  }

  .about-profile figcaption {
    margin-top: 0.3rem;
    font-size: 0.88rem;
  }

  .about-person-text h2 {
    font-size: 1.02rem;
  }

  .about-person-text p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .about-facts span {
    font-size: 0.72rem;
    padding: 0.22rem 0.48rem;
  }

  .about-highlight {
    border-radius: 12px;
    padding: 0.5rem 0.56rem;
  }

  .about-highlight h3 {
    font-size: 0.84rem;
  }

  .about-highlight p {
    font-size: 0.78rem;
  }

  .about-contact-btn {
    width: 100%;
    margin-top: 0.58rem;
    font-size: 0.82rem;
    min-height: 40px;
  }

  .about-points {
    margin-top: 0.45rem;
    padding-left: 0.92rem;
  }

  .about-points li {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .about-tags {
    justify-content: center;
    gap: 0.35rem;
    margin: 0.15rem 0 0.5rem;
  }

  .about-tags span {
    font-size: 0.68rem;
    padding: 0.2rem 0.46rem;
    border-radius: 999px;
  }

  .about-grid {
    gap: 0.5rem;
  }

  .play-showcase {
    width: 100%;
    margin-left: 0;
    min-height: auto;
    border-radius: 20px;
    padding: 0.9rem;
    background: linear-gradient(155deg, #fff8ef, #ffffff 60%);
  }

  .play-showcase .section-title {
    border-left: none;
    border-radius: 16px;
    text-align: left;
    padding: 0.85rem 0.95rem;
  }

  .play-showcase .eyebrow {
    color: #9a6520;
  }

  .play-showcase .section-title h1 {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
    color: #2b476f;
  }

  .play-showcase .section-title p {
    font-size: 0.92rem;
    color: #617694;
  }

  .contact-showcase {
    width: 100%;
    margin-left: 0;
    min-height: auto;
    border-radius: 18px;
    padding: 0.82rem;
  }

  .showcase {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    padding: 0.7rem;
  }

  .section-title {
    box-shadow: 0 8px 18px rgba(24, 63, 104, 0.12);
    padding: 0.72rem 0.8rem;
  }

  .card {
    border-radius: 18px;
    padding: 0.66rem;
  }

  .contact-form {
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(18, 57, 98, 0.1);
    gap: 0.48rem;
  }

  .contact-form button {
    width: 100%;
    min-height: 44px;
  }

  .time-options {
    border-radius: 14px;
  }

  .site-footer {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
  }

  .footer-brand {
    justify-self: center;
    width: auto;
  }

  .footer-side-left {
    justify-self: start;
  }

  .footer-side-right {
    justify-self: end;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
  }

  .footer-contact-links {
    font-size: 0.78rem;
    gap: 0.3rem;
    line-height: 1.3;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(7, 42, 78, 0.14) 0%,
      rgba(7, 42, 78, 0.06) 42%,
      rgba(7, 42, 78, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .scroll-down {
    z-index: 4;
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.42);
  }
}

@media (max-width: 480px) {
  body::before,
  body::after {
    width: 150px;
    height: 150px;
    opacity: 0.52;
  }

  .showcase::before {
    width: 140px;
    height: 80px;
    opacity: 0.64;
  }

  .showcase::after {
    width: 110px;
    height: 66px;
    opacity: 0.56;
  }

  body {
    font-size: 14px;
    line-height: 1.45;
  }

  .page-wrap {
    width: min(97%, 420px);
    margin: 0.75rem auto 1.35rem;
    gap: 0.62rem;
  }

  .theme-switch {
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: 0.28rem 0.48rem;
  }

  .intro-loader-box {
    width: min(90vw, 300px);
    padding: 0.8rem 0.75rem;
    border-radius: 18px;
    gap: 0.62rem;
  }

  .intro-loader-logo {
    width: min(72vw, 230px);
  }

  .intro-loader-welcome {
    font-size: 0.76rem;
  }

  .intro-paintbar {
    width: min(220px, 76vw);
    height: 14px;
  }

  .cookie-modal {
    width: min(94vw, 360px);
    border-radius: 18px;
    padding: 0.85rem 0.75rem;
  }

  .cookie-logo {
    width: min(52vw, 156px);
  }

  .cookie-modal h2 {
    font-size: 1.2rem;
  }

  .cookie-modal p {
    font-size: 0.86rem;
    margin-bottom: 0.55rem;
  }

  .cookie-option {
    font-size: 0.84rem;
    padding: 0.48rem 0.54rem;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn-save {
    grid-column: auto;
  }

  .cookie-fab {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 12px;
  }

  .cookie-fab img {
    width: 24px;
    height: 24px;
  }

  .hero {
    grid-template-rows: auto 36svh;
    height: 100svh;
    min-height: 100svh;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  .left-panel {
    padding: 0.62rem 0.62rem 0.52rem;
  }

  .logo-image {
    width: min(250px, 82vw);
  }

  .claim {
    margin-top: 2.1rem;
    font-size: clamp(1.92rem, 9.6vw, 2.55rem);
    line-height: 1.05;
    text-align: center;
  }

  .claim-kicker {
    font-size: 0.6rem;
    padding: 0.14rem 0.38rem;
  }

  .quick-info p {
    font-size: 0.8rem;
    padding: 0.36rem 0.48rem;
  }

  .right-panel {
    flex: 1;
    min-height: 0;
  }

  .hero-collage {
    padding: 0.22rem;
    gap: 0.18rem;
  }

  .scroll-down {
    width: 30px;
    height: 30px;
    bottom: 0.42rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
  }

  .scroll-icon {
    font-size: 0.86rem;
  }

  .page-wrap {
    width: min(100%, 95%);
    margin: 0.45rem auto 1rem;
    gap: 0.58rem;
  }

  .showcase {
    border-radius: 14px;
    padding: 0.54rem;
    border-width: 1px;
  }

  .section-title {
    border-radius: 14px;
    padding: 0.56rem 0.62rem;
  }

  .section-title h1 {
    font-size: clamp(1.02rem, 5.4vw, 1.24rem);
  }

  .section-title p {
    font-size: 0.82rem;
  }

  .about-full {
    padding: 0.58rem;
  }

  .about-title {
    margin-bottom: 0.42rem;
  }

  .about-title h1 {
    font-size: clamp(1.05rem, 5.6vw, 1.26rem);
  }

  .about-profile {
    padding: 0.45rem 0.35rem 0.36rem;
    border-radius: 14px;
  }

  .about-profile img {
    width: clamp(96px, 31vw, 116px);
  }

  .about-profile::before {
    width: 146px;
    height: 146px;
  }

  .about-profile::after {
    width: 164px;
    height: 164px;
  }

  .about-profile figcaption {
    font-size: 0.8rem;
  }

  .about-person-card {
    padding: 0.64rem 0.64rem;
    border-radius: 14px;
  }

  .about-person-text h2 {
    font-size: 0.92rem;
  }

  .about-person-text p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .about-facts {
    gap: 0.28rem;
  }

  .about-facts span {
    font-size: 0.64rem;
    padding: 0.16rem 0.34rem;
  }

  .about-highlight {
    padding: 0.42rem 0.46rem;
    border-radius: 10px;
  }

  .about-highlight h3 {
    font-size: 0.74rem;
  }

  .about-highlight p {
    font-size: 0.7rem;
  }

  .about-contact-btn {
    font-size: 0.72rem;
    min-height: 36px;
    padding: 0.4rem 0.7rem;
  }

  .about-points li {
    font-size: 0.74rem;
  }

  .about-tags span {
    font-size: 0.62rem;
    padding: 0.16rem 0.38rem;
  }

  .about-tags {
    gap: 0.35rem;
    margin-bottom: 0.65rem;
  }

  .about-tags span {
    font-size: 0.74rem;
    padding: 0.28rem 0.58rem;
  }

  .play-showcase {
    padding: 0.72rem;
    border-radius: 16px;
  }

  .play-showcase .section-title {
    padding: 0.72rem 0.78rem;
    border-radius: 13px;
  }

  .play-showcase .section-title h1 {
    font-size: clamp(1.25rem, 6.4vw, 1.62rem);
    line-height: 1.12;
  }

  .play-showcase .feature-grid {
    gap: 0.62rem;
  }

  .feature-card img {
    height: 136px;
  }

  .feature-content {
    padding: 0.42rem 0.48rem 0.52rem;
  }

  .feature-content h3 {
    font-size: 0.92rem;
  }

  .feature-content p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .contact-form {
    padding: 0.52rem;
    gap: 0.24rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
  }

  .site-footer {
    margin-top: 0.55rem;
    padding: 0.46rem 0.5rem 0.46rem;
  }

  .footer-top {
    gap: 0.4rem;
  }

  .footer-brand img {
    width: 42px;
  }

  .footer-name {
    font-size: 0.66rem;
    padding: 0.1rem 0.25rem;
  }

  .footer-side a {
    font-size: 0.58rem;
    padding: 0.06rem 0.18rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    letter-spacing: 0.02em;
    opacity: 0.9;
  }

  .footer-bottom p {
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .footer-contact-links {
    justify-content: center;
    gap: 0.22rem;
    flex-wrap: wrap;
    white-space: normal;
    overflow: visible;
  }

  .footer-contact-links span {
    display: none;
  }

  .footer-contact-links a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.1rem 0.22rem;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.1;
  }
}
