:root {
    --navy: #062b4f;
    --teal: #087f8c;
    --aqua: #dff4f3;
    --ink: #18323f;
    --muted: #607783;
    --paper: #fbfdfd;
    --line: #dce8ea;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}

a {
    color: inherit;
}

/* ============================
   Header
============================= */

.site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6vw;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.brand small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--teal);
    text-transform: uppercase;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 22px;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header nav a {
    text-decoration: none;
    font-weight: 600;
}

.nav-cta,
.button {
    background: var(--teal);
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
}

/* ============================
   Hero
============================= */

.hero {
    height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 4vw;
    align-items: center;
    padding: 42px 8vw 32px;
    background:
        radial-gradient(circle at 82% 28%, rgba(8, 127, 140, 0.25), transparent 30%),
        radial-gradient(circle at 16% 78%, rgba(112, 196, 200, 0.35), transparent 34%),
        linear-gradient(135deg, #f8ffff 0%, #e7f8f7 48%, #cfeeed 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: 4%;
    top: 12%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 127, 140, 0.14), rgba(6, 43, 79, 0.05));
    filter: blur(8px);
}

.hero > div {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
    line-height: 1.12;
}

h1 {
    font-size: clamp(38px, 4.2vw, 58px);
    max-width: 680px;
    letter-spacing: -1.1px;
    margin: 0.08em 0 0.18em;
    line-height: 1.02;
}

h2 {
    font-size: clamp(30px, 4vw, 50px);
}

h3 {
    font-size: 24px;
}

.lead {
    font-size: clamp(18px, 1.55vw, 24px);
    max-width: 660px;
    color: var(--teal);
    font-weight: 600;
    line-height: 1.35;
    margin: 0.3em 0;
}

.hero-text {
    font-size: 15px;
    line-height: 1.55;
    max-width: 650px;
    margin-bottom: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    color: var(--teal);
    font-size: 12px;
    margin-bottom: 8px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.secondary {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1px solid var(--navy);
}

.headshot-wrap {
    max-width: 330px;
    background: linear-gradient(135deg, #ffffff, #f2fbfb);
    border: 1px solid rgba(8, 127, 140, 0.18);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(6, 43, 79, 0.16);
}

.headshot {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 6vw;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-badges span {
    color: var(--navy);
    background: #e7f8f7;
    border: 1px solid rgba(8, 127, 140, 0.18);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
}

/* ============================
   General Sections
============================= */

.section {
    padding: 90px 8vw;
}

.wide {
    max-width: 780px;
    font-size: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cards article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(6, 43, 79, 0.05);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
}

.quote {
    background: var(--navy);
    color: #ffffff;
    border-radius: 30px;
    padding: 50px;
    font-family: Georgia, serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.2;
}

.text-link {
    color: var(--teal);
    font-weight: 800;
}

.cta {
    padding: 75px 8vw;
    text-align: center;
    background: var(--teal);
    color: #ffffff;
}

.cta h2 {
    color: #ffffff;
}

.light {
    background: #ffffff;
    color: var(--navy) !important;
}

/* ============================
   Footer
============================= */

footer {
    padding: 50px 8vw;
    background: #031f38;
    color: #dce8ea;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

footer a {
    color: #ffffff;
}

.disclaimer {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #9fb3bd;
    border-top: 1px solid #345066;
    padding-top: 18px;
}

/* ============================
   Parenting Coordination Images
============================= */

.parenting-image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin: 45px 0;
}

.parenting-image-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parenting-image-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============================
   Testimonial Card
============================= */

.quote-card {
    background: #13375d;
    color: #ffffff;
    width: 100%;
    max-width: 520px;
    padding: 48px;
    border-radius: 24px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(6, 43, 79, 0.12);
}

.quote-card p:first-child {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.45;
    font-weight: 400;
    margin: 0 0 30px;
}

.quote-author {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================
   Responsive Styles
============================= */

@media (max-width: 992px) {
    .parenting-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .site-header {
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
        padding: 14px 5vw;
    }

    .menu-toggle {
        display: block;
    }

    .site-header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .site-header nav.open {
        display: flex;
    }

    .hero {
        height: auto;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 38px 6vw 34px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero h1,
    .hero .lead,
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .actions {
        justify-content: center;
    }

    .headshot-wrap {
        max-width: 260px;
        margin: 10px auto 0;
    }

    .cards,
    .split {
        grid-template-columns: 1fr;
    }

    .section,
    .cta {
        padding: 65px 6vw;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .disclaimer {
        grid-column: 1;
    }
}

/* Simple testimonial alignment fix */

.recovery-about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 520px);
    gap: 70px;
}

.recovery-testimonial {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    padding: 44px 46px;
    margin-top: 0;
}

.recovery-testimonial-text {
    font-size: 1.55rem;
    line-height: 1.42;
}

@media (max-width: 1000px) {
    .recovery-about-grid {
        grid-template-columns: 1fr;
    }

    .recovery-testimonial {
        max-width: 760px;
    }
}
.services-cta{
    background:#0c7b89;
    text-align:center;
    padding:90px 20px;
}

.services-cta .section-label{
    color:#27c1d2;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:700;
}

.services-cta h2{
    color:#fff;
    font-size:4rem;
    margin:20px 0;
}

.services-cta p{
    color:#fff;
    font-size:1.4rem;
}

.services-cta iframe,
.services-cta .calendly-inline-widget{
    max-width:900px;
    margin:50px auto 0;
}
.services-cta{
  padding:72px 0;
  text-align:center;
  background:linear-gradient(135deg,var(--teal),#0b5e77);
  color:#fff;
}
.services-cta h2{
  color:#fff;
  margin:.1em auto .3em;
  max-width:780px;
  font-size:clamp(34px,4.5vw,56px);
}
.services-cta p{
  max-width:700px;
  margin:0 auto 26px;
  font-size:18px;
  line-height:1.7;
}
@media(max-width:820px){
  .services-shell{width:min(100% - 32px,1120px)}
  .services-hero{padding:52px 0 46px}
  .services-section{padding:52px 0 68px}
  .service-card{grid-template-columns:1fr;gap:16px}
  .service-number{width:50px;height:50px}
  .services-actions{flex-direction:column;align-items:flex-start}
}
/* Homepage CTA */

.services-shell{
    width:min(1120px, calc(100% - 48px));
    margin:0 auto;
}

.services-cta{
    background:linear-gradient(135deg,#0c7b89,#0b6c7c);
    padding:90px 0;
    text-align:center;
}

.services-cta .eyebrow{
    color:#39d1de;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
}

.services-cta h2{
    color:#fff;
    font-size:clamp(42px,5vw,64px);
    margin:12px auto 24px;
    max-width:800px;
}

.services-cta p{
    color:#fff;
    font-size:22px;
    line-height:1.6;
    max-width:700px;
    margin:0 auto 36px;
}

.calendly-inline-widget{
    width:100%;
    max-width:900px;
    margin:0 auto;
    border-radius:12px;
    overflow:hidden;
}