@font-face {
  font-family: "Lato Local";
  src: url("/assets/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("/assets/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #103f4b;
  --ink-deep: #09333e;
  --teal: #07818f;
  --aqua: #11b9bc;
  --coral: #f96352;
  --yellow: #f7b940;
  --white: #ffffff;
  --mist: #f1f8f8;
  --soft: #f7faf9;
  --text: #4d6a73;
  --line: #dce9e9;
  --shadow: 0 24px 65px rgba(16, 63, 75, 0.13);
  --container: 1200px;
  --radius-lg: 34px;
  --radius-md: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Lato Local", Lato, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 10px 14px; border-radius: 8px; color: white; background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; }
h1 { max-width: 650px; margin-bottom: 26px; font-size: clamp(3.2rem, 5.8vw, 5.9rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 4.2vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: 1.34rem; }
p { color: var(--text); }
.kicker, .eyebrow { color: #006775; font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.kicker { margin-bottom: 14px; }
.kicker-light { color: white; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(16, 63, 75, .16);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { border-color: var(--teal); background: var(--teal); transform: translateY(-2px); }
.button-small { min-height: 43px; padding-inline: 19px; font-size: .84rem; }
.button-light { border-color: white; color: var(--ink); background: white; box-shadow: none; }
.button-light:hover { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 96px;
  border-bottom: 1px solid rgba(16, 63, 75, .08);
  background: rgba(255, 255, 255, .96);
  transition: box-shadow 180ms ease;
}
.site-header.scrolled { box-shadow: 0 8px 32px rgba(16, 63, 75, .08); backdrop-filter: blur(15px); }
.header-inner { display: flex; height: 96px; align-items: center; gap: 32px; }
.brand { display: block; flex: 0 0 auto; width: 140px; line-height: 0; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.desktop-nav a { position: relative; color: #365b65; font-size: .86rem; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: 7px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: white; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform 160ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 80px 0 0; z-index: 99; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; padding: 42px 24px; background: white; }
.mobile-nav[hidden] { display: none; }
.mobile-nav > a:not(.button) { font-size: 1.65rem; font-weight: 700; letter-spacing: -.03em; text-decoration: none; }
.mobile-nav .button { margin-top: 10px; }

.hero { position: relative; overflow: hidden; padding: 156px 0 0; background: white; }
.hero::before { content: ""; position: absolute; top: 80px; right: -140px; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(17, 185, 188, .13), rgba(17, 185, 188, 0) 69%); pointer-events: none; }
.hero-grid { position: relative; display: grid; min-height: 610px; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 62px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 19px; }
.eyebrow span { width: 30px; height: 3px; border-radius: 10px; background: var(--coral); }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 590px; margin-bottom: 31px; font-size: 1.16rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.secondary-link { color: var(--ink); font-size: .91rem; font-weight: 700; text-underline-offset: 6px; }
.secondary-link span { margin-left: 5px; color: var(--coral); }
.hero-media { position: relative; margin: 0; }
.hero-media::before { content: ""; position: absolute; z-index: -1; top: -18px; right: -20px; width: 43%; height: 35%; border-radius: 26px; background: var(--yellow); transform: rotate(4deg); }
.hero-media::after { content: ""; position: absolute; z-index: 2; right: -13px; bottom: 68px; width: 70px; height: 16px; border-radius: 99px; background: var(--coral); transform: rotate(-28deg); }
.hero-media > img { width: 100%; aspect-ratio: 1.16 / 1; border-radius: 32px 32px 86px 32px; box-shadow: var(--shadow); object-fit: cover; object-position: 53% center; }
.hero-media figcaption, .feature-photo figcaption { position: absolute; right: 18px; bottom: 12px; z-index: 3; margin: 0; color: rgba(255, 255, 255, .9); font-size: .63rem; text-shadow: 0 1px 4px rgba(0, 0, 0, .45); }
.photo-label { position: absolute; z-index: 4; bottom: 28px; left: -25px; display: grid; grid-template-columns: 12px 1fr; gap: 0 11px; min-width: 205px; padding: 15px 18px; border: 1px solid rgba(16, 63, 75, .08); border-radius: 15px; background: white; box-shadow: 0 15px 36px rgba(16, 63, 75, .17); }
.photo-label > span { grid-row: 1 / 3; width: 10px; height: 10px; margin-top: 6px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 5px rgba(17, 185, 188, .14); }
.photo-label strong { color: var(--ink); font-size: .84rem; }
.photo-label small { color: var(--text); font-size: .69rem; }
.facts-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts-row div { display: flex; flex-direction: column; gap: 2px; padding: 27px 35px; border-right: 1px solid var(--line); }
.facts-row div:first-child { padding-left: 0; }
.facts-row div:last-child { border: 0; }
.facts-row strong { font-size: 1.03rem; }
.facts-row span { color: var(--text); font-size: .76rem; }

.services { background: white; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { max-width: 450px; justify-self: end; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  --service-accent: #07818f;
  --service-accent-dark: #006775;
  --service-tint: #e3f6f5;
  --service-glow: rgba(7, 129, 143, .13);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: 345px;
  flex-direction: column;
  padding: 34px 36px 32px;
  border: 1px solid #dce9e9;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff 0%, #fff 62%, var(--service-tint) 145%);
  box-shadow: 0 12px 34px rgba(16, 63, 75, .065);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.service-card::before { content: ""; position: absolute; z-index: -1; top: 0; left: 38px; width: 92px; height: 4px; border-radius: 0 0 99px 99px; background: var(--service-accent); }
.service-card::after { content: ""; position: absolute; z-index: -1; top: -105px; right: -88px; width: 235px; height: 235px; border-radius: 50%; background: radial-gradient(circle, var(--service-glow), transparent 68%); transition: transform 260ms ease; }
.service-card:hover { border-color: var(--service-accent); box-shadow: 0 22px 52px rgba(16, 63, 75, .12); transform: translateY(-5px); }
.service-card:hover::after { transform: scale(1.18); }
.service-card--respiratory { --service-accent: #078e9a; --service-accent-dark: #006b77; --service-tint: #e4f7f6; --service-glow: rgba(7, 142, 154, .15); }
.service-card--movement { --service-accent: #ee6254; --service-accent-dark: #b83e35; --service-tint: #fff0ed; --service-glow: rgba(238, 98, 84, .15); }
.service-card--development { --service-accent: #e5a62d; --service-accent-dark: #8b6211; --service-tint: #fff6df; --service-glow: rgba(229, 166, 45, .17); }
.service-card--manual { --service-accent: #3b9b8d; --service-accent-dark: #247367; --service-tint: #eaf6f1; --service-glow: rgba(59, 155, 141, .15); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.service-number { display: inline-flex; min-width: 43px; height: 27px; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--service-accent) 30%, white); border-radius: 99px; color: var(--service-accent-dark); background: var(--service-tint); font-size: .63rem; font-weight: 700; letter-spacing: .14em; }
.service-icon { position: relative; display: grid; width: 70px; height: 70px; place-items: center; border: 1px solid color-mix(in srgb, var(--service-accent) 22%, white); border-radius: 21px; color: var(--service-accent-dark); background: linear-gradient(145deg, #fff, var(--service-tint)); box-shadow: 0 10px 22px var(--service-glow); transition: border-radius 220ms ease, transform 220ms ease; }
.service-card:hover .service-icon { border-radius: 24px 16px 24px 16px; transform: rotate(-2deg) scale(1.04); }
.service-icon svg { width: 41px; height: 41px; fill: currentColor; }
.service-card h3 { max-width: 440px; margin-bottom: 13px; font-size: 1.43rem; }
.service-card p { max-width: 500px; margin-bottom: 25px; font-size: .94rem; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.tags span { padding: 7px 11px; border: 1px solid color-mix(in srgb, var(--service-accent) 22%, white); border-radius: 99px; color: var(--service-accent-dark); background: color-mix(in srgb, var(--service-tint) 75%, white); font-size: .68rem; font-weight: 700; }
.clinical-note { display: flex; max-width: 770px; align-items: center; gap: 11px; margin: 37px auto 0; font-size: .79rem; }
.clinical-note span { display: grid; width: 23px; height: 23px; flex: 0 0 auto; place-items: center; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-weight: 700; }

.process { background: var(--mist); }
.process-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 86px; }
.feature-photo { position: relative; margin: 0; }
.feature-photo::before { content: ""; position: absolute; top: 22px; left: -18px; width: 12px; height: 110px; border-radius: 99px; background: var(--coral); }
.feature-photo img { width: 100%; aspect-ratio: 4 / 4.15; border-radius: 30px; box-shadow: var(--shadow); object-fit: cover; object-position: 51% center; }
.process-copy h2 { max-width: 560px; }
.step-list { list-style: none; margin: 34px 0 29px; padding: 0; border-top: 1px solid #cfe0e0; }
.step-list li { display: grid; grid-template-columns: 44px 1fr; gap: 17px; padding: 21px 0; border-bottom: 1px solid #cfe0e0; }
.step-list > li > span { display: grid; width: 36px; height: 36px; place-items: center; margin-top: 1px; border-radius: 50%; color: white; background: var(--teal); font-size: .75rem; font-weight: 700; }
.step-list h3 { margin: 0 0 5px; font-size: 1.06rem; letter-spacing: -.02em; }
.step-list p { margin: 0; font-size: .9rem; }
.text-cta { color: var(--ink); font-weight: 700; text-decoration: none; }
.text-cta span { display: inline-grid; width: 26px; height: 26px; place-items: center; margin-left: 7px; border-radius: 50%; color: white; background: var(--coral); font-size: .75rem; }

.ages { background: white; }
.ages-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 82px; }
.ages-copy > p:not(.kicker) { max-width: 510px; }
.age-points { margin-top: 34px; border-top: 1px solid var(--line); }
.age-points div { display: grid; gap: 4px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.age-points strong { font-size: .96rem; }
.age-points span { color: var(--text); font-size: .82rem; }
.feature-photo-wide::before { top: auto; right: 36px; bottom: -17px; left: auto; width: 116px; height: 12px; background: var(--yellow); }
.feature-photo-wide img { aspect-ratio: 1.28 / 1; border-radius: 78px 30px 30px; object-position: 50% center; }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 92px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro p:last-child { max-width: 380px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; color: var(--ink); cursor: pointer; font-size: 1.02rem; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 27px; height: 27px; flex: 0 0 auto; border: 1px solid #a8c0c4; border-radius: 50%; }
summary span::before, summary span::after { content: ""; position: absolute; top: 12px; left: 8px; width: 9px; height: 1.5px; background: var(--ink); transition: transform 160ms ease; }
summary span::after { transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { margin: -4px 50px 24px 0; font-size: .9rem; }

.contact { padding-bottom: 76px; background: white; }
.contact-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 70px; min-height: 355px; padding: 58px 64px; border-radius: var(--radius-lg); color: white; background: var(--teal); }
.contact-panel::before { content: ""; position: absolute; top: -160px; right: -120px; width: 340px; height: 340px; border: 58px solid rgba(255, 255, 255, .1); border-radius: 50%; }
.contact-panel::after { content: ""; position: absolute; left: 37%; bottom: 25px; width: 53px; height: 12px; border-radius: 99px; background: var(--yellow); transform: rotate(-24deg); }
.contact-panel > * { position: relative; z-index: 2; }
.contact-panel h2 { max-width: 650px; color: white; font-size: clamp(2.15rem, 3.7vw, 3.7rem); }
.contact-panel p:not(.kicker) { max-width: 580px; margin-bottom: 0; color: white; }
.contact-action { display: grid; gap: 15px; padding: 28px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 20px; background: rgba(9, 51, 62, .18); }
.contact-action small { color: #d3eeee; font-size: .68rem; line-height: 1.5; }

.site-footer { padding: 50px 0 24px; border-top: 1px solid var(--line); background: white; }
.footer-main { display: grid; grid-template-columns: 1.4fr .8fr .8fr; align-items: start; gap: 70px; }
.footer-brand img { width: 145px; height: auto; margin-bottom: 8px; }
.footer-brand p { margin: 0; font-size: .83rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links a, .footer-location a { color: #486872; font-size: .81rem; text-decoration: none; }
.footer-links a:hover, .footer-location a:hover { color: var(--teal); }
.footer-location p { margin-bottom: 8px; color: var(--ink); font-size: .81rem; font-weight: 700; }
.footer-location a { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 42px; padding-top: 21px; border-top: 1px solid var(--line); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #526f77; font-size: .69rem; }

.privacy-main { min-height: 76vh; padding: 155px 0 90px; background: white; }
.privacy-wrap { max-width: 800px; }
.privacy-wrap h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
.privacy-wrap h2 { margin-top: 46px; font-size: 1.62rem; }
.privacy-wrap li, .privacy-wrap p { color: var(--text); }
.back-link { display: inline-block; margin-bottom: 27px; color: var(--teal); font-weight: 700; text-decoration: none; }

.reveal { opacity: 1; transform: translateY(16px); transition: transform 620ms cubic-bezier(.2, .7, .2, 1); }
.reveal.is-visible { transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: .88fr 1.12fr; gap: 34px; }
  .hero h1 { font-size: clamp(3rem, 6.4vw, 4.8rem); }
  .process-grid, .ages-grid { gap: 52px; }
  .faq-grid { gap: 54px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 86px; }
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .site-header, .header-inner { height: 80px; }
  .brand { width: 104px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero { padding-top: 121px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 45px; }
  h1 { font-size: clamp(3rem, 14vw, 4.55rem); }
  h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  .hero-media > img { aspect-ratio: 1 / 1.02; border-radius: 25px 25px 62px 25px; object-position: 51% center; }
  .photo-label { bottom: 24px; left: -7px; }
  .hero-media::after { right: 0; bottom: 75px; }
  .facts-row { grid-template-columns: 1fr; margin-top: 65px; }
  .facts-row div, .facts-row div:first-child { padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-row div:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading > p { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 29px; }
  .process-grid, .ages-grid, .faq-grid, .contact-panel { grid-template-columns: 1fr; }
  .process-grid { gap: 52px; }
  .feature-photo img { aspect-ratio: 1 / 1.06; }
  .ages-grid { gap: 49px; }
  .ages-copy { order: 1; }
  .feature-photo-wide { order: 2; }
  .feature-photo-wide img { aspect-ratio: 1 / 1; border-radius: 55px 24px 24px; object-position: 52% center; }
  .faq-intro { position: static; }
  .faq-grid { gap: 32px; }
  .contact { padding-bottom: 55px; }
  .contact-panel { gap: 34px; min-height: 0; padding: 40px 26px; border-radius: 24px; }
  .contact-action { padding: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.85rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .photo-label { min-width: 184px; padding: 12px 14px; }
  .feature-photo::before { left: -8px; }
  summary { font-size: .94rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
