:root {
  --bg: #f9f1dc;
  --bg-alt: #fff8ea;
  --surface: #fffdf7;
  --surface-soft: #fbe8c7;
  --teal: #82e0de;
  --peach: #ffbfa1;
  --pink: #e86997;
  --yellow: #ffb900;
  --navy: #153e8a;
  --ink: #333333;
  --muted: #675f55;
  --line: rgba(21, 62, 138, 0.14);
  --shadow: 0 18px 40px rgba(120, 92, 43, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(130, 224, 222, 0.28), transparent 23%),
    radial-gradient(circle at 10% 22%, rgba(255, 191, 161, 0.35), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #f9f1dc 52%, #fdf6e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(232, 105, 151, 0.08), transparent 20%);
  pointer-events: none;
}

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

.page-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.84);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 3.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.language-toggle {
  display: inline-flex;
  padding: 0.28rem;
  border: 1px solid rgba(21, 62, 138, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(21, 62, 138, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.language-pill {
  min-width: 3rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-pill.active {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 3rem 0 1.4rem;
}

.hero-copy,
.hero-visual,
.feature-panel,
.skill-card,
.method-card,
.stat-card,
.testimonial-card,
.program-card,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--pink);
}

h1,
h2,
h3,
strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-description,
.section-description {
  max-width: 60ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(21, 62, 138, 0.14);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--yellow);
  border-color: transparent;
  color: var(--navy);
}

.button-secondary {
  background: #ffffff;
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  background:
    radial-gradient(circle at 80% 16%, rgba(130, 224, 222, 0.42), transparent 16rem),
    radial-gradient(circle at 20% 85%, rgba(255, 191, 161, 0.52), transparent 14rem),
    linear-gradient(180deg, #fff8ef 0%, #fbe8c7 100%);
}

.hero-photo {
  position: absolute;
  inset: 1.2rem;
  width: calc(100% - 2.4rem);
  height: calc(100% - 2.4rem);
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-xl) - 0.5rem);
  box-shadow: inset 0 0 0 1px rgba(21, 62, 138, 0.08);
}

.hero-grid {
  position: absolute;
  inset: 1.1rem;
  border-radius: calc(var(--radius-xl) - 0.45rem);
  border: 1px dashed rgba(21, 62, 138, 0.15);
  background:
    linear-gradient(rgba(21, 62, 138, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 62, 138, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-a {
  width: 13rem;
  height: 13rem;
  top: -2rem;
  right: -2rem;
  background: radial-gradient(circle, rgba(130, 224, 222, 0.85), transparent 72%);
}

.orb-b {
  width: 12rem;
  height: 12rem;
  left: -1rem;
  bottom: -1rem;
  background: radial-gradient(circle, rgba(232, 105, 151, 0.24), transparent 70%);
}

.hero-card {
  position: absolute;
  border-radius: 1.6rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 62, 138, 0.1);
}

.hero-card-main {
  top: 14%;
  left: 8%;
  width: min(23rem, 76%);
}

.hero-card-main strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  border: 1px solid rgba(21, 62, 138, 0.1);
  box-shadow: 0 12px 22px rgba(21, 62, 138, 0.08);
}

.chip-one {
  right: 13%;
  top: 24%;
  background: var(--teal);
}

.chip-two {
  right: 19%;
  bottom: 18%;
  background: var(--peach);
}

.section {
  padding: 1.1rem 0 0.7rem;
}

.section-heading {
  margin-bottom: 1.35rem;
}

.feature-panel,
.contact-card {
  border-radius: var(--radius-xl);
  padding: 1.8rem 2rem;
  background: var(--surface);
}

.split-panel {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.2rem;
  align-items: center;
}

.feature-copy p {
  margin: 0;
}

.feature-photo-shell {
  position: relative;
  min-height: 18rem;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  overflow: hidden;
  background: rgba(255, 191, 161, 0.15);
}

.feature-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skill-grid,
.method-grid,
.stats-grid,
.testimonial-grid,
.program-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

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

.learning-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.skill-card,
.method-card,
.stat-card,
.testimonial-card,
.program-card {
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.78);
}

.skill-card:nth-child(1),
.method-card:nth-child(1),
.stat-card:nth-child(1) {
  background: rgba(130, 224, 222, 0.2);
}

.skill-card:nth-child(2),
.method-card:nth-child(2),
.stat-card:nth-child(2) {
  background: rgba(255, 191, 161, 0.24);
}

.skill-card:nth-child(3),
.method-card:nth-child(3),
.stat-card:nth-child(3) {
  background: rgba(251, 232, 199, 0.92);
}

.skill-card:nth-child(4),
.stat-card:nth-child(4) {
  background: rgba(255, 185, 0, 0.14);
}

.skill-index,
.program-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  background: rgba(21, 62, 138, 0.08);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.stat-card {
  text-align: left;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3rem);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.04rem;
}

.testimonial-card footer {
  color: var(--navy);
  font-weight: 700;
}

.program-card {
  background: var(--surface);
}

.program-card.featured {
  transform: translateY(-0.2rem);
  background: linear-gradient(180deg, rgba(255, 191, 161, 0.36), rgba(255, 255, 255, 0.96));
}

.program-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22rem;
}

.program-link:hover,
.program-link:focus-visible {
  color: var(--pink);
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(130, 224, 222, 0.2), rgba(255, 255, 255, 0.96) 32%, rgba(255, 191, 161, 0.24));
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 11rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(21, 62, 138, 0.12);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 62, 138, 0.24);
}

.social-label {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-handle {
  color: var(--navy);
  font-weight: 700;
}

.contact-section {
  padding-bottom: 2rem;
}

.site-footer {
  padding: 0.85rem 0 2.4rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1024px) {
  .hero,
  .skill-grid,
  .method-grid,
  .stats-grid,
  .testimonial-grid,
  .program-grid,
  .learning-gallery,
  .split-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: stretch;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0 0;
  }

  .hero,
  .skill-grid,
  .method-grid,
  .stats-grid,
  .testimonial-grid,
  .program-grid,
  .learning-gallery,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero-copy,
  .hero-visual,
  .feature-panel,
  .contact-card {
    padding: 1.4rem;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-card-main {
    width: calc(100% - 3rem);
  }

  .gallery-card img,
  .feature-photo-shell {
    min-height: 14rem;
  }
}
