@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --cream: #fbf0e7;
    --paper: #fffdfb;
    --wine: #69344a;
    --wine-dark: #4e2638;
    --ink: #242122;
    --muted: #766a6a;
    --line: #ecdfd8;
    --container: 1160px;
    --shadow: 0 14px 36px rgba(77, 38, 55, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', Arial, sans-serif
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea {
    font: inherit
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: auto
}

.section {
    padding: 80px 0
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
        background: rgb(251 240 232 / 61%);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px)
}

.site-header.is-scrolled {
    background: rgba(255, 250, 246, .9);
    box-shadow: 0 8px 28px rgba(64, 27, 45, .08)
}

.site-header--static {
    position: relative
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(.985);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms), transform .7s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms)
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

.nav-shell {
    width: min(calc(100% - 40px), var(--container));
    height: 68px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 130px;
    filter: brightness(.3)
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    font-weight: 700
}

.site-menu>a:not(.button) {
    color: #554c4d
}

.site-menu>a:not(.button):hover {
    color: var(--wine)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--wine);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 7px 16px rgba(105, 52, 74, .18);
    transition: .2s
}

.button:hover {
    background: var(--wine-dark);
    transform: translateY(-2px)
}

.button-small {
    padding: 10px 15px;
    font-size: 9px
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--cream)
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--wine)
}

.eyebrow {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff4ed;
    color: var(--wine);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.eyebrow-light {
    background: rgba(255, 255, 255, .13);
    color: #fff
}

h1,
h2,
h3 {
    font-family: 'DM Sans', Arial, sans-serif;
    letter-spacing: -.06em
}

h1,
h2,
h3,
p {
    margin-top: 0
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream)
}

.hero:after {
    content: '+';
    position: absolute;
    top: 23%;
    right: 9%;
    font-size: 46px;
    font-weight: 700;
    color: #edcfc0
}

.hero-grid {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 38px;
    align-items: center;
    min-height: 505px
}

.hero h1 {
    max-width: 10ch;
    margin: 15px 0;
    font-size: clamp(42px, 4vw, 58px);
    line-height: .94
}

.hero-copy p {
    max-width: 385px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.68
}

.hero-art {
    position: relative;
    min-height: 372px
}

.hero-photo {
    height: 372px;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 48% 48% 22px 22px;
    background: #e8cdbd
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center
}

.hero-stat {
    position: absolute;
    left: 0;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fffdfb;
    box-shadow: var(--shadow)
}

.hero-stat strong {
    font-size: 25px;
    letter-spacing: -.08em;
    color: var(--wine)
}

.hero-stat span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35
}

.hero-cross {
    position: absolute;
    right: 7%;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: var(--wine);
    font-size: 20px
}

.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: center
}

.intro-collage {
    position: relative;
    height: 340px;
    overflow: hidden;
    border-radius: 48% 44% 42% 46%;
    background: var(--cream)
}

.intro-collage:after {
    content: '';
    position: absolute;
    inset: 22% -9% -12% 46%;
    border: 20px solid rgba(255, 253, 251, .7);
    border-radius: 50%
}

.intro-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.intro-copy h2,
.family-heading h2,
.plans-heading h2,
.center-heading h2,
.contact-copy h2,
.faq-wrap h2 {
    margin: 14px 0;
    font-size: clamp(27px, 2.6vw, 38px);
    line-height: 1.05
}

.intro-copy p,
.family-heading p,
.plans-heading p {
    max-width: 510px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75
}

.check-list {
    display: grid;
    gap: 8px;
    margin: 19px 0;
    padding: 0;
    list-style: none;
    font-size: 10px;
    font-weight: 700
}

.check-list li:before {
    content: '+';
    margin-right: 9px;
    color: var(--wine)
}

.text-link {
    color: var(--wine);
    font-size: 10px;
    font-weight: 700
}

.text-link span {
    margin-left: 8px
}

.services-banner {
    position: relative;
    overflow: hidden;
    padding: 65px 0 28px;
    background: var(--wine-dark)
}

.services-photo {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(78, 38, 56, .91), rgba(78, 38, 56, .32)), url('../images/cadhya-care-consultation.png') center/cover;
    opacity: .72
}

.services-content {
    position: relative
}

.heading-light h2 {
    margin: 14px 0 32px;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px
}

.service-card {
    display: flex;
    min-height: 212px;
    flex-direction: column;
    padding: 15px 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(105, 52, 74, .92);
    color: #fff
}

.service-number {
    color: #f4cfbd;
    font-size: 9px
}

.service-card h3 {
    margin: 13px 0 8px;
    font-size: 15px;
    line-height: 1.08
}

.service-card p {
    margin: 0;
    color: #f9e9e2;
    font-size: 9px;
    line-height: 1.55
}

.service-card a {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: auto;
    border-radius: 50%;
    background: #fff;
    color: var(--wine);
    font-size: 12px
}

.family-layout {
    display: grid;
    grid-template-columns: 1fr .7fr 1fr;
    gap: 25px;
    align-items: center
}

.family-heading p {
    margin-bottom: 0
}

.family-portrait {
    height: 310px;
    overflow: hidden;
    border-radius: 50% 50% 24px 24px;
    background: var(--cream)
}

.family-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%
}

.family-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-self: end
}

.family-badges span {
    padding: 9px;
    border-radius: 6px;
    background: var(--cream);
    color: var(--wine);
    font-size: 9px;
    font-weight: 700
}

.experience-card {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 5px;
    background: var(--wine);
    color: #fff
}

.experience-card div {
    padding: 16px 28px;
    text-align: center
}

.experience-card strong {
    display: block;
    font-size: 35px;
    letter-spacing: -.08em
}

.experience-card span {
    font-size: 9px
}

.process-section,
.plans-section,
.faq-section {
    background: var(--cream)
}

.center-heading {
    text-align: center
}

.center-heading h2 {
    font-size: 32px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 38px;
    text-align: center
}

.process-grid b {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: auto;
    border: 3px solid var(--wine);
    border-radius: 50%;
    background: #fff;
    color: var(--wine);
    font-size: 14px
}

.process-grid h3 {
    margin: 12px 0 7px;
    font-size: 18px
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6
}

.plans-section {
    padding: 72px 0
}

.plans-heading {
    text-align: center
}

.plans-heading p {
    margin: 0 auto
}

.plan-layout {
    display: grid;
    grid-template-columns: 1fr .35fr;
    gap: 18px;
    margin-top: 34px
}

.plan-list {
    display: grid;
    gap: 10px
}

.plan-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(77, 38, 55, .05)
}

.plan-row.featured {
    background: var(--wine);
    color: #fff
}

.plan-row span {
    color: #a56d81;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase
}

.plan-row h3 {
    margin: 2px 0;
    font-size: 18px
}

.plan-row strong {
    font-size: 11px
}

.plan-row ul {
    margin: 0;
    padding-left: 15px;
    font-size: 9px;
    line-height: 1.7
}

.plan-aside {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--wine)
}

.plan-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .78
}

.plan-aside div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    color: #fff;
    background: linear-gradient(transparent, var(--wine-dark))
}

.plan-aside span,
.plan-aside strong {
    display: block
}

.plan-aside span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1
}

.plan-aside strong {
    margin-top: 19px;
    font-size: 10px
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px
}

.testimonial {
    padding: 19px;
    border-radius: 5px;
    background: var(--cream)
}

.stars {
    color: #d79579;
    font-size: 11px;
    letter-spacing: 1px
}

.testimonial p {
    margin: 10px 0;
    color: #5f5556;
    font-size: 11px;
    line-height: 1.65
}

.testimonial strong {
    display: block;
    font-size: 13px
}

.testimonial span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: var(--wine-dark)
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(78, 38, 56, .94), rgba(105, 52, 74, .76)), url('../images/cadhya-care-consultation.png') center/cover;
    opacity: .84
}

.contact-wrap {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 45px;
    align-items: center
}

.contact-copy {
    color: #fff
}

.contact-copy h2 {
    font-size: 42px
}

.contact-copy p {
    color: #fae7dc;
    font-size: 12px;
    line-height: 1.7
}

.contact-copy>a {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700
}

.contact-form {
    padding: 21px;
    border-radius: 7px;
    background: #fffdfb
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.contact-form label {
    display: block;
    margin-bottom: 10px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 4px;
    background: var(--cream);
    font-size: 10px;
    resize: vertical
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 32px
}

.insight-grid img {
    width: 100%;
    height: 150px;
    border-radius: 5px;
    object-fit: cover
}

.insight-grid article:last-child img {
    object-position: center 24%
}

.insight-grid span {
    display: block;
    margin: 9px 0 4px;
    color: var(--wine);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase
}

.insight-grid h3 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.1
}

.faq-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px
}

.faq-list {
    display: grid;
    gap: 9px
}

.faq-item {
    border-radius: 5px;
    background: #fff
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    text-align: left
}

.faq-question b {
    color: var(--wine);
    font-size: 18px
}

.faq-answer {
    display: none;
    padding: 0 17px 16px
}

.faq-answer.is-open {
    display: block
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65
}

.site-footer {
    padding-top: 55px;
    background: var(--wine);
    color: #f8ede6
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, .7fr);
    gap: 32px
}

.footer-brand img {
    width: 132px;
    filter: brightness(0) invert(1)
}

.footer-brand p,
.footer-grid p {
    color: #f1dcd2;
    font-size: 10px;
    line-height: 1.65
}

.footer-brand form {
    display: flex;
    max-width: 235px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff
}

.footer-brand input {
    width: 100%;
    border: 0;
    padding: 10px 13px;
    font-size: 10px
}

.footer-brand button {
    width: 35px;
    border: 0;
    background: #f0d7c8;
    color: var(--wine);
    font-size: 16px
}

.footer-grid h3 {
    margin: 0 0 12px;
    font-size: 13px
}

.footer-grid div>a {
    display: block;
    margin: 8px 0;
    color: #f7e9e2;
    font-size: 10px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 35px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: #f4e4db;
    font-size: 9px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media(max-width:980px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .family-layout {
        grid-template-columns: 1fr 1fr
    }

    .plan-layout,
    .faq-wrap {
        grid-template-columns: 1fr
    }

    .plan-aside {
        min-height: 240px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:720px) {

    .container,
    .nav-shell {
        width: min(calc(100% - 28px), var(--container))
    }

    .menu-toggle {
        display: block
    }

    .site-menu {
        position: absolute;
        top: 62px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 18px;
        border-radius: 7px;
        background: #fffdfb;
        box-shadow: var(--shadow);
        font-size: 15px
    }

    .site-menu>a:not(.button) {
        padding: 9px 8px
    }

    .site-menu .button {
        margin-top: 6px;
        padding: 13px 18px;
        font-size: 13px
    }

    .site-menu.is-open {
        display: flex
    }

    .hero-grid,
    .intro-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .hero-grid {
        padding: 45px 0
    }

    .hero-art {
        min-height: 310px
    }

    .hero-photo {
        height: 310px
    }

    .section {
        padding: 64px 0
    }

    .family-layout {
        grid-template-columns: 1fr
    }

    .process-grid,
    .testimonial-grid,
    .insight-grid {
        grid-template-columns: 1fr 1fr
    }

    .plan-row {
        grid-template-columns: 1fr
    }

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

    .footer-bottom {
        flex-direction: column
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 45px
    }

    .hero-art {
        min-height: 250px
    }

    .hero-photo {
        height: 250px
    }

    .service-grid,
    .process-grid,
    .testimonial-grid,
    .insight-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .family-badges,
    .experience-card {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 190px
    }
}
