:root {
  --teal: #1eb7b9;
  --teal-dark: #098f95;
  --pink: #ef4f7b;
  --yellow: #ffbd16;
  --orange: #ff8d12;
  --green: #8cc63f;
  --purple: #8658a8;
  --navy: #102d60;
  --ink: #17213b;
  --muted: #5d6680;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(16, 45, 96, 0.14);
  --shadow: 0 20px 50px rgba(16, 45, 96, 0.16);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(30, 183, 185, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(239, 79, 123, 0.14), transparent 22rem),
    var(--paper);
  line-height: 1.55;
}

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

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

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

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.brand img {
  width: 74px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(30, 183, 185, 0.28);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.site-nav {
  position: absolute;
  inset: 76px 16px auto;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--navy);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(30, 183, 185, 0.12);
  color: var(--teal-dark);
}

.nav-cta {
  display: none;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 34px 0 42px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 189, 22, 0.22);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 3.25rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(239, 79, 123, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.teal {
  color: var(--white);
  background: var(--teal);
}

.button::after {
  content: ">";
  font-weight: 900;
}

.hero-art {
  position: relative;
}

.hero-logo {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  align-items: end;
  margin-top: 16px;
}

.photo-card,
.gallery-photo {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 38%),
    var(--photo, linear-gradient(135deg, #1eb7b9, #ef4f7b));
  box-shadow: var(--shadow);
}

.photo-card.small {
  min-height: 190px;
}

.photo-card::before,
.gallery-photo::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.55), transparent 0 10px, transparent 11px),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.36), transparent 0 7px, transparent 8px),
    linear-gradient(180deg, transparent, rgba(16, 45, 96, 0.46));
  content: "";
}

.photo-card span,
.gallery-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(16, 45, 96, 0.3);
}

.sprinkles {
  position: absolute;
  inset: -8px;
  pointer-events: none;
}

.sprinkles i {
  position: absolute;
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: var(--c);
  transform: rotate(var(--r));
}

.sprinkles i:nth-child(1) { --c: var(--pink); --r: -24deg; top: 8%; left: 6%; }
.sprinkles i:nth-child(2) { --c: var(--yellow); --r: 38deg; top: 18%; right: 10%; }
.sprinkles i:nth-child(3) { --c: var(--teal); --r: 12deg; bottom: 10%; left: 4%; }
.sprinkles i:nth-child(4) { --c: var(--purple); --r: -48deg; bottom: 22%; right: 8%; }

.section {
  padding: 66px 0;
}

.section.tint {
  background:
    linear-gradient(135deg, rgba(30, 183, 185, 0.12), rgba(255, 189, 22, 0.18)),
    var(--white);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 45, 96, 0.08);
}

.card strong,
.stat strong {
  color: var(--pink);
}

.color-bar {
  width: 64px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--yellow));
}

.program-row {
  display: grid;
  gap: 20px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--green);
  content: "";
}

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

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.banner {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 45, 96, 0.92), rgba(9, 143, 149, 0.86)),
    var(--navy);
  box-shadow: var(--shadow);
}

.banner h2 {
  color: var(--white);
}

.banner p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: 46px 0 34px;
  background:
    linear-gradient(135deg, rgba(255, 189, 22, 0.22), rgba(239, 79, 123, 0.12)),
    var(--paper);
}

.page-hero .wrap {
  display: grid;
  gap: 28px;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: 2.8rem;
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 60px;
}

.step::before {
  position: absolute;
  left: 0;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  counter-increment: step;
  content: counter(step);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gallery-photo {
  min-height: 280px;
}

.contact-layout {
  display: grid;
  gap: 22px;
}

form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fffaf3;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  gap: 18px;
}

.footer-inner img {
  width: 140px;
  padding: 8px;
  border-radius: 18px;
  background: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

@media (min-width: 760px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .lead {
    font-size: 1.24rem;
  }

  .page-hero h1 {
    font-size: 4.5rem;
  }

  .hero,
  .program-row,
  .split,
  .page-hero .wrap,
  .contact-layout {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1020px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  h1 {
    font-size: 6.7rem;
  }

  h2 {
    font-size: 4.15rem;
  }

  .lead {
    font-size: 1.35rem;
  }

  .page-hero h1 {
    font-size: 5.6rem;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .section {
    padding: 88px 0;
  }
}

@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr;
  }

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

  .photo-card.small {
    min-height: 210px;
  }

  .button {
    width: 100%;
  }
}
