:root {
  --pink: #cc0066;
  --blue: #3399cc;
  --blue-dark: #267aa3;
  --text: #24323d;
  --muted: #5f6f7c;
  --bg-soft: #f8fbfd;
  --cream: #f4f0e5;
  --border: #dbe7ef;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 50, 77, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow {
  width: min(900px, calc(100% - 32px));
}

h1, h2, h3, .btn, .tab-button, .footer-phone, .phone-link {
  font-family: 'Baloo 2', cursive;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--blue);
}
h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
.center { text-align: center; }
.section-title-light { color: var(--white); }
.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}
.section-subtitle.light { color: rgba(255,255,255,0.86); }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow.light { color: rgba(255,255,255,0.76); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-light {
  background: var(--white);
  color: var(--pink);
}
.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}
.btn-small {
  min-height: 44px;
  padding: 10px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf2f6;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.25rem;
  white-space: nowrap;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.1rem;
}
.desktop-only { display: flex; }
.mobile-only { display: none; }

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #ff9248 0%, var(--pink) 52%, #8d117e 100%);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 25%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.16), transparent 20%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 88px;
}
.hero-text {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 620px;
  color: rgba(255,255,255,0.92);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-visuals {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
  align-items: end;
}
.coming-soon-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 3px dashed rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.coming-soon-card h3 { margin-bottom: 8px; }
.hero-card-large {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mascot-card {
  min-height: 330px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.mascot-card img,
.about-mascot-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.section { padding: 84px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.about-visual-column {
  position: relative;
}
.experience-badge {
  position: absolute;
  top: 28px;
  left: 6px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.experience-text {
  position: absolute;
  top: 60px;
  left: 120px;
  color: var(--blue);
  font-family: 'Baloo 2', cursive;
  font-size: 1.7rem;
  font-weight: 800;
}
.about-visual-stack {
  padding-top: 120px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  align-items: end;
}
.about-card-small {
  min-height: 280px;
  background: linear-gradient(145deg, #edf8fd, #fff6fb);
  border-color: #f4bfd8;
  color: var(--text);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-card-small .eyebrow { color: var(--muted); }
.about-mascot-wrap {
  min-height: 380px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.about-content-column p {
  font-size: 1.05rem;
  color: var(--muted);
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 24px;
}
.tab-button {
  border: 1px solid #d8e1e8;
  background: var(--white);
  color: #697888;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 1.08rem;
  font-weight: 700;
}
.tab-button.active {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.trust-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.trust-points li {
  position: relative;
  padding-left: 42px;
  font-weight: 700;
  color: var(--blue);
}
.trust-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
}

.offer-section {
  background: var(--blue);
  color: var(--white);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.offer-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offer-image-placeholder {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(145deg, #edf8fd, #fff6fb);
  color: #64748b;
  border-bottom: 1px solid #ecf1f5;
}
.offer-image-placeholder p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 700;
}
.offer-content {
  padding: 28px;
}
.offer-content h3 {
  text-align: center;
  color: var(--pink);
}
.offer-time {
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 18px;
}

.admission-section {
  background: var(--cream);
}
.form-card {
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid #e6e1d2;
  box-shadow: var(--shadow);
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #445463;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #cfd9e1;
  background: var(--white);
  padding: 14px 16px;
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(51,153,204,0.2);
  border-color: var(--blue);
}
.field-full,
.field-full-mobile {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.form-status {
  margin: 14px 2px 0;
  font-size: 0.95rem;
  color: #486172;
}
.form-status.success { color: #0f8d4a; }
.form-status.error { color: #b42318; }

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid #e3ebf1;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 50, 77, 0.04);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 700;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.gallery-section {
  background: var(--bg-soft);
}
.gallery-shell {
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid #e3ebf1;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.gallery-main-card {
  min-height: 380px;
  background: linear-gradient(145deg, #edf8fd, #fff6fb);
  border-color: #f4bfd8;
  color: var(--text);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-side-panel h3 {
  color: var(--blue);
}
.gallery-counter {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-nav {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}
.gallery-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #dbe7ef;
  background: var(--white);
  color: var(--text);
  font-size: 1.1rem;
}
.gallery-nav-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-thumb {
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid #dde7ef;
  padding: 12px;
  background: var(--white);
  text-align: left;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}
.gallery-thumb.active {
  border-color: var(--blue);
  background: #edf8fd;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 72px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
}
.footer-brand-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 22px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
}
.footer-brand-box img {
  height: 56px;
  width: auto;
}
.footer-brand-box p {
  color: #6a7785;
  margin: 0;
}
.footer-copy {
  margin: 26px 0 18px;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}
.footer-phone {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer-phone a,
.footer-details a,
.social-links a {
  color: var(--white);
  text-decoration: none;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
}
.map-wrap {
  margin-top: 12px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  min-height: 320px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
.footer-details {
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
}
.footer-details strong { color: var(--white); }

.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  font-size: 1.45rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .gallery-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visuals {
    grid-template-columns: 1fr;
  }

  .about-visual-stack {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main-card { min-height: 300px; }
}

@media (max-width: 760px) {
  .desktop-only { display: none; }
  .mobile-only { display: flex; }

  .brand img { height: 52px; }
  .section { padding: 64px 0; }
  .hero-grid { padding: 56px 0 72px; }

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

  .field-full-mobile {
    grid-column: auto;
  }

  .form-card,
  .gallery-shell,
  .offer-content,
  .coming-soon-card {
    padding: 20px;
  }

  .about-visual-stack {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    width: 82px;
    height: 82px;
    font-size: 1.7rem;
  }

  .experience-text {
    position: static;
    margin: 0 0 16px 0;
    padding-top: 24px;
    font-size: 1.4rem;
  }

  .about-visual-stack {
    padding-top: 100px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
  .phone-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: inline-block;
    overflow: hidden;
  }
  .phone-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  }
  .field select {
    height: 56px;
  }
  .footer-map-link {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  }
  .footer-email-link {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  }
  .hero-mascot,
  .about-mascot {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}
