:root {
    --ink: #18342e;
    --deep: #12372f;
    --forest: #17463c;
    --cream: #f4f0e8;
    --paper: #fbfaf6;
    --sand: #d9c3a2;
    --gold: #bb9362;
    --line: rgba(24, 52, 46, .18);
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
p { font-size: 115%; }
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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;
}
.skip-link {
    position: fixed; z-index: 1000; left: 1rem; top: -5rem;
    padding: .7rem 1rem; background: white; color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0; left: 0; right: 0;
    height: 104px;
    padding: 0 clamp(1.5rem, 4vw, 4.5rem);
    display: grid;
    grid-template-columns: 210px 1fr 210px;
    align-items: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.24);
    transition: background .35s, height .35s, color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
    height: 82px;
    color: var(--ink);
    background: rgba(251,250,246,.96);
    box-shadow: 0 8px 30px rgba(15,40,34,.08);
    backdrop-filter: blur(12px);
}
.site-header--solid {
    height: 82px;
    color: var(--ink);
    background: rgba(251,250,246,.98);
    box-shadow: 0 8px 30px rgba(15,40,34,.08);
}
.site-header--solid .brand img { filter: none; }
.site-header--solid .button--small { border-color: var(--ink); background: var(--ink); color: white; }
.site-header--solid .button--small:hover { background: transparent; color: var(--ink); }
.brand { width: 144px; position: relative; z-index: 2; }
.brand img { width: 100%; filter: brightness(0) invert(1); transition: filter .35s; }
.site-header.is-scrolled .brand img { filter: none; }
.site-nav {
    display: flex; justify-content: center; align-items: center; gap: clamp(1.2rem, 3vw, 3rem);
    font-size: .86rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
}
.site-nav a { position: relative; padding: .5rem 0; }
.site-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
    background: currentColor; transition: right .25s;
}
.site-nav a:hover::after { right: 0; }
.header-book { justify-self: end; }
.menu-toggle { display: none; }

.button {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    min-height: 56px;
    padding: .9rem 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.button:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.button--small { min-height: 44px; padding: .7rem 1.25rem; border-color: white; background: transparent; }
.button--small:hover { background: white; color: var(--ink); }
.site-header.is-scrolled .button--small { border-color: var(--ink); background: var(--ink); color: white; }
.site-header.is-scrolled .button--small:hover { background: transparent; color: var(--ink); }
.button--light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.button--light:hover { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.text-link {
    border: 0;
    border-bottom: 1px solid currentColor;
    background: none;
    padding: 0 0 .25rem;
    display: inline-flex;
    gap: 1.8rem;
    align-items: center;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
}
.text-link span { font-size: 1.1rem; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link--light { color: white; }
.eyebrow {
    margin: 0 0 1.5rem;
    color: rgba(255,255,255,.78);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.eyebrow--dark { color: #765d42; }

.hero {
    position: relative;
    height: 100svh;
    min-height: 720px;
    color: white;
    overflow: hidden;
}
.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    animation: heroIn 1.8s cubic-bezier(.2,.7,.2,1) both;
}
.hero__veil {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,34,28,.76) 0%, rgba(8,34,28,.48) 48%, rgba(8,34,28,.16) 100%),
                linear-gradient(0deg, rgba(6,29,24,.35), transparent 50%);
}
.hero__content {
    position: absolute;
    z-index: 1;
    left: clamp(1.5rem, 8vw, 9rem);
    top: 52%;
    transform: translateY(-45%);
    max-width: 800px;
}
.hero h1, .section h2, .closing h2, .dialog-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.018em;
}
.hero h1 { font-size: clamp(3.6rem, 7.6vw, 8.1rem); }
h1 em, h2 em { color: var(--sand); font-weight: 400; }
.hero__intro {
    width: min(510px, 90%);
    margin: 2rem 0 2.5rem;
    color: rgba(255,255,255,.86);
    font-size: 1.05rem;
    font-weight: 300;
}
.hero__actions { display: flex; gap: 2rem; align-items: center; }
.hero__scroll {
    position: absolute; z-index: 2; right: clamp(1.5rem, 4vw, 4.5rem); bottom: 2.4rem;
    display: flex; gap: 1rem; align-items: center;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 56px; background: rgba(255,255,255,.6); }
@keyframes heroIn { from { transform: scale(1.06); opacity: .5; } to { transform: scale(1); opacity: 1; } }

.section {
    position: relative;
    padding: clamp(6rem, 11vw, 11rem) clamp(1.5rem, 8vw, 9rem);
}
.section-number {
    position: absolute;
    top: 3rem;
    left: clamp(1.5rem, 4vw, 4.5rem);
    font-family: var(--serif);
    color: #9a8d7c;
    font-size: .9rem;
}
.section-number::after { content: ""; display: inline-block; width: 45px; height: 1px; margin-left: .8rem; background: currentColor; vertical-align: middle; }
.section-number--light { color: rgba(255,255,255,.55); }
.intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
    gap: clamp(4rem, 10vw, 10rem);
    align-items: end;
}
.section h2 { font-size: clamp(3rem, 5.6vw, 6.3rem); }
.intro h2 em, .gallery h2 em, .treatments h2 em { color: #99734a; }
.intro__copy { padding-bottom: .5rem; }
.intro__copy .lead {
    margin-top: 0;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.1vw, 2.15rem);
    line-height: 1.35;
}
.intro__copy > p:not(.lead) { color: #52635f; font-weight: 300; margin: 1.5rem 0 2.3rem; }

.editorial-image {
    min-height: 760px;
    padding: 0 clamp(1.5rem, 8vw, 9rem) clamp(6rem, 10vw, 10rem);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
}
.editorial-image__frame { height: min(70vw, 740px); overflow: hidden; }
.editorial-image__frame img { width: 100%; height: 100%; object-fit: cover; }
.editorial-image__note { max-width: 360px; padding-bottom: 3rem; }
.editorial-image__mark {
    display: inline-block; margin-bottom: 2rem; padding-bottom: .35rem;
    color: var(--gold); border-bottom: 1px solid rgba(153,115,74,.45);
    font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4.7rem); line-height: 1;
}
.editorial-image__note p { color: #52635f; font-weight: 300; }

.treatments { background: var(--cream); }
.section-heading {
    margin-bottom: clamp(3rem, 7vw, 6.5rem);
    display: grid;
    grid-template-columns: 1.2fr .55fr;
    gap: 5rem;
    align-items: end;
}
.section-heading > p { max-width: 410px; margin: 0 0 .7rem; color: #52635f; font-weight: 300; }
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 6vw, 7rem);
    row-gap: clamp(4rem, 8vw, 8rem);
}
.treatment-card:nth-child(even) { margin-top: clamp(3rem, 9vw, 9rem); }
.treatment-card__image { position: relative; height: clamp(330px, 42vw, 610px); overflow: hidden; }
.treatment-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.treatment-card:hover .treatment-card__image img { transform: scale(1.025); }
.treatment-card__image > span {
    position: absolute; right: 0; bottom: 0;
    padding: .8rem 1.1rem; background: var(--cream);
    font-family: var(--serif); font-size: 1.15rem;
}
.treatment-card__body { padding: 1.8rem 2rem 0 0; }
.treatment-card h3 {
    margin: 0 0 .8rem;
    font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 3rem); font-weight: 400; line-height: 1.12;
}
.treatment-card p { max-width: 590px; min-height: 5.1em; color: #586965; font-weight: 300; }
.treatment-card .treatment-card__durations {
    min-height: 0;
    margin: 1.25rem 0 1.6rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .8rem;
    border-top: 1px solid var(--line);
    color: #586965;
    font-size: .78rem;
}
.treatment-card__durations strong {
    color: var(--ink);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.price-strip {
    margin-top: clamp(7rem, 12vw, 12rem);
    padding: 3rem 0;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
    gap: 3rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.price-strip .eyebrow { margin-bottom: .6rem; }
.price-strip__note { margin: 0; color: #63716e; font-size: .85rem; }
.price-list { display: grid; grid-template-columns: repeat(5, 1fr); }
.price-list span {
    padding: 0 1.2rem;
    display: grid;
    border-left: 1px solid var(--line);
    color: #65736f;
    font-size: .67rem;
    text-transform: uppercase;
}
.price-list strong { color: var(--ink); font-family: var(--serif); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.price-list b { margin-top: .5rem; color: var(--ink); font-size: .9rem; }

.section--green { background: var(--deep); color: white; }
.locations {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(4rem, 9vw, 9rem);
}
.locations__heading { align-self: start; position: sticky; top: 130px; }
.locations__heading h2 { font-size: clamp(3.2rem, 5vw, 5.7rem); }
.locations__heading > p:last-child {
    max-width: 480px; margin: 2rem 0 0; color: rgba(255,255,255,.65); font-weight: 300;
}
.location-grid { display: grid; gap: 1.5rem; }
.location-card {
    padding: clamp(2rem, 4vw, 4rem);
    border: 1px solid rgba(255,255,255,.22);
    transition: background .3s, color .3s, transform .3s;
}
.location-card:hover { background: var(--cream); color: var(--ink); transform: translateY(-4px); }
.location-card__top { display: flex; justify-content: space-between; }
.location-card__number { font-family: var(--serif); color: var(--sand); }
.location-card__status { font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.location-card__status i {
    display: inline-block; width: 6px; height: 6px; margin-right: .5rem;
    border-radius: 50%; background: #8db991; vertical-align: 1px;
}
.location-card h3 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.location-card address { color: rgba(255,255,255,.7); font-style: normal; font-weight: 300; }
.location-card:hover address { color: #52635f; }
.location-card dl { margin: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.location-card:hover dl { border-color: var(--line); }
.location-card dl > div { padding: 1.1rem 0; display: grid; grid-template-columns: 100px 1fr; border-bottom: 1px solid rgba(255,255,255,.2); }
.location-card:hover dl > div { border-color: var(--line); }
.location-card dt { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.location-card dd { margin: 0; color: rgba(255,255,255,.7); font-weight: 300; }
.location-card:hover dd { color: #52635f; }
.location-card__actions { display: flex; gap: 1.6rem; align-items: center; }
.location-card:hover .button--light { background: var(--ink); border-color: var(--ink); color: white; }
.location-card:hover .button--light:hover { background: transparent; color: var(--ink); }
.location-card:hover .text-link--light { color: var(--ink); }

.gallery { background: var(--paper); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 22vw;
    gap: 1rem;
}
.gallery-item {
    position: relative; overflow: hidden; border: 0; padding: 0; background: #ddd; cursor: zoom-in;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s, filter .65s; }
.gallery-item span {
    position: absolute; inset: auto 1rem 1rem auto; width: 58px; height: 58px;
    display: grid; place-items: center; border-radius: 50%; background: rgba(251,250,246,.9);
    font-size: .63rem; letter-spacing: .1em; text-transform: uppercase;
    opacity: 0; transform: translateY(8px); transition: .3s;
}
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.82); }
.gallery-item:hover span { opacity: 1; transform: none; }

.closing {
    position: relative; min-height: 78vh; padding: 7rem 1.5rem;
    display: grid; place-items: center; text-align: center; color: white;
    background: linear-gradient(rgba(9,39,32,.7), rgba(9,39,32,.75)), url("../images/gallery-04.jpg") center/cover;
}
.closing h2 { font-size: clamp(4rem, 8vw, 8rem); margin-bottom: 2.5rem; }

.site-footer {
    padding: 5rem clamp(1.5rem, 6vw, 7rem) 1.5rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr .6fr;
    gap: 3rem;
    color: rgba(255,255,255,.7);
    background: #0c2c25;
    font-size: .78rem;
    font-weight: 300;
}
.footer-brand img { width: 160px; margin-bottom: 1.4rem; filter: brightness(0) invert(1); }
.footer-location h3 { margin: 0 0 1rem; color: white; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.footer-location p { margin: 0 0 .8rem; }
.footer-location a { display: block; }
.footer-location a:hover, .footer-links a:hover, .footer-links button:hover { color: white; }
.footer-links { display: grid; align-content: start; gap: .7rem; }
.footer-links button { border: 0; padding: 0; color: inherit; background: none; text-align: left; cursor: pointer; }
.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 2rem; padding-top: 1.5rem;
    display: flex; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.48);
}

.policy-hero {
    padding: 12rem clamp(1.5rem, 8vw, 9rem) 7rem;
    color: white;
    text-align: center;
    background:
        linear-gradient(rgba(11,48,40,.82), rgba(11,48,40,.88)),
        url("../images/gallery-04.jpg") center 44% / cover;
}
.policy-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.8rem, 7vw, 7.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.018em;
}
.policy-hero h1 em { color: var(--sand); font-weight: 400; }
.policy-hero > p:last-child {
    max-width: 610px;
    margin: 2rem auto 0;
    color: rgba(255,255,255,.76);
    font-weight: 300;
}
.policy-hero--privacy {
    background:
        linear-gradient(rgba(11,48,40,.82), rgba(11,48,40,.88)),
        url("../images/gallery-07.jpg") center 50% / cover;
}
.policy-content {
    width: min(1060px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(5rem, 9vw, 9rem) 0;
}
.policy-intro {
    max-width: 820px;
    margin: 0 auto clamp(4rem, 8vw, 7rem);
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.45;
}
.policy-intro small {
    display: block;
    margin-top: 1rem;
    color: #7a8581;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.policy-content > section {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    border-top: 1px solid var(--line);
}
.policy-content > section > span {
    color: #947451;
    font-family: var(--serif);
    font-size: 1.1rem;
}
.policy-content > section h2 {
    margin: 0 0 1.3rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
}
.policy-content > section p { margin: 0 0 1rem; color: #52635f; font-weight: 300; }
.policy-inline-link {
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid currentColor;
}

.content-hero {
    min-height: 620px;
    padding: 12rem clamp(1.5rem, 8vw, 9rem) 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-position: center;
    background-size: cover;
}
.content-hero--faq {
    background-image: linear-gradient(rgba(10,44,37,.75),rgba(10,44,37,.84)),url("../images/gallery-06.jpg");
}
.content-hero--blog {
    background-image: linear-gradient(rgba(10,44,37,.66),rgba(10,44,37,.78)),url("../images/Aroma oil shot.jpeg");
}
.content-hero h1 {
    margin: 0;
    font: 400 clamp(4rem,7.5vw,8rem)/.98 var(--serif);
    letter-spacing: -.018em;
}
.content-hero h1 em { color: var(--sand); font-weight: 400; }
.content-hero > p:last-child { max-width: 600px; margin: 2rem auto 0; color: rgba(255,255,255,.78); font-weight: 300; }
.faq-section, .blog-index { padding: clamp(5rem,10vw,10rem) clamp(1.5rem,8vw,9rem); }
.faq-list { width: min(1050px,100%); margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    min-height: 110px;
    display: grid;
    grid-template-columns: 70px 1fr 32px;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    font: 400 clamp(1.45rem,2.5vw,2.2rem)/1.2 var(--serif);
    cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: #967651; font: 400 .9rem var(--serif); }
.faq-item summary i { position: relative; width: 28px; height: 28px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 3px; top: 13px; width: 22px; height: 1px; background: var(--ink); transition: transform .25s; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item > div { padding: 0 60px 2.5rem 70px; }
.faq-item > div p { max-width: 780px; margin: 0; color: #52635f; font-weight: 300; }
.content-empty { width: min(800px,100%); margin: 0 auto; padding: 5rem 2rem; text-align: center; background: var(--cream); }
.content-empty h2 { margin: 0 0 1rem; font: 400 clamp(2.3rem,5vw,4rem)/1.1 var(--serif); }
.content-empty p { color: #52635f; }
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(3rem,7vw,7rem) clamp(2rem,5vw,5rem); }
.blog-card__image { height: 34vw; max-height: 560px; overflow: hidden; display: block; background: #ddd; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.blog-card:hover .blog-card__image img { transform: scale(1.025); }
.blog-card__body { padding: 1.6rem 1rem 0 0; }
.blog-card h2 { margin: 0 0 1rem; font: 400 clamp(2rem,3.5vw,3.4rem)/1.08 var(--serif); }
.blog-card__body > p { min-height: 4.8em; color: #52635f; font-weight: 300; }
.blog-card--featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(2rem,5vw,5rem); }
.blog-card--featured .blog-card__image { height: 48vw; max-height: 660px; }
.blog-card--featured h2 { font-size: clamp(2.8rem,5vw,5.5rem); }
.blog-article { padding: 11rem clamp(1.5rem,8vw,9rem) 8rem; }
.blog-article > header { width: min(1000px,100%); margin: 0 auto 4rem; text-align: center; }
.blog-article h1, .article-not-found h1 { margin: 0; font: 400 clamp(3.5rem,7vw,7.5rem)/1 var(--serif); letter-spacing: -.018em; }
.blog-article__intro { max-width: 750px; margin: 2rem auto 0; color: #52635f; font: 400 clamp(1.25rem,2.2vw,1.8rem)/1.45 var(--serif); }
.blog-article > figure { width: min(1260px,100%); height: min(68vw,760px); margin: 0 auto 5rem; }
.blog-article > figure img { width: 100%; height: 100%; object-fit: cover; }
.blog-article__content { width: min(760px,100%); margin: 0 auto; }
.blog-article__content p { margin: 0 0 1.7rem; color: #425751; font-size: 1.18rem; font-weight: 300; line-height: 1.85; }
.blog-article__content h2,
.blog-article__content h3 {
    margin: 3.2rem 0 1.2rem;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
}
.blog-article__content h2 { font-size: clamp(2rem,4vw,3.2rem); }
.blog-article__content h3 { font-size: clamp(1.6rem,3vw,2.35rem); }
.blog-article__content strong { color: var(--ink); font-weight: 600; }
.blog-article__content em { color: #765d42; }
.blog-article > footer { width: min(760px,100%); margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-not-found { min-height: 75vh; padding: 12rem 1.5rem 6rem; display: grid; place-items: center; align-content: center; text-align: center; }
.article-not-found p:not(.eyebrow) { color: #52635f; }
.article-not-found .button { margin-top: 1rem; }
.compact-footer { grid-template-columns: 1fr 1fr; }
.compact-footer .footer-links { justify-self: end; }
.policy-contact {
    margin-top: 3rem;
    padding: clamp(2.5rem, 6vw, 5rem);
    background: var(--cream);
    text-align: center;
}
.policy-contact h2 {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
}
.policy-contact > div { display: flex; justify-content: center; gap: 1rem; }
.policy-contact a {
    min-width: 240px;
    padding: 1.25rem 1.5rem;
    display: grid;
    border: 1px solid var(--line);
    transition: background .2s, color .2s;
}
.policy-contact a:hover { color: white; background: var(--ink); }
.policy-contact a strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.policy-contact a span { font-size: .8rem; }

dialog { border: 0; padding: 0; }
dialog::backdrop { background: rgba(5,24,20,.76); backdrop-filter: blur(5px); }
.booking-dialog {
    width: min(900px, calc(100% - 2rem)); max-height: calc(100vh - 2rem);
    padding: clamp(2rem, 6vw, 5rem);
    color: var(--ink); background: var(--cream);
}
.announcement-dialog {
    width: min(680px, calc(100% - 2rem));
    max-height: calc(100vh - 2rem);
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 30px 90px rgba(0,0,0,.22);
}
.announcement-dialog__inner { position: relative; padding: clamp(2rem, 6vw, 4.2rem); }
.announcement-dialog h2 {
    max-width: 560px;
    margin: 0 0 1.2rem;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
}
.announcement-dialog p:not(.eyebrow) {
    margin: 0 0 2rem;
    color: #52635f;
    font-weight: 300;
}
.announcement-dialog__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px;
    border: 0; background: transparent;
    color: var(--ink);
    font-size: 2rem;
    cursor: pointer;
}
.dialog-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px; border: 0; background: transparent; font-size: 2rem; font-weight: 200; cursor: pointer;
}
.dialog-heading { text-align: center; }
.dialog-heading h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
.dialog-heading > p:last-child { max-width: 540px; margin: 1.4rem auto 2.4rem; color: #586965; }
.dialog-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dialog-locations a {
    min-height: 150px; padding: 1.6rem;
    display: flex; flex-direction: column; justify-content: space-between;
    border: 1px solid var(--line);
    transition: background .25s, color .25s;
}
.dialog-locations a:hover { background: var(--ink); color: white; }
.dialog-locations strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.dialog-locations small { display: block; color: #64736f; }
.dialog-locations a:hover small { color: rgba(255,255,255,.65); }
.dialog-locations b { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.dialog-help { margin: 1.5rem 0 0; text-align: center; color: #6c7975; font-size: .78rem; }
.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; background: rgba(6,26,22,.96); }
.lightbox img { width: 100%; height: 100%; padding: 5vh 5vw; object-fit: contain; }
.dialog-close--light { z-index: 2; color: white; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    .site-header { grid-template-columns: 170px 1fr 170px; }
    .site-nav { gap: 1.2rem; }
    .intro, .locations { gap: 4rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 30vw; }
    .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .site-footer { grid-template-columns: 1fr 1fr 1fr; }
    .footer-links { grid-column: 1 / -1; display: flex; gap: 2rem; }
}

@media (max-width: 780px) {
    .site-header {
        height: 78px; padding: 0 1.25rem; grid-template-columns: 1fr auto;
        border-bottom-color: rgba(255,255,255,.16);
    }
    .brand { width: 122px; }
    .menu-toggle {
        position: relative; z-index: 102;
        width: 46px; height: 46px; padding: 0;
        display: block;
        justify-self: end;
        color: white; border: 0; background: transparent; cursor: pointer;
    }
    .site-header.is-scrolled .menu-toggle { color: var(--ink); }
    .menu-toggle::before,
    .menu-toggle::after {
        content: "";
        position: absolute;
        left: 9px;
        width: 28px;
        height: 1px;
        background: currentColor;
        transition: transform .25s, top .25s;
    }
    .menu-toggle::before { top: 18px; }
    .menu-toggle::after { top: 27px; }
    .menu-toggle span:not(.sr-only) { display: none; }
    .menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
    .site-nav {
        position: fixed; inset: 0; z-index: 101;
        padding: 8rem 2rem 3rem;
        display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem;
        color: white; background: var(--deep);
        font-family: var(--serif); font-size: 2.7rem; letter-spacing: 0; text-transform: none;
        visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s;
    }
    .site-nav.is-open { visibility: visible; opacity: 1; }
    .site-header:has(.site-nav.is-open) { color: white; }
    .site-header:has(.site-nav.is-open) .brand img { filter: brightness(0) invert(1); }
    .site-header--solid .menu-toggle { color: var(--ink); }
    .header-book { display: none; }
    .hero { min-height: 650px; }
    .hero__content { left: 1.5rem; right: auto; width: calc(100vw - 3rem); top: 51%; }
    .hero h1 { max-width: 100%; font-size: clamp(3rem, 13.5vw, 5rem); }
    .hero__intro { font-size: .95rem; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
    .hero__scroll { display: none; }
    .section { padding: 7rem 1.5rem; }
    .section-number { left: auto; right: 1.5rem; top: 2rem; }
    .intro, .section-heading, .locations, .price-strip { grid-template-columns: 1fr; }
    .intro { gap: 2.5rem; }
    .intro h2, .section h2 { font-size: clamp(3.1rem, 14vw, 5rem); }
    .editorial-image { min-height: 0; padding: 0 1.5rem 7rem; grid-template-columns: 1fr; gap: 1.5rem; }
    .editorial-image__frame { height: 115vw; max-height: 640px; }
    .editorial-image__note { padding: 0 1rem; }
    .editorial-image__mark { margin: 0; float: left; font-size: 4rem; margin-right: 1.2rem; }
    .section-heading { gap: 2rem; }
    .treatment-grid { grid-template-columns: 1fr; row-gap: 4.5rem; }
    .treatment-card:nth-child(even) { margin-top: 0; }
    .treatment-card__image { height: 116vw; max-height: 590px; }
    .treatment-card__body { padding-right: 0; }
    .treatment-card p { min-height: 0; }
    .price-strip { gap: 2rem; }
    .price-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
    .price-list span:last-child { grid-column: 1 / -1; }
    .locations__heading { position: static; }
    .location-card { padding: 2rem 1.5rem; }
    .location-card h3 { margin-top: 2rem; }
    .location-card__actions { align-items: flex-start; flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 50vw; gap: .55rem; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item span { display: none; }
    .closing { min-height: 70vh; }
    .site-footer { grid-template-columns: 1fr; padding-top: 4rem; }
    .footer-links { grid-column: auto; flex-wrap: wrap; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: .4rem; }
    .policy-hero { padding: 9rem 1.5rem 5rem; }
    .policy-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
    .policy-content { width: calc(100% - 3rem); }
    .policy-content > section { grid-template-columns: 45px minmax(0, 1fr); gap: 1rem; }
    .policy-contact > div { flex-direction: column; }
    .policy-contact a { min-width: 0; }
    .content-hero { min-height: 560px; padding: 9rem 1.5rem 5rem; }
    .content-hero h1 { font-size: clamp(3.4rem,15vw,5.5rem); }
    .faq-section, .blog-index { padding: 5rem 1.5rem; }
    .faq-item summary { min-height: 95px; grid-template-columns: 38px 1fr 28px; gap: .7rem; }
    .faq-item > div { padding: 0 0 2rem 45px; }
    .blog-grid { grid-template-columns: 1fr; gap: 4.5rem; }
    .blog-card--featured { grid-column: auto; display: block; }
    .blog-card__image, .blog-card--featured .blog-card__image { height: 110vw; max-height: 590px; }
    .blog-card__body > p { min-height: 0; }
    .blog-article { padding: 9rem 1.5rem 5rem; }
    .blog-article > figure { height: 105vw; max-height: 620px; margin-bottom: 3rem; }
    .compact-footer { grid-template-columns: 1fr; }
    .compact-footer .footer-links { justify-self: start; }
    .dialog-locations { grid-template-columns: 1fr; }
    .booking-dialog { padding: 3.5rem 1.2rem 1.5rem; }
    .dialog-heading h2 { font-size: 2.8rem; }
    .dialog-locations a { min-height: 125px; }
}

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