/* =========================================================
   LA PEACE™
   CONTEMPORARY MEDITERRANEAN BATHHOUSE
   ========================================================= */


:root {

    --cream: #f4efe5;
    --cream-soft: #e9dfcf;
    --plaster: #d8c4a7;

    --cobalt: #1646aa;
    --cobalt-deep: #092f78;
    --cobalt-dark: #082257;

    --terracotta: #b95f3e;
    --terracotta-dark: #88402b;
    --clay: #d98f67;

    --ink: #181918;
    --ink-soft: #454641;

    --white: #fffdf7;

    --line: rgba(24,25,24,.18);

    --display: "Sora", sans-serif;
    --body: "Manrope", sans-serif;

    --max: 1200px;

    --gutter: clamp(
        1rem,
        3vw,
        2.5rem
    );

    --section: clamp(
        5.5rem,
        9vw,
        9rem
    );

}


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


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    overflow-x: hidden;

    background: var(--cream);

    color: var(--ink);

    font-family: var(--body);

    font-size: 16px;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}


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


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


h1,
h2,
h3 {

    margin-bottom: 1.4rem;

    font-family: var(--display);

    font-weight: 600;

    letter-spacing: -.055em;

}


h1 {

    font-size: clamp(
        4.7rem,
        8.7vw,
        9.3rem
    );

    line-height: .86;

}


h2 {

    font-size: clamp(
        3.8rem,
        6.8vw,
        7.2rem
    );

    line-height: .9;

}


h3 {

    font-size: clamp(
        1.7rem,
        2.5vw,
        2.6rem
    );

    line-height: .98;

}


h1 span,
h1 strong,
h2 span,
h2 strong {
    display: block;
}


h1 strong,
h2 strong {
    color: var(--terracotta);
}


section[id] {
    scroll-margin-top: 5.5rem;
}


::selection {
    background: var(--cobalt);
    color: white;
}


.skip-link {

    position: fixed;

    z-index: 9999;

    top: 1rem;
    left: 1rem;

    transform: translateY(-200%);

    padding: .75rem 1rem;

    background: var(--ink);

    color: white;

}


.skip-link:focus {
    transform: none;
}


:focus-visible {

    outline: 3px solid var(--terracotta);

    outline-offset: 4px;

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    z-index: 100;

    top: 0;

    background: rgba(244,239,229,.93);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(18px);

}


.site-header__inner {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    min-height: 5rem;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 2rem;

}


.brand {

    width: fit-content;

    font-family: var(--display);

    font-size: 1.55rem;

    font-weight: 700;

    letter-spacing: -.055em;

}


.site-nav {

    display: flex;

    justify-content: center;

    gap: clamp(
        1rem,
        2vw,
        2rem
    );

}


.site-nav a {

    font-size: .72rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.header-cta {

    justify-self: end;

    display: grid;

    place-items: center;

    width: 4rem;
    height: 4rem;

    border-radius: 50%;

    background: var(--cobalt);

    color: white;

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

    transition: .2s ease;

}


.header-cta:hover {
    transform: rotate(-7deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    min-height: 790px;

    background: var(--cream);

}


.hero__inner {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    min-height: 690px;

    margin: auto;

    display: grid;

    grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr);

    gap: clamp(
        3rem,
        7vw,
        7rem
    );

    align-items: center;

    padding: 5.5rem 0 4rem;

}


.hero__kicker,
.finder__intro > p,
.treatments__menu-head > span,
.experience__statement > p,
.enhancements__heading > p,
.lapis-break__copy > p,
.membership__copy > p:first-child,
.about__copy > p:first-child,
.reviews__heading > p,
.book__blue > p,
.faq__heading > p {

    margin-bottom: 1.5rem;

    font-size: .67rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.hero h1 span {
    color: var(--cobalt);
}


.hero__bottom {

    max-width: 42rem;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 2rem;

    align-items: end;

    margin-top: 2.5rem;

}


.hero__bottom > p {

    max-width: 31rem;

    margin-bottom: 0;

    color: var(--ink-soft);

    font-size: 1.03rem;

}


.round-link {

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 1rem;

    width: 10rem;
    height: 10rem;

    padding: 1.4rem;

    border-radius: 50%;

    background: var(--terracotta);

    color: white;

    font-size: .75rem;

    font-weight: 800;

    text-transform: uppercase;

    transition: .2s ease;

}


.round-link b {
    font-size: 1.4rem;
}


.round-link:hover {
    transform: rotate(5deg);
}


.hero__visual {

    position: relative;

    min-height: 580px;

}


.hero__arch {

    position: absolute;

    inset: 0 1rem 0 0;

    overflow: hidden;

    border-radius: 18rem 18rem 1rem 1rem;

    background:
        linear-gradient(
            150deg,
            #225ec9,
            var(--cobalt-dark)
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.18);

}


.hero__arch::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 55% 20%,
            rgba(255,255,255,.25),
            transparent 23%
        );

}


.hero__arch-glow {

    position: absolute;

    top: 9%;
    right: 10%;

    width: 11rem;
    height: 11rem;

    border-radius: 50%;

    background: var(--clay);

    box-shadow:
        0 0 90px rgba(217,143,103,.6);

}


.hero__arch p {

    position: absolute;

    z-index: 3;

    left: 2rem;
    bottom: 2rem;

    margin: 0;

    color: white;

    font-family: var(--display);

    font-size: clamp(
        2rem,
        3.7vw,
        4rem
    );

    font-weight: 600;

    line-height: .95;

    letter-spacing: -.05em;

}


.hero__water-line {

    position: absolute;

    left: -15%;
    right: -15%;

    border: 1px solid rgba(255,255,255,.32);

    border-radius: 50%;

}


.hero__water-line--one {

    height: 9rem;

    bottom: 10rem;

    transform: rotate(7deg);

}


.hero__water-line--two {

    height: 14rem;

    bottom: 5rem;

    transform: rotate(-4deg);

}


.hero__water-line--three {

    height: 17rem;

    bottom: -1rem;

    transform: rotate(6deg);

}


.hero__tile {

    position: absolute;

    right: -1rem;
    bottom: 2rem;

    z-index: 4;

    width: 8.8rem;
    height: 8.8rem;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 1rem;

    background: var(--white);

    border: 1px solid rgba(24,25,24,.2);

    transform: rotate(6deg);

}


.hero__tile span {

    color: var(--terracotta);

    font-size: .72rem;

    font-weight: 800;

}


.hero__tile strong {

    color: var(--cobalt);

    font-family: var(--display);

    font-size: 1.5rem;

    letter-spacing: -.05em;

}


.hero__footer {

    min-height: 100px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 2rem;

    padding: 0 max(
        var(--gutter),
        calc((100vw - var(--max)) / 2)
    );

    background: var(--terracotta);

    color: white;

    font-size: .69rem;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.hero__footer strong {
    color: #ffd3bf;
}


.hero__footer a {
    justify-self: end;
}


/* =========================================================
   FINDER
   ========================================================= */

.finder {

    padding: var(--section) max(
        var(--gutter),
        calc((100vw - var(--max)) / 2)
    );

    background: var(--white);

}


.finder__intro {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 4rem;

    align-items: end;

    margin-bottom: 5rem;

}


.finder__intro > p:first-child {
    grid-column: 1 / -1;
}


.finder__intro h2 {
    margin-bottom: 0;
}


.finder__intro h2 span {
    color: var(--cobalt);
}


.finder__intro-copy {

    max-width: 27rem;

    justify-self: end;

}


.finder__intro-copy a {

    display: inline-block;

    margin-top: 1rem;

    color: var(--cobalt);

    font-weight: 800;

}


.finder__choices {

    border-top: 1px solid var(--line);

}


.finder__choices > a {

    display: grid;

    grid-template-columns: .55fr 1fr auto;

    gap: 3rem;

    align-items: center;

    min-height: 8rem;

    border-bottom: 1px solid var(--line);

    transition:
        padding .2s ease,
        background .2s ease;

}


.finder__choices > a:hover {

    padding: 0 1.5rem;

    background: var(--cream);

}


.finder__choices span {

    color: var(--cobalt);

    font-family: var(--display);

    font-size: clamp(
        1.6rem,
        2.6vw,
        2.7rem
    );

    font-weight: 600;

    letter-spacing: -.045em;

}


.finder__choices p {

    max-width: 32rem;

    margin: 0;

    color: var(--ink-soft);

}


.finder__choices b {

    color: var(--terracotta);

    font-size: 2rem;

}


/* =========================================================
   TREATMENTS
   ========================================================= */

.treatments {

    display: grid;

    grid-template-columns:
        minmax(310px,38%)
        minmax(0,62%);

    background: var(--cream);

}


.treatments__side {

    min-height: 850px;

    display: grid;

    align-items: stretch;

    padding:
        var(--section)
        clamp(2rem,5vw,5rem);

    background: var(--plaster);

}


.treatments__arch {

    min-height: 100%;

    display: grid;

    align-items: end;

    padding: 2rem;

    border-radius: 14rem 14rem 0 0;

    background:
        linear-gradient(
            160deg,
            var(--terracotta),
            var(--terracotta-dark)
        );

}


.treatments__arch-inner {

    color: white;

}


.treatments__arch-inner span {

    display: block;

    margin-bottom: .5rem;

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.treatments__arch-inner strong {

    font-family: var(--display);

    font-size: clamp(
        4rem,
        6vw,
        7rem
    );

    line-height: .85;

    letter-spacing: -.06em;

}


.treatments__menu {

    padding:
        var(--section)
        clamp(2rem,5vw,5rem);

}


.treatments__menu-head {

    display: flex;

    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 4rem;

}


.treatments__menu-head p {

    max-width: 22rem;

    margin: 0;

    color: var(--ink-soft);

    font-size: .78rem;

}


.treatment-row {

    display: grid;

    grid-template-columns:
        minmax(190px,.75fr)
        minmax(220px,1.25fr)
        auto
        auto;

    gap: 2rem;

    align-items: center;

    min-height: 10.5rem;

    padding: 1.5rem 0;

    border-top: 1px solid var(--line);

}


.treatment-row:last-child {
    border-bottom: 1px solid var(--line);
}


.treatment-row h3 {

    margin-bottom: .4rem;

}


.treatment-row > div span {

    color: var(--terracotta);

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .1em;

}


.treatment-row > p {

    margin: 0;

    color: var(--ink-soft);

    font-size: .9rem;

}


.treatment-row > strong {

    color: var(--cobalt);

    font-family: var(--display);

    font-size: 1.8rem;

}


.treatment-row > a {

    padding-bottom: .2rem;

    border-bottom: 2px solid var(--terracotta);

    font-size: .7rem;

    font-weight: 800;

    text-transform: uppercase;

}


.treatment-row--blue {

    margin: 1rem -1.5rem 0;

    padding: 1.5rem;

    background: var(--cobalt);

    border: none;

    color: white;

}


.treatment-row--blue > p {
    color: rgba(255,255,255,.75);
}


.treatment-row--blue > strong {
    color: #f8c4ab;
}


.treatment-row--blue > div span {
    color: #f8c4ab;
}


.treatment-row--blue > a {
    border-color: #f8c4ab;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 1rem 5rem;

    padding: var(--section) 0;

}


.experience__statement {
    grid-column: 1 / -1;
}


.experience__statement h2 {

    max-width: 800px;

}


.experience__statement h2 span {
    color: var(--cobalt);
}


.experience__visual {

    position: relative;

    min-height: 560px;

    overflow: hidden;

    background: var(--cobalt);

}


.experience__sun {

    position: absolute;

    top: 10%;
    left: 8%;

    width: 12rem;
    height: 12rem;

    border-radius: 50%;

    background: var(--clay);

}


.experience__door {

    position: absolute;

    right: 12%;
    bottom: 0;

    width: 56%;
    height: 82%;

    display: flex;

    align-items: flex-end;

    padding: 2rem;

    border-radius: 14rem 14rem 0 0;

    background: var(--cobalt-dark);

    box-shadow:
        inset 0 0 70px rgba(0,0,0,.35);

}


.experience__door span {

    color: white;

    font-family: var(--display);

    font-size: 2rem;

    font-weight: 600;

}


.experience__copy {

    align-self: end;

    padding-bottom: 1rem;

}


.experience__lead {

    color: var(--cobalt);

    font-family: var(--display);

    font-size: clamp(
        1.5rem,
        2.4vw,
        2.4rem
    );

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.04em;

}


.experience__details {

    display: flex;

    flex-wrap: wrap;

    gap: .55rem;

    margin-top: 2rem;

}


.experience__details span {

    padding: .65rem .85rem;

    border: 1px solid var(--line);

    border-radius: 999px;

    font-size: .72rem;

    font-weight: 700;

}


/* =========================================================
   ENHANCEMENTS
   ========================================================= */

.enhancements {

    padding: var(--section) max(
        var(--gutter),
        calc((100vw - var(--max)) / 2)
    );

    background: var(--cream-soft);

}


.enhancements__heading {

    max-width: 750px;

    margin-bottom: 4rem;

}


.enhancements__heading h2 span {
    color: var(--cobalt);
}


.enhancements__track {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 1rem;

}


.enhancements__track article {

    min-height: 23rem;

    display: flex;

    flex-direction: column;

    padding: 1.6rem;

    background: var(--white);

    border-radius: 9rem 9rem 1rem 1rem;

}


.enhancements__track article:nth-child(2) {
    background: #d6e0ef;
}


.enhancements__track article:nth-child(3) {
    background: #dfb092;
}


.enhancements__track article:nth-child(4) {

    background: var(--cobalt);

    color: white;

}


.enhancements__track article > span {

    align-self: flex-end;

    margin-bottom: auto;

    font-size: .72rem;

    font-weight: 800;

}


.enhancements__track h3 {

    max-width: 12rem;

}


.enhancements__track p {

    margin-bottom: 0;

    font-size: .87rem;

}


.demo-note {

    margin-top: 2rem;

    margin-bottom: 0;

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    opacity: .55;

}


/* =========================================================
   LAPIS BREAK
   ========================================================= */

.lapis-break {

    min-height: 620px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--cobalt-dark);

    color: white;

}


.lapis-break__tiles {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    grid-template-rows: repeat(2,1fr);

}


.lapis-break__tiles span {

    min-height: 310px;

    border-right: 1px solid rgba(255,255,255,.12);

    border-bottom: 1px solid rgba(255,255,255,.12);

    background:
        radial-gradient(
            circle at 35% 28%,
            rgba(255,255,255,.17),
            transparent 22%
        ),
        linear-gradient(
            145deg,
            #1d56bd,
            #0e398e
        );

}


.lapis-break__tiles span:nth-child(2),
.lapis-break__tiles span:nth-child(6) {

    background:
        linear-gradient(
            145deg,
            var(--terracotta),
            #91412e
        );

}


.lapis-break__tiles span:nth-child(4) {
    border-radius: 0 10rem 0 0;
}


.lapis-break__copy {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: clamp(
        3rem,
        7vw,
        7rem
    );

}


.lapis-break__copy h2 span {
    color: #8fb3ff;
}


.lapis-break__copy h2 strong {
    color: #f0ac89;
}


/* =========================================================
   MEMBERSHIP
   ========================================================= */

.membership {

    position: relative;

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    display: grid;

    grid-template-columns: 1fr .85fr;

    gap: clamp(
        4rem,
        8vw,
        8rem
    );

    align-items: center;

    padding: var(--section) 0;

}


.membership__copy h2 span {
    color: var(--cobalt);
}


.membership__intro {

    max-width: 31rem;

    color: var(--ink-soft);

}


.membership__pass {

    position: relative;

    overflow: hidden;

    padding: 2.2rem;

    background: var(--terracotta);

    color: white;

    border-radius: 1.25rem;

    transform: rotate(2deg);

    box-shadow:
        0 25px 50px rgba(88,46,31,.18);

}


.membership__pass::after {

    content: "";

    position: absolute;

    right: -4rem;
    bottom: -5rem;

    width: 15rem;
    height: 15rem;

    border: 2.5rem solid rgba(255,255,255,.08);

    border-radius: 50%;

}


.membership__pass-top {

    display: flex;

    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 5rem;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .1em;

}


.membership__pass-main p {

    margin-bottom: .4rem;

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: .1em;

}


.membership__pass-main > strong {

    font-family: var(--display);

    font-size: clamp(
        4rem,
        7vw,
        7rem
    );

    line-height: .9;

    letter-spacing: -.07em;

}


.membership__pass-main > span {

    margin-left: .6rem;

    font-size: .75rem;

    font-weight: 800;

}


.membership__pass ul {

    margin: 2.5rem 0;

    padding: 0;

    list-style: none;

}


.membership__pass li {

    padding: .55rem 0;

    border-bottom: 1px solid rgba(255,255,255,.25);

    font-size: .82rem;

}


.membership__pass > a {

    position: relative;

    z-index: 2;

    display: inline-block;

    padding: .8rem 1rem;

    background: var(--white);

    color: var(--terracotta-dark);

    font-size: .7rem;

    font-weight: 800;

    text-transform: uppercase;

}


.membership__note {

    position: absolute;

    right: 0;
    bottom: 3rem;

    max-width: 32rem;

    color: var(--ink-soft);

    font-size: .6rem;

}


/* =========================================================
   ABOUT
   ========================================================= */

.about {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    min-height: 760px;

    background: var(--plaster);

}


.about__visual {

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding:
        var(--section)
        clamp(2rem,5vw,5rem)
        0;

    background: var(--cobalt);

}


.about__arch {

    width: min(
        100%,
        430px
    );

    height: 570px;

    display: flex;

    align-items: flex-end;

    padding: 2rem;

    border-radius: 14rem 14rem 0 0;

    background:
        linear-gradient(
            160deg,
            #0a2557,
            #12347b
        );

}


.about__arch span {

    color: rgba(255,255,255,.7);

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: .15em;

}


.about__copy {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        var(--section)
        clamp(2rem,6vw,6rem);

}


.about__copy h2 span {
    color: var(--cobalt);
}


.about__lead {

    max-width: 40rem;

    color: var(--cobalt-dark);

    font-family: var(--display);

    font-size: clamp(
        1.4rem,
        2.2vw,
        2.2rem
    );

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.04em;

}


.about__points {

    margin-top: 2rem;

}


.about__points > div {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 2rem;

    padding: 1rem 0;

    border-top: 1px solid rgba(24,25,24,.22);

}


.about__points strong {

    font-size: .8rem;

}


.about__points span {

    color: var(--ink-soft);

    font-size: .8rem;

}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    padding: var(--section) 0;

}


.reviews__heading {

    max-width: 850px;

    margin-bottom: 5rem;

}


.reviews__heading h2 span {
    color: var(--cobalt);
}


.reviews__items {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1rem;

}


.reviews blockquote {

    min-height: 370px;

    margin: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 2rem;

    background: var(--white);

}


.reviews blockquote:nth-child(2) {

    background: var(--cobalt);

    color: white;

    transform: translateY(2rem);

}


.reviews blockquote:nth-child(3) {
    background: var(--cream-soft);
}


.reviews blockquote p {

    font-family: var(--display);

    font-size: clamp(
        1.5rem,
        2.2vw,
        2.2rem
    );

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.04em;

}


.reviews blockquote footer {

    font-size: .67rem;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* =========================================================
   BOOK
   ========================================================= */

.book {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    min-height: 700px;

}


.book__blue {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        var(--section)
        max(
            var(--gutter),
            calc((100vw - var(--max)) / 2)
        );

    padding-right: clamp(
        3rem,
        8vw,
        8rem
    );

    background: var(--cobalt);

    color: white;

}


.book__blue h2 {
    max-width: 780px;
}


.book__blue h2 span {
    color: #a8c1ff;
}


.book__blue h2 strong {
    color: #f3ad88;
}


.book__actions {

    display: flex;

    flex-wrap: wrap;

    gap: .8rem;

    margin-top: 2rem;

}


.book__actions a {

    padding: 1rem 1.2rem;

    border: 1px solid rgba(255,255,255,.65);

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

}


.book__actions a:first-child {

    background: var(--white);

    color: var(--cobalt);

}


.book__location {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        var(--section)
        clamp(2rem,5vw,5rem);

    background: var(--terracotta);

    color: white;

}


.book__location > span {

    margin-bottom: 4rem;

    font-family: var(--display);

    font-size: 1.8rem;

    font-weight: 700;

}


.book__location h3 {

    font-size: clamp(
        2.8rem,
        4vw,
        4rem
    );

}


.book__location dl {

    margin: 2rem 0;

}


.book__location dl > div {

    display: flex;

    justify-content: space-between;

    gap: 2rem;

    padding: .65rem 0;

    border-top: 1px solid rgba(255,255,255,.3);

}


.book__location dd {
    margin: 0;
}


.book__location > a {

    width: fit-content;

    margin-top: .4rem;

    font-weight: 700;

}


/* =========================================================
   FAQ
   ========================================================= */

.faq {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 6rem;

    padding: var(--section) 0;

}


.faq__heading h2 strong {
    color: var(--cobalt);
}


.faq__list {

    border-top: 1px solid var(--line);

}


.faq details {

    border-bottom: 1px solid var(--line);

}


.faq summary {

    position: relative;

    padding: 1.5rem 3rem 1.5rem 0;

    list-style: none;

    cursor: pointer;

    font-family: var(--display);

    font-size: 1.35rem;

    font-weight: 600;

    letter-spacing: -.03em;

}


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


.faq summary::after {

    content: "+";

    position: absolute;

    right: .25rem;

    color: var(--terracotta);

    font-size: 1.6rem;

}


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


.faq details p {

    max-width: 42rem;

    padding: 0 3rem 1.5rem 0;

    color: var(--ink-soft);

}


/* =========================================================
   FINAL
   ========================================================= */

.final {

    min-height: 590px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: var(--section) var(--gutter);

    background: var(--cream-soft);

    text-align: center;

}


.final > p {

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.final h2 {

    max-width: 970px;

}


.final h2 strong {
    color: var(--cobalt);
}


.final > a {

    display: inline-block;

    padding: 1rem 1.3rem;

    background: var(--terracotta);

    color: white;

    font-size: .72rem;

    font-weight: 800;

    text-transform: uppercase;

}


.final > span {

    margin-top: 2rem;

    color: var(--ink-soft);

    font-size: .64rem;

    font-weight: 800;

    letter-spacing: .1em;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    background: var(--ink);

    color: white;

}


.site-footer__top {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 5rem;

    padding: 5rem 0;

}


.footer-brand > a {

    font-family: var(--display);

    font-size: clamp(
        3rem,
        5vw,
        5rem
    );

    font-weight: 700;

    letter-spacing: -.06em;

}


.footer-brand > p {

    margin: .5rem 0;

    color: rgba(255,255,255,.6);

}


.footer-brand > span {

    color: var(--clay);

    font-weight: 700;

}


.footer-links {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 2rem;

}


.footer-links > div {

    display: flex;

    flex-direction: column;

    gap: .55rem;

}


.footer-links strong {

    margin-bottom: .8rem;

    color: var(--clay);

    font-size: .68rem;

    text-transform: uppercase;

    letter-spacing: .09em;

}


.footer-links a,
.footer-links span {

    color: rgba(255,255,255,.68);

    font-size: .8rem;

}


.site-footer__bottom {

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--max)
    );

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 2rem;

    padding: 1.4rem 0;

    border-top: 1px solid rgba(255,255,255,.16);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;

}


.site-footer__bottom strong {
    color: var(--clay);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .site-nav {
        gap: .8rem;
    }


    .site-nav a {
        font-size: .62rem;
    }


    .hero__inner {
        grid-template-columns: 1fr .75fr;
    }


    .treatments {
        grid-template-columns: 32% 68%;
    }


    .treatment-row {

        grid-template-columns: 1fr auto;

        gap: 1rem 2rem;

    }


    .treatment-row > p {
        grid-column: 1 / -1;
    }


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


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


    .reviews blockquote {
        min-height: 260px;
    }


    .reviews blockquote:nth-child(2) {
        transform: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    :root {

        --gutter: 1rem;
        --section: 5rem;

    }


    h1 {

        font-size: clamp(
            4rem,
            18vw,
            5.5rem
        );

    }


    h2 {

        font-size: clamp(
            3.3rem,
            15vw,
            4.7rem
        );

    }


    .site-header__inner {

        grid-template-columns: 1fr auto;

        min-height: auto;

        padding: .85rem 0;

    }


    .site-nav {

        grid-column: 1 / -1;

        justify-content: flex-start;

        overflow-x: auto;

        padding-top: .8rem;

        border-top: 1px solid var(--line);

        scrollbar-width: none;

    }


    .site-nav::-webkit-scrollbar {
        display: none;
    }


    .site-nav a {
        flex: 0 0 auto;
    }


    .header-cta {

        width: 3.25rem;
        height: 3.25rem;

    }


    .hero__inner {

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 4rem;

        padding-top: 4rem;

    }


    .hero__bottom {

        grid-template-columns: 1fr;

    }


    .round-link {

        width: 8.5rem;
        height: 8.5rem;

    }


    .hero__visual {
        min-height: 500px;
    }


    .hero__arch {

        inset: 0 1rem 0;

        border-radius: 13rem 13rem 1rem 1rem;

    }


    .hero__footer {

        grid-template-columns: 1fr;

        gap: .5rem;

        padding-top: 1.4rem;
        padding-bottom: 1.4rem;

    }


    .hero__footer a {
        justify-self: start;
    }


    .finder__intro {

        grid-template-columns: 1fr;

        gap: 2rem;

    }


    .finder__intro > p:first-child {
        grid-column: auto;
    }


    .finder__intro-copy {
        justify-self: start;
    }


    .finder__choices > a {

        grid-template-columns: 1fr auto;

        gap: .5rem 1rem;

        padding: 1.4rem 0;

    }


    .finder__choices > a:hover {
        padding: 1.4rem 1rem;
    }


    .finder__choices p {
        grid-column: 1 / -1;
    }


    .finder__choices b {

        grid-column: 2;
        grid-row: 1;

    }


    .treatments {

        grid-template-columns: 1fr;

    }


    .treatments__side {

        min-height: 550px;

    }


    .treatments__arch {
        border-radius: 12rem 12rem 0 0;
    }


    .treatment-row {

        grid-template-columns: 1fr auto;

    }


    .treatment-row > p {

        grid-column: 1 / -1;

    }


    .treatment-row > a {

        grid-column: 1;
        width: fit-content;

    }


    .experience {

        grid-template-columns: 1fr;

        gap: 3rem;

    }


    .experience__statement {
        grid-column: auto;
    }


    .experience__visual {
        min-height: 500px;
    }


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


    .enhancements__track article {

        min-height: 18rem;

        border-radius: 8rem 8rem 1rem 1rem;

    }


    .lapis-break {

        grid-template-columns: 1fr;

    }


    .lapis-break__tiles {

        min-height: 400px;

    }


    .lapis-break__tiles span {
        min-height: 200px;
    }


    .membership {

        grid-template-columns: 1fr;

        gap: 4rem;

    }


    .membership__note {

        position: static;

        grid-column: 1;

    }


    .about {

        grid-template-columns: 1fr;

    }


    .about__visual {
        min-height: 600px;
    }


    .about__arch {
        height: 520px;
    }


    .about__points > div {

        grid-template-columns: 1fr;

        gap: .4rem;

    }


    .book {

        grid-template-columns: 1fr;

    }


    .book__blue {

        padding-left: var(--gutter);
        padding-right: var(--gutter);

    }


    .faq {

        grid-template-columns: 1fr;

        gap: 3rem;

    }


    .site-footer__top {

        grid-template-columns: 1fr;

        gap: 3rem;

    }


    .footer-links {

        grid-template-columns: repeat(2,1fr);

    }


    .site-footer__bottom {

        flex-direction: column;

        gap: .5rem;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 440px) {

    .brand {
        font-size: 1.25rem;
    }


    .hero__visual {
        min-height: 430px;
    }


    .hero__arch {

        border-radius: 10rem 10rem .75rem .75rem;

    }


    .hero__arch-glow {

        width: 8rem;
        height: 8rem;

    }


    .hero__tile {

        width: 7rem;
        height: 7rem;

    }


    .treatments__menu,
    .treatments__side {

        padding-left: 1rem;
        padding-right: 1rem;

    }


    .treatment-row--blue {

        margin-left: -.5rem;
        margin-right: -.5rem;

    }


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

}


/* =========================================================
   ULTRAWIDE
   ========================================================= */

@media (min-width: 1500px) {

    /*
        Content remains constrained.
        Environmental color and architecture may go full bleed.
    */

    .hero__inner,
    .experience,
    .membership,
    .reviews,
    .faq,
    .site-footer__top,
    .site-footer__bottom {

        max-width: var(--max);

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        transition: none !important;
        animation: none !important;

    }

}

/* =========================================================
   RESPONSIVE QA CORRECTIONS
   DESKTOP LOCKED / MOBILE + WIDE FIXES
   ========================================================= */


/* ---------------------------------------------------------
   ANCHOR OFFSET
   Keep sticky navigation from sitting on section headings.
   --------------------------------------------------------- */

@media (min-width: 761px) {

    section[id] {
        scroll-margin-top: 6.25rem;
    }

}


/* ---------------------------------------------------------
   WIDE / ULTRAWIDE
   The readable canvas stops growing at 1200px, so typography
   must stop scaling with the viewport too.
   --------------------------------------------------------- */

@media (min-width: 1500px) {

    h1 {
        font-size: 7.35rem;
    }


    h2 {
        font-size: 5.65rem;
    }


    .hero {
        min-height: 730px;
    }


    .hero__inner {
        min-height: 630px;

        padding-top: 4.25rem;
        padding-bottom: 3.5rem;
    }


    .hero__visual {
        min-height: 520px;
    }


    .round-link {
        width: 9rem;
        height: 9rem;
    }


    .hero__footer {
        min-height: 86px;
    }


    .treatments__arch-inner strong {
        font-size: 5.4rem;
    }


    .enhancements__heading {
        max-width: 690px;
    }


    .membership__pass-main > strong {
        font-size: 5.75rem;
    }

}


/* ---------------------------------------------------------
   MOBILE
   Explicit grid placement fixes the giant header.
   Smaller viewport typography prevents long words clipping.
   --------------------------------------------------------- */

@media (max-width: 760px) {

    section[id] {
        scroll-margin-top: 8.5rem;
    }


    h1 {
        font-size: clamp(
            3.6rem,
            13vw,
            4.6rem
        );

        line-height: .89;
    }


    h2 {
        font-size: clamp(
            3rem,
            11.5vw,
            4rem
        );

        line-height: .93;
    }


    .site-header__inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;

        grid-template-areas:
            "brand cta"
            "nav nav";

        gap:
            .8rem 1rem;

        padding:
            .85rem 0
            .8rem;
    }


    .brand {
        grid-area: brand;

        align-self: center;
    }


    .header-cta {
        grid-area: cta;

        align-self: center;

        justify-self: end;
    }


    .site-nav {
        grid-area: nav;

        grid-column: auto;

        width: 100%;

        min-width: 0;

        gap: 1rem;

        padding-top: .75rem;

        padding-bottom: .1rem;
    }


    .site-nav a {
        font-size: .57rem;
    }


    .hero__inner {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }


    .hero__copy,
    .hero__bottom,
    .finder__intro,
    .finder__intro-copy,
    .experience__statement,
    .experience__copy,
    .membership__copy,
    .about__copy,
    .reviews__heading,
    .faq__heading {
        min-width: 0;
    }


    .finder__intro h2,
    .about__copy h2,
    .reviews__heading h2,
    .book__blue h2 {
        max-width: 100%;
    }


    .finder__intro h2 {
        font-size: clamp(
            3rem,
            11.25vw,
            3.85rem
        );
    }


    .about__copy h2 {
        font-size: clamp(
            2.85rem,
            10.75vw,
            3.7rem
        );
    }


    .book__blue h2 {
        font-size: clamp(
            2.95rem,
            11vw,
            3.8rem
        );
    }


    .final h2 {
        font-size: clamp(
            2.9rem,
            11vw,
            3.8rem
        );
    }


    .finder__choices > a {
        min-width: 0;
    }


    .finder__choices span,
    .finder__choices p {
        min-width: 0;
    }


    .about__copy {
        overflow: hidden;
    }


    .about__lead {
        font-size: clamp(
            1.3rem,
            5.2vw,
            1.75rem
        );
    }


    .enhancements__heading {
        max-width: 100%;
    }


    .enhancements__heading h2 {
        font-size: clamp(
            3rem,
            11.25vw,
            3.85rem
        );
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 440px) {

    h1 {
        font-size: clamp(
            3.35rem,
            13vw,
            4rem
        );
    }


    h2 {
        font-size: clamp(
            2.8rem,
            11.3vw,
            3.5rem
        );
    }


    .site-nav {
        gap: .8rem;
    }


    .site-nav a {
        font-size: .52rem;
    }


    .header-cta {
        width: 3rem;
        height: 3rem;

        font-size: .6rem;
    }


    .finder__intro h2,
    .enhancements__heading h2 {
        font-size: clamp(
            2.8rem,
            10.8vw,
            3.4rem
        );
    }


    .about__copy h2 {
        font-size: clamp(
            2.65rem,
            10.15vw,
            3.25rem
        );
    }

}

/* LA PEACE WIDE ENHANCEMENT TITLE FIX */

@media (min-width: 1500px) {

    .enhancements__track article {
        min-width: 0;
        overflow: hidden;
    }


    .enhancements__track h3 {
        max-width: 100%;

        font-size: 1.95rem;

        line-height: .98;

        letter-spacing: -.055em;
    }


    /*
       Aromatherapy is intentionally kept on one line.
       Its longer word length needs a slightly smaller size
       on wide displays where the four-card grid remains fixed.
    */

    .enhancements__track article:nth-child(2) h3 {
        font-size: 1.72rem;

        white-space: nowrap;
    }

}

/* END LA PEACE WIDE ENHANCEMENT TITLE FIX */

/* LA PEACE GLOBAL PHOTOGRAPHY WIRING */

/*
   ---------------------------------------------------------
   PHOTOGRAPHY FILE MAP

   HERO
   ../images/hero-la-peace.webp

   TREATMENTS
   ../images/treatments-la-peace.webp

   EXPERIENCE
   ../images/experience-la-peace.webp

   ABOUT
   ../images/about-la-peace.webp

   FINAL CTA
   ../images/final-la-peace.webp

   Missing files automatically fall back to the approved
   graphic environments underneath them.
   ---------------------------------------------------------
*/


/* =========================================================
   HERO PHOTO SLOT
   ========================================================= */

.hero__arch {

    background-image:
        linear-gradient(
            180deg,
            rgba(8,34,87,.02) 0%,
            rgba(8,34,87,.04) 48%,
            rgba(8,34,87,.52) 100%
        ),
        url("../images/hero-la-peace.webp"),
        linear-gradient(
            150deg,
            #225ec9,
            var(--cobalt-dark)
        );

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


/*
   Tone down the original abstract glow when a real
   photograph is present. It remains useful as atmosphere.
*/

.hero__arch::before {

    background:
        linear-gradient(
            180deg,
            rgba(8,34,87,.00) 0%,
            rgba(8,34,87,.04) 52%,
            rgba(8,34,87,.20) 100%
        );

}


/* =========================================================
   TREATMENTS PHOTO SLOT
   ========================================================= */

.treatments__arch {

    position:
        relative;

    isolation:
        isolate;

    overflow:
        hidden;

    background-image:
        linear-gradient(
            180deg,
            rgba(136,64,43,.06) 0%,
            rgba(136,64,43,.18) 55%,
            rgba(68,28,18,.72) 100%
        ),
        url("../images/treatments-la-peace.webp"),
        linear-gradient(
            160deg,
            var(--terracotta),
            var(--terracotta-dark)
        );

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


.treatments__arch-inner {

    position:
        relative;

    z-index:
        2;

}


/* =========================================================
   EXPERIENCE PHOTO SLOT
   ========================================================= */

/*
   The blue architectural environment remains intact.
   The photograph appears INSIDE the dark doorway/arch,
   rather than replacing the entire section.
*/

.experience__door {

    isolation:
        isolate;

    overflow:
        hidden;

    background-image:
        linear-gradient(
            180deg,
            rgba(8,34,87,.06) 0%,
            rgba(8,34,87,.18) 55%,
            rgba(8,34,87,.60) 100%
        ),
        url("../images/experience-la-peace.webp"),
        linear-gradient(
            160deg,
            #0a2557,
            #12347b
        );

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


.experience__door span {

    position:
        relative;

    z-index:
        2;

}


/* =========================================================
   ABOUT PHOTO SLOT
   ========================================================= */

.about__arch {

    position:
        relative;

    isolation:
        isolate;

    overflow:
        hidden;

    background-image:
        linear-gradient(
            180deg,
            rgba(8,34,87,.02) 0%,
            rgba(8,34,87,.14) 58%,
            rgba(8,34,87,.62) 100%
        ),
        url("../images/about-la-peace.webp"),
        linear-gradient(
            160deg,
            #0a2557,
            #12347b
        );

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


.about__arch span {

    position:
        relative;

    z-index:
        2;

}


/* =========================================================
   FINAL CTA PHOTO SLOT
   ========================================================= */

.final {

    position:
        relative;

    isolation:
        isolate;

    overflow:
        hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(244,239,229,.96) 0%,
            rgba(244,239,229,.88) 42%,
            rgba(244,239,229,.60) 68%,
            rgba(244,239,229,.38) 100%
        ),
        url("../images/final-la-peace.webp"),
        linear-gradient(
            145deg,
            var(--cream-soft),
            var(--cream)
        );

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


.final > * {

    position:
        relative;

    z-index:
        2;

}


/* =========================================================
   RESPONSIVE IMAGE CROPS
   ========================================================= */

@media (max-width: 760px) {

    .hero__arch {

        background-position:
            center center,
            58% center,
            center center;

    }


    .treatments__arch {

        background-position:
            center center,
            52% center,
            center center;

    }


    .experience__door {

        background-position:
            center center,
            center center,
            center center;

    }


    .about__arch {

        background-position:
            center center,
            center center,
            center center;

    }


    .final {

        background-image:
            linear-gradient(
                180deg,
                rgba(244,239,229,.94) 0%,
                rgba(244,239,229,.84) 55%,
                rgba(244,239,229,.68) 100%
            ),
            url("../images/final-la-peace.webp"),
            linear-gradient(
                145deg,
                var(--cream-soft),
                var(--cream)
            );

        background-position:
            center center,
            center center,
            center center;

    }

}


@media (min-width: 1500px) {

    .hero__arch {

        background-position:
            center center,
            center 46%,
            center center;

    }


    .treatments__arch {

        background-position:
            center center,
            center center,
            center center;

    }


    .experience__door {

        background-position:
            center center,
            center center,
            center center;

    }


    .about__arch {

        background-position:
            center center,
            center center,
            center center;

    }

}

/* END LA PEACE GLOBAL PHOTOGRAPHY WIRING */

/* LA PEACE HERO DECORATIVE CIRCLE REMOVAL */

.hero__arch-glow {
    display: none;
}

/* END LA PEACE HERO DECORATIVE CIRCLE REMOVAL */

/* LA PEACE ENHANCEMENT PHOTOGRAPHY WIRING */

/*
   IMAGE MAP

   Hot Stone
   ../images/enhancement-hot-stone.webp

   Aromatherapy
   ../images/enhancement-aromatherapy.webp

   Scalp + Neck
   ../images/enhancement-scalp-neck.webp

   Foot Renewal
   ../images/enhancement-foot-renewal.webp
*/


.enhancements__track article {

    position: relative;

    isolation: isolate;

    overflow: hidden;

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center center,
        center center,
        center center;

    background-repeat:
        no-repeat;

}


/* =========================================================
   HOT STONE
   ========================================================= */

.enhancements__track article:nth-child(1) {

    background-image:
        linear-gradient(
            180deg,
            rgba(255,253,247,.02) 0%,
            rgba(255,253,247,.10) 42%,
            rgba(255,253,247,.82) 72%,
            rgba(255,253,247,.98) 100%
        ),
        url("../images/enhancement-hot-stone.webp"),
        linear-gradient(
            145deg,
            #fffdf7,
            #ebe3d6
        );

    color:
        var(--ink);

}


/* =========================================================
   AROMATHERAPY
   ========================================================= */

.enhancements__track article:nth-child(2) {

    background-image:
        linear-gradient(
            180deg,
            rgba(214,224,239,.02) 0%,
            rgba(214,224,239,.12) 42%,
            rgba(214,224,239,.84) 72%,
            rgba(214,224,239,.98) 100%
        ),
        url("../images/enhancement-aromatherapy.webp"),
        linear-gradient(
            145deg,
            #dce6f3,
            #c6d5e8
        );

    color:
        var(--ink);

}


/* =========================================================
   SCALP + NECK
   ========================================================= */

.enhancements__track article:nth-child(3) {

    background-image:
        linear-gradient(
            180deg,
            rgba(223,176,146,.02) 0%,
            rgba(223,176,146,.12) 42%,
            rgba(223,176,146,.86) 72%,
            rgba(223,176,146,.98) 100%
        ),
        url("../images/enhancement-scalp-neck.webp"),
        linear-gradient(
            145deg,
            #e7b99c,
            #d69672
        );

    color:
        var(--ink);

}


/* =========================================================
   FOOT RENEWAL
   ========================================================= */

.enhancements__track article:nth-child(4) {

    background-image:
        linear-gradient(
            180deg,
            rgba(22,70,170,.04) 0%,
            rgba(22,70,170,.16) 40%,
            rgba(9,47,120,.84) 72%,
            rgba(8,34,87,.98) 100%
        ),
        url("../images/enhancement-foot-renewal.webp"),
        linear-gradient(
            145deg,
            var(--cobalt),
            var(--cobalt-dark)
        );

    color:
        white;

}


/* =========================================================
   TEXT LAYER
   ========================================================= */

.enhancements__track article > * {

    position:
        relative;

    z-index:
        2;

}


/* =========================================================
   MOBILE CROPS
   ========================================================= */

@media (max-width: 760px) {

    .enhancements__track article:nth-child(1) {
        background-position:
            center center,
            center 35%,
            center center;
    }


    .enhancements__track article:nth-child(2) {
        background-position:
            center center,
            center 35%,
            center center;
    }


    .enhancements__track article:nth-child(3) {
        background-position:
            center center,
            center 30%,
            center center;
    }


    .enhancements__track article:nth-child(4) {
        background-position:
            center center,
            center 35%,
            center center;
    }

}


/* =========================================================
   WIDE CROPS
   ========================================================= */

@media (min-width: 1500px) {

    .enhancements__track article {
        background-position:
            center center,
            center 38%,
            center center;
    }

}

/* END LA PEACE ENHANCEMENT PHOTOGRAPHY WIRING */

/* LA PEACE AROMATHERAPY CROP FIX */

/*
   The aromatherapy source places the actual preparation
   action toward the right side of the photograph.
   Pull that area into the narrow arch instead of showing
   the empty background.
*/

.enhancements__track article:nth-child(2) {

    background-position:
        center center,
        86% 34%,
        center center;

}


/* Mobile gets a slightly tighter subject pull. */

@media (max-width: 760px) {

    .enhancements__track article:nth-child(2) {

        background-position:
            center center,
            88% 30%,
            center center;

    }

}


/* Wide keeps the hands/bottle from drifting out again. */

@media (min-width: 1500px) {

    .enhancements__track article:nth-child(2) {

        background-position:
            center center,
            86% 34%,
            center center;

    }

}

/* END LA PEACE AROMATHERAPY CROP FIX */

/* LA PEACE AROMATHERAPY FULL FRAME FIX */

/*
   Aromatherapy uses a preparation/detail photograph whose
   important action spans more of the original frame.

   Do NOT use cover here. Display the photograph at the full
   width of the arch so the hands/bottle are not cropped away.
*/

.enhancements__track article:nth-child(2) {

    background-size:
        cover,
        100% auto,
        cover;

    background-position:
        center center,
        center top,
        center center;

    background-repeat:
        no-repeat;

}


/*
   Keep the lower portion strongly blended into the card
   background so the title and description remain readable.
*/

.enhancements__track article:nth-child(2) {

    background-image:
        linear-gradient(
            180deg,
            rgba(214,224,239,.00) 0%,
            rgba(214,224,239,.04) 34%,
            rgba(214,224,239,.48) 58%,
            rgba(214,224,239,.92) 72%,
            rgba(214,224,239,1) 100%
        ),
        url("../images/enhancement-aromatherapy.webp"),
        linear-gradient(
            145deg,
            #dce6f3,
            #c6d5e8
        );

}


/* Same framing at every approved breakpoint. */

@media (max-width: 760px) {

    .enhancements__track article:nth-child(2) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}


@media (min-width: 1500px) {

    .enhancements__track article:nth-child(2) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}

/* END LA PEACE AROMATHERAPY FULL FRAME FIX */

/* LA PEACE SCALP NECK FULL FRAME FIX */

/*
   Preserve the actual scalp/neck treatment action.
   The source image is shown at full card width instead of
   using an aggressive cover crop.
*/

.enhancements__track article:nth-child(3) {

    background-image:
        linear-gradient(
            180deg,
            rgba(223,176,146,.00) 0%,
            rgba(223,176,146,.02) 38%,
            rgba(223,176,146,.12) 48%,
            rgba(223,176,146,.58) 62%,
            rgba(223,176,146,.94) 74%,
            rgba(223,176,146,1) 100%
        ),
        url("../images/enhancement-scalp-neck.webp"),
        linear-gradient(
            145deg,
            #e7b99c,
            #d69672
        );

    background-size:
        cover,
        100% auto,
        cover;

    background-position:
        center center,
        center top,
        center center;

    background-repeat:
        no-repeat;

}


@media (max-width: 760px) {

    .enhancements__track article:nth-child(3) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}


@media (min-width: 1500px) {

    .enhancements__track article:nth-child(3) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}

/* END LA PEACE SCALP NECK FULL FRAME FIX */

/* LA PEACE FOOT RENEWAL FULL FRAME FIX */

/*
   The Foot Renewal source is a vertical treatment photograph.
   Show the full image width so the therapist's hands and foot
   remain visible instead of cropping into the empty background.
*/

.enhancements__track article:nth-child(4) {

    background-image:
        linear-gradient(
            180deg,
            rgba(22,70,170,.00) 0%,
            rgba(22,70,170,.02) 34%,
            rgba(22,70,170,.10) 46%,
            rgba(16,55,140,.52) 61%,
            rgba(9,47,120,.92) 74%,
            rgba(8,34,87,1) 100%
        ),
        url("../images/enhancement-foot-renewal.webp"),
        linear-gradient(
            145deg,
            var(--cobalt),
            var(--cobalt-dark)
        );

    background-size:
        cover,
        100% auto,
        cover;

    background-position:
        center center,
        center top,
        center center;

    background-repeat:
        no-repeat;

}


/* Keep the treatment visible at mobile width. */

@media (max-width: 760px) {

    .enhancements__track article:nth-child(4) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}


/* Prevent ultrawide rules from forcing it back to cover. */

@media (min-width: 1500px) {

    .enhancements__track article:nth-child(4) {

        background-size:
            cover,
            100% auto,
            cover;

        background-position:
            center center,
            center top,
            center center;

    }

}

/* END LA PEACE FOOT RENEWAL FULL FRAME FIX */

/* LA PEACE MOBILE MENU */


/* Hidden on tablet / desktop / wide. */

.menu-toggle {

    display: none;

    width: 3rem;
    height: 3rem;

    padding: .75rem;

    border: 1px solid var(--line);

    border-radius: 50%;

    background: transparent;

    color: var(--ink);

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 100%;
    height: 2px;

    margin: 4px 0;

    background: currentColor;

    transform-origin: center;

    transition:
        transform .2s ease,
        opacity .2s ease;

}


/* ---------------------------------------------------------
   MOBILE NAVIGATION
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .site-header__inner {

        grid-template-columns:
            minmax(0,1fr)
            auto
            auto;

        grid-template-areas:
            "brand menu cta";

        gap: .65rem;

        padding:
            .8rem 0;

    }


    .brand {

        grid-area: brand;

        min-width: 0;

    }


    .menu-toggle {

        grid-area: menu;

        display: grid;

        align-content: center;

        justify-self: end;

        flex-shrink: 0;

    }


    .header-cta {

        grid-area: cta;

        justify-self: end;

        width: 3rem;
        height: 3rem;

    }


    .site-nav {

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        gap: 0;

        width: 100%;

        padding:
            .75rem
            var(--gutter)
            1rem;

        overflow: visible;

        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);

        background: var(--cream);

        box-shadow:
            0 16px 30px
            rgba(24,25,24,.10);

    }


    .site-nav[data-open="true"] {

        display: flex;

    }


    .site-nav a {

        width: 100%;

        padding:
            .9rem 0;

        border-bottom:
            1px solid var(--line);

        font-size: .68rem;

    }


    .site-nav a:last-child {

        border-bottom: 0;

    }


    /* Hamburger -> X */

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {

        transform:
            translateY(6px)
            rotate(45deg);

    }


    .menu-toggle[aria-expanded="true"] span:nth-child(2) {

        opacity: 0;

    }


    .menu-toggle[aria-expanded="true"] span:nth-child(3) {

        transform:
            translateY(-6px)
            rotate(-45deg);

    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 440px) {

    .menu-toggle,
    .header-cta {

        width: 2.85rem;
        height: 2.85rem;

    }


    .menu-toggle {

        padding: .7rem;

    }


    .site-header__inner {

        gap: .45rem;

    }

}

/* END LA PEACE MOBILE MENU */
