/* =========================================================
   K BEAUTY — FULL STYLESHEET
========================================================= */

:root {
    --cream: #f7f2eb;
    --cream-dark: #eee5da;
    --product-bg: #f7f4ef;
    --white: #ffffff;

    --brown: #49372f;
    --brown-soft: #6f5b50;

    --gold: #b79a70;
    --gold-dark: #987a51;

    --border: rgba(73, 55, 47, 0.15);

    --shadow:
        0 15px 40px rgba(60, 45, 35, 0.09);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--brown);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

section,
details {
    scroll-margin-top: 110px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: clamp(55px, 6.3vw, 100px);
}

h2 {
    font-size: clamp(42px, 5vw, 72px);
}

h3 {
    font-size: clamp(27px, 3vw, 42px);
}

h4 {
    font-size: 22px;
}

p {
    color: var(--brown-soft);
}

.eyebrow-text,
.portfolio-tag {
    margin-bottom: 18px;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================================================
   BUTTONS
========================================================= */

.main-button,
.light-button,
.small-book-button,
.buy-button,
.collect-button,
.service-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    cursor: pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.main-button {
    padding: 17px 30px;
    background: var(--brown);
    border: 1px solid var(--brown);

    color: var(--white);

    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-button:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.text-button {
    display: inline-block;
    padding-bottom: 5px;

    border-bottom: 1px solid var(--brown);

    color: var(--brown);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-button:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.light-button {
    padding: 17px 30px;
    background: var(--cream);
    color: var(--brown);

    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 88px;
    padding: 10px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    background: rgba(247, 242, 235, 0.97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.logo {
    position: relative;
    z-index: 1002;

    width: 105px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}

.navigation a {
    color: var(--brown);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navigation a:hover {
    color: var(--gold-dark);
}

.header-actions {
    position: relative;
    z-index: 1002;

    display: flex;
    align-items: center;
    gap: 12px;
}

.small-book-button {
    padding: 12px 20px;
    background: var(--brown);
    color: white;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 1px;
    display: block;

    background: var(--brown);

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 88px);

    display: grid;
    grid-template-columns: .95fr 1.05fr;
}

.hero-text-side {
    padding: 75px 8% 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    margin-bottom: 30px;
}

.hero-description {
    max-width: 590px;
    margin-bottom: 38px;

    font-size: 17px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-trust {
    margin-top: 60px;
    padding-top: 25px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    border-top: 1px solid var(--border);
}

.hero-trust-item span {
    display: block;
    margin-bottom: 8px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-trust-item p {
    font-size: 12px;
    line-height: 1.6;
}

.hero-image-side {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.hero-image-side > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-side::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(53, 39, 33, .42),
            transparent 55%
        );
}

.hero-image-caption {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 35px;
    z-index: 2;
}

.hero-image-caption span {
    display: block;
    margin-bottom: 5px;

    color: white;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-image-caption p {
    color: white;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;
}


/* =========================================================
   INTRO
========================================================= */

.home-intro {
    max-width: 1100px;
    margin: auto;
    padding: 120px 7%;

    text-align: center;
}

.home-intro h2 {
    margin-bottom: 30px;
}

.home-intro > p:last-child {
    max-width: 730px;
    margin: auto;

    font-size: 17px;
    line-height: 1.95;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 130px 9%;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;

    background: white;
}

.about-title {
    position: sticky;
    top: 135px;
    align-self: start;
}

.about-copy {
    max-width: 680px;
}

.about-copy > p {
    margin-bottom: 25px;

    font-size: 17px;
    line-height: 2;
}

.about-highlight {
    padding: 30px;

    border-left: 2px solid var(--gold);

    background:
        linear-gradient(
            90deg,
            rgba(183, 154, 112, .1),
            transparent
        );

    color: var(--gold-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    font-style: italic;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 130px 7%;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 75px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 25px;
}

.services-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    padding: 38px;

    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;

    background: white;
    border: 1px solid var(--border);
}

.service-number {
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.service-small {
    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-content h3 {
    margin: 8px 0 15px;
}

.service-from {
    margin-top: 15px;

    color: var(--brown);

    font-size: 12px;
    font-weight: 700;
}

.service-details {
    grid-column: 1 / -1;

    margin-top: 18px;
    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.service-details summary {
    display: flex;
    justify-content: space-between;

    cursor: pointer;
    list-style: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-details summary::-webkit-details-marker {
    display: none;
}

.service-details summary::after {
    content: "+";
    color: var(--gold-dark);
    font-size: 20px;
}

.service-details[open] summary::after {
    content: "−";
}

.service-price-list {
    margin-top: 20px;
}

.service-price-row {
    padding: 12px 0;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid var(--border);
}

.service-subheading {
    margin-top: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
}

.service-book-button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;

    background: var(--brown);
    color: white;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   CANCELLATION NOTICE
========================================================= */

.cancellation-notice {
    max-width: 900px;
    margin: 70px auto 0;
    padding: 45px 50px;

    background: white;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);

    box-shadow:
        0 10px 30px rgba(60, 45, 35, 0.04);
}

.cancellation-notice .eyebrow-text {
    margin-bottom: 12px;
}

.cancellation-notice h3 {
    margin-bottom: 18px;
    font-size: 34px;
}

.cancellation-notice p:not(.eyebrow-text) {
    max-width: 760px;
    margin-bottom: 24px;

    font-size: 14px;
    line-height: 1.9;
}

.cancellation-notice strong {
    color: var(--brown);
    font-weight: 700;
}


/* =========================================================
   TREATMENT HELP
========================================================= */

.treatment-help {
    max-width: 850px;
    margin: 50px auto 0;
    padding: 65px;

    background: var(--brown);
    text-align: center;
}

.treatment-help h2 {
    margin-bottom: 20px;
    color: white;
}

.treatment-help p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .78);
}


/* =========================================================
   RESULTS
========================================================= */

.portfolio {
    padding: 110px 5%;
    background: white;
}

.portfolio-heading {
    max-width: 750px;
    margin-bottom: 55px;
}

.portfolio-heading h2 {
    margin-bottom: 25px;
}


/* FEATURED RESULT */

.featured-result {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);

    background: var(--cream);
}

.featured-result-image {
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f8f4ee;
}

.featured-result-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #f8f4ee;
}

.featured-result-copy {
    padding: 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-result-copy h3 {
    margin-bottom: 20px;
    font-size: 37px;
}

.featured-result-copy p {
    font-size: 14px;
    line-height: 1.8;
}

.featured-price {
    margin: 25px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;
}


/* =========================================================
   BROW TRANSFORMATIONS
========================================================= */

.portfolio-category {
    max-width: 1260px;
    margin: 75px auto 0;
}

.portfolio-category-heading {
    margin-bottom: 32px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.portfolio-grid {
    display: grid;
    gap: 18px;
}

.portfolio-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
    background: var(--cream);
}


/*
   UPDATED:
   Slightly larger brow image frames.
*/

.portfolio-image {
    height: 340px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f8f4ee;
}


/*
   UPDATED:
   Image takes up more of the card,
   but is still not cropped.
*/

.portfolio-image img {
    width: 100%;
    height: 100%;

    max-width: 92%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    background: #f8f4ee;
}

.portfolio-card figcaption {
    padding: 16px 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
}


/* =========================================================
   SKIN RESULT
========================================================= */

.skin-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    background: var(--cream);
}

.skin-copy {
    padding: 55px;
}

.skin-copy h3 {
    margin-bottom: 20px;
}

.skin-copy p {
    margin-bottom: 25px;
}

.skin-result-image {
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f8f4ee;
}

.skin-result-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #f8f4ee;
}


/* =========================================================
   SHOP
========================================================= */

.shop {
    padding: 130px 7%;
}

.shop-heading {
    max-width: 800px;
    margin-bottom: 75px;
}

.shop-heading h2 {
    margin-bottom: 25px;
}

.featured-products-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.featured-products-heading h3 {
    margin-bottom: 18px;
}


/* =========================================================
   SHOWSTOPPER PRODUCTS
========================================================= */

.showstopper-grid {
    width: 100%;
    max-width: 1350px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.showstopper-card {
    grid-column: span 2;

    min-width: 0;

    display: flex;
    flex-direction: column;

    background: white;
    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.showstopper-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.showstopper-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.showstopper-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.showstopper-image {
    width: 100%;
    height: 410px;
    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #faf8f5;
}

.showstopper-image img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    transform: none !important;
}

.showstopper-image.bottle-product img {
    max-width: 78%;
    max-height: 92%;
}

.showstopper-image.kit-product img {
    max-width: 96%;
    max-height: 88%;
}

.showstopper-info {
    flex: 1;

    padding: 28px 26px 30px;

    display: flex;
    flex-direction: column;
}

.product-badge {
    margin-bottom: 13px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.showstopper-info h3 {
    min-height: 62px;
    margin-bottom: 10px;

    font-size: 27px;
}

.showstopper-size {
    margin-bottom: 14px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;
}

.product-description {
    font-size: 13px;
    line-height: 1.8;
}

.product-price {
    margin-top: auto;
    padding-top: 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;
}

.product-actions {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.buy-button,
.collect-button {
    min-height: 43px;
    padding: 11px 15px;

    border: 1px solid var(--brown);

    font-size: 8px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.buy-button {
    background: var(--brown);
    color: white;
}

.collect-button {
    background: transparent;
    color: var(--brown);
}


/* =========================================================
   PAYMENT NOTE
========================================================= */

.shop-payment-note {
    max-width: 900px;
    margin: 90px auto;
    padding: 60px;

    background: var(--brown);
}

.shop-payment-note .eyebrow-text {
    color: #dbc8aa;
}

.shop-payment-note h3 {
    margin-bottom: 25px;
    color: white;
}

.shop-payment-note p {
    margin-top: 15px;
    color: rgba(255, 255, 255, .8);
}

.shop-payment-note strong {
    color: white;
}


/* =========================================================
   PRODUCT CATALOGUE
========================================================= */

.all-products {
    max-width: 1300px;
    margin: auto;
}

.all-products-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.all-products-heading h3 {
    margin-bottom: 18px;
}

.product-category {
    margin-bottom: 14px;

    background: white;
    border: 1px solid var(--border);
}

.product-category > summary {
    padding: 24px 28px;

    display: flex;
    justify-content: space-between;

    cursor: pointer;
    list-style: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}

.product-category > summary::-webkit-details-marker {
    display: none;
}

.product-category > summary::after {
    content: "+";
    color: var(--gold-dark);
}

.product-category[open] > summary::after {
    content: "−";
}

.catalog-products-grid {
    padding: 10px 28px 30px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.catalog-product-card {
    min-height: 285px;
    padding: 25px;

    display: flex;
    flex-direction: column;

    background: var(--cream);
}

.catalog-product-card h4 {
    margin-bottom: 8px;
}

.catalog-size {
    margin-bottom: 12px;

    color: var(--gold-dark);

    font-size: 10px;
}

.catalog-product-card p {
    margin: 12px 0 18px;
    font-size: 13px;
}

.catalog-price {
    margin-top: auto;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
}

.catalog-actions {
    margin-top: 18px;

    display: flex;
    gap: 8px;
}

.catalog-actions a {
    flex: 1;

    padding: 11px;

    border: 1px solid var(--brown);

    text-align: center;

    font-size: 9px;
    text-transform: uppercase;
}

.catalog-actions a:first-child {
    background: var(--brown);
    color: white;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection-section {
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 60px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    background: white;
}

.collection-section h3 {
    margin-bottom: 20px;
}

.collection-section > div:last-child p {
    margin-bottom: 25px;
}


/* =========================================================
   STUDIO
========================================================= */

.studio {
    padding: 130px 7%;
    background: white;
}

.studio-heading {
    max-width: 800px;
    margin-bottom: 60px;
}

.studio-heading h2 {
    margin-bottom: 25px;
}

.studio-gallery {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr .75fr;
    gap: 20px;
}

.studio-main-image {
    height: 700px;
}

.studio-main-image img,
.studio-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.studio-side-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}


/* =========================================================
   EXPERIENCE CTA
========================================================= */

.experience {
    min-height: 650px;
    padding: 120px 7%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--brown);

    text-align: center;
}

.experience .eyebrow-text {
    color: #dbc8aa;
}

.experience h2 {
    color: white;
    font-size: clamp(60px, 8vw, 110px);
}

.experience > p:not(.eyebrow-text) {
    max-width: 500px;
    margin: 30px 0 35px;

    color: rgba(255, 255, 255, .8);
}


/* =========================================================
   CONTACT
========================================================= */

.booking {
    padding: 130px 7%;
    text-align: center;
}

.booking h2 {
    margin-bottom: 25px;
}

.booking-intro {
    margin: 25px 0 60px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto 50px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-item {
    padding: 40px 25px;

    background: white;
    border: 1px solid var(--border);
}

.contact-label {
    display: block;
    margin-bottom: 15px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   LEGAL SECTION
========================================================= */

.legal-section {
    padding: 120px 7%;
    background: #eee4d8;
}

.legal-intro {
    max-width: 800px;
    margin: 0 auto 45px;

    text-align: center;
}

.legal-intro h2 {
    margin-bottom: 22px;
}

.legal-intro > p:last-child {
    max-width: 600px;
    margin: auto;
}

.legal-shortcuts {
    max-width: 1000px;
    margin: 0 auto 55px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.legal-shortcuts a {
    min-height: 80px;
    padding: 18px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--brown);
    border: 1px solid var(--brown);

    color: white;

    text-align: center;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease;
}

.legal-shortcuts a:hover {
    background: white;
    color: var(--brown);
}

.policy-list {
    max-width: 1000px;
    margin: auto;
}

.policy-item {
    margin-bottom: 14px;

    background: white;
    border: 1px solid var(--border);
}

.policy-item > summary {
    position: relative;

    padding: 27px 70px 27px 30px;

    cursor: pointer;
    list-style: none;

    color: var(--brown);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}

.policy-item > summary::-webkit-details-marker {
    display: none;
}

.policy-item > summary::after {
    content: "+";

    position: absolute;
    right: 30px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold-dark);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 25px;
}

.policy-item[open] > summary {
    border-bottom: 1px solid var(--border);
}

.policy-item[open] > summary::after {
    content: "−";
}

.policy-content {
    max-width: 850px;
    padding: 45px 40px 55px;
}

.policy-content h3 {
    margin-bottom: 30px;
    font-size: 39px;
}

.policy-content h4 {
    margin: 34px 0 12px;

    color: var(--brown);
    font-size: 21px;
}

.policy-content p {
    margin-bottom: 16px;

    font-size: 14px;
    line-height: 1.9;
}

.policy-content strong {
    color: var(--brown);
}

.policy-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-contact-box {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 55px;

    background: white;
    border: 1px solid var(--border);

    text-align: center;
}

.legal-contact-box h3 {
    margin-bottom: 15px;
}

.legal-contact-box p:not(.eyebrow-text) {
    max-width: 550px;
    margin: 0 auto 25px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 65px 7% 45px;
    background: var(--brown);

    text-align: center;
}

.footer-logo {
    width: 120px;
    max-height: 75px;
    margin: 0 auto 25px;

    object-fit: contain;
}

footer p {
    color: rgba(255, 255, 255, .7);
}

.footer-instagram {
    display: inline-block;
    margin: 10px 0 30px;

    color: white;
}

.footer-policy-links {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 24px 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;

    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-policy-links a {
    color: white;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-policy-links a:hover {
    color: #dbc8aa;
}

.footer-address {
    margin-bottom: 14px;
    font-size: 12px;
}

.copyright {
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 12px;
    }

    .navigation a {
        font-size: 8px;
    }

    .featured-result {
        grid-template-columns: 1.15fr .85fr;
    }

    .featured-result-image {
        height: 470px;
    }

    .featured-result-copy {
        padding: 38px;
    }

    .portfolio-image {
        height: 320px;
    }

    .portfolio-image img {
        max-width: 94%;
    }

    .showstopper-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showstopper-card,
    .showstopper-card:nth-child(4),
    .showstopper-card:nth-child(5) {
        grid-column: auto;
    }

    .showstopper-card:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .header {
        min-height: 75px;
        padding: 8px 5%;
    }

    .logo {
        width: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    .small-book-button {
        padding: 10px 13px;
        font-size: 8px;
    }

    .navigation {
        position: fixed;
        inset: 0;
        z-index: 1001;

        width: 100%;
        height: 100dvh;

        padding: 115px 8% 40px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 0;

        background: var(--cream);

        transform: translateX(100%);
        visibility: hidden;

        transition:
            transform .35s ease,
            visibility .35s ease;
    }

    .navigation.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .navigation a {
        width: 100%;
        padding: 15px 0;

        border-bottom: 1px solid var(--border);

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 25px;

        letter-spacing: 0;
        text-transform: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-text-side {
        padding: 75px 7% 60px;
    }

    .hero-image-side {
        min-height: 600px;
    }

    .about {
        padding: 90px 7%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-title {
        position: static;
    }

    .services {
        padding: 90px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio {
        padding: 90px 5%;
    }

    .featured-result {
        grid-template-columns: 1fr;
    }

    .featured-result-image {
        height: 520px;
    }

    .featured-result-copy {
        padding: 38px 28px;
    }

    .portfolio-category-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-grid.three-column {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 420px;
    }

    .portfolio-image img {
        max-width: 95%;
    }

    .skin-section {
        grid-template-columns: 1fr;
    }

    .skin-result-image {
        height: 460px;
    }

    .shop {
        padding: 90px 6%;
    }

    .showstopper-grid {
        grid-template-columns: 1fr;
    }

    .showstopper-card,
    .showstopper-card:nth-child(4),
    .showstopper-card:nth-child(5) {
        grid-column: auto;
        width: 100%;
    }

    .showstopper-image {
        height: 440px;
    }

    .catalog-products-grid {
        grid-template-columns: 1fr;
    }

    .collection-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .studio-gallery {
        grid-template-columns: 1fr;
    }

    .studio-main-image {
        height: 600px;
    }

    .studio-side-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .studio-small-image {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: 90px 6%;
    }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 550px) {

    body {
        font-size: 15px;
    }

    .home-intro,
    .about,
    .services,
    .portfolio,
    .shop,
    .studio,
    .booking,
    .legal-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    h1 {
        font-size: clamp(44px, 13vw, 54px);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.08;
    }

    h3 {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-text-side {
        padding: 60px 22px 50px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-image-side {
        min-height: 480px;
    }

    .about {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .services {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .service-card {
        padding: 25px 20px;
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

    .cancellation-notice {
        margin-top: 45px;
        padding: 30px 22px;
    }

    .cancellation-notice h3 {
        font-size: 27px;
    }

    .treatment-help {
        margin-top: 45px;
        padding: 45px 22px;
    }

    .portfolio {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .featured-result-image {
        height: 390px;
    }

    .featured-result-copy {
        padding: 32px 22px;
    }

    .featured-result-copy h3 {
        font-size: 29px;
    }

    .portfolio-category {
        margin-top: 55px;
    }

    .portfolio-image {
        height: 340px;
    }

    .portfolio-image img {
        max-width: 96%;
    }

    .skin-copy {
        padding: 40px 22px;
    }

    .skin-result-image {
        height: 350px;
    }

    .shop {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .showstopper-image {
        height: 350px;
        padding: 22px;
    }

    .showstopper-info {
        padding: 24px 20px 26px;
    }

    .product-actions,
    .catalog-actions {
        flex-direction: column;
    }

    .buy-button,
    .collect-button {
        width: 100%;
    }

    .shop-payment-note {
        margin: 60px auto;
        padding: 38px 22px;
    }

    .collection-section {
        margin-top: 55px;
        padding: 38px 22px;
    }

    .studio {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .studio-main-image {
        height: 450px;
    }

    .studio-side-images {
        grid-template-columns: 1fr;
    }

    .studio-small-image {
        height: 300px;
    }

    .experience {
        min-height: 520px;
        padding: 80px 22px;
    }

    .experience h2 {
        font-size: clamp(52px, 16vw, 72px);
    }

    .booking {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .legal-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .legal-shortcuts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .policy-content {
        padding: 28px 18px 35px;
    }

    .main-button,
    .light-button {
        width: 100%;
        max-width: 340px;
    }

    footer {
        padding: 50px 22px 35px;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 390px) {

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .small-book-button {
        display: none;
    }

    .featured-result-image {
        height: 330px;
    }

    .portfolio-image {
        height: 300px;
    }

    .portfolio-image img {
        max-width: 96%;
    }

    .showstopper-image {
        height: 320px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 4px;
}

::selection {
    background: var(--gold);
    color: white;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

}