:root {
  --bg-cream: #fff8f2;
  --bg-warm: #fff3eb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --primary: #e85d75;
  --primary-dark: #c9445c;
  --primary-soft: rgba(232, 93, 117, 0.12);
  --mint: #7ecfb8;
  --mint-soft: #d4f3ea;
  --lavender: #c4b0e8;
  --lavender-soft: #ebe4f8;
  --peach: #ffb88c;
  --peach-soft: #ffe8d6;
  --sky: #8ecae6;
  --accent: #f5b84a;
  --text: #3d2f2a;
  --muted: #6b5a52;
  --border: rgba(61, 47, 42, 0.08);
  --shadow: 0 18px 50px rgba(61, 47, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(232, 93, 117, 0.12);
  font-family: 'Nunito', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(165deg, var(--bg-cream) 0%, var(--bg-warm) 45%, #fff0e8 100%);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

/* Wix-style geometric background — always visible behind content */
.geometric-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.geometric-bg__svg {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
}

.site-header,
main,
.site-footer,
.mobile-menu-panel {
  position: relative;
  z-index: 1;
}

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

button,
a {
  font: inherit;
}

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

.panel {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 242, 0.62);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: clamp(56px, 9vw, 80px);
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a,
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.button {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 30px rgba(232, 93, 117, 0.28);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: var(--surface-solid);
  color: var(--primary-dark);
  border: 2px solid rgba(232, 93, 117, 0.25);
  box-shadow: var(--shadow);
}

.button-white {
  background: #ffffff;
  color: var(--primary-dark);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 24px rgba(61, 47, 42, 0.1);
}

.mobile-menu-toggle {
  display: none;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  color: var(--text);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy.panel {
  padding: 2.2rem 2.4rem;
  border-radius: 32px;
}

.hero-copy .eyebrow,
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.92) !important;
}

h1,
h2,
h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  margin: 0.85rem 0 1.1rem;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  color: var(--text);
}

.hero-copy p {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stats div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--mint-soft);
  border: 1px solid rgba(126, 207, 184, 0.35);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.hero-stats span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 0.85rem;
}

.visual-card {
  width: 100%;
  min-height: 11rem;
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  object-position: center center;
}

.visual-card-top {
  transform: rotate(-2deg);
}

.visual-card-main {
  min-height: 15rem;
}

.visual-card-main img {
  min-height: 15rem;
}

.visual-card-bottom {
  transform: rotate(-1deg);
}

.section {
  padding: 3.5rem 0;
}

.feature-band {
  padding: 2rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem 1.6rem;
  border-radius: 28px;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  margin-top: 0;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.about-grid,
.program-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.about-image {
  display: grid;
  gap: 1rem;
}

.photo {
  min-height: 14rem;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  object-position: center center;
}

.photo-large {
  min-height: 14rem;
}

.photo-small {
  min-height: 10rem;
  max-width: 78%;
  margin-left: auto;
}

.photo-small img {
  min-height: 10rem;
}

.about-copy.panel {
  padding: 2.2rem 2.4rem;
  border-radius: 32px;
}

.about-copy h2 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
}

.about-copy p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.85;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.about-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.about-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.5rem 0;
}

.section-header p {
  color: var(--muted);
  line-height: 1.75;
}

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

/* Campus gallery */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.campus-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.campus-media {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff8f2 0%, #f5ebe3 100%);
  padding: 0.5rem;
}

.campus-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.campus-card figcaption {
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.program-card {
  padding: 2rem 1.75rem;
  border-radius: 28px;
}

.program-card--mint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(212, 243, 234, 0.65));
}

.program-card--lavender {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 228, 248, 0.7));
}

.program-card--peach {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 232, 214, 0.75));
}

.program-card h3 {
  margin-top: 0;
}

.program-card p {
  color: var(--muted);
  line-height: 1.75;
}

/* Activities carousel */
.activity-carousel {
  position: relative;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 32px;
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f2 0%, #f5ebe3 100%);
  border: 1px solid var(--border);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.carousel-media {
  width: 100%;
  height: min(520px, 68vh);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: linear-gradient(180deg, #fff8f2 0%, #f5ebe3 100%);
}

.carousel-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

.carousel-slide figcaption {
  padding: 1rem 1.25rem 1.15rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--surface-solid);
  color: var(--primary-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 2;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--primary);
  color: #fff;
}

.carousel-btn--prev {
  left: -0.5rem;
}

.carousel-btn--next {
  right: -0.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: rgba(232, 93, 117, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

.carousel-dot:hover {
  background: var(--primary-dark);
}

.tag {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.testimonial-card {
  padding: 2rem 1.85rem;
  border-radius: 28px;
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
  font-style: italic;
}

.testimonial-card strong {
  color: var(--primary-dark);
  font-family: 'Fredoka', sans-serif;
}

.cta-banner {
  padding: 1rem 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 2.75rem;
  border-radius: 32px;
  background: linear-gradient(125deg, var(--primary) 0%, #f48aa0 55%, var(--peach) 100%) !important;
  border: none !important;
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-banner-inner h2 {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

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

.contact-info.panel {
  padding: 2.2rem 2.4rem;
  border-radius: 32px;
}

.contact-info h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
}

.contact-info > p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.contact-details strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'Fredoka', sans-serif;
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(61, 47, 42, 0.08);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 248, 242, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232, 93, 117, 0.45);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 248, 242, 0.65);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(61, 47, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-nav {
  width: min(420px, 100%);
  border-radius: 28px;
  padding: 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.mobile-nav a {
  display: block;
  padding: 0.95rem 1.15rem;
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: var(--mint-soft);
}

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

  .feature-grid,
  .campus-grid,
  .program-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-small {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .carousel-btn--prev {
    left: 0.35rem;
  }

  .carousel-btn--next {
    right: 0.35rem;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .carousel-media {
    height: min(440px, 58vh);
    min-height: 280px;
    padding: 0.5rem;
  }

  .campus-media {
    height: 220px;
  }

  .nav-links,
  .header-inner > .button.button-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy.panel,
  .about-copy.panel,
  .contact-info.panel {
    padding: 1.6rem 1.5rem;
  }

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

  .section {
    padding: 2.75rem 0;
  }

  .cta-banner-inner {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  #whatsappBtn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#whatsappBtn:hover {
    background-color: #1ebe57;
}
}
