@font-face {
    font-family: "Fahkwang";
    src: url("assets/fonts/fahkwang-regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Fahkwang";
    src: url("assets/fonts/fahkwang-bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Madefor Text";
    src: url("assets/fonts/madefor-text.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Madefor Display";
    src: url("assets/fonts/madefor-display.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

:root {
    color-scheme: light;
    --ink: #241d16;
    --brown: #2a1e06;
    --brown-light: #433214;
    --green: #285a3f;
    --green-dark: #173c2a;
    --sage: #bfc9b8;
    --pink: #e4cae4;
    --taupe: #685f50;
    --cream: #f4efe5;
    --paper: #fffdf8;
    --gold: #c99728;
    --line: rgba(42, 30, 6, .18);
    --shadow: 0 24px 70px rgba(36, 29, 22, .13);
    --display: "Fahkwang", Georgia, serif;
    --body: "Madefor Text", Arial, sans-serif;
    --page: min(1280px, calc(100vw - 80px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

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

button {
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

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

.skip-link {
    position: fixed;
    z-index: 200000;
    top: 12px;
    left: 50%;
    padding: 12px 18px;
    border-radius: 999px;
    transform: translate(-50%, -180%);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

.site-page {
    width: 100%;
    overflow: clip;
}

.site-header {
    position: relative;
    display: grid;
    min-height: 700px;
    padding: 220px max(40px, calc((100vw - 1280px) / 2)) 120px;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 20%, rgba(201, 151, 40, .18), transparent 25%),
        linear-gradient(125deg, #211803 0%, var(--brown) 56%, #3b2b0b 100%);
    color: #fff;
}

.site-header::before {
    position: absolute;
    right: -140px;
    bottom: -280px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.site-header::after {
    position: absolute;
    right: -70px;
    bottom: -210px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.desktop-nav {
    position: absolute;
    z-index: 10;
    top: 24px;
    left: 50%;
    display: flex;
    width: var(--page);
    min-height: 62px;
    padding: 8px 18px 8px 290px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2.2vw, 38px);
    transform: translateX(-50%);
    background: rgba(20, 14, 3, .64);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(16px);
    font-size: 13px;
    letter-spacing: .04em;
}

.desktop-nav a {
    position: relative;
    padding: 13px 0;
    white-space: nowrap;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.brand-logo {
    position: absolute;
    z-index: 11;
    top: 26px;
    left: max(40px, calc((100vw - 1280px) / 2 + 18px));
    width: 245px;
    height: 58px;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
}

.brand-logo img {
    width: 245px;
    height: auto;
    max-width: none;
    transform: translateY(-40px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(650px, 56vw);
    font-family: var(--display);
}

.hero-copy::before {
    display: block;
    width: 52px;
    height: 1px;
    margin-bottom: 26px;
    background: var(--gold);
    content: "";
}

.hero-copy h1 {
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.hero-copy p {
    max-width: 590px;
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.75;
}

.hero-copy p:first-of-type {
    margin-top: 42px;
}

.hero-copy p + p {
    margin-top: 18px;
    color: #e9d7a9;
    font-family: var(--display);
}

.hero-oils {
    position: absolute;
    z-index: 1;
    right: max(-35px, calc((100vw - 1440px) / 2 - 80px));
    bottom: 76px;
    width: min(48vw, 720px);
    height: auto;
    filter: saturate(.88) sepia(.05);
    opacity: .96;
}

.menu-toggle,
.mobile-menu,
.mobile-only {
    display: none;
}

.page-sections {
    display: flex;
    flex-direction: column;
}

.story-section {
    padding: clamp(70px, 8vw, 130px) 0;
    background: var(--cream);
}

.story-panel {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    box-shadow: var(--shadow);
}

.story-copy {
    position: relative;
    display: flex;
    padding: clamp(48px, 6vw, 92px);
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    font-size: 17px;
    line-height: 1.8;
}

.story-copy::before {
    margin-bottom: 34px;
    color: var(--gold);
    content: "01";
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .15em;
}

.story-copy h2,
.massages-copy > h2,
.hours-copy h2,
.services-list > h2,
.testimonials-section > h2 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.035em;
}

.story-copy h2 {
    margin-bottom: 32px;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.15;
}

.story-copy p + p {
    margin-top: 14px;
}

.story-copy p:nth-of-type(2) {
    color: var(--gold);
    font-family: var(--display);
}

.story-panel > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.relaxation-section {
    padding: clamp(76px, 9vw, 140px) 0;
    background: var(--green-dark);
    color: #fff;
}

.relaxation-copy {
    display: grid;
    width: var(--page);
    margin: 0 auto clamp(48px, 6vw, 86px);
    grid-template-columns: .8fr 1.2fr;
    gap: 10%;
}

.relaxation-copy h2 {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -.04em;
}

.relaxation-copy p {
    font-size: 18px;
    line-height: 1.8;
}

.relaxation-copy p + p {
    margin-top: 18px;
}

.studio-gallery {
    position: relative;
    width: min(980px, calc(100vw - 80px));
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    background: #111;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
}

.gallery-image-button,
.gallery-image-button img {
    width: 100%;
    height: 100%;
}

.gallery-image-button img {
    object-fit: cover;
    transition: opacity .45s ease, transform .8s ease;
}

.gallery-image-button:hover img {
    transform: scale(1.015);
}

.gallery-image-button img.is-changing {
    opacity: 0;
}

.gallery-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    place-items: center;
    transform: translateY(-50%);
    background: rgba(28, 23, 15, .38);
    color: #fff;
    backdrop-filter: blur(8px);
    opacity: .85;
    transition: background .2s ease, opacity .2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: rgba(28, 23, 15, .78);
    opacity: 1;
}

.gallery-arrow span {
    margin-top: -4px;
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 200;
}

.gallery-previous {
    left: 22px;
}

.gallery-next {
    right: 22px;
}

.gallery-toolbar {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    min-height: 46px;
    padding: 6px 14px 6px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    grid-template-columns: 1fr 44px 55px;
    align-items: center;
    background: rgba(28, 23, 15, .6);
    color: #fff;
    backdrop-filter: blur(12px);
    font-size: 13px;
}

.gallery-play {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
}

.play-icon {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
}

.gallery-play[aria-pressed="true"] .play-icon {
    width: 9px;
    height: 12px;
    margin: 0;
    border: 0;
    border-right: 3px solid #fff;
    border-left: 3px solid #fff;
}

.gallery-counter {
    text-align: right;
}

.massages-section {
    padding: clamp(70px, 8vw, 128px) 0;
    background: var(--brown);
}

.massages-panel {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: stretch;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.massages-photo {
    width: 100%;
    height: 100%;
    min-height: 1000px;
    object-fit: cover;
}

.massages-copy {
    padding: clamp(50px, 6vw, 92px);
    background: var(--paper);
}

.massages-copy > h2 {
    margin-bottom: 48px;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.15;
}

.price-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 46px;
}

.price-list article {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.price-list h3 {
    min-height: 50px;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
}

.price-list .inline-detail,
.price-list .detail {
    color: #766c5d;
    font-family: var(--body);
    font-size: 13px;
}

.price-list .block-detail {
    display: block;
}

.price-list p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    line-height: 1.75;
}

.price-list .detail {
    display: block;
    min-height: 23px;
}

.voucher-block {
    display: flex;
    margin-top: 52px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    align-items: center;
    gap: 20px;
    background: var(--cream);
}

.voucher-link {
    display: block;
    width: 104px;
    height: 76px;
    flex: 0 0 auto;
}

.voucher-image {
    display: block;
    width: 100%;
    height: 100%;
    background: url("assets/images/voucher.png") center / contain no-repeat;
    transition: transform .25s ease;
}

.voucher-link:hover .voucher-image,
.voucher-link:focus-visible .voucher-image {
    transform: rotate(-3deg) scale(1.05);
    background-image: url("assets/images/voucher-hover.png");
}

.voucher-text {
    font-family: var(--display);
    font-size: 17px;
    line-height: 1.5;
}

.hours-section {
    position: relative;
    padding: 88px 0 104px;
    overflow: hidden;
    background: var(--pink);
}

.hours-section::after {
    position: absolute;
    right: -10%;
    bottom: -130px;
    width: 60%;
    height: 250px;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, .35);
    content: "";
    transform: rotate(-8deg);
}

.hours-copy {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 48px));
    margin: 0 auto;
}

.hours-copy h2 {
    margin-bottom: 42px;
    text-align: center;
    font-size: clamp(34px, 4vw, 52px);
}

.hours-list {
    padding: 32px 40px;
    border-top: 1px solid rgba(42, 30, 6, .3);
    border-bottom: 1px solid rgba(42, 30, 6, .3);
}

.hours-list p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    font-size: 17px;
    line-height: 2.05;
}

.hours-list p span:last-child {
    text-align: right;
}

.contact-section {
    display: grid;
    background: var(--paper);
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}

.contact-details,
.contact-form-panel {
    padding: clamp(60px, 7vw, 110px) max(40px, calc((100vw - 1280px) / 2));
}

.contact-details {
    display: flex;
    padding-right: clamp(40px, 7vw, 110px);
    padding-left: max(40px, calc((100vw - 1280px) / 2));
    flex-direction: column;
    justify-content: center;
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.65;
}

.contact-details > p:first-child {
    margin-bottom: 40px;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.4;
}

.contact-details > p:last-child {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-family: var(--body);
    font-size: 16px;
}

.contact-row {
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 18px;
    font-family: var(--body);
}

.contact-row > a[href^="tel"] {
    border-bottom: 1px solid currentColor;
    font-size: 18px;
}

.whatsapp-button,
.phone-button {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    flex: 0 0 auto;
}

.whatsapp-button svg {
    width: 25px;
    height: 25px;
    fill: #228b4b;
}

.whatsapp-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.phone-button svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}

.contact-form-panel {
    padding-right: max(40px, calc((100vw - 1280px) / 2));
    padding-left: clamp(40px, 7vw, 110px);
    background: var(--green);
    color: #fff;
}

.contact-form {
    width: min(620px, 100%);
}

.form-intro {
    max-width: 520px;
    margin-bottom: 42px;
    font-family: var(--display);
    font-size: clamp(23px, 2.2vw, 31px);
    line-height: 1.45;
}

.contact-form label {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 9px;
    font-size: 14px;
}

.form-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    border-radius: 0;
    padding: 12px 2px;
    outline: 0;
    background: transparent;
    color: #fff;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

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

.contact-form > button {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    border-radius: 2px;
    background: var(--pink);
    color: var(--ink);
    transition: background .2s ease, transform .2s ease;
}

.contact-form > button:hover {
    background: #efddef;
    transform: translateY(-2px);
}

.form-success {
    margin-top: 16px;
    font-size: 14px;
}

.services-section {
    background: var(--taupe);
    color: #fff;
}

.services-list {
    width: var(--page);
    margin: 0 auto;
    padding: clamp(80px, 9vw, 140px) 0;
}

.services-list > h2 {
    font-size: clamp(38px, 5vw, 64px);
}

.service-grid {
    display: grid;
    margin-top: 64px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    min-height: 510px;
    border: 1px solid rgba(255, 255, 255, .24);
    flex-direction: column;
    background: rgba(255, 255, 255, .03);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 22px 55px rgba(33, 27, 19, .2);
}

.service-image {
    display: block;
    width: calc(100% - 40px);
    height: 230px;
    margin: 20px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.service-copy {
    display: flex;
    min-height: 230px;
    padding: 16px 30px 30px;
    flex: 1;
    flex-direction: column;
}

.service-copy h3 {
    font-family: var(--display);
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.035em;
}

.service-copy p {
    margin-top: 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.5;
}

.read-more {
    width: max-content;
    margin-top: auto;
    padding: 12px 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    font-size: 14px;
}

.faq-carousel {
    position: relative;
    display: grid;
    min-height: 560px;
    padding: 100px max(100px, calc((100vw - 980px) / 2));
    place-items: center;
    overflow: hidden;
    background: var(--pink);
    color: var(--brown);
    font-family: var(--display);
}

.faq-quote {
    position: absolute;
    top: 64px;
    left: 50%;
    width: 42px;
    transform: translateX(-50%);
}

.faq-quote svg {
    fill: var(--brown);
}

.faq-content {
    max-width: 900px;
    text-align: center;
    transition: opacity .35s ease;
}

.faq-content.is-changing {
    opacity: 0;
}

.faq-content h3 {
    margin-bottom: 30px;
    font-size: clamp(26px, 3.2vw, 43px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -.04em;
}

.faq-content p {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.75;
}

.faq-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(42, 30, 6, .35);
    border-radius: 50%;
    place-items: center;
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
}

.faq-previous {
    left: max(26px, calc((100vw - 1280px) / 2));
}

.faq-next {
    right: max(26px, calc((100vw - 1280px) / 2));
}

.faq-dots {
    position: absolute;
    right: 0;
    bottom: 54px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.faq-dot {
    position: relative;
    width: 36px;
    height: 36px;
}

.faq-dot::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border: 1px solid var(--brown);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    content: "";
}

.faq-dot.active::after {
    width: 10px;
    height: 10px;
    background: var(--brown);
}

.testimonials-section {
    position: relative;
    padding: 100px max(40px, calc((100vw - 1280px) / 2)) 120px;
    background: url("assets/images/testimonials.jpg") center 45% / cover no-repeat;
    color: var(--ink);
}

.testimonials-section::before {
    position: absolute;
    inset: 0;
    background: rgba(255, 253, 248, .72);
    content: "";
}

.testimonials-section > h2,
.testimonials-grid {
    position: relative;
    z-index: 1;
}

.testimonials-section > h2 {
    margin-bottom: 60px;
    font-size: clamp(38px, 5vw, 64px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonials-grid figure {
    display: flex;
    min-height: 250px;
    padding: 34px;
    border: 1px solid rgba(42, 30, 6, .18);
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 253, 248, .68);
    backdrop-filter: blur(6px);
}

.testimonials-grid blockquote {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.55;
}

.testimonials-grid figcaption {
    margin-top: 30px;
    color: #716757;
    font-size: 14px;
}

.site-footer {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: var(--brown);
    color: #fff;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    width: var(--page);
    margin: 0 auto;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.footer-brand h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.04em;
}

.footer-brand p {
    margin-top: 34px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.8;
}

.footer-details {
    padding-top: 10px;
}

.footer-details address {
    color: rgba(255, 255, 255, .76);
    font-style: normal;
    line-height: 1.8;
}

.footer-details nav {
    display: flex;
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-details a,
.footer-brand a {
    border-bottom: 1px solid transparent;
}

.footer-details a:hover,
.footer-details a:focus-visible,
.footer-brand a:hover,
.footer-brand a:focus-visible {
    border-color: currentColor;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 74px;
    background-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 100 1920 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f4efe5' d='M1914.392 288.326c-110.231-4.798-134.428-121.68-301.124-121.68s-190.894 116.883-301.124 121.68h-15.779c-132.623-3.764-163.287-72.283-366.071-72.283s-233.445 68.519-366.071 72.283h-8.154C384.543 282.678 408.027 100 281.156 100c-123.98 0-102.173 182.678-274.845 188.326H0V300h1920v-11.674h-5.608z'/%3E%3C/svg%3E");
    background-size: 960px 100%;
}

.lightbox {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: none;
    padding: 40px 80px;
    align-items: center;
    justify-content: center;
    background: rgba(15, 12, 8, .96);
    color: #fff;
}

.lightbox.open {
    display: flex;
}

.lightbox figure {
    display: flex;
    max-width: calc(100vw - 180px);
    max-height: calc(100vh - 60px);
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-height: calc(100vh - 120px);
    object-fit: contain;
}

.lightbox figcaption {
    padding-top: 16px;
    font-size: 14px;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

.lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 40px;
}

.lightbox-arrow {
    top: 50%;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 38px;
}

.lightbox-previous {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

@media (max-width: 1100px) {
    :root {
        --page: min(100% - 48px, 900px);
    }

    .desktop-nav {
        display: none;
    }

    .brand-logo {
        top: 22px;
        left: 24px;
    }

    .menu-toggle {
        position: absolute;
        z-index: 20;
        top: 27px;
        right: 24px;
        display: flex;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 50%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .menu-toggle span {
        width: 19px;
        height: 1px;
        background: #fff;
    }

    .mobile-menu {
        position: fixed;
        z-index: 99999;
        inset: 0;
        display: grid;
        padding: 80px 24px;
        place-items: center;
        transform: translateY(-102%);
        background: var(--green-dark);
        color: #fff;
        visibility: hidden;
        transition: transform .35s ease, visibility 0s linear .35s;
    }

    .mobile-menu.open {
        transform: translateY(0);
        visibility: visible;
        transition: transform .35s ease;
    }

    .mobile-menu nav {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .mobile-menu nav a {
        padding: 12px 18px;
        font-family: var(--display);
        font-size: clamp(20px, 5vw, 29px);
    }

    .mobile-menu nav a.active {
        color: #e8c76e;
    }

    .menu-close {
        position: absolute;
        top: 27px;
        right: 24px;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 50%;
    }

    .menu-close span {
        position: absolute;
        top: 23px;
        left: 14px;
        width: 19px;
        height: 1px;
        background: #fff;
    }

    .menu-close span:first-child {
        transform: rotate(45deg);
    }

    .menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .site-header {
        min-height: 650px;
        padding: 180px 24px 90px;
    }

    .hero-copy {
        width: min(600px, 68vw);
    }

    .hero-oils {
        right: -10%;
        bottom: 30px;
        width: 54vw;
        opacity: .65;
    }

    .story-panel {
        grid-template-columns: 1fr 1fr;
    }

    .story-copy {
        padding: 48px;
        font-size: 15px;
    }

    .story-panel > img {
        min-height: 580px;
    }

    .massages-panel {
        grid-template-columns: .55fr 1fr;
    }

    .massages-copy {
        padding: 48px 36px;
    }

    .price-list {
        gap: 26px;
    }

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

    .contact-details,
    .contact-form-panel {
        padding: 72px 40px;
    }
}

@media (max-width: 760px) {
    :root {
        --page: calc(100% - 32px);
    }

    .brand-logo {
        top: 18px;
        left: 16px;
        width: 205px;
        height: 49px;
    }

    .brand-logo img {
        width: 205px;
        transform: translateY(-33px);
    }

    .menu-toggle,
    .menu-close {
        top: 18px;
        right: 16px;
    }

    .site-header {
        min-height: 640px;
        padding: 150px 20px 170px;
        align-items: start;
    }

    .site-header::before {
        right: -300px;
        bottom: -400px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-copy p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-copy p:first-of-type {
        margin-top: 30px;
    }

    .hero-oils {
        right: -28px;
        bottom: 38px;
        width: 330px;
        max-width: 82vw;
        opacity: .72;
    }

    .story-section,
    .relaxation-section,
    .massages-section {
        padding: 64px 0;
    }

    .story-panel {
        display: flex;
        flex-direction: column;
    }

    .story-copy {
        padding: 44px 28px 52px;
        font-size: 15px;
    }

    .story-copy::before {
        margin-bottom: 24px;
    }

    .story-copy h2 {
        margin-bottom: 24px;
    }

    .story-panel > img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: initial;
    }

    .relaxation-copy {
        display: block;
        margin-bottom: 40px;
    }

    .relaxation-copy h2 {
        margin-bottom: 26px;
    }

    .relaxation-copy p {
        font-size: 16px;
    }

    .studio-gallery {
        width: calc(100% - 32px);
        aspect-ratio: 4 / 3;
    }

    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-previous {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-toolbar {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding-left: 12px;
        font-size: 11px;
    }

    .massages-panel {
        display: flex;
        flex-direction: column;
    }

    .massages-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .massages-copy {
        padding: 44px 24px;
    }

    .massages-copy > h2 {
        margin-bottom: 36px;
    }

    .price-list {
        display: block;
    }

    .price-list article {
        margin-bottom: 24px;
    }

    .price-list h3 {
        min-height: 0;
    }

    .voucher-block {
        margin-top: 36px;
        padding: 18px;
        align-items: flex-start;
    }

    .voucher-link {
        width: 82px;
        height: 62px;
    }

    .voucher-text {
        font-size: 15px;
    }

    .hours-section {
        padding: 68px 0 76px;
    }

    .hours-copy h2 {
        margin-bottom: 30px;
    }

    .hours-list {
        padding: 24px 0;
    }

    .hours-list p {
        gap: 16px;
        font-size: 14px;
        line-height: 1.85;
    }

    .contact-section {
        display: block;
    }

    .contact-details,
    .contact-form-panel {
        padding: 60px 24px;
    }

    .contact-details > p:first-child {
        margin-bottom: 28px;
    }

    .contact-details > p:last-child {
        margin-top: 30px;
    }

    .form-name-row {
        display: block;
    }

    .services-list {
        padding: 70px 0;
    }

    .service-grid {
        display: block;
        margin-top: 42px;
    }

    .service-card {
        min-height: 0;
        margin-bottom: 16px;
    }

    .service-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .service-copy {
        min-height: 210px;
        padding: 16px 24px 26px;
    }

    .service-copy h3 {
        font-size: 27px;
    }

    .faq-carousel {
        min-height: 640px;
        padding: 100px 50px 120px;
    }

    .faq-content h3 {
        font-size: 25px;
    }

    .faq-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .faq-arrow {
        top: auto;
        bottom: 42px;
        transform: none;
    }

    .faq-previous {
        left: 22px;
    }

    .faq-next {
        right: 22px;
    }

    .faq-dots {
        bottom: 50px;
        right: 66px;
        left: 66px;
        flex-wrap: wrap;
    }

    .faq-dot {
        width: 28px;
        height: 36px;
    }

    .testimonials-section {
        padding: 72px 16px 80px;
    }

    .testimonials-section > h2 {
        margin-bottom: 38px;
    }

    .testimonials-grid {
        display: block;
    }

    .testimonials-grid figure {
        min-height: 210px;
        margin-bottom: 14px;
        padding: 28px;
    }

    .site-footer {
        padding: 76px 0 120px;
    }

    .footer-content {
        display: block;
    }

    .footer-details {
        margin-top: 52px;
    }

    .copyright {
        margin-top: 52px;
    }

    .lightbox {
        padding: 60px 12px 80px;
    }

    .lightbox figure {
        max-width: 100%;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
