/* =========================================================
   ELEVATE BEAUTY — GLOBAL DESIGN SYSTEM
   Based on the Home Page
========================================================= */

:root {
    /* -----------------------------------------
       CORE COLORS
    ----------------------------------------- */

    --eb-black: #050505;
    --eb-black-soft: #0a0a0a;
    --eb-surface: #0d0d0d;
    --eb-surface-light: #111111;

    --eb-white: #ffffff;
    --eb-cream: #f4efe3;
    --eb-cream-soft: rgba(244, 239, 227, 0.70);
    --eb-muted: rgba(244, 239, 227, 0.50);
    --eb-subtle: rgba(244, 239, 227, 0.35);

    /* -----------------------------------------
       BRAND ACCENTS
    ----------------------------------------- */

    --eb-gold: #c8a96b;
    --eb-gold-light: #d8bd87;
    --eb-gold-dark: #b8975a;

    --eb-coral: #e9785b;
    --eb-coral-dark: #d96549;

    --eb-rating: #f5b942;

    /* -----------------------------------------
       BORDERS
    ----------------------------------------- */

    --eb-border: rgba(255, 255, 255, 0.08);
    --eb-border-light: rgba(255, 255, 255, 0.14);
    --eb-border-gold: rgba(200, 169, 107, 0.40);

    /* -----------------------------------------
       SHADOWS
    ----------------------------------------- */

    --eb-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    --eb-shadow-soft:
        0 10px 35px rgba(0, 0, 0, 0.25);

    --eb-shadow-gold:
        0 12px 35px rgba(200, 169, 107, 0.12);

    /* -----------------------------------------
       RADIUS
    ----------------------------------------- */

    --eb-radius-sm: 8px;
    --eb-radius-md: 14px;
    --eb-radius-lg: 20px;
    --eb-radius-xl: 28px;
    --eb-radius-pill: 999px;

    /* -----------------------------------------
       TYPOGRAPHY
    ----------------------------------------- */

    --eb-font-body:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --eb-font-display:
        "Playfair Display",
        Georgia,
        serif;

    /* -----------------------------------------
       TRANSITIONS
    ----------------------------------------- */

    --eb-transition-fast:
        0.2s ease;

    --eb-transition:
        0.35s ease;

    --eb-transition-slow:
        0.5s ease;

    /* -----------------------------------------
       LAYOUT
    ----------------------------------------- */

    --eb-container:
        min(1200px, calc(100% - 40px));

    --eb-section-space:
        clamp(70px, 9vw, 130px);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: clip;
}

body {
    width: 100%;
    min-height: 100%;
    overflow-x: clip;

    font-family: var(--eb-font-body);

    background: var(--eb-black);
    color: var(--eb-cream);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* =========================================================
   GLOBAL PAGE CONTAINER
========================================================= */

.eb-container {
    width: var(--eb-container);
    margin-inline: auto;
}


/* =========================================================
   GLOBAL PAGE
========================================================= */

.eb-page {
    min-height: 100vh;
    background: var(--eb-black);
    color: var(--eb-cream);
}


/* =========================================================
   GLOBAL SECTION
========================================================= */

.eb-section {
    padding-block: var(--eb-section-space);
    background: var(--eb-black);
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

.eb-eyebrow {
    margin-bottom: 14px;

    color: var(--eb-gold);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.eb-title {
    margin: 0;

    color: var(--eb-cream);

    font-family: var(--eb-font-display);

    font-size: clamp(34px, 5vw, 64px);

    font-weight: 400;

    line-height: 1.08;
}


.eb-title span {
    color: var(--eb-gold);
}


.eb-subtitle {
    margin-top: 16px;

    color: var(--eb-cream-soft);

    font-size: 15px;
    line-height: 1.8;

    max-width: 680px;
}

/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.eb-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 13px 25px;

    border: 1px solid transparent;
    border-radius: var(--eb-radius-pill);

    font-family: var(--eb-font-body);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform var(--eb-transition),
        background var(--eb-transition),
        color var(--eb-transition),
        border-color var(--eb-transition),
        box-shadow var(--eb-transition);
}


.eb-btn:hover {
    transform: translateY(-2px);
}


/* PRIMARY */

.eb-btn-primary {
    background: var(--eb-gold);
    color: #111111;

    border-color: var(--eb-gold);

    box-shadow: var(--eb-shadow-gold);
}


.eb-btn-primary:hover {
    background: var(--eb-gold-light);
    border-color: var(--eb-gold-light);
}


/* CORAL */

.eb-btn-coral {
    background: var(--eb-coral);
    color: var(--eb-white);

    border-color: var(--eb-coral);
}


.eb-btn-coral:hover {
    background: var(--eb-coral-dark);
    border-color: var(--eb-coral-dark);
}


/* OUTLINE */

.eb-btn-outline {
    background: transparent;
    color: var(--eb-cream);

    border-color: var(--eb-border-light);
}


.eb-btn-outline:hover {
    border-color: var(--eb-gold);
    color: var(--eb-gold);
}

/* =========================================================
   GLOBAL CARDS
========================================================= */

.eb-card {
    background: var(--eb-surface);

    border: 1px solid var(--eb-border);

    border-radius: var(--eb-radius-lg);

    box-shadow: var(--eb-shadow-soft);

    transition:
        transform var(--eb-transition),
        border-color var(--eb-transition),
        box-shadow var(--eb-transition);
}


.eb-card:hover {
    transform: translateY(-3px);

    border-color: var(--eb-border-light);

    box-shadow: var(--eb-shadow);
}


.eb-card-gold:hover {
    border-color: var(--eb-border-gold);

    box-shadow: var(--eb-shadow-gold);
}
/* =========================================================
   GLOBAL FORMS
========================================================= */

.eb-form-group {
    margin-bottom: 20px;
}


.eb-form-label {
    display: block;

    margin-bottom: 8px;

    color: var(--eb-cream-soft);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.eb-input,
.eb-select,
.eb-textarea {
    width: 100%;

    padding: 14px 16px;

    background: var(--eb-surface);

    color: var(--eb-cream);

    border: 1px solid var(--eb-border-light);

    border-radius: var(--eb-radius-sm);

    outline: none;

    font-family: var(--eb-font-body);
    font-size: 14px;

    transition:
        border-color var(--eb-transition),
        box-shadow var(--eb-transition),
        background var(--eb-transition);
}


.eb-input::placeholder,
.eb-textarea::placeholder {
    color: var(--eb-subtle);
}


.eb-input:focus,
.eb-select:focus,
.eb-textarea:focus {
    background: var(--eb-surface-light);

    border-color: var(--eb-gold);

    box-shadow:
        0 0 0 3px rgba(200, 169, 107, 0.10);
}


.eb-textarea {
    min-height: 130px;

    resize: vertical;
}
/* =========================================================
   GLOBAL SURFACES
========================================================= */

.eb-dark {
    background: var(--eb-black);
}


.eb-surface {
    background: var(--eb-surface);
}


.eb-surface-light {
    background: var(--eb-surface-light);
}


/* =========================================================
   DIVIDERS
========================================================= */

.eb-divider {
    width: 100%;
    height: 1px;

    background: var(--eb-border);
}


.eb-divider-gold {
    width: 50px;
    height: 1px;

    background: var(--eb-gold);
}

/* =========================================================
   GLOBAL RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    :root {
        --eb-container:
            min(100% - 28px, 1200px);
    }


    .eb-section {
        padding-block:
            clamp(55px, 12vw, 90px);
    }


    .eb-title {
        font-size:
            clamp(32px, 10vw, 48px);
    }


    .eb-btn {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .eb-card {
        border-radius: var(--eb-radius-md);
    }


    .eb-input,
    .eb-select,
    .eb-textarea {
        font-size: 16px;
    }
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 clamp(18px, 4vw, 50px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    color: #f4f0e8;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: #f4f0e8 !important;

    text-decoration: none;

    font-size: clamp(18px, 2vw, 24px);

    font-weight: 500;

    letter-spacing: 0.28em;

    white-space: nowrap;

    transition: color 0.35s ease;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: clamp(20px, 3vw, 38px);
}


.nav-links a {
    color: rgba(244, 240, 232, 0.82);

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.35s ease;
}


.nav-links a:hover {
    color: #c8a96b;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   GET STARTED BUTTON
========================================================= */

.nav-book {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 12px 24px;

    border-radius: 30px;

    background: #f4f0e8;

    color: #171614;

    text-decoration: none;

    border: 1px solid #f4f0e8;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.3s ease;
}


.nav-book:hover {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;

    transform: translateY(-2px);
}


/* =========================================================
   LOGIN BUTTON
   SAME BEHAVIOUR AS GET STARTED
========================================================= */

.nav-login {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 12px 24px;

    border-radius: 30px;

    background: #f4f0e8;

    color: #171614;

    text-decoration: none;

    border: 1px solid #f4f0e8;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.3s ease;
}


.nav-login:hover {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;

    transform: translateY(-2px);
}


/* =========================================================
   DARK / IVORY SECTIONS
   AFTER HERO
========================================================= */

.navbar.navbar-light {
    color: #171614;
}


/* LOGO */

.navbar.navbar-light .logo {
    color: #171614 !important;
}


/* NAV LINKS */

.navbar.navbar-light .nav-links a {
    color: rgba(23, 22, 20, 0.78);
}


.navbar.navbar-light .nav-links a:hover {
    color: #9b7a3d;
}


/* LOGIN */

.navbar.navbar-light .nav-login {
    background: #171614;

    border-color: #171614;

    color: #f4f0e8;
}


.navbar.navbar-light .nav-login:hover {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;

    transform: translateY(-2px);
}


/* GET STARTED */

.navbar.navbar-light .nav-book {
    background: #171614;

    border-color: #171614;

    color: #f4f0e8;
}


.navbar.navbar-light .nav-book:hover {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES SECTION
   GOLD NAVBAR
========================================================= */


/* LOGO */

.navbar.navbar-services .logo {
    color: #c8a96b !important;
}


/* NAV LINKS */

.navbar.navbar-services .nav-links a {
    color: #c8a96b;
}


.navbar.navbar-services .nav-links a:hover {
    color: #f4f0e8;
}


/* LOGIN */

.navbar.navbar-services .nav-login {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;
}


.navbar.navbar-services .nav-login:hover {
    background: #f4f0e8;

    border-color: #f4f0e8;

    color: #171614;

    transform: translateY(-2px);
}


/* GET STARTED */

.navbar.navbar-services .nav-book {
    background: #c8a96b;

    border-color: #c8a96b;

    color: #171614;
}


.navbar.navbar-services .nav-book:hover {
    background: #f4f0e8;

    border-color: #f4f0e8;

    color: #171614;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 700px) {

    .navbar {
        height: 75px;

        padding:
            0
            16px;
    }


    .nav-links {
        display: none;
    }


    .nav-actions {
        gap: 7px;
    }


    .nav-login,
    .nav-book {

        min-height: 38px;

        padding:
            9px
            14px;

        font-size: 9px;

        letter-spacing: 0.1em;
    }

}


@media (max-width: 400px) {

    .logo {
        font-size: 17px;

        letter-spacing: 0.22em;
    }


    .nav-actions {
        gap: 5px;
    }


    .nav-login,
    .nav-book {

        padding:
            8px
            11px;

        font-size: 8px;
    }

}

/* =========================================================
   HERO SCROLL TRACK
   IMPORTANT — DO NOT ADD MARGIN/PADDING HERE
========================================================= */

#scroll-track {

    position: relative;

    width: 100%;

    height: 280vh;

    margin: 0;
    padding: 0;
}


/* =========================================================
   STICKY HERO
   THIS IS WHAT KEEPS THE VIDEO ON SCREEN
========================================================= */

#hero {

    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #080808;
}


/* =========================================================
   BACKGROUND
========================================================= */

#bg-wrap {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    will-change: opacity, transform;
}


#bg-wrap img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


#bg-overlay {

    position: absolute;

    inset: 0;

    background: rgba(8, 8, 8, 0.28);

    pointer-events: none;
}


/* =========================================================
   CENTER VIDEO
   DO NOT CHANGE FUNCTION
========================================================= */

#media {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 300px;
    height: 400px;

    transform: translate(-50%, -50%);

    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.45);

    z-index: 5;

    will-change: width, height;
}


#media video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.media-overlay {

    position: absolute;

    inset: 0;

    background: rgba(8, 8, 8, 0.32);

    pointer-events: none;
}


/* =========================================================
   HERO TITLE
========================================================= */

#hero-title {

    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    z-index: 20;

    pointer-events: none;

    mix-blend-mode: difference;

    padding: 0 15px;
}


#hero-title span {

    display: block;

    color: #f4f0e8;

    font-size: clamp(
        3rem,
        8vw,
        7rem
    );

    font-weight: 600;

    line-height: 0.88;

    letter-spacing: -0.055em;

    white-space: nowrap;

    will-change: transform;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

#scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 38px;

    transform: translateX(-50%);

    z-index: 30;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color: #f4f0e8;

    pointer-events: none;

    transition: opacity 0.3s ease;
}


#scroll-indicator span {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.3em;

    text-transform: uppercase;

    white-space: nowrap;
}


.mouse {

    width: 24px;

    height: 38px;

    border:
        1px solid
        rgba(244, 240, 232, 0.55);

    border-radius: 20px;

    display: flex;

    justify-content: center;

    padding-top: 7px;
}


.mouse-dot {

    width: 4px;

    height: 6px;

    border-radius: 10px;

    background: #f4f0e8;

    animation: mouseMove 1.7s infinite;
}


@keyframes mouseMove {

    0% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(13px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}


/* =========================================================
   DISCOVER
   IMPORTANT:
   It comes DIRECTLY after #scroll-track
========================================================= */

.discover-section {

    position: relative;

    width: 100%;

    margin: 0;

    background: #f4f0e8;

    color: #171614;

    padding:
        clamp(70px, 8vw, 120px)
        clamp(18px, 5vw, 80px)
        clamp(80px, 9vw, 130px);
}


.discover-inner {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   DISCOVER HEADING
========================================================= */

.discover-heading {

    max-width: 760px;

    margin: 0 0 clamp(35px, 5vw, 55px);
}


.discover-eyebrow {

    display: block;

    margin-bottom: 16px;

    color: #9b8357;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


.discover-heading h2 {

    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        2.8rem,
        6vw,
        5.5rem
    );

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.045em;

    color: #171614;
}


.discover-heading p {

    max-width: 620px;

    margin: 0;

    font-size: clamp(
        0.95rem,
        1.5vw,
        1.1rem
    );

    line-height: 1.7;

    color: #6d675e;
}


/* =========================================================
   SEARCH
========================================================= */

.discover-search {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 1fr)
        auto;

    align-items: stretch;

    width: 100%;

    padding: 9px;

    background: #ebe5da;

    border:
        1px solid
        rgba(23, 22, 20, 0.08);

    border-radius: 18px;

    box-shadow:
        0 20px 60px
        rgba(65, 55, 40, 0.08);
}


/* =========================================================
   SEARCH FIELD
========================================================= */

.search-field {

    min-width: 0;

    padding: 18px 24px;

    border-right:
        1px solid
        rgba(23, 22, 20, 0.12);
}


.search-field label {

    display: block;

    margin-bottom: 8px;

    color: #8b806f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.search-field select,
.search-field input {

    width: 100%;

    height: 42px;

    padding: 0;

    border: none;

    outline: none;

    background: transparent;

    color: #171614;

    font-family: inherit;

    font-size: 15px;

    font-weight: 500;
}


.search-field input::placeholder {
    color: #817a70;
}


/* SELECT ARROW */

.search-field select {

    cursor: pointer;

    appearance: none;

    -webkit-appearance: none;

    padding-right: 28px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #8b806f 50%
        ),
        linear-gradient(
            135deg,
            #8b806f 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 12px) 18px,
        calc(100% - 7px) 18px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


/* =========================================================
   FIND SALONS
========================================================= */

.discover-button {

    min-width: 180px;

    height: 74px;

    padding: 0 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: none;

    border-radius: 12px;

    background: #171614;

    color: #f4f0e8;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.discover-button span:last-child {

    font-size: 20px;

    font-weight: 300;

    transition:
        transform 0.3s ease;
}


.discover-button:hover {

    background: #c8a96b;

    color: #171614;

    transform: translateY(-2px);
}


.discover-button:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar {
        height: 82px;

        padding:
            0 28px;
    }


    .nav-links {
        gap: 22px;
    }


    .discover-section {

        padding:
            70px
            28px
            90px;
    }


    .discover-heading {

        margin-bottom: 35px;
    }


    .discover-search {

        grid-template-columns: 1fr 1fr;
    }


    .search-field:nth-child(2) {

        border-right: none;
    }


    .discover-button {

        grid-column: 1 / -1;

        width: 100%;

        height: 60px;

        margin-top: 8px;

        justify-content: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .navbar {

        height: 72px;

        padding:
            0 20px;
    }


    .logo {

        font-size: 19px;

        letter-spacing: 0.24em;
    }


    .nav-links {
        display: none;
    }


    .nav-book {

        min-height: 40px;

        padding:
            10px 18px;

        font-size: 10px;
    }


    #hero-title {

        padding:
            0 10px;

        gap: 5px;
    }


    #hero-title span {

        font-size:
            clamp(
                2.4rem,
                13vw,
                5rem
            );

        letter-spacing: -0.06em;
    }


    #scroll-indicator {

        bottom: 24px;
    }


    .discover-section {

        padding:
            60px
            20px
            75px;
    }


    .discover-heading {

        margin-bottom: 28px;
    }


    .discover-eyebrow {

        margin-bottom: 12px;

        font-size: 9px;
    }


    .discover-heading h2 {

        margin-bottom: 15px;

        font-size:
            clamp(
                2.5rem,
                11vw,
                3.7rem
            );
    }


    .discover-heading p {

        font-size: 0.95rem;

        line-height: 1.6;
    }


    .discover-search {

        display: flex;

        flex-direction: column;

        padding: 7px;

        border-radius: 15px;
    }


    .search-field {

        width: 100%;

        padding:
            17px
            16px;

        border-right: none;

        border-bottom:
            1px solid
            rgba(23, 22, 20, 0.1);
    }


    .search-field:last-of-type {

        border-bottom: none;
    }


    .search-field select,
    .search-field input {

        height: 40px;

        font-size: 15px;
    }


    .discover-button {

        width: 100%;

        min-width: 0;

        height: 56px;

        margin-top: 7px;

        border-radius: 11px;

        justify-content: center;

        gap: 16px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .navbar {

        height: 66px;

        padding:
            0 16px;
    }


    .logo {
        font-size: 17px;
    }


    .nav-book {

        padding:
            9px 15px;

        font-size: 9px;
    }


    #hero-title span {

        font-size:
            clamp(
                2.1rem,
                13.5vw,
                4rem
            );
    }


    .discover-section {

        padding:
            55px
            16px
            65px;
    }


    .discover-heading h2 {

        font-size: 2.5rem;
    }


    .discover-heading p {

        font-size: 0.92rem;
    }


    .discover-search {

        padding: 6px;

        border-radius: 14px;
    }


    .search-field {

        padding:
            16px
            14px;
    }


    .discover-button {

        height: 54px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .navbar {
        padding:
            0 13px;
    }


    .logo {
        font-size: 16px;
    }


    .nav-book {

        padding:
            8px 13px;

        font-size: 8px;
    }


    #hero-title span {
        font-size: 2rem;
    }


    .discover-section {

        padding-left: 14px;
        padding-right: 14px;
    }


    .discover-heading h2 {
        font-size: 2.3rem;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (
    max-width: 900px
) and (
    orientation: landscape
) {

    .navbar {
        height: 60px;
    }


    #scroll-indicator {
        bottom: 12px;
    }
}

/* ========================================
   FEATURED SALONS
======================================== */

.featured-section {
    position: relative;

    width: 100%;

    background: #f4f0e8;
    color: #171614;

    padding:
        clamp(80px, 9vw, 130px)
        clamp(20px, 5vw, 80px)
        clamp(90px, 10vw, 140px);

    overflow: hidden;
}


.featured-inner {
    width: 100%;

    max-width: 1280px;

    margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.featured-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: clamp(45px, 6vw, 70px);
}


.featured-heading {
    max-width: 700px;
}


.featured-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #8d7350;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


.featured-heading h2 {
    margin: 0 0 22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        3rem,
        6vw,
        5.5rem
    );

    font-weight: 400;

    line-height: 0.94;

    letter-spacing: -0.05em;

    color: #171614;
}


.featured-heading p {
    max-width: 540px;

    margin: 0;

    color: #716b62;

    font-size: clamp(
        0.95rem,
        1.4vw,
        1.08rem
    );

    line-height: 1.7;
}


/* ========================================
   VIEW ALL SALONS
======================================== */

.featured-view-all {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    flex-shrink: 0;

    padding-bottom: 8px;

    color: #171614;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(23, 22, 20, 0.35);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}


.featured-view-all span:last-child {
    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.featured-view-all:hover {
    color: #9b8357;

    border-color: #9b8357;

    gap: 17px;
}


.featured-view-all:hover span:last-child {
    transform: translateX(4px);
}


/* ========================================
   SALON GRID
======================================== */

.salon-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(18px, 2.5vw, 30px);

    width: 100%;
}


/* ========================================
   SALON CARD
======================================== */

.salon-card {
    min-width: 0;

    background: #faf8f3;

    border:
        1px solid
        rgba(23, 22, 20, 0.08);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 12px 40px
        rgba(65, 55, 40, 0.06);

    transition:
        transform 0.45s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.45s ease;
}


.salon-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 24px 60px
        rgba(65, 55, 40, 0.12);
}


/* ========================================
   SALON IMAGE
======================================== */

.salon-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1.18 / 1;

    overflow: hidden;

    background: #e7e0d5;
}


.salon-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.salon-card:hover .salon-image img {
    transform: scale(1.055);
}


/* ========================================
   BADGE
======================================== */

.salon-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    padding:
        8px
        11px;

    border-radius: 20px;

    background:
        rgba(250, 248, 243, 0.94);

    color: #7654a3;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


/* ========================================
   FAVORITE
======================================== */

.salon-favorite {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        rgba(250, 248, 243, 0.9);

    color: #171614;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.salon-favorite:hover {
    transform: scale(1.08);

    background: #7654a3;

    color: #fff;
}


/* ========================================
   CARD CONTENT
======================================== */

.salon-content {
    padding:
        24px
        24px
        22px;
}


/* ========================================
   TOP INFORMATION
======================================== */

.salon-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;
}


.salon-top h3 {
    margin: 0 0 6px;

    color: #171614;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.45rem;

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -0.025em;
}


.salon-location {
    margin: 0;

    color: #817a70;

    font-size: 12px;

    line-height: 1.4;
}


/* ========================================
   RATING
======================================== */

.salon-rating {
    display: flex;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;

    color: #171614;

    font-size: 11px;

    font-weight: 600;
}


.salon-rating span:first-child {
    color: #c8a96b;

    font-size: 13px;
}


/* ========================================
   SERVICES
======================================== */

.salon-services {
    margin:
        22px
        0;

    padding-top: 17px;

    border-top:
        1px solid
        rgba(23, 22, 20, 0.09);

    color: #777066;

    font-size: 11px;

    letter-spacing: 0.05em;
}


/* ========================================
   CARD BOTTOM
======================================== */

.salon-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.salon-price {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.salon-price span {
    color: #9a9389;

    font-size: 9px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.salon-price strong {
    color: #171614;

    font-size: 14px;

    font-weight: 600;
}

/* ========================================
   BOOK NOW BUTTON
======================================== */

.salon-book {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: 9px;

    background:#524439;

    color: #f4f0e8;

    text-decoration: none;

    /* border: 1px solid #171614; */

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.salon-book span:last-child {
    font-size: 17px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.salon-book:hover {
    background: #c8a96b;

    color: #171614;

    border-color: #c8a96b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px
        rgba(23, 22, 20, 0.14);
}


.salon-book:hover span:last-child {
    transform: translateX(4px);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .featured-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 45px;
    }


    .featured-view-all {
        align-self: flex-end;
    }


    .salon-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 680px) {

    .featured-section {
        padding:
            70px
            20px
            85px;
    }


    .featured-header {
        gap: 25px;

        margin-bottom: 35px;
    }


    .featured-heading h2 {
        font-size:
            clamp(
                2.7rem,
                12vw,
                4rem
            );

        line-height: 0.98;
    }


    .featured-heading p {
        font-size: 0.95rem;

        line-height: 1.65;
    }


    .featured-view-all {
        align-self: flex-start;
    }


    .salon-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .salon-image {
        aspect-ratio: 1.2 / 1;
    }


    .salon-content {
        padding:
            22px
            20px
            20px;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    .featured-section {
        padding:
            60px
            15px
            75px;
    }


    .featured-heading h2 {
        font-size: 2.55rem;
    }


    .salon-card {
        border-radius: 15px;
    }


    .salon-image {
        aspect-ratio: 1.12 / 1;
    }


    .salon-badge {
        top: 13px;
        left: 13px;
    }


    .salon-favorite {
        top: 12px;
        right: 12px;

        width: 35px;
        height: 35px;
    }


    .salon-top h3 {
        font-size: 1.3rem;
    }

}

/* ========================================
   SERVICES SECTION
======================================== */

.services-section {
    position: relative;

    width: 100%;

    background:#524439;
    color: #f4f0e8;

    padding:
        clamp(90px, 10vw, 150px)
        clamp(20px, 5vw, 80px)
        clamp(100px, 11vw, 160px);

    overflow: hidden;
}


.services-inner {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}


/* ========================================
   SERVICES HEADER
======================================== */

.services-header {
    max-width: 760px;

    margin-bottom:
        clamp(55px, 7vw, 90px);
}


.services-eyebrow {
    display: block;

    margin-bottom: 20px;

    color: #c8a96b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


.services-header h2 {
    margin: 0 0 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.5rem
        );

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.055em;

    color: #f4f0e8;
}


.services-header p {
    max-width: 540px;

    margin: 0;

    color:
        rgba(244, 240, 232, 0.58);

    font-size:
        clamp(
            0.95rem,
            1.4vw,
            1.08rem
        );

    line-height: 1.7;
}


/* ========================================
   SERVICES LIST
======================================== */

.services-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap:
        clamp(25px, 5vw, 80px);

    width: 100%;

    border-top:
        1px solid
        rgba(244, 240, 232, 0.22);
}


/* ========================================
   SERVICE ITEM
======================================== */

.service-item {
    position: relative;

    min-width: 0;

    display: grid;

    grid-template-columns:
        45px minmax(0, 1fr) 35px;

    align-items: center;

    gap: 20px;

    min-height: 145px;

    padding:
        25px
        0;

    color: #f4f0e8;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(244, 240, 232, 0.20);

    transition:
        color 0.35s ease,
        padding 0.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.service-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background: #c8a96b;

    transition:
        width 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.service-item:hover {
    color: #c8a96b;

    padding-left: 10px;
}


.service-item:hover::before {
    width: 100%;
}


/* ========================================
   NUMBER
======================================== */

.service-number {
    color:
        rgba(244, 240, 232, 0.32);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;

    transition:
        color 0.3s ease;
}


.service-item:hover .service-number {
    color: #c8a96b;
}


/* ========================================
   SERVICE INFORMATION
======================================== */

.service-info {
    min-width: 0;
}


.service-info h3 {
    margin: 0 0 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: inherit;

    font-size:
        clamp(
            1.6rem,
            2.6vw,
            2.25rem
        );

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.025em;

    transition:
        transform 0.35s ease;
}


.service-info p {
    margin: 0;

    color:
        rgba(244, 240, 232, 0.58);

    font-size: 10px;

    letter-spacing: 0.08em;

    line-height: 1.5;

    transition:
        color 0.3s ease;
}


.service-item:hover .service-info p {
    color:
        rgba(244, 240, 232, 0.7);
}


/* ========================================
   ARROW
======================================== */

.service-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(244, 240, 232, 0.45);

    font-size: 21px;

    font-weight: 300;

    transition:
        color 0.3s ease,
        transform 0.35s ease;
}


.service-item:hover .service-arrow {
    color: #c8a96b;

    transform:
        translateX(6px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .services-list {
        grid-template-columns: 1fr;
    }


    .service-item {
        min-height: 125px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .services-section {
        padding:
            80px
            20px
            90px;
    }


    .services-header {
        margin-bottom: 50px;
    }


    .services-header h2 {
        font-size:
            clamp(
                3.1rem,
                16vw,
                4.5rem
            );

        line-height: 0.92;
    }


    .services-header p {
        font-size: 0.95rem;

        line-height: 1.65;
    }


    .service-item {
        grid-template-columns:
            32px minmax(0, 1fr) 28px;

        gap: 14px;

        min-height: 115px;

        padding:
            20px
            0;
    }


    .service-item:hover {
        padding-left: 0;
    }


    .service-info h3 {
        font-size: 1.55rem;
    }


    .service-info p {
        font-size: 9px;

        line-height: 1.6;
    }


    .service-arrow {
        font-size: 19px;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    .services-section {
        padding:
            70px
            15px
            80px;
    }


    .services-header h2 {
        font-size: 3rem;
    }


    .service-item {
        grid-template-columns:
            28px minmax(0, 1fr) 24px;

        gap: 11px;

        min-height: 105px;
    }


    .service-info h3 {
        font-size: 1.4rem;
    }


    .service-info p {
        font-size: 8px;
    }

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    /* background: #f4f0e8; */
    background: #FFFFF0;


    color: #171614;

    padding:
        clamp(75px, 9vw, 120px)
        clamp(20px, 5vw, 80px)
        30px;

    overflow: hidden;
}


.footer-inner {
    width: 100%;

    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap:
        clamp(30px, 5vw, 80px);
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    padding-right: 30px;
}


.footer-logo {
    display: inline-block;

    color: #171614;

    text-decoration: none;

    font-size:
        clamp(24px, 3vw, 34px);

    font-weight: 500;

    letter-spacing: 0.28em;

    margin-bottom: 24px;
}


.footer-brand p {
    margin: 0;

    color: #777066;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(16px, 1.8vw, 20px);

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin:
        0
        0
        22px;

    color: #9b8357;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.footer-column a {
    margin-bottom: 13px;

    color: #4f4a43;

    text-decoration: none;

    font-size: 12px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-column a:hover {
    color: #9b8357;

    transform: translateX(3px);
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    margin:
        clamp(55px, 7vw, 90px)
        0
        24px;

    background:
        rgba(23, 22, 20, 0.12);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.footer-bottom p {
    margin: 0;

    color: #918a80;

    font-size: 9px;

    letter-spacing: 0.08em;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-legal a {
    color: #777066;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 0.08em;

    transition:
        color 0.3s ease;
}


.footer-legal a:hover {
    color: #9b8357;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #171614;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.back-to-top span:last-child {
    font-size: 17px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}


.back-to-top:hover {
    color: #9b8357;
}


.back-to-top:hover span:last-child {
    transform: translateY(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-top {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        row-gap: 50px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding:
            70px
            20px
            25px;
    }


    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-logo {
        margin-bottom: 18px;
    }


    .footer-brand p {
        font-size: 17px;
    }


    .footer-column h3 {
        margin-bottom: 18px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .footer-legal {
        gap: 20px;
    }


    .back-to-top {
        align-self: flex-end;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .footer-top {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-column a {
        margin-bottom: 11px;
    }


    .footer-bottom {
        gap: 18px;
    }


    .back-to-top {
        align-self: flex-start;
    }

}



/* ----------------------------------------------------- */
/* ========================================
   ACCOUNT CHOICE PAGE
======================================== */

.account-page {
    min-height: 100vh;

    margin: 0;

    background: #f4f0e8;

    color: #171614;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* ========================================
   HEADER
======================================== */

.account-header {
    width: 100%;

    height: 78px;

    padding:
        0
        clamp(20px, 5vw, 70px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;
}


.account-logo {
    color: #171614;

    text-decoration: none;

    font-size: 22px;

    font-weight: 500;

    letter-spacing: 0.28em;
}


.back-home {
    color: #524439;

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.back-home:hover {
    color: #c8a96b;
}


/* ========================================
   MAIN
======================================== */

.account-main {
    width: 100%;

    max-width: 1120px;

    margin: 0 auto;

    padding:
        18px
        clamp(20px, 5vw, 60px)
        45px;

    box-sizing: border-box;
}


/* ========================================
   INTRO
======================================== */

.account-intro {
    text-align: center;

    margin-bottom: 32px;
}


.account-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #9b8357;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


.account-intro h1 {
    margin: 0 0 13px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.7rem,
            5.5vw,
            4.8rem
        );

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.05em;
}


.account-intro p {
    max-width: 560px;

    margin: 0 auto;

    color: #716b62;

    font-size: 14px;

    line-height: 1.5;
}


/* ========================================
   OPTIONS
======================================== */

.account-options {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* ========================================
   CARD
======================================== */

.account-card {
    position: relative;

    min-height: 285px;

    padding: 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #524439;

    color: #f4f0e8;

    text-decoration: none;

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform 0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.45s ease;
}


/* ========================================
   CARD DECORATION
======================================== */

.account-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -85px;
    bottom: -105px;

    border-radius: 50%;

    background:
        rgba(
            200,
            169,
            107,
            0.12
        );

    transition:
        transform 0.5s ease;
}


.account-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(50, 40, 30, 0.16);
}


.account-card:hover::before {
    transform: scale(1.3);
}


/* ========================================
   NUMBER
======================================== */

.account-card-number {
    position: relative;

    color: #c8a96b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;
}


/* ========================================
   CONTENT
======================================== */

.account-card-content {
    position: relative;

    max-width: 460px;
}


/* ========================================
   CARD LABEL
======================================== */

.account-card-label {
    display: block;

    margin-bottom: 9px;

    color:
        rgba(
            244,
            240,
            232,
            0.55
        );

    font-size: 8px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* ========================================
   CARD HEADING
======================================== */

.account-card h2 {
    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.45rem
        );

    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.04em;
}


/* ========================================
   CARD DESCRIPTION
======================================== */

.account-card p {
    max-width: 390px;

    margin: 0;

    color:
        rgba(
            244,
            240,
            232,
            0.68
        );

    font-size: 12px;

    line-height: 1.6;
}


/* ========================================
   CONTINUE
======================================== */

.account-card-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: #f4f0e8;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.account-card-link span {
    color: #c8a96b;

    font-size: 17px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}


.account-card:hover
.account-card-link span {
    transform: translateX(5px);
}


/* ========================================
   LOGIN
======================================== */

.account-login {
    margin-top: 22px;

    text-align: center;

    color: #817a70;

    font-size: 11px;
}


.account-login a {
    margin-left: 7px;

    color: #524439;

    font-weight: 700;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(
            23,
            22,
            20,
            0.35
        );

    padding-bottom: 2px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}


.account-login a:hover {
    color: #9b8357;

    border-color: #9b8357;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .account-header {
        height: 75px;
    }


    .account-main {
        padding-top: 20px;
    }


    .account-options {
        gap: 16px;
    }


    .account-card {
        min-height: 280px;

        padding: 23px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .account-header {
        height: 72px;

        padding:
            0
            20px;
    }


    .account-main {
        padding:
            25px
            20px
            50px;
    }


    .account-intro {
        margin-bottom: 28px;
    }


    .account-eyebrow {
        margin-bottom: 10px;
    }


    .account-intro h1 {
        font-size:
            clamp(
                2.4rem,
                10vw,
                3.5rem
            );

        line-height: 0.97;

        margin-bottom: 13px;
    }


    .account-intro p {
        font-size: 13px;

        line-height: 1.55;
    }


    .account-options {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .account-card {
        min-height: 270px;

        padding: 22px;

        border-radius: 14px;
    }


    .account-card h2 {
        font-size: 2.1rem;
    }


    .account-card p {
        font-size: 12px;

        line-height: 1.6;
    }


    .account-card-link {
        margin-top: 17px;
    }


    .account-login {
        margin-top: 24px;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    .account-header {
        height: 68px;

        padding:
            0
            16px;
    }


    .account-logo {
        font-size: 18px;
    }


    .back-home {
        font-size: 11px;
    }


    .account-main {
        padding:
            20px
            16px
            40px;
    }


    .account-intro {
        margin-bottom: 25px;
    }


    .account-intro h1 {
        font-size: 2.35rem;

        margin-bottom: 11px;
    }


    .account-intro p {
        font-size: 12px;
    }


    .account-card {
        min-height: 255px;

        padding: 20px;

        border-radius: 13px;
    }


    .account-card-number {
        font-size: 8px;
    }


    .account-card-label {
        font-size: 7px;

        margin-bottom: 8px;
    }


    .account-card h2 {
        font-size: 1.9rem;

        margin-bottom: 11px;
    }


    .account-card p {
        font-size: 11.5px;

        line-height: 1.55;
    }


    .account-card-link {
        margin-top: 16px;

        font-size: 8px;
    }


    .account-login {
        margin-top: 20px;

        font-size: 10px;
    }

}


/* LOGIN */


/* ========================================
   LOGIN PAGE
======================================== */

.account-page {
    min-height: 100vh;

    background: #f4f0e8;

    color: #171614;
}


/* ========================================
   ACCOUNT HEADER
======================================== */

.account-header {
    width: 100%;

    height: 72px;

    padding:
        0
        clamp(18px, 4vw, 45px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;
}


.account-logo {
    color: #171614;

    text-decoration: none;

    font-size: clamp(18px, 2vw, 23px);

    font-weight: 500;

    letter-spacing: 0.28em;
}


.account-back {
    color: #524439;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition: color 0.3s ease;
}


.account-back:hover {
    color: #9b8357;
}


/* ========================================
   LOGIN MAIN
======================================== */

.login-main {
    width: 100%;

    max-width: 650px;

    margin: 0 auto;

    padding:
        12px
        20px
        55px;

    box-sizing: border-box;
}


/* ========================================
   LOGIN INTRO
======================================== */

.login-intro {
    text-align: center;

    margin-bottom: 25px;
}


.login-intro .account-eyebrow {
    margin-bottom: 9px;

    font-size: 9px;
}


.login-intro h1 {
    margin: 0 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.6rem,
            6vw,
            4.2rem
        );

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.05em;

    color: #171614;
}


.login-intro p {
    margin: 0;

    color: #716b62;

    font-size: 13px;

    line-height: 1.5;
}


/* ========================================
   LOGIN CARD
======================================== */

.login-card {
    position: relative;

    width: 100%;

    padding:
        27px
        clamp(22px, 4vw, 35px);

    box-sizing: border-box;

    background: #524439;

    color: #f4f0e8;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 18px 45px
        rgba(50, 40, 30, 0.14);
}


/* ========================================
   GOLD DECORATION
======================================== */

.login-card::before {
    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -110px;

    bottom: -110px;

    border-radius: 50%;

    background:
        rgba(
            200,
            169,
            107,
            0.12
        );

    pointer-events: none;
}


/* ========================================
   CARD TOP
======================================== */

.login-card-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}


.login-card-number {
    color: #c8a96b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2em;
}


.login-card-label {
    color:
        rgba(
            244,
            240,
            232,
            0.55
        );

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


/* ========================================
   FORM
======================================== */

.login-form {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 17px;
}


/* ========================================
   FIELD
======================================== */

.login-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.login-field label {
    color:
        rgba(
            244,
            240,
            232,
            0.72
        );

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


/* ========================================
   LABEL ROW
======================================== */

.login-label-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
}


.forgot-password {
    color: #c8a96b;

    font-size: 8px;

    text-decoration: none;

    letter-spacing: 0.04em;

    transition: color 0.3s ease;
}


.forgot-password:hover {
    color: #f4f0e8;
}


/* ========================================
   INPUT
======================================== */

.login-field input {
    width: 100%;

    min-height: 45px;

    padding:
        0
        14px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(
            244,
            240,
            232,
            0.18
        );

    border-radius: 7px;

    outline: none;

    background:
        rgba(
            244,
            240,
            232,
            0.07
        );

    color: #f4f0e8;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.login-field input::placeholder {
    color:
        rgba(
            244,
            240,
            232,
            0.38
        );
}


.login-field input:focus {
    border-color: #c8a96b;

    background:
        rgba(
            244,
            240,
            232,
            0.1
        );

    box-shadow:
        0 0 0 3px
        rgba(
            200,
            169,
            107,
            0.08
        );
}


/* ========================================
   SIGN IN BUTTON
======================================== */

.login-submit {
    position: relative;

    width: 100%;

    min-height: 45px;

    margin-top: 2px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        17px;

    border:
        1px solid
        #c8a96b;

    border-radius: 7px;

    background: #c8a96b;

    color: #171614;

    cursor: pointer;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.login-submit span:last-child {
    font-size: 17px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}


.login-submit:hover {
    background: #f4f0e8;

    border-color: #f4f0e8;

    color: #171614;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(20, 15, 10, 0.14);
}


.login-submit:hover span:last-child {
    transform: translateX(5px);
}


/* ========================================
   DIVIDER
======================================== */

.login-divider {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    margin:
        22px
        0;
}


.login-divider span {
    flex: 1;

    height: 1px;

    background:
        rgba(
            244,
            240,
            232,
            0.13
        );
}


.login-divider small {
    color:
        rgba(
            244,
            240,
            232,
            0.38
        );

    font-size: 7px;

    letter-spacing: 0.15em;
}


/* ========================================
   REGISTER
======================================== */

.login-register {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color:
        rgba(
            244,
            240,
            232,
            0.55
        );

    font-size: 10px;
}


.login-register a {
    color: #c8a96b;

    font-weight: 700;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(
            200,
            169,
            107,
            0.45
        );

    padding-bottom: 2px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}


.login-register a:hover {
    color: #f4f0e8;

    border-color: #f4f0e8;
}


/* ========================================
   SALON LOGIN
======================================== */

.salon-login {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 18px;

    color: #817a70;

    font-size: 10px;
}


.salon-login a {
    color: #524439;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.salon-login a:hover {
    color: #9b8357;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .account-header {
        height: 68px;

        padding:
            0
            18px;
    }


    .login-main {
        padding:
            8px
            18px
            45px;
    }


    .login-intro {
        margin-bottom: 22px;
    }


    .login-intro h1 {
        font-size:
            clamp(
                2.45rem,
                12vw,
                3.6rem
            );
    }


    .login-card {
        padding:
            24px
            20px;

        border-radius: 15px;
    }


    .login-card-top {
        margin-bottom: 22px;
    }


    .login-form {
        gap: 16px;
    }


    .login-register {
        flex-wrap: wrap;

        text-align: center;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    .account-header {
        height: 64px;

        padding:
            0
            15px;
    }


    .account-logo {
        font-size: 17px;
    }


    .account-back {
        font-size: 8px;
    }


    .login-main {
        padding:
            5px
            15px
            40px;
    }


    .login-intro {
        margin-bottom: 20px;
    }


    .login-intro h1 {
        font-size: 2.3rem;
    }


    .login-card {
        padding:
            21px
            16px;

        border-radius: 13px;
    }


    .login-field input {
        min-height: 43px;
    }


    .login-submit {
        min-height: 43px;
    }


    .salon-login {
        flex-wrap: wrap;

        text-align: center;
    }

}

/* ========================================
   CUSTOMER REGISTRATION MAIN
======================================== */

.register-main {
    width: 100%;

    max-width: 620px;

    margin: 0 auto;

    padding:
        5px
        clamp(20px, 5vw, 40px)
        70px;

    box-sizing: border-box;
}


/* ========================================
   PASSWORD WRAPPER
======================================== */

.password-wrapper {
    position: relative;

    width: 100%;
}


.password-wrapper input {
    padding-right: 48px;
}


/* ========================================
   PROFESSIONAL EYE ICON
======================================== */

.password-toggle {
    position: absolute;

    top: 50%;
    right: 14px;

    width: 28px;
    height: 28px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: none;

    background: transparent;

    cursor: pointer;
}


/* Eye shape */

.eye-icon {
    position: relative;

    width: 17px;
    height: 11px;

    display: block;

    border:
        1.5px solid
        rgba(244, 240, 232, 0.55);

    border-radius:
        80% 20% 80% 20% /
        70% 30% 70% 30%;

    transform: rotate(45deg);

    transition:
        border-color 0.3s ease;
}


/* Eye pupil */

.eye-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #c8a96b;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* Hover */

.password-toggle:hover .eye-icon {
    border-color: #c8a96b;
}


/* Hidden state */

.eye-icon.eye-hidden {
    opacity: 0.45;
}


/* ========================================
   REGISTRATION FORM
======================================== */

#customerRegisterForm {
    gap: 19px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .register-main {
        padding:
            5px
            20px
            55px;
    }

    #customerRegisterForm {
        gap: 17px;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    .register-main {
        padding:
            3px
            16px
            45px;
    }

    #customerRegisterForm {
        gap: 16px;
    }

    .password-toggle {
        right: 10px;
    }

}





/* ========================================
   SALON REGISTRATION
======================================== */

.register-name-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* ========================================
   SALON FORM SPACING
======================================== */

#salonRegisterForm {
    gap: 19px;
}


/* ========================================
   PASSWORD WRAPPER
======================================== */

.password-wrapper {
    position: relative;

    width: 100%;
}


.password-wrapper input {
    padding-right: 48px;
}


/* ========================================
   PROFESSIONAL EYE BUTTON
======================================== */

.password-toggle {
    position: absolute;

    top: 50%;
    right: 14px;

    width: 28px;
    height: 28px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: none;

    background: transparent;

    cursor: pointer;
}


/* ========================================
   EYE ICON
======================================== */

.eye-icon {
    position: relative;

    width: 17px;
    height: 11px;

    display: block;

    border:
        1.5px solid
        rgba(244, 240, 232, 0.55);

    border-radius:
        80% 20% 80% 20% /
        70% 30% 70% 30%;

    transform: rotate(45deg);

    transition:
        border-color 0.3s ease;
}


.eye-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #c8a96b;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


.password-toggle:hover .eye-icon {
    border-color: #c8a96b;
}


.eye-icon.eye-hidden {
    opacity: 0.45;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 700px) {

    .register-name-row {
        grid-template-columns: 1fr;

        gap: 19px;
    }

    #salonRegisterForm {
        gap: 17px;
    }

    .password-toggle {
        right: 12px;
    }

}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 400px) {

    #salonRegisterForm {
        gap: 16px;
    }

    .password-toggle {
        right: 10px;
    }

}

/* ========================================
   HOW IT WORKS (custom-designed to match theme)
======================================== */

#how-it-works {
    width: 100%;
    background: #f4f0e8;
    color: #171614;
    padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 80px);
}

.how-it-works-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #9b8357;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.how-it-works-heading {
    margin: 0 0 clamp(40px, 6vw, 64px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
    color: #171614;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.step-card {
    background: #524439;
    color: #f4f0e8;
    padding: 34px 28px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(65, 55, 40, 0.10);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.16);
    color: #c8a96b;
    font-size: 14px;
    font-weight: 700;
}

.step-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.step-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(244, 240, 232, 0.72);
}

@media (max-width: 800px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.empty-category-message {
    color: #6d675e;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

/* ========================================
   TABS (custom-designed, featured salons)
======================================== */

.tab-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 clamp(30px, 4vw, 45px);
}

.tab-btn {
    padding: 9px 18px;
    border-radius: 30px;
    border: 1px solid rgba(23, 22, 20, 0.14);
    background: transparent;
    color: #6d675e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #524439;
    color: #f4f0e8;
    border-color: #524439;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.salon-card {
    text-decoration: none;
}

/* =========================================================
   FLOATING NAVBAR
========================================================= */



.float-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 6px;

    background: #0f0f0f;
    border-radius: 9999px;
    padding: 6px;

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 8px 20px rgba(0, 0, 0, 0.18);

    animation:
        navEnter 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.1) both,
        navFloat 4.5s ease-in-out 0.7s infinite;
}

@keyframes navEnter {
    from {
        transform: translateX(-50%) translateY(-40px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes navFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}


@media (prefers-reduced-motion: reduce) {

    .float-nav {
        animation: none;
        transform: translateX(-50%);
    }

}
.float-nav-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #fff;
    font-size: 16px;

    transition: transform 0.3s ease, background 0.3s ease;
}

.float-nav-logo:hover {
    transform: rotate(15deg) scale(1.05);
    background: #262626;
}

.float-nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 2px;
}

.float-nav-login {
    color: #fff;
    font-size: 13px;
    font-weight: 600;

    padding: 12px 20px;
    border-radius: 9999px;

    text-decoration: none;

    transition: background 0.25s ease;
}

.float-nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
}

.float-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #fff;
    color: #0f0f0f;

    font-size: 13px;
    font-weight: 700;

    padding: 12px 22px;
    border-radius: 9999px;

    text-decoration: none;

    transition:
        transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.3),
        box-shadow 0.25s ease;
}

.float-nav-cta:hover {
    transform: scale(1.045);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.float-nav-cta:active {
    transform: scale(0.96);
}

.float-nav-cta .arrow {
    transition: transform 0.25s ease;
}

.float-nav-cta:hover .arrow {
    transform: translateX(3px);
}


@media (max-width: 480px) {

    .float-nav {
        top: 14px;
    }

    .float-nav-login {
        padding: 10px 14px;
        font-size: 12px;
    }

    .float-nav-cta {
        padding: 10px 16px;
        font-size: 12px;
    }

    .float-nav-logo {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    body {
        padding-top: 90px;
    }

}