:root {
    --black: #080706;
    --black-soft: #0f0c0a;
    --black-warm: #17110e;

    --cream: #f3ece4;
    --cream-light: #faf6f1;

    --gold: #c99b65;
    --gold-light: #e3bd8b;
    --gold-dark: #9a7048;

    --text: #221a16;
    --muted: #756860;

    --white: #ffffff;

    --border: #ddc9b4;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--cream-light);
    color: var(--text);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    line-height: 1.6;
}


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


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


.container {
    width: min(
        1180px,
        calc(100% - 50px)
    );

    margin: 0 auto;
}


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

.site-header {
    position: relative;
    z-index: 100;

    background: var(--black);
    color: var(--white);

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


.header-inner {
    min-height: 88px;

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

    gap: 40px;
}


.brand {
    min-width: 170px;

    display: flex;
    align-items: center;
}


.brand-logo {
    display: block;

    max-height: 68px;
    max-width: 170px;

    width: auto;
    height: auto;

    object-fit: contain;
}


.brand-text {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;
}


.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}


.main-nav a {
    color: rgba(255,255,255,.92);

    text-transform: uppercase;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .07em;

    transition:
        color .2s ease;
}


.main-nav a:hover {
    color: var(--gold-light);
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 13px 28px;

    background: var(--gold-light);
    color: var(--black);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        transform .2s ease,
        background .2s ease;
}


.button:hover {
    transform: translateY(-1px);
    background: #ecc99c;
}


.button-small {
    min-height: 42px;
    padding: 10px 23px;
}


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

.hero {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: var(--black);

    display: flex;
    align-items: center;
}


.hero-photo {
    position: absolute;
    inset: 0;

    z-index: 0;
}


.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: 73% center;
}


.hero-shade {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7,6,5,1) 0%,
            rgba(7,6,5,.98) 20%,
            rgba(7,6,5,.89) 36%,
            rgba(7,6,5,.63) 52%,
            rgba(7,6,5,.18) 75%,
            rgba(7,6,5,.03) 100%
        );
}


.hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;
}


.hero-copy-area {
    width: 580px;
    max-width: 52%;

    color: var(--white);
}


.hero-script {
    margin-bottom: -3px;

    color: var(--white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-style: italic;

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

    line-height: 1;
}


.hero h1 {
    max-width: 560px;

    margin: 0;

    color: var(--white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        68px,
        6.5vw,
        100px
    );

    line-height: .91;

    font-weight: 500;

    letter-spacing: -.03em;
}


.hero-subtitle {
    margin: 24px 0 14px;

    color: var(--gold-light);

    font-size: 18px;
}


.hero-treatments {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 11px;

    margin-bottom: 24px;

    color: var(--white);

    font-size: 14px;
    letter-spacing: .035em;
}


.hero-treatments i {
    color: var(--gold);

    font-style: normal;

    font-size: 9px;
}


.hero-button {
    margin-bottom: 33px;

    padding-left: 30px;
    padding-right: 30px;
}


.hero-features {
    display: flex;

    align-items: center;

    gap: 33px;
}


.hero-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 10px;
    line-height: 1.35;
}


.hero-feature strong,
.hero-feature span {
    display: block;
}


.feature-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

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

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

    color: var(--gold);

    font-size: 20px;
}


/* ==========================================================
   GENERAL SECTION TITLES
   ========================================================== */

.section-title {
    text-align: center;

    margin-bottom: 38px;
}


.section-title span {
    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.section-title h2 {
    margin: 5px 0 0;

    color: #271c16;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 500;
}


.title-mark {
    margin-top: 3px;

    color: var(--gold);

    font-size: 11px;
}


/* ==========================================================
   TREATMENT CATEGORY CARDS
   ========================================================== */

.treatments-section {
    padding: 55px 0 65px;

    background: var(--cream);
}


.category-grid {
    display: grid;

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

    gap: 18px;
}


.category-card {
    overflow: hidden;

    background: var(--cream-light);

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

    border-radius: 4px;

    text-align: center;
}


.category-image {
    height: 230px;

    overflow: hidden;

    background: #ded0c1;
}


.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.category-card:hover
.category-image img {
    transform: scale(1.025);
}


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

    background:
        linear-gradient(
            135deg,
            #dcc9b7,
            #a88462
        );
}


.category-content {
    padding:
        18px 18px 20px;
}


.category-content h3 {
    margin: 0 0 8px;

    color: #201612;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 500;
}


.category-content p {
    min-height: 42px;

    margin: 0 0 14px;

    color: #5f5048;

    font-size: 13px;

    line-height: 1.5;
}


.outline-button {
    display: inline-flex;

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

    min-height: 34px;

    padding: 8px 17px;

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

    border-radius: 4px;

    color: #7b5737;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease;
}


.outline-button:hover {
    background: var(--gold);

    color: var(--white);
}


/* ==========================================================
   FEATURED SERVICES
   ========================================================== */

.service-list-section {
    padding: 75px 0;

    background: #fff;
}


.service-grid {
    display: grid;

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

    gap: 25px;
}


.service-card {
    overflow: hidden;

    background: var(--cream-light);

    border:
        1px solid #e7dbcf;
}


.service-image {
    height: 300px;

    overflow: hidden;

    background: #dfd3c7;
}


.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.service-content {
    padding: 24px;
}


.service-category {
    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.service-content h3 {
    margin: 7px 0 10px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 500;
}


.service-content > p {
    color: var(--muted);

    font-size: 14px;
}


.service-bottom {
    margin-top: 20px;
    padding-top: 16px;

    border-top:
        1px solid #eadfd5;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.service-bottom strong {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 22px;
}


.service-bottom a {
    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 600;
}


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

.about-section {
    display: grid;

    grid-template-columns:
        1.1fr
        1.2fr
        .75fr;

    min-height: 420px;

    background: var(--black-soft);

    color: var(--white);
}


.about-photo {
    min-height: 420px;

    overflow: hidden;
}


.about-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-placeholder {
    min-height: 420px;
}


.about-main {
    padding:
        65px 60px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.gold-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .15em;
}


.about-main h2 {
    margin:
        8px 0 20px;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 40px;

    font-weight: 500;
}


.about-text {
    max-width: 500px;

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

    font-size: 14px;

    line-height: 1.7;
}


.about-text p {
    margin-top: 0;
}


.gold-link {
    margin-top: 12px;

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 600;
}


.about-features {
    padding:
        50px 36px;

    background: var(--cream);

    color: var(--text);

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 23px;
}


.about-feature {
    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 11px;

    line-height: 1.3;
}


.about-feature strong,
.about-feature span {
    display: block;
}


.about-feature-icon {
    width: 38px;

    color: var(--gold-dark);

    font-size: 31px;

    text-align: center;
}


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

.reviews-gallery-section {
    padding:
        45px 0 50px;

    background: var(--cream);
}


.reviews-gallery-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr;

    gap: 30px;
}


.small-section-heading {
    text-align: center;

    margin-bottom: 22px;
}


.small-section-heading h2,
.instagram-title h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 500;

    color: #4f3427;
}


.small-section-heading span {
    color: var(--gold);

    font-size: 11px;
}


.review-grid {
    display: grid;

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

    gap: 14px;
}


.review-card {
    position: relative;

    padding:
        25px 20px 20px;

    background:
        rgba(255,255,255,.45);

    border:
        1px solid #dccbbb;

    border-radius: 3px;

    text-align: center;
}


.quote-mark {
    position: absolute;

    top: -13px;
    left: 50%;

    width: 27px;
    height: 27px;

    transform:
        translateX(-50%);

    display: flex;

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

    border-radius: 50%;

    background: var(--cream);

    color: #312019;

    font-family: Georgia, serif;

    font-size: 25px;
}


.review-card p {
    min-height: 50px;

    margin:
        4px 0 12px;

    color: #4a3d35;

    font-size: 12px;
}


.stars {
    margin-bottom: 7px;

    color: var(--gold);

    letter-spacing: .08em;
}


.review-card strong {
    color: #605049;

    font-size: 11px;

    font-weight: 500;
}


.instagram-column {
    padding-left: 28px;

    border-left:
        1px solid #ddcdbc;
}


.instagram-title {
    margin-bottom: 16px;
}


.instagram-title span {
    color: var(--gold-dark);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-style: italic;

    font-size: 17px;
}


.mini-gallery {
    display: grid;

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

    gap: 5px;

    margin-bottom: 13px;
}


.mini-gallery-item {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #d4c1ad;
}


.mini-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.instagram-button {
    display: inline-flex;

    padding:
        8px 18px;

    background: var(--gold);

    color: var(--white);

    border-radius: 3px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .06em;

    text-transform: uppercase;
}


/* ==========================================================
   FINAL BOOKING STRIP
   ========================================================== */

.final-booking {
    position: relative;

    overflow: hidden;

    padding:
        24px 0;

    background:
        linear-gradient(
            120deg,
            #080706,
            #18100b 45%,
            #050404
        );

    color: var(--white);

    border-bottom:
        1px solid #332218;
}


.final-booking::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .35;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 110px,
            rgba(181,127,67,.32) 111px,
            transparent 113px,
            transparent 190px
        );
}


.final-booking-grid {
    position: relative;

    z-index: 1;

    display: grid;

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

    gap: 35px;

    align-items: center;
}


.final-booking h2 {
    margin: 0;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 30px;

    font-weight: 500;
}


.final-booking p {
    margin:
        3px 0 0;

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

    font-size: 12px;
    line-height: 1.35;
}


.final-book-button {
    text-align: center;
}


.final-contact {
    display: flex;

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

    gap: 30px;

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

    font-size: 11px;
}


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

.site-footer {
    padding:
        45px 0 20px;

    background: #050404;

    color:
        rgba(255,255,255,.65);
}


.footer-grid {
    display: grid;

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

    gap: 60px;
}


.site-footer h3 {
    margin-top: 0;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 500;
}


.site-footer h4 {
    margin-top: 0;

    color: var(--white);

    font-size: 12px;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.site-footer p,
.site-footer a {
    font-size: 12px;
}


.site-footer a:hover {
    color: var(--gold);
}


.footer-bottom {
    width:
        min(
            1180px,
            calc(100% - 50px)
        );

    margin:
        35px auto 0;

    padding-top: 18px;

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

    text-align: center;

    font-size: 10px;
}


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

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
    }

    .hero-copy-area {
        max-width: 60%;
    }

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

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

    .about-section {
        grid-template-columns:
            1fr 1fr;
    }

    .about-features {
        grid-column:
            1 / -1;

        display: grid;

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

    .reviews-gallery-grid {
        grid-template-columns:
            1fr;
    }

    .instagram-column {
        padding-left: 0;

        border-left: 0;
        border-top:
            1px solid #ddcdbc;

        padding-top: 28px;
    }

}


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

@media (max-width: 760px) {

    .container {
        width:
            min(
                100% - 30px,
                1180px
            );
    }

    .header-inner {
        min-height: 72px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        max-height: 54px;
        max-width: 115px;
    }

    .main-nav {
        display: none;
    }

    .button-small {
        padding:
            9px 13px;

        font-size: 10px;
    }


    .hero {
        min-height: 690px;

        align-items: flex-end;
    }

    .hero-photo img {
        object-position:
            64% center;
    }

    .hero-shade {
        background:
            linear-gradient(
                0deg,
                rgba(7,6,5,1) 0%,
                rgba(7,6,5,.99) 26%,
                rgba(7,6,5,.83) 47%,
                rgba(7,6,5,.27) 72%,
                rgba(7,6,5,.04) 100%
            );
    }

    .hero-copy-area {
        width: 100%;
        max-width: 100%;

        padding-bottom: 38px;
    }

    .hero-script {
        font-size: 26px;
    }

    .hero h1 {
        max-width: 370px;

        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-treatments {
        gap: 7px;

        font-size: 11px;
    }

    .hero-features {
        display: grid;

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

        gap: 8px;
    }

    .hero-feature {
        align-items: flex-start;

        gap: 6px;

        font-size: 8px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        font-size: 16px;
    }


    .treatments-section {
        padding:
            45px 0;
    }

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

    .category-image {
        height: 285px;
    }


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


    .about-section {
        grid-template-columns:
            1fr;
    }

    .about-photo {
        min-height: 340px;
    }

    .about-main {
        padding:
            48px 27px;
    }

    .about-features {
        grid-column: auto;

        grid-template-columns:
            1fr 1fr;

        padding:
            35px 27px;

        gap: 20px;
    }


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

        gap: 25px;
    }


    .mini-gallery {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .final-booking-grid {
        grid-template-columns:
            1fr;

        text-align: center;
    }

    .final-contact {
        justify-content: center;

        flex-direction: column;

        gap: 8px;
    }


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

        gap: 25px;
    }

}


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

@media (max-width: 420px) {

    .hero h1 {
        font-size: 49px;
    }

    .hero-script {
        font-size: 23px;
    }

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

    .about-features {
        grid-template-columns:
            1fr;
    }

}