:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #fff6d9;
  --yellow: #ffd86b;
  --pink: #ffadc8;
  --blue: #a7d8ff;
  --teal: #90e0d0;
  --mint: #e8fbf4;
  --lavender: #ded7ff;
  --ink: #27425d;
  --muted: #5e7487;
  --shadow: 0 18px 45px rgba(86, 110, 136, 0.12);
  --shadow-hover: 0 22px 50px rgba(86, 110, 136, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 107, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(167, 216, 255, 0.32), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fefefe 100%);
  color: var(--ink);
  padding-top: var(--header-height);
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.reveal-section,
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(39, 66, 93, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.lang-button {
  min-width: 52px;
  height: 40px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-button:hover,
.lang-button:focus-visible {
  transform: translateY(-2px);
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: var(--shadow);
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong,
.site-footer h3,
.section-heading h2,
.hero-copy h1,
.contact-copy h2,
.contact-form h3,
.feature-card h3,
.activity-card h3,
.mini-card h3,
.gallery-card span {
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-weight: 800;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  will-change: transform, box-shadow;
}

.button:hover,
.button:focus-visible,
.feature-card:hover,
.activity-card:hover,
.mini-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.button-primary {
  background: linear-gradient(135deg, #ffbf60, #ff8bb1);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: rgba(39, 66, 93, 0.12);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section,
.info-section,
.contact-section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero-grid,
.about-panel,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  min-height: 700px;
  align-items: center;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  background-image:
    linear-gradient(90deg, rgba(21, 47, 72, 0.78) 0%, rgba(39, 66, 93, 0.58) 36%, rgba(39, 66, 93, 0.18) 72%),
    url("hero-illustration.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 107, 0.18), transparent 20%),
    radial-gradient(circle at left center, rgba(144, 224, 208, 0.15), transparent 24%);
}

.hero-section::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.92));
}

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 2rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: #e5708f;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  max-width: 12ch;
  color: #fff;
}

.hero-text,
.about-copy p,
.feature-card p,
.activity-card p,
.mini-card p,
.contact-copy p,
.contact-item p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text,
.hero-points li {
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-banner {
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
  margin-bottom: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 244, 207, 0.96), rgba(255, 226, 238, 0.96));
  box-shadow: var(--shadow);
}

.hero-banner p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.hero-banner-pill,
.promo-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: #dc6f92;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(86, 110, 136, 0.1);
}

.hero-points {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 0 6px rgba(144, 224, 208, 0.24);
}

.gallery-card::before,
.gallery-card::after {
  content: "";
  position: absolute;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.promo-banner-section {
  padding: 0 0 1.6rem;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.8rem;
  min-height: 400px;
  border-radius: 34px;
  background-image:
    linear-gradient(90deg, rgba(39, 66, 93, 0.7) 0%, rgba(39, 66, 93, 0.52) 40%, rgba(39, 66, 93, 0.18) 100%),
    url("promo-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.promo-banner::before,
.promo-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.promo-banner::before {
  top: -72px;
  right: -66px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.16);
}

.promo-banner::after {
  left: -44px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  background: rgba(255, 216, 107, 0.18);
}

.promo-copy,
.promo-actions {
  position: relative;
  z-index: 1;
}

.promo-copy h2 {
  margin: 0.7rem 0 0.65rem;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: #fff;
}

.promo-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-weight: 700;
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-panel {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.about-highlights,
.why-grid,
.footer-links {
  display: grid;
  gap: 1rem;
}

.mini-card,
.feature-card,
.activity-card,
.gallery-card,
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
  will-change: transform, box-shadow;
}

.mini-card,
.feature-card,
.activity-card {
  padding: 1.4rem;
}

.card-grid,
.gallery-grid,
.why-grid,
.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.service-grid,
.activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -22px;
  bottom: -28px;
  border-radius: 32px;
  background: rgba(167, 216, 255, 0.24);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  font-weight: 800;
}

.activity-card {
  min-height: 190px;
}

.color-yellow {
  background: #fff3bf;
}

.color-pink {
  background: #ffe1ec;
}

.color-blue {
  background: #dff1ff;
}

.color-teal {
  background: #dff8f2;
}

.color-cream {
  background: #fff8e9;
}

.color-lavender {
  background: #ece6ff;
}

.alt-section {
  position: relative;
}

.section-with-bg {
  position: relative;
  isolation: isolate;
}

.section-with-bg::after {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.82)),
    url("section-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.75;
  z-index: -1;
  border-radius: 48px;
}

.alt-section::before {
  content: "";
  position: absolute;
  inset: 2rem 0;
  background: linear-gradient(180deg, rgba(255, 244, 221, 0.8), rgba(255, 255, 255, 0.8));
  z-index: -1;
}

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

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

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 243, 0.95));
}

.gallery-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  font-size: 1.1rem;
}

.scene-play-area::before,
.scene-learning::before,
.scene-creative::before,
.scene-happy-kids::before {
  inset: auto auto 0 0;
  width: 100%;
  height: 42%;
  background: linear-gradient(180deg, rgba(144, 224, 208, 0.15), rgba(144, 224, 208, 0.4));
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

.scene-play-area::after {
  left: 24px;
  top: 42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 216, 107, 0.95) 0 32%, transparent 33%),
    radial-gradient(circle at 30% 72%, rgba(255, 173, 200, 0.85) 0 16%, transparent 17%),
    radial-gradient(circle at 72% 32%, rgba(167, 216, 255, 0.9) 0 18%, transparent 19%);
}

.scene-learning::after {
  right: 22px;
  top: 32px;
  width: 130px;
  height: 90px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(167, 216, 255, 0.92), rgba(255, 255, 255, 0.95));
  box-shadow: inset 0 -18px 0 rgba(255, 216, 107, 0.45);
}

.scene-creative::after {
  left: 28px;
  top: 28px;
  width: 120px;
  height: 120px;
  border-radius: 38% 62% 55% 45%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 173, 200, 0.95), transparent 28%),
    radial-gradient(circle at 72% 38%, rgba(255, 216, 107, 0.95), transparent 24%),
    radial-gradient(circle at 54% 72%, rgba(144, 224, 208, 0.95), transparent 24%),
    #ffffff;
}

.scene-happy-kids::after {
  right: 18px;
  top: 38px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 173, 200, 0.85) 0 18%, transparent 19%),
    radial-gradient(circle at 68% 42%, rgba(167, 216, 255, 0.9) 0 18%, transparent 19%),
    radial-gradient(circle at 51% 68%, rgba(255, 216, 107, 0.92) 0 18%, transparent 19%),
    rgba(255, 255, 255, 0.82);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 2rem;
}

.contact-copy {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff5d8, #ffffff);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-item h3,
.site-footer h4 {
  margin-bottom: 0.45rem;
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  font-size: 1.2rem;
}

.contact-item a {
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid rgba(39, 66, 93, 0.12);
  border-radius: 16px;
  background: #fffdfd;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(229, 112, 143, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 173, 200, 0.22);
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  color: #2d8d71;
  font-weight: 800;
}

.site-footer {
  position: relative;
  padding: 3rem 0 3.4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 107, 0.18), transparent 18%),
    radial-gradient(circle at bottom right, rgba(144, 224, 208, 0.16), transparent 20%),
    linear-gradient(180deg, #fff2d9 0%, #fff8ee 45%, #ffffff 100%);
  border-top: 1px solid rgba(39, 66, 93, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: start;
  gap: 1.4rem;
}

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

.footer-brand-block {
  max-width: 420px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  color: #d9658b;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(86, 110, 136, 0.1);
}

.site-footer h3 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.02;
  color: var(--ink);
}

.site-footer h4 {
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 1rem;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ffbf60, #ff8bb1);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 139, 177, 0.2);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-chip:hover,
.footer-chip:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(255, 139, 177, 0.26);
}

.footer-chip-soft {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid rgba(39, 66, 93, 0.1);
  box-shadow: var(--shadow);
}

.footer-links a,
.footer-phone {
  font-weight: 800;
  color: var(--ink);
}

.footer-links a {
  position: relative;
  padding: 0.35rem 0 0.35rem 1rem;
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(144, 224, 208, 0.16);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d9658b;
  transform: translateX(6px);
}

.footer-contact-card {
  display: grid;
  gap: 0.9rem;
}

.footer-phone {
  font-size: 1.35rem;
}

.service-grid .reveal-item:nth-child(2),
.activity-grid .reveal-item:nth-child(2),
.why-grid .reveal-item:nth-child(2),
.gallery-grid .reveal-item:nth-child(2),
.about-highlights .reveal-item:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid .reveal-item:nth-child(3),
.activity-grid .reveal-item:nth-child(3),
.why-grid .reveal-item:nth-child(3),
.gallery-grid .reveal-item:nth-child(3),
.about-highlights .reveal-item:nth-child(3) {
  transition-delay: 180ms;
}

.service-grid .reveal-item:nth-child(4),
.activity-grid .reveal-item:nth-child(4),
.why-grid .reveal-item:nth-child(4),
.gallery-grid .reveal-item:nth-child(4) {
  transition-delay: 270ms;
}

.service-grid .reveal-item:nth-child(5),
.activity-grid .reveal-item:nth-child(5),
.why-grid .reveal-item:nth-child(5) {
  transition-delay: 360ms;
}

.service-grid .reveal-item:nth-child(6),
.activity-grid .reveal-item:nth-child(6) {
  transition-delay: 450ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-panel,
  .contact-grid,
  .footer-grid,
  .why-grid,
  .gallery-grid,
  .promo-banner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    min-height: 640px;
  }

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

  .section-with-bg::after {
    inset: 0.5rem 0;
    border-radius: 36px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .header-actions {
    margin-left: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .about-panel,
  .contact-grid,
  .footer-grid,
  .why-grid,
  .gallery-grid,
  .promo-banner,
  .service-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .info-section,
  .contact-section {
    padding: 4.5rem 0;
  }

  .hero-section {
    min-height: 620px;
    background-position: 62% center;
  }

  .promo-banner-section {
    padding-bottom: 1rem;
  }

  .reveal-section,
  .reveal-item {
    transform: translateY(24px);
  }

  .footer-brand-block {
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .nav-wrap {
    min-height: var(--header-height);
  }

  .header-actions {
    gap: 0.55rem;
  }

  .language-switcher {
    padding: 0.25rem;
  }

  .lang-button {
    min-width: 46px;
    height: 36px;
  }

  .brand-badge {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-banner,
  .promo-banner {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .hero-section {
    min-height: 560px;
    background-position: 68% center;
  }

  .hero-grid {
    min-height: 560px;
  }

  .promo-banner {
    min-height: 340px;
  }

  .contact-copy,
  .contact-form,
  .about-panel {
    padding: 1.35rem;
  }

  .section-with-bg::after {
    border-radius: 28px;
  }
}
