/* =========================================================
   GLAMORA BEAUTY — CUSTOMER WEBSITE
   Premium Editorial Beauty Design
========================================================= */

:root {
    --wine: #6f2345;
    --wine-dark: #42152b;
    --rose: #b86a86;
    --blush: #f8eef2;
    --cream: #fbf8f5;
    --white: #ffffff;
    --ink: #211a1d;
    --muted: #766b70;
    --line: #eadfe3;
    --gold: #b99458;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, Arial, Helvetica, sans-serif;

    --container: 1240px;
    --radius: 2px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

em {
    color: var(--wine);
    font-family: var(--serif);
    font-weight: 400;
}


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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .03em;
}

.logo-text small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: .25em;
    opacity: .8;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
    opacity: .9;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width .25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-book-btn {
    padding: 13px 22px;
    border: 1px solid rgba(255,255,255,.75);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .25s ease;
}

.header-book-btn:hover {
    background: var(--white);
    color: var(--wine);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 25px;
}


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

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #3b1828;
    color: var(--white);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(38,12,25,.82) 0%,
            rgba(47,16,31,.63) 40%,
            rgba(47,16,31,.20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 94px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.035em;
}

.hero h1 em {
    color: #f1dce4;
}

.hero-description {
    max-width: 560px;
    margin: 30px 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.84);
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.btn {
    min-height: 52px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .25s ease;
}

.btn-primary {
    background: var(--wine);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,.65);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--wine);
}

.hero-trust {
    margin-top: 52px;
    display: flex;
    gap: 40px;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust span {
    font-family: var(--serif);
    font-size: 21px;
    color: #f0cbd8;
}

.hero-trust p {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    right: 34px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(90deg);
    transform-origin: right center;
    font-size: 9px;
    letter-spacing: .2em;
    opacity: .7;
}

.hero-scroll i {
    font-style: normal;
    font-size: 17px;
}


/* =========================================================
   CATEGORY
========================================================= */

.category-strip {
    padding: 72px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.category-intro {
    max-width: 560px;
    margin-bottom: 40px;
}

.category-intro h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.category-item {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-right: 1px solid var(--line);
    transition: .25s ease;
}

.category-item:last-child {
    border-right: 0;
}

.category-item:hover {
    background: var(--blush);
    color: var(--wine);
}

.category-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 22px;
}

.category-item span {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   GENERIC SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 55px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    max-width: 700px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.025em;
}

.section-count {
    padding-bottom: 7px;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--wine);
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.glamora-intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 100px 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-number {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--wine);
}

.intro-heading h2 {
    max-width: 620px;
    font-family: var(--serif);
    font-size: clamp(43px, 5vw, 72px);
    font-weight: 400;
    line-height: .98;
}

.intro-copy {
    padding-top: 35px;
    max-width: 450px;
}

.intro-copy p {
    margin-bottom: 28px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.9;
}


/* =========================================================
   PARLOURS
========================================================= */

.parlour-section {
    background: var(--white);
}

.parlour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.parlour-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--blush);
    border: 1px solid var(--line);
}

.parlour-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: .75;
    transition: transform .5s ease;
}

.parlour-card:hover img {
    transform: scale(1.05);
}

.parlour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 25%,
        rgba(35,13,23,.75)
    );
}

.parlour-card-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.parlour-card h3 {
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 400;
}

.parlour-card p {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: .08em;
    opacity: .82;
}

.parlour-card a {
    margin-top: 18px;
    display: inline-block;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}


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

.featured-services {
    background: var(--cream);
}

.service-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 560px;
}

.service-feature-image {
    overflow: hidden;
    background: var(--blush);
}

.service-feature-image img {
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.service-feature-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--blush);
}

.service-number {
    margin-bottom: 28px;
    color: var(--wine);
    font-family: var(--serif);
    font-size: 18px;
}

.service-feature-content h3 {
    max-width: 450px;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: .98;
}

.service-feature-content p {
    max-width: 470px;
    margin: 30px 0;
    color: var(--muted);
    line-height: 1.9;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.service-highlights span {
    padding: 9px 13px;
    border: 1px solid #dccbd1;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   HOME SERVICE
========================================================= */

.home-service {
    padding: 115px 0;
    background: var(--wine-dark);
    color: var(--white);
}

.home-service-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center;
}

.home-service-copy {
    max-width: 650px;
}

.home-service-copy .eyebrow {
    color: #e9bdcd;
}

.home-service-copy h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: .96;
}

.home-service-copy h2 em {
    color: #efceda;
}

.home-service-copy > p {
    max-width: 540px;
    margin: 30px 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.9;
}

.home-minimum {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.home-minimum span {
    font-family: var(--serif);
    font-size: 38px;
}

.home-minimum small {
    color: rgba(255,255,255,.58);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-service-card {
    padding: 42px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.2);
}

.home-card-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-size: 9px;
    letter-spacing: .18em;
}

.home-card-top strong {
    color: #e7b8c9;
}

.home-card-icon {
    margin: 38px 0 18px;
    font-size: 30px;
    color: #e7b8c9;
}

.home-service-card h3 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
}

.home-service-card p {
    margin: 15px 0;
    color: rgba(255,255,255,.65);
}

.home-card-line {
    height: 1px;
    margin: 30px 0 12px;
    background: rgba(255,255,255,.15);
}

.home-feature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
}

.home-feature span {
    display: inline-block;
    width: 35px;
    color: #e7b8c9;
    font-family: var(--serif);
}


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

.booking-section {
    background: var(--white);
}

.booking-heading {
    max-width: 900px;
}

.booking-heading p:last-child {
    margin-top: 20px;
    color: var(--muted);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.booking-info {
    padding: 45px 0;
}

.booking-label {
    color: var(--wine);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}

.booking-info h3 {
    margin: 15px 0 45px;
    font-family: var(--serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
}

.booking-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.booking-step > span {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 17px;
}

.booking-step strong {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
}

.booking-step p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.booking-form {
    padding: 42px;
    background: var(--blush);
    border: 1px solid var(--line);
}

.booking-form-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-form-header span {
    color: var(--wine);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.booking-form-header small {
    color: var(--muted);
    font-size: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dfd0d6;
    background: var(--white);
    color: var(--ink);
    border-radius: 0;
    outline: none;
    transition: border-color .2s ease;
}

.form-group input,
.form-group select {
    height: 50px;
    padding: 0 14px;
}

.form-group textarea {
    min-height: 105px;
    padding: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wine);
}

.price-box {
    margin: 12px 0 20px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
}

.price-box > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-box span {
    font-size: 11px;
    color: var(--muted);
}

.price-box strong {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.price-box small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
}

.booking-submit {
    width: 100%;
}

.booking-message {
    margin-top: 15px;
    font-size: 13px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    padding: 110px 0;
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-top: 1px solid var(--line);
}

.experience-main {
    grid-row: span 2;
    padding: 55px 55px 55px 0;
}

.experience-main h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 68px);
    line-height: .98;
    font-weight: 400;
}

.experience-item {
    padding: 40px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-item span {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 16px;
}

.experience-item h3 {
    margin: 25px 0 10px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
}

.experience-item p {
    color: var(--muted);
    font-size: 12px;
}


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

.about-section {
    padding: 110px 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-inner h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 70px);
    line-height: .98;
    font-weight: 400;
}

.about-text {
    max-width: 560px;
    padding-top: 25px;
}

.about-text > p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-points span {
    padding: 15px;
    border-top: 1px solid var(--line);
    color: var(--wine);
    font-size: 11px;
}


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

.footer {
    padding: 75px 0 25px;
    background: #25151d;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 70px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 31px;
}

.footer-logo span {
    color: #e3b5c6;
}

.footer-brand p {
    margin: 12px 0 25px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.footer-book {
    color: #e3b5c6;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 12px;
    color: #e3b5c6;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(255,255,255,.62);
    font-size: 11px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.4);
    font-size: 10px;
}


/* =========================================================
   LOADING
========================================================= */

.loading {
    padding: 50px;
    text-align: center;
    color: var(--muted);
}


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

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

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

    .category-item:nth-child(4) {
        border-right: 0;
    }

    .intro-grid {
        grid-template-columns: 60px 1fr;
    }

    .intro-copy {
        grid-column: 2;
        padding-top: 0;
    }

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

    .home-service-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

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

    .experience-main {
        grid-column: span 2;
        grid-row: auto;
        padding-right: 0;
    }

    .about-inner {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


@media (max-width: 700px) {

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

    .site-header {
        position: absolute;
    }

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

    .main-nav,
    .header-book-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 85px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

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

    .hero-trust {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-trust p {
        font-size: 8px;
    }

    .hero-scroll {
        display: none;
    }

    .category-strip,
    .section,
    .home-service,
    .experience-section,
    .about-section {
        padding: 75px 0;
    }

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

    .category-item {
        min-height: 105px;
        border-bottom: 1px solid var(--line);
    }

    .category-item:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .category-item:nth-child(even) {
        border-right: 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 35px;
    }

    .section-count {
        margin-top: 15px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-copy {
        grid-column: auto;
    }

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

    .parlour-card {
        min-height: 240px;
    }

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

    .service-feature-image img {
        min-height: 360px;
    }

    .service-feature-content {
        padding: 45px 30px;
    }

    .home-service-card {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .booking-info {
        padding: 0;
    }

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

    .experience-main {
        grid-column: auto;
    }

    .experience-item {
        border-left: 0;
        padding: 30px 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


@media (max-width: 420px) {

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .footer-brand {
        grid-column: auto;
    }

}

/* =========================================================
   GLAMORA LOCATION CARDS — CLEAN VERSION
========================================================= */

.parlour-card {
    position: relative;
    min-height: 290px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.9),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #fbf1f5,
            #ead9e0
        );

    border: 1px solid #e4d5db;
    color: var(--ink);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.parlour-card::before {
    content: "✿";
    position: absolute;
    right: 24px;
    bottom: 5px;

    font-family: Georgia, serif;
    font-size: 115px;
    line-height: 1;

    color: rgba(111,35,69,.055);
}

.parlour-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111,35,69,.3);

    box-shadow:
        0 18px 45px rgba(66,21,43,.12);
}

.parlour-card-top {
    position: relative;
    z-index: 2;

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

.parlour-number {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 18px;
}

.parlour-mark {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--muted);
}

.parlour-content {
    position: relative;
    z-index: 2;
}

.parlour-eyebrow {
    margin-bottom: 7px;

    color: var(--wine);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
}

.parlour-card h3 {
    margin-bottom: 7px;

    color: var(--ink);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.parlour-card p:not(.parlour-eyebrow) {
    max-width: 280px;
    margin-bottom: 22px;

    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.parlour-actions {
    display: flex;
    gap: 22px;
    align-items: center;
}

.parlour-actions a {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.parlour-actions a:first-child {
    color: var(--muted);
}

.parlour-actions .parlour-book {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--wine);
    color: var(--wine);
}


/* Mobile location cards */

@media (max-width: 700px) {

    .parlour-card {
        min-height: 230px;
        padding: 23px;
    }

    .parlour-card h3 {
        font-size: 29px;
    }

    .parlour-card::before {
        font-size: 90px;
    }

}

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

@media (max-width: 700px) {

    .site-header {
        z-index: 100;
    }

    .header-inner {
        position: relative;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 102;

        width: 44px;
        height: 44px;

        display: grid;
        place-items: center;

        border: 1px solid rgba(255,255,255,.45);
        color: #fff;

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

    .main-nav.mobile-nav-open {
        position: fixed;

        top: 75px;
        left: 15px;
        right: 15px;

        z-index: 101;

        display: flex;
        flex-direction: column;

        gap: 0;

        padding: 10px 0;

        background: rgba(45, 12, 28, .98);

        border: 1px solid rgba(255,255,255,.18);

        box-shadow:
            0 20px 50px rgba(0,0,0,.25);
    }

    .main-nav.mobile-nav-open a {
        display: block;

        padding: 18px 22px;

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

        color: #fff;

        font-size: 11px;
        letter-spacing: .16em;
    }

    .main-nav.mobile-nav-open a:last-child {
        border-bottom: 0;
    }

    .main-nav.mobile-nav-open a::after {
        display: none;
    }

    .mobile-menu-btn.menu-open {
        font-size: 30px;
    }

}

/* =========================================================
   HERO IMAGE POSITION
========================================================= */

@media (min-width: 701px) {
    .hero-image img {
        object-position: 44% center;
    }
}

@media (max-width: 700px) {
    .hero-image img {
        object-position: 43% center;
    }
}

/* =========================================================
   GLAMORA STYLIST APPOINTMENT MODAL
========================================================= */

.stylist-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 24px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.stylist-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.stylist-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(24, 7, 17, .72);

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

.stylist-modal-box {
    position: relative;
    z-index: 2;

    width: min(680px, 100%);
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 48px;

    background: #fffaf7;

    border: 1px solid rgba(69, 20, 43, .12);

    box-shadow:
        0 35px 90px rgba(20, 5, 14, .35);

    transform: translateY(20px) scale(.98);

    transition: transform .3s ease;
}

.stylist-modal.is-open .stylist-modal-box {
    transform: translateY(0) scale(1);
}

.stylist-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(69, 20, 43, .18);
    border-radius: 50%;

    background: transparent;

    color: #3d1729;

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

    cursor: pointer;

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

.stylist-modal-close:hover {
    background: #3d1729;
    color: #fff;
    transform: rotate(90deg);
}

.stylist-modal-heading {
    margin-bottom: 30px;
    padding-right: 40px;
}

.stylist-modal-heading .eyebrow {
    margin-bottom: 12px;

    color: #8f526b;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.stylist-modal-heading h2 {
    margin: 0 0 12px;

    color: #29111d;

    font-family: var(--serif, Georgia, serif);

    font-size: clamp(34px, 5vw, 52px);
    font-weight: 400;
    line-height: .98;
}

.stylist-modal-heading h2 em {
    color: #7e4058;
    font-weight: 400;
}

.stylist-modal-heading > p:last-child {
    margin: 0;

    color: #786b70;

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

.stylist-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stylist-option {
    position: relative;

    width: 100%;

    display: grid;
    grid-template-columns: 48px 1fr 28px;
    align-items: center;

    min-height: 82px;

    padding: 14px 18px;

    border: 1px solid rgba(69, 20, 43, .14);

    background: #fff;

    color: #351624;

    text-align: left;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.stylist-option:hover {
    border-color: #8b4c66;
    background: #fff7f5;

    transform: translateX(4px);

    box-shadow:
        0 10px 30px rgba(69, 20, 43, .08);
}

.stylist-option-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f3e4e8;

    color: #71364f;

    font-size: 17px;
}

.stylist-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding-right: 10px;
}

.stylist-option-text strong {
    color: #2f1420;

    font-family: var(--serif, Georgia, serif);

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

.stylist-option-text small {
    color: #82767a;

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

.stylist-option-arrow {
    color: #8b4c66;

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

    text-align: right;

    transition: transform .2s ease;
}

.stylist-option:hover .stylist-option-arrow {
    transform: translateX(4px);
}

.stylist-modal-footer {
    margin-top: 24px;

    color: #8a7b81;

    font-size: 10px;
    line-height: 1.6;

    text-align: center;
}


/* Prevent page scrolling while modal is open */

body.modal-open {
    overflow: hidden;
}


/* =========================================================
   STYLIST MODAL — MOBILE
========================================================= */

@media (max-width: 700px) {

    .stylist-modal {
        align-items: flex-end;

        padding: 0;
    }

    .stylist-modal-box {
        width: 100%;
        max-height: 92vh;

        padding: 34px 20px 24px;

        border-left: 0;
        border-right: 0;
        border-bottom: 0;

        border-radius: 22px 22px 0 0;

        transform: translateY(40px);
    }

    .stylist-modal.is-open .stylist-modal-box {
        transform: translateY(0);
    }

    .stylist-modal-close {
        top: 14px;
        right: 14px;

        width: 34px;
        height: 34px;

        font-size: 22px;
    }

    .stylist-modal-heading {
        margin-bottom: 22px;
        padding-right: 35px;
    }

    .stylist-modal-heading h2 {
        font-size: 34px;
    }

    .stylist-option {
        grid-template-columns: 42px 1fr 20px;

        min-height: 72px;

        padding: 12px;
    }

    .stylist-option-icon {
        width: 34px;
        height: 34px;

        font-size: 15px;
    }

    .stylist-option-text strong {
        font-size: 16px;
    }

    .stylist-option-text small {
        font-size: 9px;
    }

}


/* =========================================================
   GLAMORA 6-STEP BOOKING WIZARD
========================================================= */

.booking-wizard {
    width: 100%;
}

.booking-progress {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    padding: 0 4px;
}

.booking-progress-item {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    color: #9a8b91;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-progress-item:last-child {
    flex: 0 0 auto;
}

.booking-progress-number {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(69,20,43,.18);
    border-radius: 50%;

    font-size: 9px;

    transition: all .25s ease;
}

.booking-progress-item.active {
    color: #71364f;
}

.booking-progress-item.active .booking-progress-number {
    background: #3d1729;
    border-color: #3d1729;
    color: #fff;
}

.booking-progress-item.completed .booking-progress-number {
    background: #8b4c66;
    border-color: #8b4c66;
    color: #fff;
}

.booking-progress-line {
    height: 1px;
    flex: 1;
    margin: 0 10px;
    background: rgba(69,20,43,.12);
}

.booking-step-panel {
    display: none;
    animation: glamoraStepIn .28s ease;
}

.booking-step-panel.active {
    display: block;
}

@keyframes glamoraStepIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-step-heading {
    margin-bottom: 26px;
}

.booking-step-heading span {
    display: block;
    margin-bottom: 7px;

    color: #8f526b;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
}

.booking-step-heading h3 {
    margin: 0 0 7px;

    color: #29111d;
    font-family: var(--serif, Georgia, serif);
    font-size: 32px;
    font-weight: 400;
}

.booking-step-heading p {
    margin: 0;

    color: #82767a;
    font-size: 11px;
    line-height: 1.6;
}

.wizard-stylist-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px;

    border: 1px solid rgba(69,20,43,.13);
    background: #fff;

    cursor: pointer;
}

.wizard-stylist-card strong {
    display: block;
    margin-bottom: 5px;

    color: #351624;
    font-family: var(--serif, Georgia, serif);
    font-size: 21px;
    font-weight: 400;
}

.wizard-stylist-card span {
    color: #82767a;
    font-size: 10px;
}

.wizard-stylist-change {
    color: #71364f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid rgba(69,20,43,.1);
}

.wizard-back {
    border: 0;
    background: transparent;

    color: #776970;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    cursor: pointer;
}

.wizard-next {
    min-width: 170px;
}

.wizard-review {
    border: 1px solid rgba(69,20,43,.13);
    background: #fff;
}

.wizard-review-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 18px;

    border-bottom: 1px solid rgba(69,20,43,.08);
}

.wizard-review-row:last-child {
    border-bottom: 0;
}

.wizard-review-row span {
    color: #897b81;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.wizard-review-row strong {
    color: #351624;
    font-size: 11px;
    font-weight: 600;
    text-align: right;
}

.wizard-review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 16px;
    padding: 20px;

    background: #3d1729;
    color: #fff;
}

.wizard-review-total span {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wizard-review-total strong {
    font-family: var(--serif, Georgia, serif);
    font-size: 26px;
    font-weight: 400;
}

.wizard-error {
    margin-top: 12px;
    color: #a33c52;
    font-size: 10px;
}

@media (max-width: 700px) {

    .booking-progress {
        overflow-x: auto;
        padding-bottom: 5px;
        margin-bottom: 26px;
    }

    .booking-progress-item {
        min-width: 72px;
        flex: 0 0 auto;
        justify-content: center;
    }

    .booking-progress-item span:not(.booking-progress-number) {
        display: none;
    }

    .booking-progress-line {
        min-width: 12px;
    }

    .booking-step-heading h3 {
        font-size: 28px;
    }

    .wizard-stylist-card {
        padding: 18px;
    }

    .wizard-stylist-card strong {
        font-size: 18px;
    }

    .wizard-actions {
        position: sticky;
        bottom: 0;

        margin-left: -18px;
        margin-right: -18px;
        padding: 16px 18px;

        background: rgba(255,250,247,.96);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .wizard-next {
        min-width: 145px;
    }

}

/* =========================================================
   GLAMORA STEP 03 — SERVICE SELECTION
========================================================= */

.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.service-choice {
    position: relative;

    min-height: 145px;
    padding: 22px;

    border: 1px solid rgba(69, 20, 43, .13);
    background: #fff;

    cursor: pointer;

    transition:
        border-color .22s ease,
        background .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}

.service-choice:hover {
    border-color: #8b4c66;
    background: #fff8f6;
    transform: translateY(-2px);

    box-shadow:
        0 14px 35px rgba(69, 20, 43, .08);
}

.service-choice.selected {
    border-color: #3d1729;
    background: #fff5f4;

    box-shadow:
        inset 0 0 0 1px #3d1729;
}

.service-choice-number {
    display: block;
    margin-bottom: 17px;

    color: #a0838e;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
}

.service-choice-name {
    display: block;
    margin-bottom: 9px;

    color: #321522;

    font-family: var(--serif, Georgia, serif);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
}

.service-choice-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.service-choice-duration {
    color: #897b81;
    font-size: 9px;
    letter-spacing: .04em;
}

.service-choice-price {
    color: #71364f;
    font-size: 12px;
    font-weight: 700;
}

.service-choice-check {
    position: absolute;
    top: 17px;
    right: 17px;

    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(69,20,43,.15);
    border-radius: 50%;

    color: transparent;

    font-size: 12px;

    transition: all .2s ease;
}

.service-choice.selected .service-choice-check {
    background: #3d1729;
    border-color: #3d1729;
    color: #fff;
}

.service-choice-source {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;
}


/* Empty/loading state */

.service-selection-empty {
    padding: 35px 20px;

    border: 1px dashed rgba(69,20,43,.16);

    color: #897b81;

    font-size: 11px;
    text-align: center;
}


@media (max-width: 700px) {

    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-choice {
        min-height: 125px;
        padding: 19px;
    }

    .service-choice-name {
        font-size: 19px;
    }

}


/* =========================================================
   MOBILE HERO — SHOW MODEL FACE
========================================================= */

@media (max-width: 700px) {
    .hero-image img {
        object-position: 75% center;
    }
}


/* =========================================================
   MOBILE HERO — SHOW MODEL FACE
========================================================= */

@media (max-width: 700px) {
    .hero-image img {
        object-position: 58% center;
    }
}

