:root {
    --purple: #522458;
    --purple-deep: #3e1745;
    --gold: #b69058;
    --mist: #d8d0d1;
    --mist-light: #eee9e8;
    --cream: #f7f3ee;
    --white: #fff;
    --ink: #30272f;
    --serif: "Noto Serif Display", Georgia, serif;
    --sans: Helvetica, Arial, sans-serif;
    --content: 1240px;
    --heading-h1: clamp(2.64rem, 3.52vw, 3.36rem);
    --heading-h2: clamp(2.244rem, 2.992vw, 2.856rem);
    --heading-h3: 1rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--purple);
    font-family: var(--sans);
    font-size: 16px;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    font-style: normal;
    font-synthesis: none;
    font-stretch: normal;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: var(--sans);
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    font-style: normal;
    font-synthesis: none;
}

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

a {
    color: inherit;
}

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

h1,
h2 {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-style: normal;
    font-synthesis: none;
    line-height: 1.08;
}

h1 {
    font-weight: 400;
}

h2 {
    font-weight: 300;
}

h3 {
    font-family: var(--sans);
    font-size: var(--heading-h3);
    font-weight: 400;
    line-height: 1.35;
}

h1 {
    font-size: 52px;
}

.page-inner h1 {
    font-size: 52px;
}

h2 {
    font-size: 52px;
}

h1,
h2,
.main-nav,
.button,
.treatment-card span {
    font-variation-settings: "wdth" 100;
}

p {
    margin-bottom: 1.35rem;
}

.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;
    top: -5rem;
    left: 1rem;
    padding: .7rem 1rem;
    background: var(--white);
    color: var(--purple);
}

.skip-link:focus {
    top: 1rem;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.site-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    min-height: 90px;
    padding: .75rem clamp(2rem, 4vw, 3.8rem);
    background: var(--white);
}

.site-header--bordered {
    border-bottom: 1px solid var(--mist-light);
}

.brand {
    width: min(266px, 100%);
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    margin-left: auto;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .075em;
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(6px);
}

.main-nav a,
.main-nav button {
    position: relative;
    padding: .55rem 0;
    border: 0;
    background: transparent;
    color: var(--purple);
    font: inherit;
    font-weight: 400;
    letter-spacing: inherit;
    text-decoration: none;
    text-transform: inherit;
    cursor: pointer;
}

.main-nav a::after,
.main-nav button::after {
    position: absolute;
    right: 0;
    bottom: .2rem;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav button:hover::after,
.main-nav [aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.mobile-nav-logo,
.mobile-nav-socials,
.mobile-contact-actions {
    display: none;
}

.header-social {
    width: 22px;
    margin-left: clamp(4.5rem, 9vw, 8.5rem);
    flex: 0 0 auto;
    transform: translateY(6px);
}

.submenu {
    position: absolute;
    top: calc(100% + .8rem);
    left: 50%;
    width: max-content;
    min-width: 100%;
    max-width: calc(100vw - 3rem);
    padding: .7rem;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(62, 23, 69, .14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: .8rem;
    content: "";
}

.submenu a {
    display: block;
    margin: .15rem 0;
    padding: .65rem .8rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .01em;
    text-transform: none;
    white-space: nowrap;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.header-social {
    justify-self: end;
    width: 22px;
}

.header-social img,
.socials img,
.contact-phone img {
    width: 100%;
}

.menu-toggle {
    display: none;
    justify-self: end;
    padding: .7rem;
    border: 0;
    background: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 27px;
    margin: 5px 0;
    border-top: 2px solid var(--purple);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: .72rem 1.45rem;
    border: 1px solid var(--purple);
    background: transparent;
    color: var(--purple);
    font-family: var(--serif);
    font-size: calc(1rem + 1px);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.button--soft {
    border-color: var(--mist);
    background: var(--mist);
}

.contact-form .button--soft {
    text-transform: lowercase;
}

.kicker {
    margin-bottom: .4rem;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.home-hero {
    position: relative;
    height: clamp(580px, 33.2vw, 640px);
    min-height: 0;
    overflow: hidden;
    background: var(--mist);
    animation: hero-fade-in .9s ease both;
}

@keyframes hero-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    grid-template-columns: 40% 60%;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .85s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    object-fit: cover;
}

.hero-slide picture:first-child img {
    object-position: 48% 40%;
}

.hero-slide picture:last-child img {
    object-position: 50% 44%;
}

.hero-slide::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(56, 34, 40, .04), rgba(56, 34, 40, .15) 50%, rgba(56, 34, 40, .04));
    content: "";
    pointer-events: none;
}

.hero-treatment-link {
    position: relative;
    z-index: 1;
    display: block;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    color: var(--purple);
    text-decoration: none;
}

.hero-slide--mobile {
    display: none;
}

.hero-treatment-link picture {
    display: block;
}

.hero-slide--treatments > .hero-treatment-link:first-child img {
    object-position: 50% 30%;
}

.hero-slide--treatments > .hero-treatment-link:last-child img {
    object-position: 55% 45%;
}

.hero-treatment-link span {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 13%;
    left: 14px;
    display: grid;
    min-height: 84px;
    padding: .8rem 1rem;
    place-items: center;
    background: rgba(216, 208, 209, .7);
    font-family: var(--serif);
    font-size: 1.29375rem;
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.hero-message {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(980px, 72vw);
    color: var(--white);
    text-align: center;
    text-shadow: 0 3px 30px rgba(46, 27, 36, .25);
    transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
    .hero-message {
        width: 1200px;
        min-width: 1200px;
    }
}

.hero-message h1 {
    margin: 0;
    font-size: clamp(3.25rem, 3.45vw, 4rem);
    line-height: 1.08;
}

.hero-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(216, 208, 209, .92);
    color: var(--purple);
    font-family: Georgia, serif;
    font-size: 2.7rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-control span {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0;
    overflow: hidden;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    font-size: 0;
}

.hero-control--previous {
    left: clamp(1.25rem, 1.5vw, 1.75rem);
}

.hero-control--previous span {
    transform: translateX(1.5px) rotate(-135deg);
}

.hero-control--next {
    right: clamp(1.25rem, 1.5vw, 1.75rem);
}

.hero-control--next span {
    transform: translateX(-1.5px) rotate(45deg);
}

.hero-caption {
    min-height: 64px;
    padding: 1.1rem 1.5rem;
    background: var(--white);
    color: var(--purple);
    font-size: 1rem;
    letter-spacing: .04em;
    text-align: center;
}

.section-heading {
    max-width: 930px;
    margin: 0 auto clamp(4rem, 7vw, 7rem);
    text-align: center;
}

.section-heading h2 {
    margin-bottom: .35rem;
}

.section-heading p {
    font-size: 1rem;
    letter-spacing: .04em;
}

.home-about {
    width: min(900px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(5.5rem, 8vw, 7.5rem) 0 clamp(6rem, 9vw, 8rem);
}

.home-about .section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.home-about .section-heading h2 {
    margin-bottom: 1.45rem;
    font-size: clamp(3.3rem, 4.4vw, 4.2rem);
    line-height: .98;
}

.home-about .section-heading p {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.55;
}

.about-grid {
    display: grid;
    grid-template-columns: 440px 360px;
    gap: 100px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-portrait {
    min-width: 0;
}

.about-portrait picture {
    display: block;
    aspect-ratio: .78;
    overflow: hidden;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 14%;
}

.about-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.55rem;
}

.about-actions .button {
    min-width: 168px;
    min-height: 54px;
    padding: .75rem 1.35rem;
    border: 0;
    background: var(--mist);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
}

.about-actions .socials {
    gap: .65rem;
}

.about-actions .socials a {
    width: 38px;
    height: 38px;
}

.about-contact {
    align-self: start;
    padding-top: 2.8rem;
    text-align: center;
}

.about-logo {
    width: min(250px, 90%);
    margin: 0 auto 3rem;
    transform: translateX(10px);
}

.about-address {
    display: grid;
    gap: .9rem;
    font-size: 1rem;
    line-height: 1.65;
}

.about-address a {
    text-decoration: none;
}

.about-info-block h3 {
    margin-bottom: .15rem;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.about-info-block p {
    margin-bottom: 0;
}

.socials {
    display: flex;
    gap: 1.05rem;
    align-items: center;
}

.socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
}

.socials--gold {
    justify-content: center;
    margin-top: 2.2rem;
}

.treatments {
    overflow: hidden;
    padding: clamp(4.5rem, 5.65vw, 5.35rem) 0 clamp(3.6rem, 4.3vw, 4.1rem) clamp(1.5rem, 5.75vw, 5.45rem);
    overflow: hidden;
    background: var(--mist);
}

.treatments-inner {
    display: grid;
    grid-template-columns: minmax(330px, 422px) minmax(0, 1fr);
    gap: clamp(2.5rem, 4vw, 3.8rem);
    align-items: start;
    max-width: none;
    margin: 0;
}

.treatments-intro {
    min-width: 0;
    padding-top: clamp(5.2rem, 7vw, 6.65rem);
}

.treatments-intro h2 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.7rem, 3.35vw, 3.2rem);
    line-height: 1.18;
}

.treatments-intro h2 span {
    white-space: nowrap;
}

.treatments-intro p:last-child {
    max-width: 350px;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.42;
}

.treatments-slider {
    min-width: 0;
}

.treatments-track {
    display: flex;
    gap: clamp(2rem, 3.85vw, 3.65rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 clamp(1.5rem, 5vw, 4.75rem) 0 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
}

.treatments-track::-webkit-scrollbar {
    display: none;
}

.treatment-card {
    position: relative;
    flex: 0 0 clamp(300px, 23.7vw, 358px);
    aspect-ratio: 2 / 3;
    overflow: hidden;
    color: var(--purple);
    scroll-snap-align: start;
    text-decoration: none;
}

.treatment-card picture,
.treatment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.treatment-card img {
    object-fit: cover;
    transition: transform .6s ease;
}

.treatment-card span {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 16px;
    left: 14px;
    display: grid;
    min-height: 84px;
    padding: .8rem 1rem;
    place-items: center;
    background: rgba(216, 208, 209, .7);
    font-family: var(--serif);
    font-size: 1.29375rem;
    font-weight: 400;
    hyphens: auto;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-align: center;
}

.treatment-card:hover img {
    transform: scale(1.035);
}

.treatments-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.15rem;
}

.treatments-controls button {
    display: grid;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(82, 36, 88, .14);
    color: var(--purple);
    cursor: pointer;
    place-items: center;
    transition: background-color .2s ease, color .2s ease;
}

.treatments-controls button:hover {
    background: var(--purple);
    color: var(--white);
}

.treatments-controls span {
    margin-top: -3px;
    font-family: Georgia, serif;
    font-size: 2.35rem;
    line-height: 1;
}

.contact-section {
    width: min(900px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(5.5rem, 8vw, 7.5rem) 0 clamp(6rem, 9vw, 8rem);
    background: var(--white);
}

.contact-heading {
    width: 100%;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-heading h2 {
    margin-bottom: 1.65rem;
    font-size: clamp(3.4rem, 4.5vw, 4.15rem);
}

.contact-heading p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.45;
}

.contact-heading__intro span {
    display: block;
}

.contact-layout {
    display: grid;
    grid-template-columns: 345px 384px;
    gap: 103px;
    align-items: start;
    max-width: 832px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin: 0 0 .8rem;
    padding: .72rem .8rem;
    border: 0;
    border-bottom: 1px solid rgba(82, 36, 88, .24);
    border-radius: 0;
    background: transparent;
    color: var(--purple);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--purple);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    opacity: .72;
}

.contact-form textarea {
    min-height: 134px;
    margin-top: 2.2rem;
    border: 1px solid rgba(82, 36, 88, .24);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: 0;
}

.privacy-check {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: .9rem 0 2.2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.privacy-check input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: .05rem 0 0;
}

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

.form-status {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    font-size: 1rem;
}

.form-status--success {
    background: #edf4ed;
}

.form-status--error {
    background: #f8e9e9;
}

.contact-person picture {
    display: block;
    aspect-ratio: 384 / 494;
    overflow: hidden;
}

.contact-person picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
}

.contact-phone {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.65rem;
    font-size: 1.15rem;
    letter-spacing: .08em;
    text-decoration: none;
}

.contact-phone img {
    width: 40px;
}

.page-title {
    max-width: 990px;
    margin: 0 auto;
    padding: clamp(7rem, 12vw, 13rem) 1.5rem clamp(6rem, 10vw, 10rem);
    text-align: center;
}

.page-title h1 {
    margin-bottom: calc(1.2rem + 5px);
    font-size: var(--heading-h1);
}

.page-title p {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1rem;
}

.treatment-intro,
.vita-intro {
    display: grid;
    grid-template-columns: minmax(290px, .72fr) minmax(420px, 1.28fr);
    gap: clamp(4rem, 9vw, 10rem);
    align-items: center;
    max-width: var(--content);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(8rem, 13vw, 13rem);
}

.treatment-intro {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: stretch;
    max-width: 1100px;
}

.treatment-intro__image,
.vita-intro > picture {
    display: block;
    aspect-ratio: .69;
    overflow: hidden;
}

.treatment-intro__image {
    height: 100%;
    aspect-ratio: auto;
}

.treatment-intro__image img,
.vita-intro > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-intro__copy h2,
.vita-intro h2 {
    margin-bottom: 2.4rem;
    font-size: clamp(2.75rem, 4.2vw, 5.1rem);
}

.treatment-intro__copy h2 {
    font-size: var(--heading-h2);
}

.treatment-intro__copy p + p {
    margin-top: 1.75rem;
}

@media (min-width: 901px) {
    .treatment-intro__image {
        position: relative;
        height: auto;
    }

    .treatment-intro__image img {
        position: absolute;
        inset: 0;
    }

    .treatment-intro__copy {
        padding-block: 15px;
    }
}

.treatment-intro__copy p,
.vita-intro p,
.treatment-detail__copy p,
.vita-expertise p {
    font-size: 1rem;
}

.treatment-detail,
.vita-expertise {
    padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(8rem, 13vw, 14rem);
}

.treatment-detail > h2,
.vita-expertise > h2 {
    max-width: 1050px;
    margin: 0 auto clamp(5rem, 8vw, 8rem);
    font-size: clamp(2.65rem, 4.2vw, 5rem);
    text-align: center;
}

.treatment-detail__layout,
.vita-expertise__layout {
    display: grid;
    grid-template-columns: minmax(310px, .86fr) minmax(420px, 1.14fr);
    gap: clamp(4rem, 10vw, 11rem);
    align-items: center;
    max-width: var(--content);
    margin: 0 auto;
}

@media (min-width: 901px) {
    .treatment-detail__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(3rem, 5vw, 5rem);
        max-width: 1135px;
    }

    .treatment-detail .detail-gallery {
        min-height: 525px;
    }

    .treatment-detail .detail-gallery picture {
        width: 53%;
        aspect-ratio: 2 / 3;
    }

    .treatment-detail .detail-gallery picture:first-child {
        top: auto;
        bottom: 0;
        left: 0;
    }

    .treatment-detail .detail-gallery picture:nth-child(2) {
        top: 0;
        right: 0;
        bottom: auto;
    }

    .treatment-detail .detail-gallery--single picture:first-child {
        right: auto;
        left: 10%;
        width: 76%;
    }

    .vita-expertise__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(3rem, 5vw, 5rem);
        max-width: 1135px;
    }

    .vita-expertise__layout > :first-child,
    .vita-expertise__portrait {
        align-self: center;
    }

    .vita-expertise__portrait > picture {
        width: 76%;
        margin-right: auto;
        margin-left: auto;
    }
}

.treatment-detail .treatment-detail__copy {
    align-self: center;
}

.treatment-detail .treatment-detail__copy p + p {
    margin-top: 1.75rem;
}

.detail-gallery {
    position: relative;
    min-height: 650px;
}

.detail-gallery picture {
    position: absolute;
    display: block;
    width: 64%;
    aspect-ratio: .78;
    overflow: hidden;
}

.detail-gallery picture:first-child {
    top: 0;
    left: 0;
    z-index: 2;
}

.detail-gallery picture:nth-child(2) {
    right: 0;
    bottom: 0;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-gallery--single picture {
    right: auto;
    left: 10%;
    width: 76%;
}

.page-title--vita {
    padding-bottom: clamp(7rem, 12vw, 12rem);
}

.vita-intro {
    padding-bottom: clamp(9rem, 14vw, 15rem);
}

.vita-intro > picture img {
    object-position: 52% 10%;
}

.vita-expertise__portrait > picture {
    display: block;
    aspect-ratio: .71;
    overflow: hidden;
}

.vita-expertise__portrait > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}

.vita-expertise__portrait > img {
    width: min(340px, 80%);
    margin: 2.2rem auto 0;
}

.philosophy {
    padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 10vw, 12rem);
    background: var(--purple);
    color: #d4b47c;
    text-align: center;
}

.philosophy h2 {
    margin-bottom: 2rem;
    color: #d4b47c;
}

.philosophy p {
    max-width: 1050px;
    margin: 0 auto;
    font-size: 1rem;
}

.site-footer {
    position: relative;
    min-height: 620px;
    padding: clamp(5rem, 7vw, 7rem) 1.5rem 5rem;
    background: var(--mist);
    color: var(--purple);
}

.footer-inner {
    display: grid;
    grid-template-columns: .85fr 1fr 1.05fr;
    gap: clamp(4rem, 8vw, 8rem);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer h2 {
    margin: 0;
    font-family: var(--sans);
    font-size: 1rem !important;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.55;
    text-transform: none;
}

.site-footer p,
.site-footer a {
    font-size: 1rem;
}

.site-footer a {
    text-decoration: none;
}

.footer-nav a,
.footer-details a {
    display: block;
    line-height: 1.55;
}

.footer-nav a {
    position: relative;
    width: fit-content;
    line-height: 1.9;
}

.footer-nav a::after {
    position: absolute;
    right: 0;
    bottom: .2rem;
    left: 0;
    height: 1px;
    background: var(--white);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

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

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
}

.footer-details p {
    margin: 0;
    line-height: 1.9;
}

.footer-nav__strong {
    font-weight: 700;
}

.footer-nav__group {
    margin: 1.15rem 0 1.35rem;
}

.footer-nav__legal {
    margin-top: 3rem;
}

.footer-brand {
    align-self: start;
    text-align: center;
}

.footer-brand > img {
    width: min(300px, 100%);
    margin: 0 auto 2.6rem;
    transform: translateX(5px);
}

.footer-brand .socials {
    justify-content: center;
    gap: 1rem;
}

.footer-brand .socials img {
    width: 42px;
    height: 42px;
}

.copyright {
    position: absolute;
    right: 1.5rem;
    bottom: 2rem;
    left: 1.5rem;
    width: min(1200px, calc(100% - 3rem));
    margin: 0;
    font-size: 1rem !important;
    margin-inline: auto;
}

.legal,
.not-found {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(6rem, 10vw, 11rem) 1.5rem;
}

.legal h1,
.not-found h1 {
    margin-bottom: 3rem;
}

.legal h2 {
    margin-top: 2.6rem;
    font-size: 2rem;
}

.legal p,
.not-found p {
    font-size: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1180px) {
    .site-header {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .main-nav {
        gap: 2rem;
    }

    .header-social {
        margin-left: 3rem;
    }

    .treatments-inner {
        grid-template-columns: minmax(285px, 340px) minmax(0, 1fr);
        gap: 2rem;
    }

    .treatments-intro {
        padding-top: 4.5rem;
    }

    .treatments-intro p:last-child {
        max-width: none;
    }

    .footer-inner {
        grid-template-columns: .85fr 1fr .9fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding-top: .9rem;
        padding-bottom: .9rem;
    }

    .brand {
        width: 215px;
    }

    .site-header > .brand {
        transform: translateX(-10px);
    }

    .header-social {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 31;
    }

    .main-nav {
        position: fixed;
        z-index: 30;
        inset: 0;
        display: flex;
        flex-direction: column;
        gap: .4rem;
        align-items: center;
        justify-content: center;
        min-height: 100dvh;
        padding: 6rem 2rem 3rem;
        overflow-y: auto;
        background: #b69058;
        color: var(--white);
        font-family: var(--serif);
        font-size: clamp(2rem, 8vw, 3.25rem);
        font-weight: 400;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        margin-left: 0;
        transform: translateY(-18px);
        transition: opacity .38s ease, transform .38s ease, visibility .38s ease;
    }

    .main-nav .mobile-nav-logo {
        position: absolute;
        top: .9rem;
        left: 2.5rem;
        display: block;
        width: 215px;
        padding: 0;
        transform: none;
    }

    .mobile-nav-logo img {
        display: block;
        width: 100%;
        height: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-nav-socials {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        display: flex;
        gap: 1.15rem;
        align-items: center;
        justify-content: center;
        transform: translateX(-50%);
    }

    .mobile-nav-socials a {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
    }

    .mobile-nav-socials img {
        width: 100%;
        height: 100%;
        filter: brightness(0) invert(1);
    }

    .mobile-nav-logo::after,
    .mobile-nav-socials a::after {
        display: none;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav > *:not(.mobile-nav-logo):not(.mobile-nav-socials) {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity .35s ease, transform .35s ease;
    }

    .main-nav.open > *:not(.mobile-nav-logo):not(.mobile-nav-socials) {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.open > :nth-child(2) {
        transition-delay: .06s;
    }

    .main-nav.open > :nth-child(3) {
        transition-delay: .12s;
    }

    .main-nav a,
    .main-nav button {
        color: var(--white);
        text-align: center;
    }

    .main-nav a::after,
    .main-nav button::after {
        background: var(--white);
    }

    .nav-dropdown button {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .submenu {
        position: static;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        transform: none;
        visibility: hidden;
        transition: max-height .35s ease, opacity .3s ease, padding .35s ease, visibility .35s ease;
    }

    .submenu::before {
        display: none;
    }

    .submenu a {
        width: 100%;
        margin: .1rem 0;
        padding: .42rem .5rem;
        color: var(--white);
        font-size: clamp(1.2rem, 4.8vw, 1.55rem);
        font-weight: 400;
        text-align: center;
        white-space: normal;
    }

    .nav-dropdown:hover .submenu {
        max-height: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transform: none;
        visibility: hidden;
    }

    .nav-dropdown.open .submenu,
    .nav-dropdown.open:hover .submenu {
        max-height: 18rem;
        padding: .4rem 0 .7rem;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
        border-color: var(--white);
    }

    body.nav-open {
        overflow: hidden;
    }

    .mobile-contact-actions {
        position: fixed;
        z-index: 25;
        right: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom));
        left: 1rem;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        pointer-events: none;
    }

    .mobile-call-button,
    .mobile-contact-socials a {
        background: #522458;
        color: var(--white);
        box-shadow: 0 8px 24px rgba(48, 39, 47, .22);
        pointer-events: auto;
    }

    .mobile-call-button {
        display: inline-flex;
        min-width: 112px;
        min-height: 50px;
        padding: .75rem 1.35rem;
        align-items: center;
        justify-content: center;
        font-family: var(--sans);
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: .03em;
        text-decoration: none;
    }

    .mobile-contact-socials {
        display: flex;
        flex-direction: column;
        gap: .65rem;
    }

    .mobile-contact-socials a {
        display: grid;
        width: 50px;
        height: 50px;
        place-items: center;
    }

    .mobile-contact-socials img {
        width: 27px;
        height: 27px;
        filter: brightness(0) invert(1);
    }

    .home-hero {
        min-height: 690px;
    }

    .hero-message {
        width: 78vw;
    }

    .hero-message h1 {
        font-size: clamp(3rem, 7.5vw, 5.4rem);
    }

    .about-grid,
    .contact-layout,
    .treatments-inner,
    .treatment-intro,
    .vita-intro,
    .treatment-detail__layout,
    .vita-expertise__layout {
        grid-template-columns: 1fr;
    }

    .treatments {
        padding-right: 0;
        padding-left: clamp(1.5rem, 7vw, 4rem);
    }

    .treatments-inner {
        gap: 3.5rem;
    }

    .treatments-intro {
        max-width: 600px;
        padding-top: 0;
        padding-right: clamp(1.5rem, 7vw, 4rem);
    }

    .treatments-intro h2 {
        font-size: clamp(2.65rem, 7vw, 3.4rem);
    }

    .about-grid {
        max-width: 540px;
    }

    .about-contact {
        padding-top: 1rem;
    }

    .contact-layout {
        max-width: 620px;
        gap: 3.5rem;
    }

    .contact-person {
        max-width: 430px;
        margin: 2rem auto 0;
    }

    .treatment-intro,
    .vita-intro,
    .treatment-detail__layout,
    .vita-expertise__layout {
        max-width: 720px;
    }

    .treatment-intro__image,
    .vita-intro > picture {
        width: min(480px, 100%);
        margin: 0 auto;
    }

    .detail-gallery {
        width: min(650px, 100%);
        margin: 0 auto;
    }

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

@media (max-width: 680px) {
    body {
        line-height: 1.65;
    }

    h2 {
        font-size: clamp(2.3rem, 10vw, 3.6rem);
    }

    .home-hero {
        min-height: 567px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hero-slide > picture:nth-of-type(2) {
        display: none;
    }

    .hero-slide:not(.hero-slide--mobile):not(.hero-slide--treatments) > picture:first-child img {
        object-position: 0 40%;
        transform: translateX(2.5%) scale(1.05);
        transform-origin: center;
    }

    .hero-slide--treatments {
        grid-template-columns: 1fr 1fr;
    }

    .hero-slide--desktop {
        display: none;
    }

    .hero-slide--mobile {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-slide--mobile .hero-treatment-link {
        width: 100%;
    }

    .hero-slide--mobile .hero-treatment-link picture {
        display: block;
    }

    .hero-slide--zahnaufhellung .hero-treatment-link img {
        object-position: 50% 28%;
    }

    .hero-slide--haarentfernung .hero-treatment-link img {
        object-position: 58% 50%;
    }

    .hero-slide--treatments picture:last-child {
        display: block;
    }

    .hero-slide--treatments > .hero-treatment-link:first-child img {
        object-position: 50% 30%;
    }

    .hero-slide--treatments > .hero-treatment-link:last-child img {
        object-position: 57% 50%;
    }

    .hero-treatment-link span {
        right: 18px;
        bottom: 12%;
        left: 18px;
        min-height: 72px;
        padding: .65rem .5rem;
        font-size: 1.15rem;
    }

    .hero-message {
        top: 50%;
        bottom: auto;
        left: 3.5rem;
        width: min(46vw, 175px);
        text-align: left;
        transform: translateY(-50%);
    }

    .home-hero .hero-message h1 {
        font-size: clamp(1.9rem, 8.2vw, 2.1rem) !important;
    }

    .hero-message h1 {
        font-size: clamp(2.75rem, 11.5vw, 4rem);
    }

    .hero-control {
        width: 40px;
        height: 40px;
    }

    .hero-control--previous {
        left: .7rem;
    }

    .hero-control--next {
        right: .7rem;
    }

    .section-heading {
        margin-bottom: 3.5rem;
    }

    .treatment-card {
        flex-basis: min(78vw, 350px);
    }

    .contact-heading {
        margin-bottom: 3.5rem;
    }

    .page-title {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .page-title h1 {
        font-size: 22px;
    }

    .detail-gallery {
        min-height: 530px;
    }

    .treatment-detail--dauerhafte-haarentfernung .detail-gallery--single,
    .treatment-detail--dauerhafte-haarentfernung .detail-gallery--single picture {
        width: 100%;
    }

    .treatment-detail--dauerhafte-haarentfernung .detail-gallery--single {
        margin-bottom: 30px;
    }

    .treatment-detail--dauerhafte-haarentfernung .detail-gallery--single picture {
        right: 0;
        left: 0;
    }

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

    .site-footer {
        gap: 3.5rem;
        padding-bottom: 5rem;
    }

    .footer-brand {
        grid-column: auto;
        justify-self: start;
        text-align: left;
    }

    .footer-brand > img {
        margin-left: 0;
    }

    .footer-brand .socials {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .home-about .section-heading h2 {
        font-size: clamp(2.65rem, 12vw, 3rem);
    }

    .treatment-card {
        flex-basis: min(82vw, 330px);
    }

    .detail-gallery {
        min-height: 450px;
    }

    .detail-gallery picture {
        width: 72%;
    }
}

h1,
h2,
.hero-message h1,
.page-home h1,
.page-inner h1 {
    font-family: var(--serif);
    font-size: var(--heading-h1);
}

h1,
.hero-message h1,
.page-home h1,
.page-inner h1 {
    font-weight: 400;
}

h2 {
    font-size: var(--heading-h2) !important;
    font-weight: 400;
}

@media (max-width: 680px) {
    :root {
        --heading-h1: clamp(2.12rem, 9.6vw, 2.4rem);
        --heading-h2: clamp(1.802rem, 8.16vw, 2.04rem);
    }

    h1,
    h2,
    .hero-message h1,
    .page-home h1,
    .page-inner h1,
    .home-about .section-heading h2 {
        font-size: var(--heading-h2);
    }

    .page-title,
    .page-title--vita {
        padding: 4rem 1.5rem 3.5rem;
    }

    .page-title p {
        line-height: 1.5;
    }

    .page-title h1 {
        hyphens: auto;
        overflow-wrap: anywhere;
    }

    .treatment-intro,
    .vita-intro {
        gap: 2.25rem;
        padding-right: 1.5rem;
        padding-bottom: 5rem;
        padding-left: 1.5rem;
    }

    .treatment-intro__copy h2,
    .vita-intro h2 {
        margin-bottom: 1.5rem;
        hyphens: auto;
        overflow-wrap: anywhere;
    }

    .treatment-intro__copy,
    .vita-intro > div {
        min-width: 0;
    }

    .treatment-intro__copy p + p,
    .vita-intro p + p,
    .treatment-detail__copy p + p,
    .vita-expertise__layout p + p {
        margin-top: 1.4rem;
    }

    .treatment-detail,
    .vita-expertise {
        padding-right: 1.5rem;
        padding-bottom: 5rem;
        padding-left: 1.5rem;
    }

    .treatment-detail > h2,
    .vita-expertise > h2 {
        margin-bottom: 2.75rem;
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .treatment-detail__layout,
    .vita-expertise__layout {
        gap: 2.5rem;
    }

    .detail-gallery {
        min-height: 430px;
    }

    .philosophy {
        padding: 4.5rem 1.5rem;
    }

    .philosophy h2 {
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        width: 100%;
        margin-top: 40px;
        justify-self: stretch;
        text-align: center;
    }

    .footer-brand > img {
        margin-right: auto;
        margin-left: auto;
        transform: translateX(13px);
    }

    .footer-brand .socials {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.footer-cookie-settings {
    display: block;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.9;
    cursor: pointer;
}

.cookie-consent-overlay[hidden],
.cookie-consent[hidden],
.cookie-consent__preferences[hidden] {
    display: none !important;
}

.cookie-consent-overlay {
    position: fixed;
    z-index: 9998;
    inset: 0;
    background: rgba(48, 39, 47, .34);
    pointer-events: none;
}

.cookie-consent {
    position: fixed;
    z-index: 9999;
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1rem, 3vw, 2.5rem);
    width: min(680px, calc(100% - 2rem));
    max-height: calc(100dvh - 2rem);
    padding: clamp(1.4rem, 3vw, 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(82, 36, 88, .16);
    background: var(--white);
    box-shadow: 0 22px 70px rgba(48, 39, 47, .24);
    color: var(--ink);
    font-family: var(--sans);
    font-size: .95rem;
    line-height: 1.55;
}

.cookie-consent:focus {
    outline: none;
}

.cookie-consent__eyebrow {
    margin-bottom: .35rem;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin-bottom: .75rem;
    color: var(--purple);
    font-family: var(--serif);
    font-size: 2rem !important;
    font-weight: 400;
}

.cookie-consent p {
    margin-bottom: 1.4rem;
}

.cookie-consent a {
    color: var(--purple);
    font-weight: 700;
    text-underline-offset: 3px;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    justify-content: flex-end;
}

.cookie-consent__button {
    min-height: 46px;
    padding: .7rem 1.1rem;
    border: 1px solid rgba(82, 36, 88, .2);
    background: var(--white);
    color: var(--purple);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__button--soft {
    background: var(--mist-light);
}

.cookie-consent__button--primary {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    border-color: var(--gold);
}

.cookie-consent__preferences {
    margin-top: 1.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--mist);
}

.cookie-consent__option {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: .75rem;
    padding: .9rem;
    border: 1px solid var(--mist);
    background: var(--cream);
    cursor: pointer;
}

.cookie-consent__option--essential {
    cursor: default;
}

.cookie-consent__option div {
    display: grid;
    gap: .15rem;
}

.cookie-consent__option strong {
    color: var(--purple);
}

.cookie-consent__option small {
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.45;
}

.cookie-consent__switch {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    height: 26px;
}

.cookie-consent__switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookie-consent__switch span {
    position: absolute;
    inset: 0;
    border-radius: 99px;
    background: #8c858b;
    transition: background .2s ease;
}

.cookie-consent__switch span::before {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    content: "";
    transition: transform .2s ease;
}

.cookie-consent__switch input:checked + span {
    background: var(--purple);
}

.cookie-consent__switch input:checked + span::before {
    transform: translateX(20px);
}

.cookie-consent__switch input:focus-visible + span {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.cookie-consent__save {
    width: 100%;
    margin-top: .35rem;
}

@media (max-width: 680px) {
    .cookie-consent {
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        width: calc(100% - 20px);
        max-height: calc(100dvh - 20px);
        padding: 1.25rem;
    }

    .cookie-consent h2 {
        font-size: 1.65rem !important;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-consent__button {
        width: 100%;
    }

    .cookie-consent__button--primary {
        grid-column: 1 / -1;
    }
}
