:root {
    --ink: #33392d;
    --muted: #69715f;
    --line: #d7d0c2;
    --paper: #f7f2ea;
    --cream: #f0ebe1;
    --sage: #60694c;
    --sage-dark: #465037;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Avenir, Inter, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.therapy-flow {
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

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

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

.skip-link {
    background: var(--sage-dark);
    color: var(--white);
    left: 16px;
    padding: 10px 14px;
    position: fixed;
    top: 12px;
    transform: translateY(-140%);
    transition: transform 160ms ease;
    z-index: 20;
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-header {
    align-items: center;
    background: rgba(248, 244, 237, 0.96);
    display: grid;
    gap: clamp(22px, 3vw, 44px);
    grid-template-columns: minmax(330px, 1fr) auto auto;
    min-height: 108px;
    padding: 18px clamp(28px, 7vw, 108px);
}

.brand {
    align-items: center;
    display: inline-flex;
    justify-self: start;
    min-width: min(340px, 58vw);
    width: min(348px, 58vw);
}

.brand-logo {
    height: auto;
    max-width: min(348px, 58vw);
    min-height: 74px;
    object-fit: contain;
    width: 100%;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: clamp(20px, 2.8vw, 48px);
    text-transform: uppercase;
}

.nav-links a {
    color: #3f4638;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    background: var(--sage);
    bottom: 2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    width: 100%;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta,
.primary-button,
.contact-form button {
    align-items: center;
    background: var(--sage);
    border: 0;
    border-radius: 5px;
    color: var(--white);
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    text-transform: uppercase;
    transition: background-color 180ms ease, transform 180ms ease;
}

.header-cta {
    min-width: 216px;
}

.header-cta:hover,
.primary-button:hover,
.contact-form button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible,
.contact-form button:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

.hero {
    background: linear-gradient(90deg, #f3eee6 0%, #f3eee6 56%, #eee8de 56%, #eee8de 100%);
    display: grid;
    grid-template-columns: minmax(720px, 50%) minmax(0, 50%);
    isolation: isolate;
    min-height: 350px;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.hero::before,
.hero::after {
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.hero::before {
    background-image: url("../images/decor/hero-plant-photo-left.png");
    background-position: left center;
    background-size: cover;
    bottom: 0;
    left: 0;
    mask-image: linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.48;
    top: 74px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0) 100%);
    width: min(18vw, 280px);
}

.hero::after {
    background-image: url("../images/decor/hero-plant-photo-right-room-v2.png");
    background-size: cover;
    bottom: 0;
    display: none;
    mask-image: linear-gradient(270deg, #000 0%, #000 64%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    right: -48px;
    top: 0;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 64%, rgba(0, 0, 0, 0) 100%);
    width: min(21vw, 340px);
}

.hero-copy {
    align-self: center;
    max-width: 960px;
    padding: 18px 34px 18px clamp(54px, 10vw, 150px);
    position: relative;
    z-index: 3;
}

h1,
h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
}

h1 {
    color: var(--sage-dark);
    font-size: clamp(46px, 4.35vw, 58px);
    max-width: 920px;
}

h2 {
    color: var(--ink);
    font-size: clamp(34px, 3.6vw, 48px);
}

.hero-divider {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 44px 1fr;
    margin: 16px 0 16px;
    max-width: 336px;
}

.hero-divider span {
    background: #a9a38f;
    height: 1px;
}

.hero-compass-mark {
    height: 44px;
    opacity: 0.72;
    object-fit: contain;
    width: 44px;
}

.hero-text {
    color: #2f342e;
    font-size: 19px;
    margin: 0 0 16px;
    max-width: 430px;
}

.hero-actions {
    display: flex;
    margin-bottom: 14px;
}

.location-line {
    color: #4e5448;
    font-size: 14px;
    margin: 0;
}

.hero-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.hero-quick-facts li {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(170, 164, 146, 0.42);
    border-radius: 999px;
    color: #4e5448;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
}

.hero-image {
    align-self: stretch;
    height: 100%;
    margin: 0;
    min-height: 350px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.hero-image::before {
    display: none;
}

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

.services {
    background: #dcdbd0;
    padding: 18px clamp(24px, 6vw, 88px) 22px;
    position: relative;
    text-align: center;
}

.services > *,
.about > * {
    position: relative;
    z-index: 2;
}

.section-kicker {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.18em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.services > .section-kicker {
    color: #3c4038;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(21px, 2.15vw, 25px);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: none;
}

.services > .section-kicker::after {
    background: #9e9a89;
    content: "";
    display: block;
    height: 1px;
    margin: 9px auto 0;
    width: 28px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 1120px;
}

.service-grid article {
    border-left: 1px solid rgba(174, 168, 149, 0.48);
    min-height: 126px;
    padding: 0 42px;
}

.service-grid article:first-child {
    border-left: 0;
}

.service-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: #596448;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    margin-bottom: 8px;
    width: 58px;
}

.service-icon svg {
    fill: none;
    height: 39px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
    width: 39px;
}

.service-icon img {
    height: 39px;
    width: 39px;
}

.service-icon-compass img {
    color: #263023;
    height: 42px;
    width: 42px;
}

.service-grid h3 {
    color: #343931;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 5px;
}

.service-grid p {
    color: #363a34;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
}

.about {
    align-items: start;
    background: var(--paper);
    display: grid;
    gap: clamp(20px, 2.2vw, 30px);
    grid-template-columns: minmax(240px, 360px) minmax(280px, 390px) minmax(300px, 420px);
    justify-content: center;
    padding: 22px clamp(28px, 8vw, 124px) 28px;
    position: relative;
}

.about::after {
    background: url("../images/decor/hero-plant-photo-right-room-v2.png") 72% 50% / cover no-repeat;
    bottom: 0;
    content: "";
    mask-image: linear-gradient(270deg, #000 0%, #000 48%, rgba(0, 0, 0, 0) 82%);
    opacity: 1;
    pointer-events: none;
    position: absolute;
    right: -77px;
    top: -300px;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 0%, rgba(0, 0, 0, 0) 82%);
    width: clamp(260px, 24vw, 480px);
    z-index: 0;
}

.about-image {
    margin: 0;
}

.about-image img {
    aspect-ratio: 432 / 234;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.about-copy {
    padding-top: 2px;
}

.about-copy h2 {
    max-width: 520px;
}

.about-copy h2 + p {
    color: var(--ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2vw;
    line-height: 1.08;
    margin: 0 0 20px;
    max-width: 410px;
}

.about-copy h2 {
    display: none;
}

.about-copy p:last-child {
    color: #33372f;
    font-size: 14px;
    margin: 0;
    max-width: 440px;
}

.about-reviews {
    justify-self: center;
    margin: 4px 0 0;
    min-width: 0;
    overflow: hidden;
    padding: 22px;
    width: 100%;
}

.about-reviews-header {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.about-reviews-header .section-kicker {
    margin-bottom: 6px;
}

.about-reviews-header h2 {
    color: var(--sage-dark);
    font-size: 22px;
    line-height: 1.08;
}

.written-review-count {
    color: #5d6558;
    font-size: 13px;
    font-weight: 700;
    margin: 6px 0 0;
}

.stars {
    color: #b79a45;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-top: 8px;
}

.care-details {
    background: #f2ece3;
    border-top: 1px solid rgba(170, 164, 146, 0.36);
    display: grid;
    gap: clamp(24px, 4vw, 44px);
    grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1fr);
    padding: 34px clamp(28px, 8vw, 124px);
}

.care-details-heading h2 {
    color: var(--sage-dark);
    font-size: clamp(28px, 3vw, 40px);
    max-width: 360px;
}

.care-details-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.care-details-grid article {
    border-left: 1px solid rgba(155, 145, 125, 0.38);
    padding-left: 18px;
}

.care-details-grid h3 {
    color: #343931;
    font-size: 14px;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.care-details-grid p {
    color: #454b40;
    font-size: 13px;
    line-height: 1.45;
    margin: 10px 0 0;
}

.care-details-grid a {
    border-bottom: 1px solid currentColor;
    color: var(--sage-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
}

.detail-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.detail-chip-list span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(170, 164, 146, 0.36);
    border-radius: 999px;
    color: #343931;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    text-transform: uppercase;
}

.reviews-controls {
    display: flex;
    gap: 8px;
}

.review-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(155, 145, 125, 0.46);
    border-radius: 50%;
    color: var(--sage-dark);
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 36px;
    justify-content: center;
    transition: background-color 180ms ease, transform 180ms ease;
    width: 36px;
}

.review-nav:hover,
.review-nav:focus-visible {
    background: var(--white);
    transform: translateY(-1px);
}

.about-reviews-carousel {
    display: grid;
    gap: 12px;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.about-reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    display: grid;
    scroll-snap-align: start;
}

.review-card-header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-card time {
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.review-stars {
    font-size: 12px;
    margin: 0;
}

.review-card p {
    color: #30352e;
    font-size: 14px;
    line-height: 1.44;
    margin: 0;
}

.review-card footer {
    align-self: end;
    border-top: 1px solid rgba(170, 164, 146, 0.42);
    color: #5d6558;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 14px;
    padding-top: 10px;
}

.reviews-note {
    color: #5d6558;
    font-size: 12px;
    margin: 8px 0 0;
}

.contact,
.faq {
    padding: clamp(56px, 8vw, 90px) clamp(28px, 8vw, 124px);
}

.contact {
    background: #efe7dc;
    display: grid;
    gap: clamp(28px, 6vw, 72px);
    grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 0.85fr);
}

.contact p,
.faq p {
    color: #3f433a;
    margin: 0;
}

.inline-booking-link {
    border-bottom: 1px solid currentColor;
    color: var(--sage-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    margin-top: 18px;
    text-transform: uppercase;
}

.contact-form {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--line);
    display: grid;
    gap: 18px;
    padding: clamp(20px, 4vw, 34px);
}

.contact-form label {
    color: var(--sage-dark);
    display: grid;
    font-size: 13px;
    gap: 8px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    justify-self: start;
}

.faq {
    background: var(--paper);
}

.faq-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.faq-list article {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.faq-list h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.site-footer {
    background: #e7dfd2;
    border-top: 1px solid rgba(155, 145, 125, 0.38);
    color: #343a30;
    padding: 42px clamp(28px, 8vw, 124px) 22px;
}

.footer-inner {
    display: grid;
    gap: clamp(26px, 4vw, 52px);
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(160px, 0.75fr)) minmax(220px, 0.9fr);
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 18px;
    max-width: 270px;
}

.footer-brand img {
    height: auto;
    width: 100%;
}

.footer-brand-block p,
.footer-cta p,
.footer-bottom p {
    color: #454b40;
    margin: 0;
}

.footer-brand-block p + p {
    margin-top: 4px;
}

.footer-column h2 {
    color: var(--sage-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    color: #454b40;
    font-size: 14px;
}

.footer-cta {
    align-content: start;
    display: grid;
    gap: 14px;
}

.footer-button {
    align-items: center;
    background: var(--sage);
    border-radius: 5px;
    color: var(--white);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    text-transform: uppercase;
    transition: background-color 180ms ease, transform 180ms ease;
}

.footer-bottom {
    border-top: 1px solid rgba(155, 145, 125, 0.42);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 18px;
}

.footer-bottom p {
    font-size: 13px;
}

@media (min-width: 1600px) {
    .hero {
        height: 560px;
        min-height: 0;
    }

    .hero-copy {
        padding-left: clamp(220px, 10vw, 340px);
    }

    .hero-image {
        min-height: 0;
    }

    .hero-image img {
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 1280px) and (min-width: 1181px) {
    .about {
        gap: 20px;
        grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 0.9fr) minmax(340px, 1fr);
        padding-inline: clamp(28px, 5vw, 72px);
    }
}

@media (max-width: 1180px) {
    .site-header {
        gap: 18px;
        grid-template-columns: minmax(260px, 1fr) auto;
    }

    .nav-links {
        display: none;
    }

    .hero {
        background: linear-gradient(90deg, #f3eee6 0%, #f3eee6 50%, #eee8de 50%, #eee8de 100%);
        grid-template-columns: minmax(480px, 50%) minmax(0, 50%);
        min-height: 380px;
    }

    .hero-copy {
        padding-left: clamp(34px, 6vw, 72px);
    }

    .hero-image {
        min-height: 380px;
    }

    .about {
        grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    }

    .care-details {
        grid-template-columns: 1fr;
    }

    .care-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about-reviews {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .site-header,
    .hero,
    .about,
    .contact,
    .faq-list,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .site-header {
        min-height: auto;
    }

    .brand {
        justify-self: center;
        min-width: 0;
        width: min(320px, 82vw);
    }

    .brand-logo {
        max-width: min(330px, 72vw);
        min-height: 0;
    }

    .header-cta {
        justify-self: start;
    }

    .hero {
        background: #f3eee6;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-copy {
        padding: 38px 28px 30px;
    }

    .hero-image {
        height: auto;
        min-height: 0;
    }

    .hero-image img {
        aspect-ratio: 4 / 3;
        height: auto;
        object-position: 48% 58%;
    }

    .about-copy h2 + p {
        font-size: 24px;
    }

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

    .service-grid article:nth-child(odd) {
        border-left: 0;
    }

    .service-grid article {
        padding: 18px 28px;
    }

    .care-details-grid {
        grid-template-columns: 1fr;
    }

    .care-details-grid article {
        border-left: 0;
        border-top: 1px solid rgba(155, 145, 125, 0.38);
        padding: 16px 0 0;
    }

    .care-details-grid article:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .footer-brand {
        max-width: 250px;
    }
}

@media (max-width: 560px) {
    .brand,
    .brand-logo {
        max-width: min(300px, 82vw);
        min-width: 0;
    }

    .site-header {
        padding: 24px 28px 20px;
    }

    .header-cta,
    .primary-button {
        width: 100%;
    }

    h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 17px;
    }

    .review-nav {
        height: 34px;
        width: 34px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-grid article {
        border-left: 0;
        border-top: 1px solid rgba(170, 164, 146, 0.55);
        padding: 22px 12px;
    }

    .service-grid article:first-child {
        border-top: 0;
    }
}
