:root {
  --navy: #263760;
  --navy-2: #1b2d55;
  --teal: #2f9da4;
  --dark-teal: #117982;
  --cyan: #2db7c9;
  --mint: #e8f3f2;
  --pale-blue: #eef5f8;
  --offwhite: #fbfaf7;
  --text: #33425e;
  --muted: #64728a;
  --line: #cbd9df;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(38,55,96,.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: var(--navy); color: var(--white); padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203,217,223,.75);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { color: var(--navy); font-size: 1.02rem; }
.brand small { color: var(--dark-teal); }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--navy); }
.main-nav a:hover { color: var(--dark-teal); }
.menu-toggle { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--dark-teal), var(--teal));
  color: var(--white); text-decoration: none; font-weight: 700;
  border: 0; cursor: pointer; box-shadow: 0 12px 26px rgba(17,121,130,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(17,121,130,.27); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: .9rem !important; color: var(--white) !important; }
.button-ghost {
  background: rgba(255,255,255,.72); color: var(--navy); border: 1px solid rgba(38,55,96,.16); box-shadow: none;
}
.button-ghost-dark {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.42); box-shadow: none;
}
.button-full { width: 100%; }

.hero {
  position: relative; overflow: hidden;
  padding: 92px 0 118px;
  background:
    radial-gradient(circle at 8% 15%, rgba(45,183,201,.16), transparent 26%),
    radial-gradient(circle at 92% 25%, rgba(47,157,164,.18), transparent 28%),
    linear-gradient(180deg, var(--offwhite) 0%, #f7fbfb 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px; color: var(--dark-teal); text-transform: uppercase;
  letter-spacing: .12em; font-weight: 800; font-size: .78rem;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.045em; margin-bottom: 24px; max-width: 850px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); letter-spacing: -.03em; }
h3 { font-size: 1.25rem; }
.hero-lead { max-width: 710px; font-size: 1.18rem; color: var(--muted); }
.credentials { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.credentials span {
  background: var(--pale-blue); color: var(--navy); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 13px; font-size: .88rem; font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  color: var(--white); border-radius: 34px; padding: 42px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(45,183,201,.14); right: -120px; bottom: -130px;
}
.hero-card img { width: 116px; margin-bottom: 24px; filter: drop-shadow(0 10px 16px rgba(0,0,0,.18)); }
.hero-card .card-label { color: #cfecef; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .75rem; }
.hero-card h2 { color: var(--white); font-size: clamp(2rem, 3.2vw, 3.2rem); }
.hero-card h2 span { color: var(--cyan); }
.hero-card p:last-child { color: #dfe8f4; }
.wave {
  position: absolute; left: -5%; right: -5%; bottom: -62px; height: 132px;
  background: linear-gradient(120deg, rgba(45,183,201,.92), rgba(47,157,164,.68));
  border-radius: 50% 52% 0 0 / 72% 68% 0 0;
  transform: rotate(-2deg);
}

.section { padding: 96px 0; }
.section-soft { background: var(--pale-blue); }
.section-navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading > p:last-child, .intro { color: var(--muted); font-size: 1.06rem; }
.section-heading-light h2, .section-heading-light p { color: var(--white); }
.section-heading-light .eyebrow { color: #8fe0e7; }

.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; background: var(--white); border: 1px solid rgba(203,217,223,.9);
  border-radius: var(--radius); padding: 32px; min-height: 260px;
  box-shadow: 0 18px 44px rgba(38,55,96,.08);
}
.feature-card-primary { background: linear-gradient(145deg, var(--dark-teal), var(--teal)); }
.feature-card-primary h3, .feature-card-primary p, .feature-card-primary .feature-index { color: var(--white); }
.feature-index { font-size: .8rem; font-weight: 800; color: var(--teal); letter-spacing: .1em; }
.feature-card p { color: var(--muted); }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-grid span {
  padding: 11px 15px; border-radius: 999px; background: var(--white);
  border: 1px solid var(--line); color: var(--navy); font-weight: 700;
  box-shadow: 0 8px 20px rgba(38,55,96,.06);
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-grid article {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px; padding: 28px;
}
.service-grid h3 { color: var(--white); }
.service-grid p { color: #d7e2ef; }
.service-icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan)); color: var(--white);
  font-size: 1.4rem; margin-bottom: 18px;
}

.assessment-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: start; }
.assessment-list { display: grid; gap: 2px; }
.assessment-list div {
  display: grid; grid-template-columns: .9fr 1.6fr; gap: 20px;
  padding: 21px 0; border-bottom: 1px solid var(--line);
}
.assessment-list strong { color: var(--navy); }
.assessment-list span { color: var(--muted); }
.note-card {
  background: var(--mint); border: 1px solid #c7e3e1; border-radius: var(--radius);
  padding: 30px; position: sticky; top: 108px;
}
.note-card ul { padding-left: 20px; }
.small-note { font-size: .88rem; color: var(--muted); margin-top: 24px; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 600; color: var(--navy); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; border-radius: 50%;
  display: grid; place-items: center; background: var(--teal); color: var(--white); font-size: .8rem;
}

.family-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 68px; align-items: center; }
.family-visual {
  min-height: 380px; border-radius: 46% 54% 57% 43% / 48% 38% 62% 52%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.45), transparent 22%),
    linear-gradient(145deg, var(--cyan), var(--dark-teal));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.family-circle {
  width: 190px; height: 190px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,.65); color: var(--white);
  font-family: "Playfair Display", serif; font-style: italic; font-size: 2rem;
}

.booking-section { background: linear-gradient(135deg, var(--navy), var(--dark-teal)); color: var(--white); }
.booking-section h2 { color: var(--white); }
.booking-section .eyebrow { color: #9be7ec; }
.booking-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.privacy-note { margin-top: 18px; color: #d8e6ee; font-size: .88rem; }
.booking-card { background: var(--white); color: var(--text); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.booking-embed { margin-top: 18px; border-radius: 16px; overflow: hidden; }
.booking-embed iframe { width: 100%; min-height: 630px; border: 0; display: block; }

.contact-section { background: var(--offwhite); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
address { display: grid; gap: 14px; font-style: normal; }
address a, address span {
  display: block; text-decoration: none; background: var(--white);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
}
address a:hover { border-color: var(--teal); }

.site-footer { background: var(--navy); color: #dce6f0; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: #dce6f0; text-decoration: none; font-size: .9rem; }

code { background: var(--pale-blue); color: var(--navy); border-radius: 6px; padding: 2px 6px; }

@media (max-width: 980px) {
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: 70px;
    display: none; flex-direction: column; align-items: stretch;
    background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .menu-toggle {
    display: inline-flex; border: 1px solid var(--line); background: var(--white);
    color: var(--navy); border-radius: 999px; padding: 9px 14px; font-weight: 700;
  }
  .hero-grid, .two-column, .assessment-layout, .family-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .highlight-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .note-card { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .highlight-grid, .service-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 30px; border-radius: 26px; }
  .assessment-list div { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2.65rem; }
}


.support-box {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--mint), var(--pale-blue));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.support-box h3 {
  margin-bottom: 10px;
}
.support-box p {
  margin-bottom: 0;
  color: var(--muted);
}
.contact-primary {
  background: linear-gradient(135deg, var(--dark-teal), var(--teal)) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 28px rgba(17,121,130,.18);
}
.contact-primary strong {
  color: var(--white);
}


.booking-card .card-label {
  margin: 0 0 6px;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .75rem;
}
.booking-choice-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.booking-choice {
  background: var(--pale-blue);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.booking-choice h4 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
}
.booking-choice p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .94rem;
}
.booking-duration {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--dark-teal);
  font-size: .78rem;
  font-weight: 800;
}
.booking-platform-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
