:root {
    --ink: #33392d;
    --muted: #69715f;
    --line: #d7d0c2;
    --paper: #f7f2ea;
    --cream: #f0ebe1;
    --sage: #60694c;
    --sage-dark: #465037;
    --white: #ffffff;
    --hero-plant-left-image: url("../images/decor/hero-plant-photo-left.png");
    --hero-plant-right-image: url("../images/decor/hero-plant-photo-right-room-v2.png");
    --about-hero-bg-image: url("../images/resources/about-hero-bg.png");
}

* {
    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: visible;
    position: relative;
    z-index: 4;
}

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: transparent;
    display: grid;
    gap: clamp(22px, 3vw, 44px);
    grid-template-columns: minmax(330px, 1fr) auto auto;
    left: 0;
    min-height: 108px;
    padding: 18px clamp(28px, 7vw, 108px);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.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);
}

.menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(96, 105, 76, 0.34);
    border-radius: 5px;
    color: var(--sage-dark);
    cursor: pointer;
    display: none;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 48px;
}

.menu-toggle span {
    background: currentColor;
    display: block;
    height: 2px;
    position: absolute;
    transition: opacity 160ms ease, transform 160ms ease;
    width: 22px;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu {
    background: rgba(247, 242, 234, 0.96);
    border: 1px solid rgba(155, 145, 125, 0.26);
    box-shadow: 0 18px 36px rgba(51, 57, 45, 0.12);
    display: none;
    grid-column: 1 / -1;
    justify-self: end;
    min-width: min(280px, calc(100vw - 56px));
    padding: 8px;
    position: absolute;
    right: clamp(28px, 7vw, 108px);
    top: calc(100% - 8px);
}

.mobile-menu a {
    color: #343a30;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 14px;
    text-transform: uppercase;
}

.site-header.is-menu-open .mobile-menu {
    display: block;
}

.header-cta,
.primary-button,
.contact-booking-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-booking-button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible,
.contact-booking-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 46%, #eee8de 62%, #eee8de 100%);
    display: flex;
    flex-direction: column;
    isolation: isolate;
    min-height: 100svh;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.hero-main {
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: minmax(720px, 50%) minmax(0, 50%);
    min-height: 0;
    padding-top: 108px;
    position: relative;
    z-index: 3;
}

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

.hero::before {
    background-image: var(--hero-plant-left-image);
    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: var(--hero-plant-right-image);
    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%;
}

.inner-header {
    background: transparent;
}

.nav-links a.is-active::after {
    transform: scaleX(1);
}

.about-hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(241, 236, 228, 0) 0%, rgba(241, 236, 228, 0) 43%, rgba(241, 236, 228, 0.58) 57%, rgba(241, 236, 228, 0.92) 100%),
        var(--about-hero-bg-image) 34% center / cover no-repeat,
        #f1ece4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    min-height: 100svh;
}

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

.about-hero-copy {
    align-content: center;
    display: grid;
    justify-items: start;
    grid-column: 2;
    padding: calc(108px + clamp(28px, 5vw, 72px)) clamp(32px, 8vw, 128px) clamp(48px, 8vw, 112px) clamp(32px, 5vw, 84px);
}

.about-hero-copy h1 {
    font-size: clamp(48px, 5vw, 76px);
    max-width: 620px;
}

.about-hero-copy p:not(.section-kicker) {
    color: #3f4638;
    font-size: 17px;
    margin: 0 0 28px;
    max-width: 520px;
}

.about-hero-copy .section-kicker::after {
    background: rgba(155, 145, 125, 0.48);
    content: "";
    display: block;
    height: 1px;
    margin-top: 10px;
    width: 42px;
}

.about-story {
    background: var(--paper);
    padding: clamp(44px, 6vw, 82px) clamp(28px, 8vw, 124px) 36px;
    position: relative;
}

.about-story::after {
    background: #a9a38f;
    content: "";
    display: block;
    height: 1px;
    margin: 42px auto 0;
    max-width: 1180px;
    opacity: 0.38;
}

.about-story-heading {
    margin: 0 auto 30px;
    max-width: 880px;
    text-align: center;
}

.about-story-heading h2 {
    color: #41483b;
    font-size: clamp(34px, 4vw, 54px);
}

.about-story-grid {
    display: grid;
    gap: clamp(32px, 7vw, 108px);
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.72fr);
    margin: 0 auto;
    max-width: 1120px;
}

.about-story-copy {
    display: grid;
    gap: 18px;
}

.about-story-copy p,
.approach-card p {
    color: #33392d;
    font-size: 16px;
    margin: 0;
}

.approach-card {
    align-self: start;
    background: #e9dfd3;
    border-radius: 8px;
    display: grid;
    gap: 14px;
    padding: clamp(28px, 4vw, 42px);
}

.approach-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid #60694c;
    border-radius: 50%;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    justify-self: center;
    width: 58px;
}

.approach-icon svg {
    fill: none;
    height: 34px;
    stroke: var(--sage);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 34px;
}

.approach-card h3,
.about-values h3 {
    color: var(--sage-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.approach-card h3::after {
    background: rgba(96, 105, 76, 0.46);
    content: "";
    display: block;
    height: 1px;
    margin-top: 10px;
    width: 42px;
}

.about-values {
    background: var(--paper);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 clamp(28px, 8vw, 124px) 42px;
    text-align: center;
}

.about-values article {
    border-left: 1px solid rgba(174, 168, 149, 0.48);
    padding: 20px clamp(18px, 3vw, 42px);
}

.about-values article:first-child {
    border-left: 0;
}

.about-values p {
    color: #4e5448;
    font-size: 13px;
    margin: 8px 0 0;
}

.about-quote {
    background: #dfe0d6;
    padding: 28px clamp(28px, 8vw, 124px) 32px;
    text-align: center;
}

.about-quote p {
    color: #5b6254;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-style: italic;
    margin: 0 auto 14px;
    max-width: 900px;
}

.services-page {
    background: #f7f2ea;
}

.services-page-hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(247, 242, 234, 0.96) 0%, rgba(247, 242, 234, 0.9) 38%, rgba(247, 242, 234, 0.42) 56%, rgba(247, 242, 234, 0) 100%),
        var(--services-hero-bg-image) right center / auto 100% no-repeat,
        #f7f2ea;
    display: grid;
    min-height: 100svh;
    padding: calc(108px + clamp(42px, 6vw, 82px)) clamp(28px, 8vw, 124px) clamp(42px, 6vw, 72px);
}

.services-hero-copy {
    max-width: 590px;
}

.services-hero-copy h1 {
    color: var(--sage-dark);
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 0.98;
    margin: 0 0 28px;
}

.services-hero-copy h1 em {
    color: #69715d;
    font-style: italic;
    font-weight: 400;
}

.services-hero-copy p:not(.section-kicker) {
    color: #30362e;
    font-size: 16px;
    max-width: 470px;
}

.services-hero-copy .section-kicker::after {
    background: rgba(96, 105, 76, 0.46);
    content: "";
    display: block;
    height: 1px;
    margin-top: 10px;
    width: 42px;
}

.services-overview {
    background: #f7f2ea;
    padding: 12px clamp(28px, 8vw, 124px) 44px;
}

.services-overview-grid {
    align-items: start;
    display: grid;
    gap: clamp(28px, 4vw, 52px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
    margin: 0 auto;
    max-width: 1160px;
}

.services-list {
    display: grid;
    gap: 18px;
}

.service-detail-card,
.services-start-card,
.services-note {
    border: 1px solid rgba(96, 105, 76, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.24);
}

.service-detail-card {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 118px minmax(0, 1fr);
    padding: 28px 34px 28px 24px;
}

.service-detail-card .service-icon {
    height: 72px;
    justify-self: center;
    margin-bottom: 0;
    width: 72px;
}

.service-detail-card .service-icon svg {
    height: 45px;
    width: 45px;
}

.service-detail-card h3,
.services-start-card h2,
.services-note h2 {
    color: var(--sage-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    margin: 0;
}

.service-detail-card h3 {
    font-size: clamp(26px, 2.2vw, 34px);
}

.service-eyebrow {
    color: #60694c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 8px 0 12px;
    text-transform: uppercase;
}

.service-detail-card p:not(.service-eyebrow),
.services-start-card p,
.services-note p {
    color: #30362e;
    font-size: 14px;
    margin: 0;
}

.services-start-card {
    display: grid;
    justify-items: center;
    padding: clamp(34px, 5vw, 54px) clamp(26px, 4vw, 44px);
    text-align: center;
}

.services-start-card .service-icon {
    height: 68px;
    margin-bottom: 24px;
    width: 68px;
}

.services-start-card h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.06;
    max-width: 260px;
}

.services-start-card h2::after {
    background: rgba(96, 105, 76, 0.46);
    content: "";
    display: block;
    height: 1px;
    margin: 16px auto 18px;
    width: 42px;
}

.services-start-card p {
    margin-bottom: 28px;
    max-width: 260px;
}

.services-note {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 92px minmax(0, 1fr) minmax(280px, 0.55fr);
    margin: 18px auto 0;
    max-width: 1160px;
    padding: 22px 32px;
}

.services-note .service-icon {
    height: 64px;
    justify-self: center;
    margin-bottom: 0;
    width: 64px;
}

.services-note h2 {
    font-size: clamp(24px, 2.4vw, 34px);
}

.services-note blockquote {
    border-left: 1px solid rgba(96, 105, 76, 0.28);
    color: #60694c;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-style: italic;
    line-height: 1.35;
    margin: 0;
    padding-left: 34px;
}

.faq-page {
    background: #f7f2ea;
}

.faq-page-main {
    background: #f7f2ea;
    padding: calc(108px + clamp(42px, 6vw, 78px)) clamp(28px, 8vw, 124px) 38px;
}

.faq-page-heading {
    margin: 0 auto 30px;
    max-width: 760px;
    text-align: center;
}

.faq-page-heading .section-kicker::after {
    background: rgba(96, 105, 76, 0.46);
    content: "";
    display: block;
    height: 1px;
    margin: 10px auto 0;
    width: 42px;
}

.faq-page-heading h1 {
    color: var(--sage-dark);
    font-size: clamp(42px, 5vw, 66px);
    margin: 0 0 10px;
}

.faq-page-heading p:not(.section-kicker) {
    color: #6c715f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-style: italic;
    margin: 0 auto;
    max-width: 620px;
}

.faq-accordion {
    display: grid;
    gap: 8px;
    margin: 0 auto;
    max-width: 980px;
}

.faq-accordion details {
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(96, 105, 76, 0.16);
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion summary {
    align-items: center;
    color: #30362e;
    cursor: pointer;
    display: grid;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 1.8vw, 23px);
    gap: 22px;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    list-style: none;
    padding: 12px 24px 12px 18px;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    color: #60694c;
    content: "+";
    font-family: Arial, sans-serif;
    font-size: 22px;
    justify-self: end;
}

.faq-accordion details[open] summary::after {
    content: "-";
}

.faq-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #60694c;
    border-radius: 50%;
    color: #60694c;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.faq-icon svg {
    fill: none;
    height: 28px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 28px;
}

.faq-accordion details > p {
    color: #30362e;
    font-size: 14px;
    margin: -4px 58px 22px 98px;
    max-width: 760px;
}

.faq-question-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(96, 105, 76, 0.16);
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
    margin: 28px auto 0;
    max-width: 1080px;
    overflow: hidden;
}

.faq-question-card figure {
    margin: 0;
    min-height: 230px;
}

.faq-question-card img {
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    width: 100%;
}

.faq-question-card > div {
    align-content: center;
    display: grid;
    padding: clamp(28px, 5vw, 52px);
}

.faq-question-card h2 {
    color: var(--sage-dark);
    font-size: clamp(28px, 3vw, 40px);
    margin: 0 0 16px;
}

.faq-question-card p {
    color: #30362e;
    font-size: 14px;
    margin: 0 0 24px;
    max-width: 430px;
}

.faq-question-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.secondary-button {
    align-items: center;
    border: 1px solid #60694c;
    border-radius: 999px;
    color: #60694c;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.secondary-button:hover,
.secondary-button:focus-visible {
    background: #60694c;
    color: var(--white);
    transform: translateY(-1px);
}

.faq-page-quote {
    color: #60694c;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    margin: 16px auto 0;
    max-width: 560px;
    text-align: center;
}

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

.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: 1px solid #60694c;
    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: var(--hero-plant-right-image) 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: -360px;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 0%, rgba(0, 0, 0, 0) 82%);
    width: clamp(260px, 24vw, 480px);
    z-index: 1;
}

.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-booking-card h3 {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0;
}

.contact-booking-card p:not(.section-kicker) {
    max-width: 34rem;
}

.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-booking-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-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 auto;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        background: linear-gradient(90deg, #f3eee6 0%, #f3eee6 44%, #eee8de 62%, #eee8de 100%);
    }

    .hero-main {
        grid-template-columns: minmax(480px, 50%) minmax(0, 50%);
    }

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

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

    .about-hero {
        background-position: center center;
        grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
    }

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

    .about-story-grid {
        gap: 36px;
    }

    .services-page-hero {
        background:
            linear-gradient(90deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0.92) 48%, rgba(247, 242, 234, 0.2) 100%),
            var(--services-hero-bg-image) 68% center / cover no-repeat,
            #f7f2ea;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-start-card {
        margin-inline: auto;
        max-width: 520px;
    }

    .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) {
    .hero-main,
    .about-hero,
    .about-story-grid,
    .about,
    .contact,
    .faq-list,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: auto;
    }

    .brand {
        justify-self: start;
        min-width: 0;
        width: min(320px, calc(100vw - 132px));
    }

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

    .header-cta {
        display: none;
    }

    .mobile-menu {
        left: 50%;
        min-width: 0;
        right: auto;
        transform: translateX(-50%);
        width: min(336px, calc(100vw - 56px));
    }

    .hero {
        background: #f3eee6;
        min-height: 100svh;
    }

    .hero-main {
        padding-top: 144px;
    }

    .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-hero {
        align-items: end;
        background:
            linear-gradient(180deg, rgba(241, 236, 228, 0) 0%, rgba(241, 236, 228, 0.14) 36%, rgba(241, 236, 228, 0.94) 66%, #f1ece4 100%),
            var(--about-hero-bg-image) 35% top / auto 66% no-repeat,
            #f1ece4;
        min-height: 100svh;
    }

    .about-hero-copy {
        grid-column: 1;
        padding: 52vh 28px 44px;
    }

    .services-page-hero {
        align-items: end;
        background:
            linear-gradient(180deg, rgba(247, 242, 234, 0.02) 0%, rgba(247, 242, 234, 0.1) 30%, rgba(247, 242, 234, 0.94) 62%, #f7f2ea 100%),
            var(--services-hero-bg-image) 58% top / auto 62% no-repeat,
            #f7f2ea;
        min-height: 100svh;
        padding: 48vh 28px 42px;
    }

    .services-hero-copy h1 {
        max-width: 560px;
    }

    .services-overview {
        padding-inline: 28px;
    }

    .service-detail-card {
        grid-template-columns: 88px minmax(0, 1fr);
        padding: 24px;
    }

    .service-detail-card .service-icon {
        height: 64px;
        width: 64px;
    }

    .services-note {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .services-note blockquote {
        border-left: 0;
        border-top: 1px solid rgba(96, 105, 76, 0.28);
        grid-column: 1 / -1;
        padding: 20px 0 0;
    }

    .faq-page-main {
        padding-inline: 28px;
    }

    .faq-question-card {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 28px;
    }

    .about-values article:nth-child(odd) {
        border-left: 0;
    }

    .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(270px, calc(100vw - 122px));
        min-width: 0;
        width: min(270px, calc(100vw - 122px));
    }

    .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;
    }

    .services-page-hero {
        background:
            linear-gradient(180deg, rgba(247, 242, 234, 0.04) 0%, rgba(247, 242, 234, 0.2) 33%, rgba(247, 242, 234, 0.96) 58%, #f7f2ea 100%),
            var(--services-hero-bg-image) 60% top / auto 52% no-repeat,
            #f7f2ea;
        padding-top: 44vh;
    }

    .service-detail-card,
    .services-note {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .service-eyebrow {
        letter-spacing: 0.12em;
    }

    .faq-page-main {
        padding-top: calc(108px + 32px);
    }

    .faq-accordion summary {
        gap: 14px;
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        padding: 10px 16px 10px 12px;
    }

    .faq-icon {
        height: 40px;
        width: 40px;
    }

    .faq-icon svg {
        height: 24px;
        width: 24px;
    }

    .faq-accordion details > p {
        margin: 0 18px 20px 72px;
    }

    .faq-question-card figure {
        min-height: 190px;
    }

    .faq-question-actions {
        display: grid;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-values article {
        border-left: 0;
        border-top: 1px solid rgba(170, 164, 146, 0.55);
    }

    .about-values article:first-child {
        border-top: 0;
    }

    .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;
    }
}
