:root {
  --navy: #2d536d;
  --navy-deep: #203f54;
  --sage: #849b78;
  --sage-light: #cbd6c3;
  --aqua: #f0fdfb;
  --aqua-deep: #dcefee;
  --blush: #f7eee8;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #2d4655;
  --muted: #687b85;
  --line: #d9e3e1;
  --shadow: 0 24px 70px rgba(34, 73, 98, .13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 42px)); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 1000; top: -80px; left: 16px;
  background: var(--navy-deep); color: white; padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 253, 251, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 83, 109, .09);
}
.nav-wrap {
  min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 34px;
}
.brand { width: 285px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  text-decoration: none; color: var(--navy-deep); font-size: .9rem; font-weight: 750;
}
.primary-nav a:hover { color: var(--sage); }
.primary-nav .nav-cta {
  color: white; background: var(--navy); padding: 12px 18px; border-radius: 999px;
}
.primary-nav .nav-cta:hover { color: white; background: var(--navy-deep); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--navy); }

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(110deg, var(--aqua) 0 63%, var(--blush) 63% 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 78px; align-items: center;
  padding: 72px 0 82px;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -160px; top: -180px; border: 1px solid rgba(45,83,109,.14); }
.hero-orb-two { width: 245px; height: 245px; left: -100px; bottom: -120px; background: rgba(132,155,120,.11); }
.eyebrow {
  margin: 0 0 15px; color: var(--sage); font-size: .72rem; font-weight: 850;
  letter-spacing: .17em; text-transform: uppercase;
}
.eyebrow.light { color: #d7e3d1; }
h1, h2, h3 {
  margin-top: 0; color: var(--navy-deep); font-family: Georgia, "Times New Roman", serif;
  font-weight: 500; line-height: 1.08;
}
h1 { font-size: clamp(3.5rem, 6.5vw, 6.35rem); letter-spacing: -.047em; margin-bottom: 26px; }
h1 span { color: var(--sage); }
h2 { font-size: clamp(2.45rem, 4.2vw, 4.15rem); letter-spacing: -.038em; margin-bottom: 22px; }
h3 { font-size: 1.55rem; }
.hero-lede { max-width: 650px; color: #496271; font-size: 1.15rem; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 23px; border-radius: 999px; text-decoration: none; font-size: .9rem; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); box-shadow: 0 13px 30px rgba(45,83,109,.2); }
.button-primary:hover { background: var(--navy-deep); }
.button-secondary { color: var(--navy); border: 1px solid rgba(45,83,109,.28); background: rgba(255,255,255,.45); }
.trust-row { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--navy); font-size: .78rem; font-weight: 760; }
.trust-row span::before { content: "•"; color: var(--sage); margin-right: 8px; }

.hero-photo-wrap { position: relative; min-height: 520px; display: grid; place-items: center; }
.photo-backdrop {
  position: absolute; width: 390px; height: 475px; border-radius: 190px 190px 32px 32px;
  background: var(--sage-light); transform: rotate(5deg) translate(18px, 10px);
}
.photo-frame {
  position: relative; z-index: 2; width: 355px; height: 445px; overflow: hidden;
  border-radius: 175px 175px 30px 30px; border: 7px solid rgba(255,255,255,.75); box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-nameplate {
  position: absolute; z-index: 4; right: 4px; bottom: 18px;
  min-width: 220px; background: var(--navy); color: white; padding: 15px 22px; border-radius: 15px; box-shadow: var(--shadow);
}
.hero-nameplate strong, .hero-nameplate span { display: block; }
.hero-nameplate strong { font-family: Georgia, serif; font-size: 1.13rem; }
.hero-nameplate span { opacity: .8; font-size: .78rem; margin-top: 2px; }
.speech-mark { position: absolute; z-index: 3; left: 15px; top: 60px; display: flex; align-items: end; gap: 7px; transform: rotate(-12deg); }
.speech-mark i { display: block; width: 8px; border-radius: 10px; background: var(--sage); }
.speech-mark i:nth-child(1) { height: 26px; }
.speech-mark i:nth-child(2) { height: 39px; }
.speech-mark i:nth-child(3) { height: 54px; }

.intro-band { padding: 90px 0; background: white; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 88px; align-items: start; }
.intro-grid h2 { font-size: 2.75rem; margin-bottom: 0; }
.intro-grid > p { margin: 34px 0 0; color: var(--muted); font-size: 1.03rem; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 315px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 25px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-tag {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 30px;
  border-radius: 50%; background: var(--aqua); color: var(--navy); font-size: .72rem; font-weight: 850; letter-spacing: .08em;
}
.service-card p { margin-bottom: 0; color: var(--muted); }
.featured-card { background: var(--aqua); border-color: transparent; }
.featured-card .service-tag { background: white; }
.contact-card-mini { background: var(--blush); border-color: transparent; }
.contact-card-mini .mini-label { color: var(--sage); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-card-mini a { display: inline-flex; gap: 10px; margin-top: 14px; color: var(--navy); font-weight: 800; text-decoration: none; }

.ages { background: var(--blush); }
.ages-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.ages-copy { position: sticky; top: 145px; }
.ages-copy > p:last-of-type { color: var(--muted); }
.text-link { display: inline-flex; gap: 9px; color: var(--navy); text-decoration: none; font-size: .86rem; font-weight: 800; margin-top: 14px; }
.age-list { border-top: 1px solid rgba(45,83,109,.19); }
.age-list article { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(45,83,109,.19); }
.age-list article > span { color: var(--sage); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.age-list h3 { margin: 0 0 8px; font-size: 1.45rem; }
.age-list p { margin: 0; color: var(--muted); }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.about-mark {
  position: relative; min-height: 470px; display: grid; place-items: center; overflow: hidden;
  border-radius: 46% 54% 43% 57% / 55% 39% 61% 45%; background: var(--aqua); border: 1px solid var(--line);
}
.about-mark::before { content: ""; position: absolute; inset: 35px; border: 1px solid rgba(45,83,109,.14); border-radius: inherit; }
.about-mark img { width: 78%; position: relative; z-index: 2; }
.about-copy .lead { color: var(--navy-deep); font-size: 1.16rem; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.credential-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 35px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credential-row div { padding: 20px 15px 20px 0; }
.credential-row strong, .credential-row span { display: block; }
.credential-row strong { color: var(--navy); }
.credential-row span { color: var(--muted); font-size: .78rem; margin-top: 3px; }

.values { background: var(--navy-deep); padding: 105px 0; }
.values-heading { max-width: 800px; margin-bottom: 56px; }
.values-heading h2 { color: white; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.value-grid article { padding: 34px 28px 8px 0; border-right: 1px solid rgba(255,255,255,.15); }
.value-grid article + article { padding-left: 28px; }
.value-grid article:last-child { border-right: 0; }
.value-grid span { color: #c7d6bf; font-size: .7rem; font-weight: 850; letter-spacing: .15em; }
.value-grid h3 { color: white; margin: 22px 0 12px; }
.value-grid p { color: rgba(255,255,255,.67); font-size: .93rem; }

.iep-callout { background: var(--aqua); }
.iep-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.iep-grid > div:last-child > p { color: var(--muted); margin-top: 2px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 32px; }
.check-list li { position: relative; padding: 10px 0 10px 34px; color: var(--navy-deep); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--sage); font-size: .72rem; font-weight: 900; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; position: relative; padding: 24px 46px 24px 0; color: var(--navy-deep); font-family: Georgia, serif; font-size: 1.23rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--sage); font-family: sans-serif; font-size: 1.7rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--muted); margin: -4px 45px 24px 0; }

.contact { padding: 105px 0; background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 95px; align-items: center; }
.contact h2 { color: white; }
.contact-copy > p:last-child { color: rgba(255,255,255,.73); max-width: 650px; }
.contact-panel { background: white; color: var(--ink); padding: 38px; border-radius: 26px; box-shadow: var(--shadow); }
.contact-panel > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-panel > div:first-child { padding-top: 0; }
.contact-panel span { display: block; color: var(--sage); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; }
.contact-panel a { color: var(--navy); font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.contact-panel p { margin: 0; }
.button-light { width: 100%; margin-top: 26px; background: var(--navy); color: white !important; }

footer { padding: 42px 0; background: var(--paper); }
.footer-wrap { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; }
.footer-wrap > img { width: 190px; }
.footer-links { display: flex; flex-direction: column; font-size: .78rem; }
.footer-links a { color: var(--navy); text-decoration: none; }
.footer-wrap > p { margin: 0; color: var(--muted); font-size: .76rem; }

@media (max-width: 930px) {
  .container { width: min(760px, calc(100% - 32px)); }
  .nav-wrap { min-height: 80px; }
  .brand { width: 230px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none; position: absolute; top: 74px; left: 16px; right: 16px; flex-direction: column; align-items: stretch;
    gap: 8px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px; }
  .primary-nav .nav-cta { text-align: center; }
  .hero { background: linear-gradient(165deg, var(--aqua) 0 72%, var(--blush) 72% 100%); }
  .hero-grid, .intro-grid, .section-heading, .ages-grid, .about-grid, .iep-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-grid { min-height: auto; padding: 70px 0 82px; }
  .hero-photo-wrap { min-height: 500px; }
  .intro-band, .section, .values, .contact { padding: 80px 0; }
  .section-heading { gap: 13px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .ages-copy { position: static; }
  .about-grid { gap: 65px; }
  .about-mark { min-height: 380px; }
  .about-mark img { width: 70%; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(3), .value-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
  .footer-wrap { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 26px); }
  .brand { width: 205px; }
  h1 { font-size: clamp(3.15rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-photo-wrap { min-height: 420px; }
  .photo-backdrop { width: 300px; height: 385px; }
  .photo-frame { width: 280px; height: 365px; }
  .hero-nameplate { right: 0; bottom: 8px; min-width: 205px; }
  .speech-mark { left: 3px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .credential-row { grid-template-columns: 1fr; }
  .credential-row div + div { border-top: 1px solid var(--line); }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article, .value-grid article + article { padding: 28px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .value-grid article:first-child { border-top: 0; }
  .about-mark { min-height: 300px; }
  .about-mark img { width: 82%; }
  .faq-list summary { font-size: 1.12rem; }
  .footer-wrap > img { width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
