/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
}


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

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/home/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    z-index: 1000;

    background: transparent;

    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 248, 240, 0.18);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-link {
    position: absolute;

    top: 38px;

    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 400;

    color: #736255;

    text-decoration: none;
    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.65;
}

.navbar .nav-link:nth-child(1) {
    left: 25%;
    transform: translateX(-50%);
}

.navbar .nav-link:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
}

.navbar .nav-link:nth-child(3) {
    left: 75%;
    transform: translateX(-50%);
}

.nav-link.active {
    font-weight: 700;
}


/* =========================================
   LOGO
========================================= */

.hero-logo {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 600px;
    max-width: 70vw;
    height: auto;

    display: block;

    z-index: 5;
}


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

.hero-actions {
    position: absolute;

    left: 50%;
    top: 68%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    z-index: 10;
}


/* =========================================
   BOOKSY BUTTON
========================================= */

.booking-button {
    margin-top: 100px;

    padding: 14px 38px;

    border-radius: 999px;

    background-color: #FFFFFF;

    color: #69443C;

    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 400;

    text-decoration: none;
    white-space: nowrap;

    transform: translateY(-70px);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.booking-button:hover {
    transform: translateY(-73px);

    opacity: 0.9;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.social-links img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    display: block;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.social-links a:hover img {
    transform: translateY(-3px) scale(1.06);

    opacity: 0.88;
}


/* =========================================
   SKINCARE
========================================= */

.skincare-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/home/skincare.jpg");
    background-size: cover;
    background-position: 40% 50%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 80px 7%;
}

.skincare-content {
    width: 42%;
    max-width: 560px;

    text-align: right;

    color: #FFFFFF;

    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.skincare-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.skincare-title {
    font-family: "Cinzel", serif;

    font-size: 65px;
    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 50px;
}

.skincare-text {
    font-family: "Montserrat", sans-serif;

    font-size: 25px;
    font-style: italic;
    font-weight: 400;

    line-height: 1.2;
}


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

.about-section {
    position: relative;

    width: 100%;
    height: 100vh;

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

    background: #F1EBE6;

    overflow: hidden;
}

.about-left {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 9% 80px 7%;
}

.about-content {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.about-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-heading-wrap {
    position: relative;

    width: fit-content;

    margin-bottom: 55px;
}

.about-title {
    font-family: "Cinzel", serif;

    font-size: 74px;
    font-weight: 400;

    line-height: 1.1;

    color: #A9A29E;
}

.about-title-line {
    position: absolute;

    left: -7vw;
    bottom: -16px;

    width: 32vw;
    height: 7px;

    background: #A9A29E;

    clip-path: polygon(
        0 45%,
        100% 0,
        100% 100%,
        0 55%
    );
}

.about-copy {
    max-width: 610px;

    color: #A9A29E;
}

.about-copy p {
    font-family: "Montserrat", sans-serif;

    font-size: 25px;
    font-style: italic;
    font-weight: 400;

    line-height: 1.2;
}

.about-right {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

.about-divider {
    position: absolute;

    left: 50%;

    width: 8px;

    transform: translateX(-50%);

    background: #A9A29E;

    z-index: 5;
}

.about-divider-top {
    top: 0;

    height: 46%;

    clip-path: polygon(
        45% 0,
        55% 0,
        100% 100%,
        0 100%
    );
}

.about-divider-bottom {
    bottom: 0;

    height: 46%;

    clip-path: polygon(
        0 0,
        100% 0,
        55% 100%,
        45% 100%
    );
}

.about-divider-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 18px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #A9A29E;

    z-index: 5;
}


/* =========================================
   BOOKING SECTION
========================================= */

.booking-section {
    position: relative;

    width: 100%;

    height: calc(100vh - 78px);
    min-height: 720px;

    background: #F1EBE6;

    overflow: hidden;
}

.booking-person {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 53%;
    height: 100%;

    z-index: 1;

    overflow: hidden;
}

.booking-person-image {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: left bottom;

    display: block;
}

.booking-arc-text {
    position: absolute;

    left: 18%;
    top: 46%;

    color: #FFFFFF;

    font-family: "Cinzel", serif;
    font-size: 38px;
    font-weight: 400;

    white-space: nowrap;

    transform: rotate(8deg);

    z-index: 3;
}

.booking-arc-image {
    position: absolute;

    left: 17%;
    top: 40%;

    width: 70%;
    height: auto;

    display: block;

    object-fit: contain;

    z-index: 4;

    pointer-events: none;
}

.booking-content {
    position: relative;

    width: 100%;
    height: 100%;

    z-index: 2;
}

.booking-eyebrow {
    position: absolute;

    top: 7%;
    left: 50%;

    transform: translateX(-50%);

    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 400;

    color: #8E8985;

    white-space: nowrap;
}

.booking-main {
    position: absolute;

    right: 6%;
    top: 37%;

    width: 38%;

    text-align: right;
}

.booking-title {
    font-family: "Cinzel", serif;

    font-size: clamp(48px, 4.5vw, 76px);
    font-weight: 400;

    line-height: 1;

    color: #A9A29E;

    white-space: nowrap;
}

.booking-title-link {
    display: inline-block;

    color: #A9A29E;
    text-decoration: none;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.booking-title-link:hover {
    opacity: 0.7;

    transform: translateY(-2px);
}

.booking-line {
    position: relative;

    right: -6vw;

    width: calc(100% + 6vw);
    height: 7px;

    margin: 34px 0 30px auto;

    background: #A9A29E;

    clip-path: polygon(
        0 0,
        100% 45%,
        100% 55%,
        0 100%
    );
}

.booking-description {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    font-style: italic;
    font-weight: 400;

    line-height: 1.35;

    color: #B5AFAB;
}

.booking-bottom-link {
    position: absolute;

    right: 7%;
    bottom: 13%;

    font-family: "Cinzel", serif;

    font-size: 28px;
    font-weight: 400;

    color: #B0AAA6;

    text-decoration: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.booking-bottom-link:hover {
    opacity: 0.65;

    transform: translateY(-2px);
}


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

.footer-icon-img {
    width: 24px;
    height: 24px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;
}

.site-footer {
    width: 100%;
    min-height: 78px;

    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #CBC3BD;

    color: #FFFFFF;

    font-family: "Cinzel", serif;
}

.footer-item {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #FFFFFF;

    font-size: 18px;
    font-weight: 400;

    text-decoration: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-item:hover {
    opacity: 0.75;

    transform: translateY(-1px);
}

.footer-icon {
    font-family: Arial, sans-serif;

    font-size: 25px;
    line-height: 1;

    color: #FFFFFF;
}

.footer-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    line-height: 1;

    filter: grayscale(1) brightness(0) invert(1);
}


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

.offer-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/oferta/hero-oferta.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.offer-hero .nav-link {
    color: #FFFFFF;
}

.offer-hero-content {
    position: absolute;

    left: 50%;
    top: 49%;

    transform: translate(-50%, -50%);

    width: 90%;

    text-align: center;

    color: #FFFFFF;

    z-index: 5;
}

.offer-hero-title {
    margin: 0;

    font-family: "Cinzel", serif;

    font-size: clamp(70px, 7vw, 118px);
    font-weight: 400;

    line-height: 1;

    color: #FFFFFF;

    white-space: nowrap;
}

.offer-hero-subtitle {
    margin-top: 24px;

    font-family: "Cinzel", serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.3;

    color: #FFFFFF;

    white-space: nowrap;
}

.offer-hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 5%;

    transform: translateX(-50%);

    font-family: "Cinzel", serif;

    font-size: 20px;
    font-weight: 400;

    color: #FFFFFF;

    white-space: nowrap;

    z-index: 5;
}


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

.offer-treatments {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/oferta/face-treatments.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding: 90px 7%;

    overflow: hidden;
}

.offer-treatments-inner {
    position: relative;

    width: 100%;

    z-index: 2;
}

.offer-treatments-title {
    margin-bottom: 80px;

    text-align: center;

    font-family: "Cinzel", serif;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.2;

    color: #3F3A37;
}

.offer-treatments-columns {
    width: 100%;

    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;

    column-gap: 7%;

    align-items: start;
}

.offer-treatments-list {
    margin: 0;

    padding-left: 24px;

    font-family: "Cinzel", serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.45;

    color: #3F3A37;
}

.offer-treatments-list li {
    padding-left: 5px;

    margin-bottom: 20px;
}

.offer-treatments-list li:last-child {
    margin-bottom: 0;
}

.offer-treatments-list li::marker {
    font-size: 0.75em;

    color: #000000;
}


/* =========================================
   MANICURE
========================================= */

.manicure-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/oferta/manicure.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 8% 7%;

    overflow: hidden;
}

.manicure-box {
    position: relative;

    width: 42%;
    max-width: 650px;

    padding: 110px 65px 70px;

    border-left: 1px solid rgba(255, 255, 255, 0.85);

    color: #FFFFFF;
}

.manicure-box::before,
.manicure-box::after {
    content: "";

    position: absolute;

    left: 0;

    width: calc(100% + 7vw);
    height: 1px;

    background: rgba(255, 255, 255, 0.85);
}

.manicure-box::before {
    top: 0;
}

.manicure-box::after {
    bottom: 0;
}

.manicure-title {
    position: absolute;

    top: 22px;
    left: 50%;

    transform: translateX(-50%);

    padding: 0 22px;

    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 600;

    color: #FFFFFF;

    white-space: nowrap;
}

.manicure-list {
    margin: 0;

    padding-left: 22px;

    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 400;

    line-height: 1.45;

    color: #FFFFFF;
}

.manicure-list li {
    margin-bottom: 24px;

    padding-left: 5px;
}

.manicure-list li:last-child {
    margin-bottom: 0;
}

.manicure-list li::marker {
    font-size: 0.75em;
}


/* =========================================
   PEDICURE
========================================= */

.pedicure-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/oferta/pedicure.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding: 7% 8%;

    overflow: hidden;
}

.pedicure-content {
    width: 44%;
    max-width: 700px;

    color: #2F2A27;
}

.pedicure-title {
    margin-bottom: 28px;

    text-align: center;

    font-family: "Cinzel", serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.2;

    color: #3A3532;
}

.pedicure-list {
    margin: 0;

    padding-left: 24px;

    font-family: "Cinzel", serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.45;

    color: #2F2A27;
}

.pedicure-list li {
    margin-bottom: 17px;

    padding-left: 5px;
}

.pedicure-list li:last-child {
    margin-bottom: 0;
}

.pedicure-list li::marker {
    font-size: 0.75em;

    color: #000000;
}

.pedicure-list .pedicure-gap {
    margin-top: 32px;
}


/* =========================================
   OPRAWA OCZU
========================================= */

.eyes-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/oferta/eyes.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 8% 7%;

    overflow: hidden;
}

.eyes-box {
    position: relative;

    width: 42%;
    max-width: 650px;

    padding: 110px 65px 70px;

    border-left: 1px solid rgba(255, 255, 255, 0.85);

    color: #FFFFFF;
}

.eyes-box::before,
.eyes-box::after {
    content: "";

    position: absolute;

    left: 0;

    width: calc(100% + 7vw);
    height: 1px;

    background: rgba(255, 255, 255, 0.85);
}

.eyes-box::before {
    top: 0;
}

.eyes-box::after {
    bottom: 0;
}

.eyes-title {
    position: absolute;

    top: 22px;
    left: 50%;

    transform: translateX(-50%);

    padding: 0 22px;

    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 600;

    color: #FFFFFF;

    white-space: nowrap;
}

.eyes-list {
    margin: 0;

    padding-left: 22px;

    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 400;

    line-height: 1.45;

    color: #FFFFFF;
}

.eyes-list li {
    margin-bottom: 24px;

    padding-left: 5px;
}

.eyes-list li:last-child {
    margin-bottom: 0;
}

.eyes-list li::marker {
    font-size: 0.75em;
}


/* =========================================
   MASAŻE & DEPILACJA
========================================= */

.massage-section {
    position: relative;

    width: 100%;

    height: calc(100vh - 78px);
    min-height: 700px;

    background: #F5F1ED;

    overflow: hidden;
}

.massage-content {
    width: 79%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 7% 70px 12%;
}

.massage-title {
    margin-bottom: 55px;

    text-align: center;

    font-family: "Cinzel", serif;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.2;

    color: #54504D;
}

.massage-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 10%;
}

.massage-list {
    margin: 0;

    padding-left: 24px;

    font-family: "Cinzel", serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.45;

    color: #3D3936;
}

.massage-list li {
    margin-bottom: 20px;

    padding-left: 5px;
}

.massage-list li:last-child {
    margin-bottom: 0;
}

.massage-list li::marker {
    font-size: 0.75em;

    color: #000000;
}

.massage-image-wrap {
    position: absolute;

    top: 0;
    right: 0;

    width: 21%;
    height: 100%;

    overflow: hidden;
}

.massage-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


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

.reviews-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image: url("../assets/images/opinie/hero-opinie.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.reviews-hero .nav-link {
    color: #FFFFFF;
}

.reviews-hero-content {
    position: absolute;

    left: 50%;
    top: 49%;

    transform: translate(-50%, -50%);

    width: 90%;

    text-align: center;

    color: #FFFFFF;

    z-index: 5;
}

.reviews-hero-title {
    margin: 0;

    font-family: "Cinzel", serif;

    font-size: clamp(70px, 7vw, 118px);
    font-weight: 400;

    line-height: 1;

    color: #FFFFFF;

    white-space: nowrap;
}

.reviews-hero-subtitle {
    margin-top: 24px;

    font-family: "Cinzel", serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.3;

    color: #FFFFFF;

    white-space: nowrap;
}

.reviews-hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 5%;

    transform: translateX(-50%);

    font-family: "Cinzel", serif;

    font-size: 20px;
    font-weight: 400;

    color: #FFFFFF;

    white-space: nowrap;

    z-index: 5;
}


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

.reviews-section {
    position: relative;

    width: 100%;

    min-height: calc(100vh - 78px);

    background-image: url("../assets/images/opinie/reviews-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 6%;

    overflow: hidden;
}

.reviews-content {
    width: 100%;
}

.reviews-eyebrow {
    margin-bottom: 55px;

    text-align: center;

    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 400;

    color: #FFFFFF;
}


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

.reviews-carousel {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-viewport {
    width: 100%;

    overflow: hidden;

    padding: 35px 0;
}

.reviews-track {
    display: flex;
    align-items: center;

    gap: 30px;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;

    touch-action: pan-y;
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 3);

    min-height: 215px;

    padding: 48px 38px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #FFFFFF;

    opacity: 0.62;

    transform: scale(0.93);

    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        box-shadow 0.55s ease;
}

.review-card.is-active {
    opacity: 1;

    transform: scale(1.06);

    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);

    z-index: 2;
}

.review-stars {
    margin-bottom: 22px;

    font-family: Arial, sans-serif;

    font-size: 24px;
    letter-spacing: 3px;

    color: #A9A29E;
}

.review-text {
    max-width: 400px;

    font-family: "Montserrat", sans-serif;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.5;

    color: #B3AEAA;
}


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

.reviews-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: auto;
    height: auto;

    padding: 8px;

    border: none;

    background: transparent;

    color: rgba(255, 255, 255, 0.78);

    font-family: Arial, sans-serif;
    font-size: 56px;
    font-weight: 200;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.reviews-arrow:hover {
    opacity: 0.6;

    transform: translateY(-50%) scale(1.08);
}

.reviews-arrow-prev {
    left: -34px;
}

.reviews-arrow-next {
    right: -34px;
}


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

.reviews-dots {
    margin-top: 20px;

    display: flex;
    justify-content: center;

    gap: 10px;
}

.reviews-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.reviews-dot.is-active {
    background: #FFFFFF;

    transform: scale(1.35);
}


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

@media (max-width: 1024px) {

    .nav-link {
        font-size: 15px;
    }

    .hero-logo {
        width: 500px;
        max-width: 70vw;
    }

    .booking-button {
        font-size: 14px;
        padding: 10px 26px;
    }

    .skincare-section {
        padding: 60px 5%;
    }

    .skincare-content {
        width: 48%;
    }

    .skincare-title {
        font-size: 40px;
    }

    .skincare-text {
        font-size: 17px;
    }

    .about-left {
        padding: 70px 6%;
    }

    .about-title {
        font-size: 52px;
    }

    .about-title-line {
        left: -6vw;

        width: 34vw;
        height: 6px;
    }

    .about-copy p {
        font-size: 17px;
    }

    .booking-section {
        min-height: 650px;
    }

    .booking-person {
        width: 55%;
    }

    .booking-eyebrow {
        font-size: 15px;
    }

    .booking-main {
        right: 5%;

        width: 43%;
    }

    .booking-title {
        font-size: 45px;
    }

    .booking-line {
        right: -5vw;

        width: calc(100% + 5vw);
        height: 6px;
    }

    .booking-description {
        font-size: 16px;
    }

    .booking-bottom-link {
        right: 5%;

        font-size: 20px;
    }

    .footer-item {
        font-size: 14px;
    }


    /* OFFER */

    .offer-hero-title {
        font-size: 70px;
    }

    .offer-hero-subtitle {
        font-size: 19px;
    }

    .offer-hero-bottom {
        font-size: 16px;
    }

    .offer-treatments {
        min-height: auto;

        padding: 90px 6%;
    }

    .offer-treatments-title {
        margin-bottom: 60px;

        font-size: 22px;
    }

    .offer-treatments-columns {
        column-gap: 4%;
    }

    .offer-treatments-list {
        font-size: 14px;
    }

    .manicure-section {
        min-height: 800px;

        padding: 8% 5%;
    }

    .manicure-box {
        width: 46%;

        padding: 75px 40px 55px;
    }

    .manicure-title {
        font-size: 22px;
    }

    .manicure-list {
        font-size: 14px;
    }

    .pedicure-section {
        min-height: 850px;

        padding: 7% 6%;

        background-position: 55% center;
    }

    .pedicure-content {
        width: 50%;
    }

    .pedicure-title {
        font-size: 21px;
    }

    .pedicure-list {
        font-size: 14px;
    }

    .eyes-section {
        min-height: 800px;

        padding: 8% 5%;
    }

    .eyes-box {
        width: 46%;

        padding: 95px 40px 55px;
    }

    .eyes-box::before,
    .eyes-box::after {
        width: calc(100% + 5vw);
    }

    .eyes-title {
        font-size: 22px;
    }

    .eyes-list {
        font-size: 14px;
    }

    .massage-content {
        padding: 70px 7%;
    }

    .massage-title {
        font-size: 22px;
    }

    .massage-list {
        font-size: 14px;
    }


    /* REVIEWS */

    .reviews-hero-title {
        font-size: 70px;
    }

    .reviews-hero-subtitle {
        margin-top: 20px;

        font-size: 19px;
    }

    .reviews-hero-bottom {
        font-size: 16px;
    }

    .reviews-section {
        padding: 70px 5%;
    }

    .reviews-eyebrow {
        margin-bottom: 45px;

        font-size: 16px;
    }

    .reviews-track {
        gap: 22px;
    }

    .review-card {
        flex: 0 0 calc((100% - 22px) / 2);

        min-height: 200px;

        padding: 38px 25px;
    }

    .review-card.is-active {
        transform: scale(1.03);
    }

    .reviews-arrow {
        display: none;
    }

    .review-stars {
        font-size: 20px;
    }

    .review-text {
        font-size: 13px;
    }

}


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

@media (max-width: 767px) {

    .navbar {
        height: 65px;
    }

    .nav-link {
        top: 22px;

        font-size: 10px;
    }

    .navbar .nav-link:nth-child(1) {
        left: 20%;
    }

    .navbar .nav-link:nth-child(2) {
        left: 50%;
    }

    .navbar .nav-link:nth-child(3) {
        left: 80%;
    }

    .hero-logo {
        width: 300px;
        max-width: 78vw;
    }

    .hero-actions {
        top: 67%;
    }

    .booking-button {
        margin-top: 50px;

        padding: 9px 22px;

        font-size: 12px;
    }

    .social-links {
        margin-top: 16px;

        gap: 16px;
    }


    /* SKINCARE */

    .skincare-section {
        min-height: 100vh;

        justify-content: center;
        align-items: flex-end;

        padding: 40px 24px 60px;

        background-position: 35% center;
    }

    .skincare-content {
        width: 100%;
        max-width: 420px;
    }

    .skincare-title {
        font-size: 32px;

        line-height: 1.35;

        margin-bottom: 24px;
    }

    .skincare-text {
        font-size: 15px;

        line-height: 1.5;
    }


    /* ABOUT */

    .about-section {
        height: auto;

        grid-template-columns: 1fr;

        background: #F1EBE6;
    }

    .about-left {
        min-height: 72vh;

        padding: 90px 24px 55px;
    }

    .about-title {
        font-size: 44px;
    }

    .about-title-line {
        left: -24px;
        bottom: -14px;

        width: 62vw;
        height: 5px;
    }

    .about-copy p {
        font-size: 15px;

        line-height: 1.45;
    }

    .about-right {
        height: 65vh;
    }

    .about-divider,
    .about-divider-dot {
        display: none;
    }


    /* BOOKING */

    .booking-section {
        height: auto;
        min-height: 850px;
    }

    .booking-eyebrow {
        top: 45px;

        width: 100%;

        text-align: center;

        font-size: 13px;
    }

    .booking-main {
        top: 130px;

        right: 24px;
        left: 24px;

        width: auto;
    }

    .booking-title {
        font-size: 42px;

        white-space: normal;
    }

    .booking-line {
        right: -24px;

        width: calc(100% + 24px);
        height: 5px;
    }

    .booking-description {
        font-size: 14px;
    }

    .booking-person {
        left: -10%;

        width: 82%;
        height: 55%;
    }

    .booking-bottom-link {
        right: 24px;
        bottom: 45px;

        max-width: 55%;

        font-size: 17px;
    }


    /* OFFER */

    .offer-hero {
        min-height: 100svh;

        background-position: 58% center;
    }

    .offer-hero-content {
        top: 46%;

        width: calc(100% - 40px);
    }

    .offer-hero-title {
        font-size: clamp(42px, 13vw, 60px);

        white-space: normal;
    }

    .offer-hero-subtitle {
        font-size: 13px;

        white-space: normal;
    }

    .offer-hero-bottom {
        font-size: 12px;
    }

    .offer-treatments {
        min-height: auto;

        padding: 75px 30px 80px;
    }

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

    .offer-treatments-list {
        font-size: 14px;
    }

    .manicure-section {
        min-height: 100vh;

        padding: 60px 24px;

        background-position: 35% center;
    }

    .manicure-box {
        width: 100%;

        padding: 65px 28px 42px;
    }

    .manicure-title {
        top: 22px;

        font-size: 20px;
    }

    .manicure-list {
        font-size: 13px;
    }

    .pedicure-section {
        min-height: auto;

        padding: 70px 28px;

        background-position: 60% center;
    }

    .pedicure-content {
        width: 100%;
    }

    .pedicure-title {
        text-align: left;

        font-size: 20px;
    }

    .pedicure-list {
        font-size: 13px;
    }

    .eyes-section {
        min-height: 100vh;

        padding: 60px 24px;

        background-position: 38% center;
    }

    .eyes-box {
        width: 100%;

        padding: 80px 28px 42px;
    }

    .eyes-title {
        font-size: 20px;
    }

    .eyes-list {
        font-size: 13px;
    }

    .massage-section {
        height: auto;
        min-height: auto;

        display: flex;
        flex-direction: column;
    }

    .massage-content {
        width: 100%;
        height: auto;

        padding: 70px 28px 55px;
    }

    .massage-title {
        font-size: 20px;
    }

    .massage-columns {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .massage-list {
        font-size: 13px;
    }

    .massage-image-wrap {
        position: relative;

        width: 100%;
        height: 55vh;
    }


    /* REVIEWS HERO */

    .reviews-hero {
        min-height: 100svh;

        background-position: 58% center;
    }

    .reviews-hero-content {
        top: 46%;

        width: calc(100% - 40px);
    }

    .reviews-hero-title {
        font-size: clamp(42px, 13vw, 60px);

        white-space: normal;
    }

    .reviews-hero-subtitle {
        margin-top: 18px;

        font-size: 13px;

        white-space: normal;
    }

    .reviews-hero-bottom {
        bottom: 5%;

        font-size: 12px;
    }


    /* REVIEWS CAROUSEL */

    .reviews-section {
        min-height: auto;

        padding: 65px 24px;

        background-position: 55% center;
    }

    .reviews-eyebrow {
        margin-bottom: 35px;

        font-size: 13px;
    }

    .reviews-viewport {
        padding: 25px 0;
    }

    .reviews-track {
        gap: 18px;
    }

    .review-card {
        flex: 0 0 100%;

        min-height: 190px;

        padding: 38px 28px;

        opacity: 1;

        transform: scale(0.96);
    }

    .review-card.is-active {
        transform: scale(1);
    }

    .reviews-arrow {
        display: none;
    }

    .review-stars {
        margin-bottom: 18px;

        font-size: 20px;
    }

    .review-text {
        font-size: 13px;

        line-height: 1.55;
    }


    /* FOOTER */

    .site-footer {
        min-height: 110px;

        padding: 20px 24px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 12px;

        background: #CBC3BD;
    }

    .footer-item {
        font-size: 12px;
    }

    .footer-icon,
    .footer-location-icon {
        font-size: 20px;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

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

    .skincare-content,
    .about-content {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .reviews-track,
    .review-card {
        transition: none;
    }

}