:root {
  --pink: #ea5c93;
  --coral: #ef4c63;
  --orange: #eea64d;
  --yellow: #f3c94e;
  --green: #56b26f;
  --teal: #3db7a0;
  --blue: #3d90cf;
  --ink: #2f3341;
  --paper: #fffdf8;
  --soft: #f5f7fb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 9;
  background: #fff;
  border-bottom: 3px solid var(--yellow);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem 0;
}
.brand { text-decoration: none; display: flex; align-items: center; }
.brand-logo {
  display: block;
  width: min(300px, 62vw);
  max-height: 86px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.hero-logo {
  width: min(480px, 92%);
  height: auto;
  display: block;
  margin: 0 0 .8rem;
}
nav a { text-decoration: none; color: var(--ink); margin-left: .9rem; font-weight: 700; }
nav a:hover { color: var(--green); }

.hero {
  background: linear-gradient(180deg,#fff, #fff 40%, #eef7f3);
  padding: 4rem 0 3rem;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: center; }
.eyebrow { font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; }
h1,h2,h3 { font-family: "Baloo 2", cursive; margin: .2rem 0 .6rem; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); color: var(--ink); }
.lead { font-size: 1.1rem; max-width: 62ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }
.btn {
  padding: .78rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  border: 0;
  cursor: pointer;
}
.btn.primary { background: var(--coral); color: #fff; }
.btn.ghost { border: 2px solid var(--teal); color: var(--teal); }
.hero-card {
  background: #fff; border: 2px dashed var(--green); border-radius: 18px;
  padding: 1rem 1.1rem; box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.hero-card ul { margin: .5rem 0 .4rem 1rem; }
.small { color: #616673; font-size: .94rem; }

.section { padding: 3rem 0; }
.section.alt { background: var(--soft); }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.card {
  background: #fff; border-radius: 14px; padding: 1rem;
  border: 1px solid #e9edf7;
}
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; }
.checklist { padding-left: 1.2rem; }
.info-box {
  background: linear-gradient(160deg,#fef3d2,#fce8ef);
  border-radius: 14px; padding: 1rem;
}
.contact { text-align: center; }
.contact a { color: var(--blue); font-weight: 700; }

.interest-form {
  width: min(700px, 100%);
  margin: 1rem auto 1.25rem;
  display: grid;
  gap: .7rem;
  text-align: left;
}
.interest-form input,
.interest-form textarea {
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 10px;
  border: 1px solid #dce4f2;
  font: inherit;
}
.interest-form textarea { min-height: 120px; resize: vertical; }
.interest-form .btn { width: fit-content; margin: .35rem auto 0; }

.site-footer { border-top: 1px solid #e3e7ef; padding: 1rem 0; text-align: center; font-size: .9rem; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid, .two-col, .cards { grid-template-columns: 1fr; }
  .brand-logo { width: min(240px, 66vw); max-height: 72px; }
  .hero-logo { width: min(360px, 95%); }
  .cta-row .btn { flex: 1 1 220px; }
  .interest-form .btn { width: 100%; }
}
