
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");


/* =========================================
   ROOT VARIABLES
========================================= */

:root {
    --page-background: #FFF6EB;
    --cream: var(--page-background);
    --light-cream: var(--page-background);
    --plum: #8A6A80;
    --dark-plum: #8A6A80;
    --gold: #959227;
    --black: #161616;
    --light-black: #555555;
    --white: #ffffff;

    --shadow: 0 7px 18px rgba(0, 0, 0, 0.10);
}


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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

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

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

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

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

button {
    border: 0;
}

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


/* =========================================
   QUICK ACTION BAR
========================================= */

.quick-action-bar {
    display: none;
}


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

.hero {
    position: relative;

    width: 100%;
    overflow: hidden;

    background: var(--page-background);
}

.hero-image {
    display: block;

    width: 100%;
    height: auto;

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


/* =========================================
   SERVICES SECTION
========================================= */

.services {
    width: 100%;

    padding: 60px 24px 30px;

    background: var(--page-background);
}

.services-container {
    width: 100%;
    max-width: 1620px;

    margin: 0 auto;
}


/* =========================================
   SERVICES HEADING
========================================= */

.services-heading {
    margin-bottom: 38px;

    text-align: center;
}

.services-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.heading-line {
    display: block;

    width: 100px;
    height: 1px;

    background: var(--gold);
}

.services-heading h2 {
    color: var(--black);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 600;
    line-height: 1;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    display: grid;

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

    width: 100%;

    column-gap: 30px;
    row-gap: 35px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    width: 100%;
    min-width: 0;

    text-align: center;
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image-wrapper {
    position: relative;

    width: 100%;
    height: 325px;

    overflow: hidden;

    background: #e9dfd5;
    border-radius: 14px;
}

.service-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

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

    border-radius: inherit;

    transition: transform 0.45s ease;
}

.service-card:hover .service-image {
    transform: scale(1.04);
}


/* =========================================
   SERVICE INFORMATION PANEL
========================================= */

.service-info {
    position: relative;
    z-index: 5;

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

    width: calc(100% - 38px);
    min-height: 245px;

    margin: -70px auto 0;
    padding: 24px 15px 28px;

    background: var(--white);
    border-radius: 13px;
    box-shadow: var(--shadow);

    text-align: center;
}

.service-info h3 {
    width: 100%;

    margin-bottom: 14px;

    color: var(--plum);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 2.2vw, 39px);
    font-weight: 600;
    line-height: 1.05;
}


/* =========================================
   SERVICE TIME
========================================= */

.service-time {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-bottom: 14px;

    color: var(--light-black);

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

.service-time i {
    color: var(--light-black);

    font-size: 17px;
}


/* =========================================
   SERVICE PRICE
========================================= */

.service-price {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    margin-bottom: 20px;

    line-height: 1;
}

.old-price {
    color: #8b7a87;

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

    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.new-price {
    color: #111111;

    font-size: 23px;
    font-weight: 700;
}


/* =========================================
   SERVICE BUTTON
========================================= */

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

    min-width: 162px;
    min-height: 50px;

    margin-top: auto;
    padding: 11px 25px;

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

    border: 1.5px solid var(--plum);
    border-radius: 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;

    cursor: pointer;

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

.service-btn:hover,
.service-btn:focus-visible {
    color: var(--plum);
    background: var(--white);
    border-color: var(--plum);

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(138, 106, 128, 0.18);

    outline: none;
}

.service-btn:active {
    transform: translateY(0);
}


/* =========================================
   PREMIUM REELS SECTION
========================================= */

.reels-section {
    position: relative;

    width: 100%;

    padding: 110px 24px;

    background: var(--page-background);

    overflow: hidden;
}


/* =========================================
   REELS DECORATION
========================================= */

.reels-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.reels-decoration-one {
    top: -120px;
    left: -110px;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(155, 107, 82, 0.14);
}

.reels-decoration-two {
    right: -150px;
    bottom: -160px;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(63, 41, 56, 0.1);
}


/* =========================================
   REELS CONTAINER
========================================= */

.reels-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================
   REELS HEADING
========================================= */

.reels-heading {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}

.reels-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 18px;
    color: var(--gold);


    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.reels-heading-line {
    display: block;

    width: 45px;
    height: 1px;
     background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold)
        );

   
}

.reels-heading-line:last-child {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.reels-heading h2 {
    margin: 0 0 18px;

    color: #161616;


    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
}

.reels-heading h2 span {
    color: var(--gold);
  
    font-style: italic;
}

.reels-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #756a70;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   REELS GRID
========================================= */

.reels-grid {
    display: grid;

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

    gap: 22px;
}


/* =========================================
   REEL CARD
========================================= */

.reel-card {
    position: relative;

    width: 100%;
    min-width: 0;

    aspect-ratio: 9 / 16;

    overflow: hidden;
    isolation: isolate;

    background: #2b2026;
    border-radius: 28px;

    cursor: pointer;

    box-shadow:
        0 25px 60px rgba(70, 42, 56, 0.16),
        0 8px 20px rgba(70, 42, 56, 0.08);

    transform: translateY(0);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.reel-card:nth-child(even) {
    margin-top: 35px;
}

.reel-card::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 7;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: inherit;

    pointer-events: none;
}

.reel-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 35px 75px rgba(70, 42, 56, 0.22),
        0 12px 28px rgba(70, 42, 56, 0.12);
}


/* =========================================
   VIDEO AND THUMBNAIL
========================================= */

.reel-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

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

    background: #281e23;

    transform: scale(1.01);

    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.reel-card:hover .reel-video {
    transform: scale(1.06);
}

.reel-card.playing .reel-video {
    transform: scale(1.03);
}


/* =========================================
   DARK VIDEO OVERLAY
========================================= */

.reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(20, 13, 17, 0.38) 0%,
            transparent 25%,
            transparent 50%,
            rgba(20, 13, 17, 0.85) 100%
        );

    pointer-events: none;

    transition: opacity 0.3s ease;
}

.reel-card.playing .reel-overlay {
    opacity: 0.6;
}


/* =========================================
   REEL TOP DETAILS
========================================= */

.reel-top {
    position: absolute;
    top: 18px;
    right: 18px;
    left: 18px;
    z-index: 4;

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

.reel-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.reel-duration {
    padding: 9px 14px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================
   REEL PLAY BUTTON
========================================= */

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;

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

    width: 72px;
    height: 72px;

    padding: 0;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    cursor: pointer;

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

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.24),
        inset 0 0 0 4px rgba(255, 255, 255, 0.06);

    transition:
        width 0.3s ease,
        height 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
}

.reel-play-btn:hover,
.reel-play-btn:focus-visible {
    width: 78px;
    height: 78px;

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

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

    outline: none;
}


/* PLAY ICON */

.play-icon {
    display: block;

    width: 0;
    height: 0;

    margin-left: 5px;

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #ffffff;
}


/* PAUSE ICON */

.pause-icon {
    display: none;

    position: relative;

    width: 16px;
    height: 21px;
}

.pause-icon::before,
.pause-icon::after {
    content: "";

    position: absolute;
    top: 0;

    width: 5px;
    height: 21px;

    background: #ffffff;
    border-radius: 3px;
}

.pause-icon::before {
    left: 1px;
}

.pause-icon::after {
    right: 1px;
}

.reel-card.playing .play-icon {
    display: none;
}

.reel-card.playing .pause-icon {
    display: block;
}

.reel-card.playing .reel-play-btn {
    top: 44%;

    width: 54px;
    height: 54px;

    opacity: 0.82;
}

.reel-card.playing:hover .reel-play-btn {
    opacity: 1;
}


/* =========================================
   REEL BOTTOM CONTENT
========================================= */

.reel-content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 4;

    color: #ffffff;

    pointer-events: none;
}

.reel-small-title {
    display: block;

    margin-bottom: 8px;

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

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reel-content h3 {
    margin: 0;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}


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

footer {
    width: 100%;

    padding: 28px 20px;

    color: rgba(255, 255, 255, 0.85);
    background: #2e252a;

    text-align: center;
}


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

@media (max-width: 1050px) {

    .reels-section {
        padding: 90px 24px;
    }

    .reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 28px;
    }

    .reel-card {
        width: 100%;
        max-width: 390px;

        margin-right: auto;
        margin-left: auto;
    }

    .reel-card:nth-child(even) {
        margin-top: 35px;
    }
}


@media (max-width: 991.98px) {

    /* QUICK ACTION BAR */

    .quick-action-bar {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        position: relative;
        z-index: 50;

        width: 100%;
        height: 58px;

        background: var(--page-background);

        border-bottom: 1px solid #eeeeee;
    }

    .quick-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        padding: 6px 8px;

        color: var(--plum);
        background: transparent;

        font-size: 20px;
        font-weight: 900;
        line-height: 1;

        cursor: pointer;
    }

    .quick-action-btn:first-child {
        border-right: 4px solid var(--white);
    }

    .quick-action-btn i {
        color: var(--plum);

        font-size: 25px;
    }


    /* SERVICES */

    .services {
        padding: 50px 16px 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 20px;
        row-gap: 28px;
    }

    .service-image-wrapper {
        height: 270px;
    }

    .service-info {
        width: calc(100% - 30px);
        min-height: 0;

        margin: -55px auto 0;
        padding: 20px 12px;
    }

    .service-info h3 {
        margin-bottom: 10px;
    }

    .service-time {
        margin-bottom: 11px;
    }

    .service-price {
        margin-bottom: 15px;
    }

    .service-btn {
        margin-top: 0;
    }
}


/* =========================================
   PHONE
========================================= */

@media (max-width: 768px) {

    /* QUICK ACTION BAR */

    .quick-action-bar {
        height: 54px;
    }

    .quick-action-btn {
        gap: 7px;

        padding: 4px;

        font-size: 15px;
    }

    .quick-action-btn i {
        font-size: 21px;
    }


    /* SERVICES */

    .services {
        padding: 32px 7px 15px;
    }

    .services-heading {
        margin-bottom: 27px;

        padding: 0 7px;
    }

    .services-label {
        gap: 8px;

        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .heading-line {
        width: 42px;
    }

    .services-heading h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 12px;
        row-gap: 22px;
    }

    .service-image-wrapper {
        height: 166px;

        border-radius: 13px;
    }

    .service-info {
        width: calc(100% - 14px);
        min-height: 0;

        margin: -21px auto 0;
        padding: 9px 6px;

        border-radius: 11px;
    }

    .service-info h3 {
        margin-bottom: 5px;

        font-size: 19px;
        line-height: 1.05;
    }

    .service-time {
        gap: 5px;

        margin-bottom: 6px;

        font-size: 13px;
    }

    .service-time i {
        font-size: 14px;
    }

    .service-price {
        gap: 10px;

        margin-bottom: 8px;
    }

    .old-price {
        font-size: 12px;
    }

    .new-price {
        font-size: 15px;
    }

    .service-btn {
        width: calc(100% - 12px);
        min-width: 0;
        min-height: 36px;
        height: 36px;

        margin-top: 0;
        padding: 5px 8px;

        border-radius: 9px;

        font-size: 16px;
    }


    /* REELS */

    .reels-section {
        padding: 60px 8px;
    }

    .reels-heading {
        margin-bottom: 34px;

        padding: 0 8px;
    }

    .reels-label {
        gap: 8px;

        margin-bottom: 14px;

        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .reels-heading-line {
        width: 36px;
    }

    .reels-heading h2 {
        margin-bottom: 14px;

        font-size: 38px;
    }

    .reels-heading p {
        max-width: 360px;

        font-size: 14px;
        line-height: 1.65;
    }

    .reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        width: 100%;

        gap: 10px;
    }

    .reel-card,
    .reel-card:nth-child(even) {
        width: 100%;
        max-width: none;

        margin: 0;

        border-radius: 16px;

        box-shadow:
            0 14px 30px rgba(70, 42, 56, 0.14);
    }

    .reel-card:hover {
        transform: none;
    }

    .reel-card:hover .reel-video {
        transform: scale(1.01);
    }

    .reel-top {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .reel-number {
        width: 30px;
        height: 30px;

        font-size: 9px;
    }

    .reel-duration {
        padding: 7px 9px;

        font-size: 7px;
        letter-spacing: 0.8px;
    }

    .reel-play-btn {
        width: 51px;
        height: 51px;
    }

    .reel-play-btn:hover,
    .reel-play-btn:focus-visible {
        width: 51px;
        height: 51px;

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

    .reel-card.playing .reel-play-btn {
        width: 42px;
        height: 42px;
    }

    .play-icon {
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 11px;
    }

    .pause-icon {
        width: 13px;
        height: 17px;
    }

    .pause-icon::before,
    .pause-icon::after {
        width: 4px;
        height: 17px;
    }

    .reel-content {
        right: 13px;
        bottom: 14px;
        left: 13px;
    }

    .reel-small-title {
        margin-bottom: 5px;

        font-size: 7px;
        letter-spacing: 1px;
    }

    .reel-content h3 {
        font-size: 16px;
    }
}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 390px) {

    .services {
        padding-right: 5px;
        padding-left: 5px;
    }

    .services-grid {
        column-gap: 10px;
        row-gap: 20px;
    }

    .service-image-wrapper {
        height: 155px;
    }

    .service-info {
        width: calc(100% - 10px);

        margin-top: -19px;
        padding: 8px 4px;
    }

    .service-info h3 {
        margin-bottom: 4px;

        font-size: 17px;
    }

    .service-time {
        margin-bottom: 5px;

        font-size: 11px;
    }

    .service-time i {
        font-size: 12px;
    }

    .service-price {
        gap: 7px;

        margin-bottom: 7px;
    }

    .old-price {
        font-size: 11px;
    }

    .new-price {
        font-size: 14px;
    }

    .service-btn {
        width: calc(100% - 8px);
        min-height: 34px;
        height: 34px;

        padding: 5px;

        font-size: 15px;
    }


    /* REELS */

    .reels-section {
        padding-right: 5px;
        padding-left: 5px;
    }

    .reels-grid {
        gap: 7px;
    }

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

    .reel-card {
        border-radius: 13px;
    }

    .reel-content h3 {
        font-size: 14px;
    }

    .reel-duration {
        display: none;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .quick-action-btn {
        font-size: 12px;
    }

    .quick-action-btn i {
        font-size: 18px;
    }

    .services-grid {
        column-gap: 8px;
        row-gap: 18px;
    }

    .service-image-wrapper {
        height: 145px;
    }

    .service-info {
        width: calc(100% - 8px);

        margin-top: -17px;
        padding: 7px 3px;
    }

    .service-info h3 {
        font-size: 16px;
    }

    .service-time {
        font-size: 10px;
    }

    .old-price {
        font-size: 10px;
    }

    .new-price {
        font-size: 13px;
    }

    .service-btn {
        min-height: 32px;
        height: 32px;

        font-size: 14px;
    }

    .reels-heading h2 {
        font-size: 31px;
    }

    .reel-small-title {
        display: none;
    }

    .reel-play-btn {
        width: 44px;
        height: 44px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================
   VIEW ALL SERVICES BUTTON
========================================= */

.services-view-all {
    display: flex;
    justify-content: center;
    width: 100%;

    /* Space above button */
    margin-top: 25px;

    /* Reduce space below button */
    margin-bottom: 0;
}


.view-all-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    /* SMALLER BUTTON */
    padding: 11px 20px;

    color: #ffffff;
    background: var(--plum, #8A6A80);

    border: 1px solid var(--plum, #8A6A80);
    border-radius: 4px;

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

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.view-all-services-btn i {
    font-size: 12px;

    transition: transform 0.25s ease;
}


.view-all-services-btn:hover {
    color: var(--plum, #8A6A80);
    background: transparent;

    transform: translateY(-2px);
}


.view-all-services-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   REDUCE GAP BETWEEN SERVICES AND REELS
========================================= */

.services {
    padding-bottom: 35px;
}

.reels-section {
    padding-top: 35px;
}


/* =========================================
   PHONE
========================================= */

@media (max-width: 767.98px) {

    .services-view-all {
        margin-top: 20px;
    }

    .view-all-services-btn {
        padding: 10px 18px;

        font-size: 13px;

        gap: 7px;
    }

    .view-all-services-btn i {
        font-size: 11px;
    }

    .services {
        padding-bottom: 25px;
    }

    .reels-section {
        padding-top: 25px;
    }

}


/* =========================================
   UNIFIED VEDAM HEADER
========================================= */
.header {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    min-height: 92px;
    padding: 14px clamp(22px, 4vw, 64px);
    background: var(--page-background);
    border-bottom: 1px solid rgba(138, 106, 128, 0.12);
    box-shadow: 0 4px 18px rgba(138, 106, 128, 0.05);
}
.left-section,.right-section,.contact-info,.social-icons,.nav-menu{display:flex;align-items:center}
.left-section{gap:28px;min-width:0}.logo img{width:auto;height:64px;object-fit:contain}
.contact-info{gap:18px}.contact-info a{display:flex;align-items:center;gap:9px;color:var(--light-black);font-size:13px;font-weight:500;text-decoration:none}
.contact-info .icon{display:inline-flex;align-items:center;justify-content:center;width:31px;height:31px;color:var(--white);background:var(--plum);border-radius:50%;font-size:13px}
.nav-menu{gap:clamp(18px,2.2vw,34px)}.nav-menu a{position:relative;color:var(--black);font-size:13px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;text-decoration:none}
.nav-menu a::after{content:"";position:absolute;left:0;bottom:-7px;width:0;height:1px;background:var(--gold);transition:width .25s ease}.nav-menu a:hover::after{width:100%}
.right-section{gap:20px}.social-icons{gap:12px}.social-icons a{display:inline-flex;align-items:center;justify-content:center;width:35px;height:35px;color:var(--plum);border:1px solid rgba(138, 106, 128,.22);border-radius:50%;font-size:17px;text-decoration:none}
.book-btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 22px;color:var(--white)!important;background:var(--plum);border:1px solid var(--plum);border-radius:10px;font-size:13px;font-weight:700;letter-spacing:.8px;text-decoration:none;cursor:pointer;transition:.25s ease}
.book-btn:hover{color:var(--plum)!important;background:var(--white)}
.hamburger{display:none;position:relative;width:30px;height:23px;cursor:pointer}.hamburger span{position:absolute;left:0;width:100%;height:3px;background:var(--plum);border-radius:3px;transition:.3s}.hamburger span:nth-child(1){top:0}.hamburger span:nth-child(2){top:10px}.hamburger span:nth-child(3){bottom:0}.hamburger.active span:nth-child(1){transform:translateY(10px) rotate(45deg)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:translateY(-10px) rotate(-45deg)}
.mobile-menu{position:fixed;top:0;left:-330px;z-index:12000;width:min(330px,88vw);height:100dvh;padding:92px 24px 28px;background:var(--page-background);box-shadow:18px 0 45px rgba(45,28,38,.2);overflow-y:auto;transition:left .35s ease}.mobile-menu.active{left:0}.mobile-menu>a{display:block;padding:13px 0;color:var(--black);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(138, 106, 128,.1)}.mobile-contact,.mobile-social{display:flex;flex-direction:column;gap:10px;margin-top:22px}.mobile-contact a,.mobile-social a{display:flex;align-items:center;gap:10px;color:var(--light-black);font-size:14px;text-decoration:none}.mobile-menu .book-btn{width:100%;margin-top:24px;border-bottom:1px solid var(--plum)}

/* BOOKING MODAL */
.booking-modal{display:none;position:fixed;inset:0;z-index:15000;align-items:center;justify-content:center;padding:20px;background:rgba(30,20,26,.72);overflow-y:auto}.booking-modal.is-open{display:flex}.booking-content{position:relative;width:min(560px,100%);max-height:calc(100dvh - 40px);overflow-y:auto;padding:38px 34px;background:var(--white);border-radius:18px;box-shadow:0 24px 70px rgba(0,0,0,.25)}.booking-content h2{margin:0 36px 24px 0;color:var(--dark-plum);font-family:"Cormorant Garamond",serif;font-size:clamp(30px,4vw,42px);line-height:1.05}.close-modal{position:absolute;top:17px;right:18px;width:38px;height:38px;color:var(--plum);background:#F4EEF1;border-radius:50%;cursor:pointer}.form-container{display:grid;gap:10px}.form-container label{margin-top:4px;color:var(--black);font-size:13px;font-weight:600}.form-container input,.form-container select,.form-container textarea{width:100%;padding:12px 13px;color:var(--black);background:#fff;border:1px solid #E0D4DA;border-radius:9px;outline:none}.form-container input:focus,.form-container select:focus,.form-container textarea:focus{border-color:var(--plum);box-shadow:0 0 0 3px rgba(138, 106, 128,.1)}.date-time-group{display:grid;grid-template-columns:1fr 1fr;gap:14px}.date-time-group>div{display:grid;gap:10px}.form-container button[type="submit"]{margin-top:12px;padding:14px 20px;color:var(--white);background:var(--plum);border-radius:10px;font-weight:700;cursor:pointer}
body.modal-open{overflow:hidden}
.booking-loader{display:none;position:fixed;inset:0;z-index:16000;align-items:center;justify-content:center;padding:20px;background:rgba(28,18,24,.78)}.booking-loader.show{display:flex}.booking-loader-card{width:min(390px,100%);padding:32px;text-align:center;background:#fff;border-radius:20px}.booking-loader-logo{width:78px;margin:0 auto 16px}.booking-spinner{width:46px;height:46px;margin:0 auto 18px;border:4px solid #EDE3E8;border-top-color:var(--plum);border-radius:50%;animation:booking-spin .8s linear infinite}@keyframes booking-spin{to{transform:rotate(360deg)}}

@media (max-width:1100px){.header{min-height:78px;padding:10px 22px}.logo img{height:54px}.nav-menu,.right-section,.contact-info{display:none}.hamburger{display:block;margin-left:auto}.mobile-menu{display:block}}
@media (max-width:600px){.header{min-height:72px;padding:9px 17px}.logo img{height:49px}.booking-content{padding:32px 20px}.date-time-group{grid-template-columns:1fr}}

/* =========================================
   HEADER RESTORE + REQUESTED COLOURS
========================================= */

/* Original header structure and spacing, recoloured only */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: 0;
    padding: 20px 60px;
    background: var(--plum);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: none;
    position: relative;
    z-index: 999;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.logo img {
    width: auto;
    height: 65px;
    object-fit: contain;
    transition: 0.3s;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
    opacity: 0.82;
}

.contact-info .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    color: var(--plum);
    background: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover {
    color: #ffffff;
    opacity: 0.78;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
    opacity: 0.78;
}

.header .book-btn,
.right-section .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    width: auto;
    padding: 12px 25px;
    color: var(--plum) !important;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.header .book-btn:hover,
.right-section .book-btn:hover {
    color: #ffffff !important;
    background: transparent;
}

.hamburger {
    display: none;
    position: relative;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.4s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9999;
    width: 300px;
    height: 100%;
    padding: 20px;
    background: var(--plum);
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: all 0.5s ease;
}

.mobile-menu.active { left: 0; }

.mobile-menu > a,
.mobile-contact a,
.mobile-social a {
    color: #ffffff;
}

.mobile-menu > a {
    display: block;
    padding: 15px 0;
    border-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-contact,
.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.mobile-contact a,
.mobile-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-decoration: none;
}

.mobile-menu .book-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    color: var(--plum) !important;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    text-align: center;
}

.mobile-menu .book-btn:hover {
    color: #ffffff !important;
    background: transparent;
}

/* Keep the original quick-action design. Only its background follows the page. */
@media (max-width: 991.98px) {
    .quick-action-bar {
        background: var(--page-background);
    }

    .quick-action-bar .quick-action-btn,
    .quick-action-bar .quick-action-btn:hover,
    .quick-action-bar .quick-action-btn:focus {
        min-height: 0;
        width: auto;
        margin: 0;
        border-radius: 0;
        color: var(--plum);
        background: transparent;
        box-shadow: none;
        letter-spacing: 0;
        text-transform: none;
    }

    .quick-action-bar .quick-action-btn:first-child {
        border-right: 4px solid #ffffff;
    }
}

@media (max-width: 1300px) {
    .header { padding: 15px 40px; }
    .logo img { height: 55px; }
    .contact-info a { font-size: 14px; }
    .contact-info .icon { width: 25px; height: 25px; font-size: 13px; }
    .nav-menu a { font-size: 16px; }
    .header .book-btn, .right-section .book-btn { padding: 10px 20px; font-size: 14px; }
    .social-icons a { font-size: 18px; }
}

@media (max-width: 1100px) {
    .header { padding: 15px 30px; }
    .nav-menu, .right-section, .contact-info { display: none; }
    .hamburger { display: block; position: absolute; right: 30px; top: 25px; margin-left: 0; }
    .logo img { height: 50px; }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding: 20px;
    }

    .left-section {
        justify-content: space-between;
        width: 100%;
    }

    .logo img { height: 50px; }
    .hamburger { right: 20px; top: 31px; }
}

/* =========================================
   FINAL PREMIUM HEADER REFINEMENT
   Keeps the existing structure and restores
   a smooth underline hover interaction.
========================================= */
.header {
    min-height: 86px;
    padding: 12px clamp(24px, 4vw, 60px);
    background: linear-gradient(135deg, var(--dark-plum), var(--plum));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 7px 24px rgba(53, 30, 44, 0.16);
}

.header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    pointer-events: none;
}

.header .logo img {
    height: 61px;
}

.header .contact-info a {
    color: rgba(255, 255, 255, 0.94);
}

.header .contact-info .icon {
    color: var(--plum);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,.10);
}

.header .nav-menu a {
    position: relative;
    padding: 7px 0;
    color: #ffffff;
    opacity: .96;
}

.header .nav-menu a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
}

.header .nav-menu a:hover,
.header .nav-menu a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.header .nav-menu a:hover::after,
.header .nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.header .social-icons a {
    color: #ffffff;
    opacity: .94;
    transition: transform .25s ease, opacity .25s ease;
}

.header .social-icons a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}


/* Header contact and social hover underline */
.header .contact-info a,
.header .social-icons a {
    position: relative;
}

.header .contact-info a::after,
.header .social-icons a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width .28s ease;
}

.header .contact-info a:hover::after,
.header .contact-info a:focus-visible::after,
.header .social-icons a:hover::after,
.header .social-icons a:focus-visible::after {
    width: 100%;
}

.header .contact-info a:hover,
.header .contact-info a:focus-visible {
    color: #ffffff;
}

.header .book-btn,
.header .right-section .book-btn {
    padding: 12px 24px;
    color: var(--plum) !important;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(0,0,0,.12);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.header .book-btn:hover,
.header .right-section .book-btn:hover {
    color: var(--plum) !important;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.17);
}

.header .hamburger {
    width: 29px;
    height: 22px;
}

.header .hamburger span {
    height: 3px;
    background: #ffffff;
}

.header .hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.header .hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 1300px) {
    .header {
        min-height: 76px;
        padding: 10px 38px;
    }

    .header .logo img {
        height: 53px;
    }
}

@media (max-width: 1100px) {
    .header {
        min-height: 66px;
        padding: 8px 22px;
    }

    .header .logo img {
        height: 48px;
    }

    .header .hamburger {
        top: 22px;
        right: 24px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
        min-height: 62px;
        padding: 7px 17px;
    }

    .header .left-section {
        width: auto;
    }

    .header .logo img {
        height: 46px;
    }

    .header .hamburger {
        top: 20px;
        right: 18px;
    }
}

/* =========================================
   FINAL REQUESTED HEADER + MOBILE MENU FIX
========================================= */

/* Remove the decorative header line completely. */
.header::after {
    display: none !important;
}

/* Desktop: keep the existing nav hover effect, but make all underlines white. */
.header .nav-menu a::after,
.header .contact-info a::after {
    background: #ffffff !important;
}

/* Desktop: underline only email and phone, never the social icons. */
.header .social-icons a::after {
    display: none !important;
}

@media (max-width: 1100px) {
    /* Compact, polished phone/tablet drawer. */
    .mobile-menu {
        width: min(330px, 88vw);
        height: 100dvh;
        padding: 84px 22px 28px;
        color: var(--plum);
        background: var(--page-background);
        border-right: 1px solid rgba(138, 106, 128, 0.12);
        box-shadow: 18px 0 45px rgba(45, 28, 38, 0.22);
        transition: left 0.35s ease;
    }

    .mobile-menu > a {
        display: flex;
        align-items: center;
        min-height: 54px;
        padding: 12px 4px;
        color: var(--plum);
        border-bottom: 1px solid rgba(138, 106, 128, 0.11);
        font-family: "Cormorant Garamond", serif;
        font-size: 23px;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: 0.3px;
        text-transform: none;
    }

    .mobile-menu > a:hover,
    .mobile-menu > a:focus-visible {
        color: var(--dark-plum);
        background: rgba(138, 106, 128, 0.05);
        outline: none;
    }

    .mobile-contact,
    .mobile-social {
        gap: 5px;
        margin-top: 22px;
        padding-top: 14px;
        border-top: 1px solid rgba(138, 106, 128, 0.12);
    }

    .mobile-contact a,
    .mobile-social a {
        min-height: 44px;
        padding: 8px 4px;
        color: var(--light-black);
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.35;
    }

    .mobile-contact a i,
    .mobile-social a i {
        min-width: 27px;
        color: var(--plum);
        font-size: 17px;
        text-align: center;
    }

    /* Requested: purple Book Now button in the mobile drawer. */
    .mobile-menu .book-btn,
    .mobile-menu .book-btn:hover,
    .mobile-menu .book-btn:focus-visible {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 50px;
        margin-top: 30px;
        padding: 13px 20px;
        color: #ffffff !important;
        background: var(--plum);
        border: 1px solid var(--plum);
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(138, 106, 128, 0.20);
        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        outline: none;
    }

    .mobile-menu .book-btn:hover,
    .mobile-menu .book-btn:focus-visible {
        background: var(--dark-plum);
        border-color: var(--dark-plum);
    }
}

/* =========================================
   MOBILE MENU — FINAL POSITION AND STYLE
========================================= */
@media (max-width: 1100px) {
    /* Move the complete drawer content upward. */
    .mobile-menu {
        padding: 64px 22px 20px;
    }

    /* Main mobile navigation links requested in black. */
    .mobile-menu > a:not(.book-btn) {
        min-height: 48px;
        padding: 9px 4px;
        color: #161616;
    }

    .mobile-menu > a:not(.book-btn):hover,
    .mobile-menu > a:not(.book-btn):focus-visible {
        color: #161616;
        background: rgba(22, 22, 22, 0.045);
    }

    /* Reduce vertical gaps so every item, including the CTA, sits higher. */
    .mobile-contact,
    .mobile-social {
        gap: 2px;
        margin-top: 12px;
        padding-top: 9px;
    }

    .mobile-contact a,
    .mobile-social a {
        min-height: 39px;
        padding: 5px 4px;
    }

    /* Purple rectangular CTA with no curved corners. */
    .mobile-menu .book-btn,
    .mobile-menu .book-btn:hover,
    .mobile-menu .book-btn:focus-visible {
        min-height: 48px;
        margin-top: 14px;
        border-radius: 0;
    }
}

/* =========================================
   BOOKING FORM — REFINED DESIGN
========================================= */
.booking-modal {
    padding: 18px;
    background: rgba(34, 22, 30, 0.76);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.booking-content {
    width: min(590px, 100%);
    max-height: calc(100dvh - 36px);
    padding: 34px 34px 30px;
    background: #fffdfa;
    border: 1px solid rgba(138, 106, 128, 0.12);
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(34, 20, 29, 0.32);
}

.close-modal {
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--plum);
    background: rgba(138, 106, 128, 0.08);
    border: 1px solid rgba(138, 106, 128, 0.12);
    border-radius: 50%;
    font-size: 17px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.close-modal:hover,
.close-modal:focus-visible {
    color: #ffffff;
    background: var(--plum);
    transform: rotate(4deg);
    outline: none;
}

.booking-heading {
    padding-right: 44px;
    margin-bottom: 24px;
}

.booking-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--plum);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.booking-content .booking-heading h2 {
    margin: 0 0 9px;
    color: var(--dark-plum);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 5vw, 46px);
    font-weight: 600;
    line-height: 0.98;
}

.booking-heading p {
    max-width: 480px;
    margin: 0;
    color: #71676d;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.65;
}

.form-container {
    display: grid;
    gap: 15px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-container .form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #30262c;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.form-container .form-field label i {
    width: 15px;
    color: var(--plum);
    font-size: 13px;
    text-align: center;
}

.form-container input,
.form-container select {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    color: #241d21;
    background: #ffffff;
    border: 1px solid #ddd3d8;
    border-radius: 8px;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-container input::placeholder {
    color: #a0969c;
}

.form-container input:hover,
.form-container select:hover {
    border-color: #C3B6D2;
}

.form-container input:focus,
.form-container select:focus {
    background: #fff;
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(138, 106, 128, 0.10);
}

.date-time-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.date-time-group > div {
    display: grid;
    gap: 7px;
}


.form-container .booking-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 52px;
    margin-top: 1px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--plum);
    border: 1px solid var(--plum);
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form-container .booking-submit-btn:hover,
.form-container .booking-submit-btn:focus-visible {
    background: var(--dark-plum);
    box-shadow: 0 9px 20px rgba(138, 106, 128, 0.20);
    transform: translateY(-1px);
    outline: none;
}

.form-container .booking-submit-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

@media (max-width: 600px) {
    .booking-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .booking-content {
        max-height: calc(100dvh - 24px);
        margin: auto 0;
        padding: 28px 18px 20px;
        border-radius: 13px;
    }

    .close-modal {
        top: 12px;
        right: 12px;
        width: 35px;
        height: 35px;
    }

    .booking-heading {
        padding-right: 34px;
        margin-bottom: 19px;
    }

    .booking-content .booking-heading h2 {
        font-size: 35px;
    }

    .booking-heading p {
        font-size: 12px;
        line-height: 1.55;
    }

    .form-container {
        gap: 13px;
    }

    .date-time-group {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .form-container input,
    .form-container select {
        min-height: 47px;
        font-size: 13px;
    }
}


/* =========================================
   FINAL FIX: FIXED SITE HEADER + MOBILE QUICK NAV
   - Header stays fixed on every page.
   - Quick action bar is phone-only and fixed below header.
========================================= */

.header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
}

/* Keep page content below the fixed header. */
body {
    padding-top: 86px;
}

/* Quick navigation is hidden outside phone mode. */
.quick-action-bar {
    display: none !important;
}

@media (max-width: 1300px) {
    body {
        padding-top: 76px;
    }
}

@media (max-width: 1100px) {
    body {
        padding-top: 66px;
    }
}

@media (max-width: 768px) {
    /* Header is 62px high in the phone layout. */
    body {
        padding-top: 116px;
    }

    .quick-action-bar {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: fixed !important;
        top: 62px;
        right: 0;
        left: 0;
        z-index: 9997;
        width: 100%;
        height: 54px;
        margin: 0;
        background: var(--page-background);
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 4px 12px rgba(46, 31, 40, 0.06);
    }

    .quick-action-bar .quick-action-btn,
    .quick-action-bar .quick-action-btn:hover,
    .quick-action-bar .quick-action-btn:focus {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        min-width: 0;
        height: 54px;
        min-height: 54px;
        margin: 0;
        padding: 4px 8px;
        color: var(--plum);
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        font-size: 15px;
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: 0;
        text-transform: none;
        white-space: nowrap;
    }

    .quick-action-bar .quick-action-btn:first-child {
        border-right: 4px solid #ffffff;
    }

    .quick-action-bar .quick-action-btn i {
        flex: 0 0 auto;
        color: var(--plum);
        font-size: 21px;
    }

    .quick-action-bar .quick-action-btn span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* =========================================
   FINAL CONSISTENCY FIX: HEADER NAV + MOBILE QUICK BAR
   ========================================= */

/* Keep desktop navigation typography identical on every page. */
.header .nav-menu,
.header .nav-menu a {
    font-family: "Montserrat", sans-serif !important;
}

.header .nav-menu a {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
}

/* Phone-only quick action bar: smaller, balanced text on both Home and Location pages. */
@media (max-width: 768px) {
    .quick-action-bar .quick-action-btn,
    .quick-action-bar .quick-action-btn:hover,
    .quick-action-bar .quick-action-btn:focus {
        gap: 6px !important;
        padding: 4px 6px !important;
        font-family: "Montserrat", sans-serif !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
    }

    .quick-action-bar .quick-action-btn i {
        font-size: 18px !important;
    }

    .quick-action-bar .quick-action-btn span {
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 380px) {
    .quick-action-bar .quick-action-btn,
    .quick-action-bar .quick-action-btn:hover,
    .quick-action-bar .quick-action-btn:focus {
        gap: 5px !important;
        padding: 4px !important;
        font-size: 12px !important;
    }

    .quick-action-bar .quick-action-btn i {
        font-size: 17px !important;
    }
}


/* =========================================
   HOME PAGE LOAD STABILITY
   Prevents a visible layout flash when returning from the location page.
========================================= */
html,
body {
    background: var(--page-background, #FFF6EB);
}

body.home-page {
    opacity: 1;
    transition: none;
}

body.home-page.page-loading {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    body.home-page {
        transition: none;
    }
}


/* =========================================
   FULL SERVICES PAGE
========================================= */
.services-page { padding: 145px 24px 90px; background: var(--page-background); }
.full-services-container { width: min(1080px, 100%); margin: 0 auto; }
.services-page-hero { text-align: center; margin-bottom: 38px; }
.services-page-kicker,.services-section-kicker { display:flex;align-items:center;justify-content:center;gap:12px;color:var(--gold);font-size:11px;font-weight:700;letter-spacing:2.4px;text-transform:uppercase; }
.services-page-kicker::before,.services-page-kicker::after,.services-section-kicker::before,.services-section-kicker::after { content:"";width:52px;height:1px;background:currentColor;opacity:.55; }
.services-page-hero h1,.full-services-section h2 { margin:7px 0 0;color:var(--black);font-family:"Cormorant Garamond",serif;font-weight:600;line-height:1.05; }
.services-page-hero h1 { font-size:clamp(38px,5vw,62px); }
.full-services-section h2 { font-size:clamp(34px,4vw,50px);text-align:center; }
.services-page-hero p { max-width:680px;margin:14px auto 0;color:#756a70;font-size:15px;line-height:1.75; }
.service-category-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;max-width:620px;margin:0 auto 58px; }
.service-category-card { display:flex;align-items:center;gap:14px;padding:10px;background:#fff;border-radius:14px;box-shadow:0 7px 22px rgba(70,42,56,.09);text-decoration:none;transition:transform .25s ease,box-shadow .25s ease; }
.service-category-card:hover { transform:translateY(-3px);box-shadow:0 13px 28px rgba(70,42,56,.14); }
.service-category-card img { width:92px;height:72px;object-fit:cover;border-radius:10px; }
.service-category-card span { color:var(--plum);font-family:"Cormorant Garamond",serif;font-size:23px;font-weight:600; }
.full-services-section { scroll-margin-top:128px; }
.full-services-section + .full-services-section { margin-top:72px; }
.full-services-heading { margin-bottom:28px; }
.full-services-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px; }
.full-service-card { overflow:hidden;background:#fff;border-radius:14px;box-shadow:0 7px 22px rgba(70,42,56,.08); }
.full-service-image-wrap { position:relative;aspect-ratio:2.05/1;overflow:hidden;background:#eadfd7; }
.full-service-image-wrap img { width:100%;height:100%;object-fit:cover;transition:transform .4s ease; }
.full-service-card:hover .full-service-image-wrap img { transform:scale(1.035); }
.full-service-duration { position:absolute;top:10px;left:10px;display:inline-flex;align-items:center;gap:5px;padding:5px 8px;background:rgba(255,255,255,.95);color:#3d3438;border-radius:999px;font-size:10px;font-weight:600; }
.full-service-body { display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:14px;padding:15px 16px 16px; }
.full-service-copy h3 { margin:0 0 8px;color:var(--plum);font-family:"Cormorant Garamond",serif;font-size:25px;font-weight:600;line-height:1.05; }
.full-service-prices { display:flex;align-items:center;gap:9px;font-size:13px; }
.full-service-old { color:#8a7a84;text-decoration:line-through; }
.full-service-new { color:#171216;font-weight:700; }
.full-service-book { min-width:112px;padding:10px 15px;color:#fff;background:var(--plum);border:1px solid var(--plum);border-radius:5px;font-size:12px;font-weight:600;cursor:pointer;transition:background .2s ease,color .2s ease; }
.full-service-book:hover { color:var(--plum);background:#fff; }
.full-service-book:disabled { opacity:.6;cursor:not-allowed;background:#8d7f87;border-color:#8d7f87;color:#fff; }
@media (max-width:1100px){ .services-page{padding-top:150px;} }
@media (max-width:767px){ .services-page{padding:145px 12px 68px}.services-page-hero{margin-bottom:25px}.services-page-hero h1{font-size:36px}.services-page-hero p{font-size:13px}.service-category-grid{gap:10px;margin-bottom:38px}.service-category-card{flex-direction:column;gap:7px;padding:7px;text-align:center}.service-category-card img{width:100%;height:78px}.service-category-card span{font-size:18px}.full-services-section + .full-services-section{margin-top:50px}.full-services-heading{margin-bottom:18px}.full-services-section h2{font-size:31px}.services-section-kicker{font-size:9px;letter-spacing:1.5px}.services-section-kicker::before,.services-section-kicker::after{width:28px}.full-services-grid{grid-template-columns:1fr;gap:14px}.full-service-card{border-radius:10px}.full-service-body{padding:11px 12px 12px;gap:10px}.full-service-copy h3{font-size:21px;margin-bottom:6px}.full-service-prices{font-size:11px;gap:7px}.full-service-book{min-width:88px;padding:8px 10px;font-size:10px;border-radius:4px}.full-service-duration{top:7px;left:7px;padding:4px 7px;font-size:9px} }
@media (max-width:380px){ .services-page{padding-left:9px;padding-right:9px}.full-service-copy h3{font-size:19px}.full-service-book{min-width:78px;padding:7px 8px} }

/* =========================================
   SERVICES PAGE SPACING FIX
   The fixed header/body padding already reserves the top area,
   so keep the services intro compact instead of adding another large gap.
========================================= */
.services-page {
    padding: 42px 24px 90px !important;
}

.services-page-hero {
    margin-bottom: 26px !important;
}

.services-page-hero p {
    margin-top: 12px !important;
}

.service-category-grid {
    margin-top: 0 !important;
    margin-bottom: 44px !important;
}

@media (max-width: 1100px) {
    .services-page {
        padding-top: 36px !important;
    }
}

@media (max-width: 767px) {
    .services-page {
        padding: 24px 12px 68px !important;
    }

    .services-page-hero {
        margin-bottom: 20px !important;
    }

    .services-page-hero p {
        margin-top: 10px !important;
    }

    .service-category-grid {
        margin-bottom: 32px !important;
    }
}


/* =========================================
   CUSTOMER TESTIMONIALS
========================================= */
.testimonials-section {
    width: 100%;
    padding: 76px 24px 58px;
    background: #ffffff;
    overflow: hidden;
}

.testimonials-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.testimonials-heading {
    max-width: 820px;
    margin: 0 auto 18px;
    text-align: center;
}

.testimonials-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.1px;
}

.testimonials-kicker span {
    width: 66px;
    height: 1px;
    background: var(--gold);
    opacity: 0.75;
}

.testimonials-kicker b {
    font: inherit;
}

.testimonials-heading h2 {
    margin: 0 0 10px;
    color: #161616;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
    line-height: 1.08;
}

.testimonials-heading > p {
    margin: 0;
    color: #756a70;
    font-size: 15px;
    line-height: 1.7;
}

.testimonials-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.testimonials-viewport.dragging {
    cursor: grabbing;
    user-select: none;
}

.testimonials-track {
    display: flex;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonials-viewport.dragging .testimonials-track {
    transition: none;
}

.testimonial-card {
    flex: 0 0 50%;
    min-width: 0;
    padding: 10px 52px 14px;
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 10px;
    color: #ffb400;
    font-size: 21px;
    letter-spacing: 3px;
    line-height: 1;
}

.testimonial-card p {
    max-width: 520px;
    min-height: 112px;
    margin: 0 auto 12px;
    color: #756a70;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-card h3 {
    margin: 0;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
    margin-top: 8px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #cecece;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-dot.active {
    background: var(--plum);
    transform: scale(1.12);
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 46px 18px 40px;
    }

    .testimonials-heading {
        margin-bottom: 8px;
    }

    .testimonials-kicker {
        gap: 10px;
        font-size: 10px;
        letter-spacing: 1.7px;
        white-space: nowrap;
    }

    .testimonials-kicker span {
        width: 34px;
    }

    .testimonials-heading h2 {
        margin-bottom: 8px;
        font-size: clamp(25px, 7vw, 31px);
    }

    .testimonials-heading > p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .testimonial-card {
        flex-basis: 100%;
        padding: 10px 8px 12px;
    }

    .testimonial-stars {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .testimonial-card p {
        min-height: 138px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.75;
    }

    .testimonial-card h3 {
        font-size: 24px;
    }

    .testimonials-dots {
        margin-top: 10px;
    }
}

/* Mobile testimonial heading size */
@media (max-width: 768px) {
    .testimonials-heading h2 {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .testimonials-heading h2 {
        font-size: 25px;
    }
}


/* =========================================
   GLOBAL FLOATING WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;

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

    width: 54px;
    height: 54px;

    color: #ffffff;
    background: var(--plum, #8A6A80);

    border-radius: 50%;

    font-size: 27px;
    text-decoration: none;

    box-shadow: 0 7px 22px rgba(65, 38, 54, 0.30);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(65, 38, 54, 0.36);
    outline: none;
}

@media (max-width: 991.98px) {
    .floating-whatsapp {
        right: 9px;
        bottom: 95px;

        width: 46px;
        height: 46px;

        border-radius: 5px 0 0 5px;

        font-size: 24px;
    }
}

/* =========================================
   UNIFIED SECTION HEADING TYPOGRAPHY
   Keeps the main service/experience headings visually consistent.
========================================= */
.services-heading h2,
.reels-heading h2,
.services-page-hero h1,
.full-services-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.services-label,
.reels-label,
.services-page-kicker,
.services-section-kicker {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Keep the highlighted Self Care wording while matching the same heading size. */
.reels-heading h2 span {
    font-size: inherit;
}

@media (max-width: 768px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .full-services-section h2 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -0.25px;
    }

    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-section-kicker {
        font-size: 10px;
        letter-spacing: 1.8px;
    }
}

@media (max-width: 380px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .full-services-section h2 {
        font-size: 32px;
    }
}


/* =========================================
   SERVICES PAGE INTRO — REFERENCE STYLE
   Keeps all existing content, but matches the clean white wellness-category layout.
========================================= */
.services-category-intro {
    position: relative;
    margin: -10px 0 58px;
    padding: 32px 0 30px;
    background: #ffffff;
    box-shadow: 0 0 0 100vmax #ffffff;
    clip-path: inset(0 -100vmax);
}

.services-category-intro .services-page-hero {
    max-width: 820px;
    margin: 0 auto 26px !important;
    text-align: center;
}

.services-category-intro .services-page-kicker {
    gap: 13px;
    color: var(--gold);
}

.services-category-intro .services-page-kicker::before,
.services-category-intro .services-page-kicker::after {
    width: 36px;
    opacity: 0.8;
}

.services-category-intro .services-page-hero h1 {
    margin-top: 8px;
}

.services-category-intro .services-page-hero p {
    max-width: 760px;
    margin: 12px auto 0 !important;
    color: #756a70;
    font-size: 14px;
    line-height: 1.65;
}

.services-category-intro .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 170px));
    justify-content: center;
    gap: 20px;
    max-width: 430px;
    margin: 0 auto !important;
}

.services-category-intro .service-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.services-category-intro .service-category-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.services-category-intro .service-category-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
}

.services-category-intro .service-category-card span {
    color: #2f2830;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .services-category-intro {
        margin: -4px 0 42px;
        padding: 18px 0 24px;
    }

    .services-category-intro .services-page-hero {
        margin-bottom: 24px !important;
    }

    .services-category-intro .services-page-kicker {
        gap: 10px;
    }

    .services-category-intro .services-page-kicker::before,
    .services-category-intro .services-page-kicker::after {
        width: 34px;
    }

    .services-category-intro .services-page-hero p {
        max-width: 560px;
        font-size: 13px;
        line-height: 1.6;
    }

    .services-category-intro .service-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 420px;
        gap: 16px;
    }

    .services-category-intro .service-category-card {
        gap: 9px;
        padding: 0;
    }

    .services-category-intro .service-category-card img {
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    .services-category-intro .service-category-card span {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .services-category-intro .service-category-grid {
        gap: 12px;
    }

    .services-category-intro .service-category-card img {
        border-radius: 16px;
    }
}


/* =========================================
   SERVICES INTRO — COMPACT SPACING
========================================= */
.services-page {
    padding-top: 16px !important;
}

.services-category-intro {
    margin-top: 0 !important;
    margin-bottom: 44px !important;
    padding-top: 12px !important;
    padding-bottom: 24px !important;
}

.services-category-intro .services-page-hero {
    margin-bottom: 18px !important;
}

.services-category-intro .services-page-hero h1 {
    margin-top: 5px !important;
    font-size: clamp(34px, 3.6vw, 50px) !important;
    line-height: 1.04;
}

.services-category-intro .services-page-kicker {
    font-size: 10px !important;
    letter-spacing: 2.2px !important;
}

@media (max-width: 767px) {
    .services-page {
        padding-top: 10px !important;
    }

    .services-category-intro {
        margin-bottom: 34px !important;
        padding-top: 8px !important;
        padding-bottom: 20px !important;
    }

    .services-category-intro .services-page-hero {
        margin-bottom: 16px !important;
    }

    .services-category-intro .services-page-hero h1 {
        font-size: 30px !important;
    }
}

@media (max-width: 380px) {
    .services-category-intro .services-page-hero h1 {
        font-size: 28px !important;
    }
}

/* =========================================
   FINAL COMPACT SECTION HEADING SYSTEM
   Same typography and deliberately smaller sizing across all pages.
========================================= */
.services-heading h2,
.reels-heading h2,
.services-page-hero h1,
.full-services-heading h2,
.testimonials-heading h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.25px !important;
}

.services-label,
.reels-label,
.services-page-kicker,
.services-section-kicker,
.testimonials-kicker {
    font-family: "Montserrat", sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 2.2px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

/* Preserve the special gold italic words without changing their size. */
.reels-heading h2 span {
    font-size: inherit !important;
}

@media (max-width: 991.98px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 28px !important;
    }

    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 9px !important;
        letter-spacing: 1.8px !important;
    }
}

@media (max-width: 768px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        letter-spacing: 0 !important;
    }

    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }
}

@media (max-width: 380px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 22px !important;
    }
}

/* =========================================
   SERVICES INTRO — FINAL MOBILE ALIGNMENT FIX
   Match the shared heading scale and remove the strip below Quick Nav.
========================================= */
@media (max-width: 991.98px) {
    .services-category-intro .services-page-hero h1 {
        font-size: 28px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.25px !important;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 0 !important;
    }

    .services-category-intro {
        margin-top: 0 !important;
    }

    .services-category-intro .services-page-hero h1 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 380px) {
    .services-category-intro .services-page-hero h1 {
        font-size: 22px !important;
    }
}

/* =========================================
   ABSOLUTE FINAL SECTION HEADING SCALE
   Applied consistently across every main page section.
========================================= */
.services-heading h2,
.reels-heading h2,
.services-page-hero h1,
.services-category-intro .services-page-hero h1,
.full-services-heading h2,
.testimonials-heading h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.25px !important;
}

.reels-heading h2 span {
    font-size: inherit !important;
}

@media (max-width: 991.98px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 480px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 22px !important;
    }
}


/* =========================================
   ABSOLUTE FINAL SECTION EYEBROW SYSTEM
   Keeps every gold uppercase section eyebrow identical across all pages.
   Also removes the visible seam below the fixed Quick Nav.
========================================= */
.services-label,
.reels-label,
.services-page-kicker,
.services-category-intro .services-page-kicker,
.services-section-kicker,
.testimonials-kicker {
    font-family: "Montserrat", sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
}

.testimonials-kicker b {
    font: inherit !important;
}

@media (max-width: 991.98px) {
    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 9px !important;
        letter-spacing: 1.8px !important;
    }
}

@media (max-width: 768px) {
    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }
}

/* Remove the divider/shadow seam directly below the fixed Quick Nav. */
.quick-action-bar {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

#quickActionBarContainer {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Let the white services intro begin immediately below the header/Quick Nav
   on desktop, tablet and mobile instead of exposing the page background strip. */
.services-page {
    padding-top: 0 !important;
}

.services-category-intro {
    margin-top: 0 !important;
}


/* =========================================
   FINAL CLARIFICATION: DESKTOP HEADER SEAM
   Desktop has no Quick Nav. Keep it hidden and remove only
   the visible divider/shadow directly below the fixed header.
========================================= */
@media (min-width: 769px) {
    .quick-action-bar {
        display: none !important;
    }

    #quickActionBarContainer {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .header {
        border-bottom: 0 !important;
        box-shadow: none !important;
    }

    .header::after {
        display: none !important;
    }
}


/* =========================================
   FINAL SERVICES INTRO TOP BREATHING SPACE
   Adds a small white gap below the desktop header and mobile Quick Nav
   without reintroducing a different-colored strip.
========================================= */
.services-category-intro {
    padding-top: 40px !important;
}

@media (max-width: 991.98px) {
    .services-category-intro {
        padding-top: 34px !important;
    }
}

@media (max-width: 768px) {
    .services-category-intro {
        padding-top: 30px !important;
    }
}

@media (max-width: 480px) {
    .services-category-intro {
        padding-top: 28px !important;
    }
}

/* =========================================
   FINAL SERVICE CATEGORY IMAGE SIZE
   Keeps the two category tiles compact on desktop and mobile.
========================================= */
.services-category-intro .service-category-grid {
    grid-template-columns: repeat(2, 150px) !important;
    justify-content: center !important;
    gap: 18px !important;
    max-width: 340px !important;
}

.services-category-intro .service-category-card img {
    width: 150px !important;
    height: 150px !important;
    aspect-ratio: 1 / 1 !important;
}

@media (max-width: 768px) {
    .services-category-intro .service-category-grid {
        grid-template-columns: repeat(2, 125px) !important;
        gap: 14px !important;
        max-width: 280px !important;
    }

    .services-category-intro .service-category-card img {
        width: 125px !important;
        height: 125px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 360px) {
    .services-category-intro .service-category-grid {
        grid-template-columns: repeat(2, 110px) !important;
        gap: 12px !important;
        max-width: 240px !important;
    }

    .services-category-intro .service-category-card img {
        width: 110px !important;
        height: 110px !important;
        border-radius: 14px !important;
    }
}

/* =========================================
   CLEAN LUXURY SITE FOOTER
========================================= */
.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #8A6A80;
    background: #FFF6EB;
    border-top: 1px solid rgba(138, 106, 128, 0.14);
    text-align: center;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    padding: 34px 0 30px;
}

.footer-logo {
    display: block;
    width: 68px;
    height: 68px;
    margin: 0 auto 11px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-copy h2 {
    margin: 0;
    color: #8A6A80;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
}

.footer-brand-copy p {
    margin: 7px 0 0;
    color: #959227;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-top: 24px;
}

.footer-links a {
    color: #8A6A80;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: opacity .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #8A6A80;
    opacity: .65;
    transform: none;
    outline: none;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 22px;
}

.footer-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(138, 106, 128, .82);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact-row a:hover,
.footer-contact-row a:focus-visible {
    color: #8A6A80;
    outline: none;
}

.footer-contact-row i {
    color: #959227;
    font-size: 11px;
}

.footer-contact-separator {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(138, 106, 128, .22);
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: #8A6A80;
    border: 0;
    border-radius: 50%;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: #ffffff;
    background: #8A6A80;
    transform: translateY(-2px);
    opacity: .86;
    outline: none;
}

.footer-socials i {
    font-size: 12px;
}

.footer-bottom {
    display: block;
    width: 100%;
    margin: 0;
    padding: 13px 20px;
    background: #8A6A80;
    border: 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
}

@media (max-width: 600px) {
    .site-footer-inner {
        width: min(100% - 28px, 520px);
        padding: 28px 0 24px;
    }

    .footer-logo {
        width: 58px;
        height: 58px;
        margin-bottom: 9px;
    }

    .footer-brand-copy h2 {
        font-size: 24px;
    }

    .footer-brand-copy p {
        margin-top: 6px;
        font-size: 8px;
        letter-spacing: 1.8px;
    }

    .footer-links {
        gap: 11px 22px;
        margin-top: 20px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 19px;
    }

    .footer-contact-separator {
        display: none;
    }

    .footer-socials {
        margin-top: 15px;
    }

    .footer-bottom {
        padding: 12px 16px;
    }
}

/* =========================================
   ABSOLUTE FINAL HEADER CONSISTENCY
   One exact header size and typography system on every page.
========================================= */
.header {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 clamp(24px, 4vw, 60px) !important;
    font-family: "Montserrat", sans-serif !important;
    box-sizing: border-box !important;
}

.header .left-section,
.header .right-section,
.header .contact-info,
.header .nav-menu,
.header .social-icons {
    font-family: "Montserrat", sans-serif !important;
}

.header .logo img {
    width: auto !important;
    height: 61px !important;
    max-height: 61px !important;
}

.header .contact-info a {
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

.header .nav-menu a {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.8px !important;
}

.header .book-btn,
.header .right-section .book-btn {
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
}

.header .social-icons a {
    font-size: 20px !important;
    line-height: 1 !important;
}

@media (max-width: 1300px) {
    .header {
        height: 76px !important;
        min-height: 76px !important;
        padding: 0 38px !important;
    }

    .header .logo img {
        height: 53px !important;
        max-height: 53px !important;
    }
}

@media (max-width: 1100px) {
    .header {
        height: 66px !important;
        min-height: 66px !important;
        padding: 0 22px !important;
    }

    .header .logo img {
        height: 48px !important;
        max-height: 48px !important;
    }

    .header .hamburger {
        top: 22px !important;
        right: 24px !important;
    }

    .mobile-menu,
    .mobile-menu > a,
    .mobile-contact a,
    .mobile-social a,
    .mobile-menu .book-btn {
        font-family: "Montserrat", sans-serif !important;
    }

    .mobile-menu > a:not(.book-btn) {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        letter-spacing: 0.4px !important;
    }
}

@media (max-width: 768px) {
    .header {
        height: 62px !important;
        min-height: 62px !important;
        padding: 0 17px !important;
    }

    .header .logo img {
        height: 46px !important;
        max-height: 46px !important;
    }

    .header .hamburger {
        top: 20px !important;
        right: 18px !important;
    }
}


/* =========================================
   FINAL EXTRA-COMPACT SERVICE CATEGORY TILES
   Makes Massage Therapies / Couple Massage noticeably smaller.
========================================= */
.services-category-intro .service-category-grid {
    grid-template-columns: repeat(2, 120px) !important;
    gap: 14px !important;
    max-width: 254px !important;
}

.services-category-intro .service-category-card {
    gap: 6px !important;
}

.services-category-intro .service-category-card img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 16px !important;
}

.services-category-intro .service-category-card span {
    font-size: 11.5px !important;
}

@media (max-width: 768px) {
    .services-category-intro .service-category-grid {
        grid-template-columns: repeat(2, 96px) !important;
        gap: 12px !important;
        max-width: 204px !important;
    }

    .services-category-intro .service-category-card {
        gap: 5px !important;
    }

    .services-category-intro .service-category-card img {
        width: 96px !important;
        height: 96px !important;
        border-radius: 14px !important;
    }

    .services-category-intro .service-category-card span {
        font-size: 10.5px !important;
    }
}

@media (max-width: 360px) {
    .services-category-intro .service-category-grid {
        grid-template-columns: repeat(2, 86px) !important;
        gap: 10px !important;
        max-width: 182px !important;
    }

    .services-category-intro .service-category-card img {
        width: 86px !important;
        height: 86px !important;
        border-radius: 13px !important;
    }
}

/* =========================================
   FINAL LUXURY HEADER NAVIGATION TYPOGRAPHY
   Elegant serif navigation for desktop and mobile menus.
========================================= */
.header .nav-menu a {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.55px !important;
    text-transform: none !important;
}

@media (max-width: 1100px) {
    .mobile-menu > a:not(.book-btn) {
        font-family: "Cormorant Garamond", serif !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        line-height: 1.15 !important;
        letter-spacing: 0.55px !important;
        text-transform: none !important;
    }

    .mobile-menu .book-btn {
        font-family: "Montserrat", sans-serif !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.7px !important;
    }
}


/* =========================================
   DESKTOP HERO HEIGHT FIX
   Keeps the wide hero banner compact on desktop
   while preserving the original responsive image on mobile/tablet.
========================================= */
@media (min-width: 992px) {
    .hero {
        height: clamp(540px, 42vw, 600px);
    }

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

/* =========================================
   LUXE LAVENDER HERO — FINAL DESKTOP LAYOUT
   Original Luxe Lavender content, with a cleaner wide-banner proportion.
========================================= */
.hero-desktop-layout {
    display: none;
}

.hero-mobile-artwork {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .hero {
        height: auto !important;
        min-height: 0 !important;
        background: #ffffff;
    }

    .hero-desktop-layout {
        display: grid;
        grid-template-columns: minmax(0, 44%) minmax(0, 56%);
        width: 100%;
        height: clamp(500px, 30vw, 565px);
        overflow: hidden;
        background: #ffffff;
    }

    .hero-copy-panel {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 46px clamp(42px, 6.4vw, 118px) 44px;
        background: #ffffff;
    }

    .hero-kicker {
        margin: 0 0 16px;
        color: #8A6A80;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(20px, 1.45vw, 27px);
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.1px;
    }

    .hero-title {
        margin: 0;
        color: #8A6A80;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(54px, 4vw, 76px);
        font-weight: 500;
        line-height: 0.98;
        letter-spacing: -0.7px;
    }

    .hero-subtitle {
        margin: 26px 0 0;
        color: #6f5968;
        font-family: "Montserrat", sans-serif;
        font-size: clamp(19px, 1.4vw, 26px);
        font-weight: 500;
        line-height: 1.45;
    }

    .hero-offers-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        margin-top: 38px;
        padding: 14px 32px;
        border: 1px solid #8A6A80;
        border-radius: 8px;
        background: #8A6A80;
        color: #ffffff;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .hero-offers-btn:hover {
        background: #ffffff;
        color: #8A6A80;
        transform: translateY(-1px);
    }

    .hero-photo-panel {
        position: relative;
        min-width: 0;
        height: 100%;
        overflow: hidden;
        background: #edf1e7;
    }

    .hero-photo-panel img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-mobile-artwork {
        display: none;
    }
}

@media (min-width: 1400px) {
    .hero-desktop-layout {
        grid-template-columns: minmax(0, 43%) minmax(0, 57%);
    }
}

/* =========================================
   HERO — IMAGE ONLY
   Uses the supplied hero artwork exactly as the hero content.
   No extra copy, buttons, gradients, panels, or overlays.
========================================= */
.hero.hero-image-only {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

.hero-image-only__image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}

/* Hide any legacy hero pieces if old markup is ever cached. */
.hero-image-only .hero-desktop-layout,
.hero-image-only .hero-mobile-artwork,
.hero-image-only .hero-copy-panel,
.hero-image-only .hero-photo-panel,
.hero-image-only .hero-kicker,
.hero-image-only .hero-title,
.hero-image-only .hero-subtitle,
.hero-image-only .hero-offers-btn {
    display: none !important;
}

/* =========================================
   FINAL RESPONSIVE HERO ARTWORK
   Desktop uses hero_section_pc.webp.
   Tablet and mobile use hero_section_mobile.webp.
========================================= */
.hero-image-only__picture {
    display: block !important;
    width: 100% !important;
}

.hero-image-only__picture .hero-image-only__image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* =========================================
   FINAL SERVICES SECTION TOP SPACING
   Brings the Home services heading slightly closer to the hero on
   desktop and tablet without changing typography or mobile styling.
========================================= */
@media (min-width: 992px) {
    .services {
        padding-top: 36px !important;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {
    .services {
        padding-top: 32px !important;
    }
}

/* =========================================
   FINAL MOBILE + TABLET QUICK NAV / HERO GAP
   Adds a small breathing space between the Quick Nav and hero artwork.
   Desktop remains unchanged.
========================================= */
@media (max-width: 991.98px) {
    #heroSectionContainer {
        margin-top: 4px !important;
    }
}


/* =========================================
   FINAL MOBILE SERVICES POSITION TWEAK
   Moves the Home "Services That Transform" section slightly upward
   on phones only by reducing the top section padding.
========================================= */
@media (max-width: 768px) {
    .services {
        padding-top: 24px !important;
    }
}


/* =========================================
   FINAL LARGER SECTION EYEBROW SYSTEM
   Makes every gold uppercase section eyebrow slightly bigger across all pages.
========================================= */
.services-label,
.reels-label,
.services-page-kicker,
.services-category-intro .services-page-kicker,
.services-section-kicker,
.testimonials-kicker {
    font-size: 11px !important;
    letter-spacing: 2.3px !important;
}

@media (max-width: 991.98px) {
    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }
}

@media (max-width: 768px) {
    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 9px !important;
        letter-spacing: 1.7px !important;
    }
}


/* =========================================
   FINAL LARGER SECTION HEADERS — ALL PAGES
   Slightly increases both section eyebrow and section heading sizes
   while preserving the existing fonts, weights and styling.
========================================= */
.services-heading h2,
.reels-heading h2,
.services-page-hero h1,
.services-category-intro .services-page-hero h1,
.full-services-heading h2,
.testimonials-heading h2 {
    font-size: 38px !important;
}

.services-label,
.reels-label,
.services-page-kicker,
.services-category-intro .services-page-kicker,
.services-section-kicker,
.testimonials-kicker {
    font-size: 11px !important;
    letter-spacing: 2.3px !important;
}

@media (max-width: 991.98px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 32px !important;
    }

    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }
}

@media (max-width: 768px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 27px !important;
    }

    .services-label,
    .reels-label,
    .services-page-kicker,
    .services-category-intro .services-page-kicker,
    .services-section-kicker,
    .testimonials-kicker {
        font-size: 9px !important;
        letter-spacing: 1.7px !important;
    }
}

@media (max-width: 480px) {
    .services-heading h2,
    .reels-heading h2,
    .services-page-hero h1,
    .services-category-intro .services-page-hero h1,
    .full-services-heading h2,
    .testimonials-heading h2 {
        font-size: 25px !important;
    }
}

/* Keep the service category labels on one line, including "Couple Massage". */
.services-category-intro .service-category-card span {
    white-space: nowrap !important;
}

/* =========================================
   FINAL DESKTOP NAV + SERVICE BUTTON TYPOGRAPHY
   Desktop nav is slightly larger. View All and Services-page Book Now
   use the same Cormorant Garamond typography as Home service Book Now.
========================================= */
@media (min-width: 1101px) {
    .header .nav-menu a {
        font-size: 19px !important;
    }
}

.view-all-services-btn,
.full-service-book {
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.view-all-services-btn {
    font-size: 20px !important;
}

.full-service-book {
    font-size: 20px !important;
}

@media (max-width: 767px) {
    .full-service-book {
        font-size: 16px !important;
    }
}

/* =========================================
   FINAL SMALLER VIEW ALL BUTTON + HERO BOTTOM GAP
========================================= */
.view-all-services-btn {
    padding: 8px 16px !important;
    font-size: 17px !important;
    gap: 6px !important;
}

.view-all-services-btn i {
    font-size: 10px !important;
}

/* 4px breathing space directly below the hero on all screen sizes. */
#heroSectionContainer {
    margin-bottom: 4px !important;
}

@media (max-width: 767.98px) {
    .view-all-services-btn {
        padding: 7px 14px !important;
        font-size: 15px !important;
        gap: 5px !important;
    }
}


/* =========================================
   FINAL GLOBAL HEADER LOGO SIZE
   Larger and consistent on desktop, tablet and phone.
========================================= */
.header .logo img {
    width: auto !important;
    height: 76px !important;
    max-height: 76px !important;
    object-fit: contain !important;
}

@media (max-width: 1300px) {
    .header .logo img {
        height: 66px !important;
        max-height: 66px !important;
    }
}

@media (max-width: 1100px) {
    .header .logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
}

@media (max-width: 768px) {
    .header .logo img {
        height: 56px !important;
        max-height: 56px !important;
    }
}


/* Booking form title clearly larger than the spa name above it */
.booking-form-subtitle,
.appointment-form-title,
.form-subtitle {
    font-size: 30px !important;
    line-height: 1.1 !important;
}

@media (max-width: 991.98px) {
    .booking-form-subtitle,
    .appointment-form-title,
    .form-subtitle {
        font-size: 26px !important;
        line-height: 1.1 !important;
    }
}


/* 4px spacing directly below the header on tablet and desktop */
@media (min-width: 769px) {
    .header {
        margin-bottom: 4px !important;
    }
}


/* Visible 4px white line directly below the header on tablet and desktop */
@media (min-width: 769px) {
    .header {
        margin-bottom: 0 !important;
        border-bottom: 4px solid #ffffff !important;
        box-sizing: border-box !important;
    }
}


/* =========================================
   FINAL CONSISTENT HEADER LOGO — ALL DEVICES
   Same responsive wordmark sizing across every page; slightly larger on tablet and phone.
========================================= */
.header .logo {
    flex: 0 1 auto !important;
    min-width: 0 !important;
}

.header .logo img {
    display: block !important;
    width: 250px !important;
    height: auto !important;
    max-width: 250px !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

@media (max-width: 1300px) {
    .header .logo img {
        width: 220px !important;
        max-width: 220px !important;
        max-height: 47px !important;
    }
}

@media (max-width: 1100px) {
    .header .logo img {
        width: 205px !important;
        max-width: 205px !important;
        max-height: 44px !important;
    }
}

@media (max-width: 768px) {
    .header .logo img {
        width: min(170px, calc(100vw - 88px)) !important;
        max-width: calc(100vw - 88px) !important;
        max-height: 37px !important;
    }
}

/* =========================================
   HOME SERVICES - DESKTOP COMPACT LAYOUT
   Keeps tablet/mobile unchanged.
========================================= */

@media (min-width: 1201px) {
    .services-container {
        max-width: 1360px;
    }

    .services-grid {
        column-gap: 24px;
        row-gap: 30px;
    }

    .service-image-wrapper {
        height: 285px;
    }

    .service-info {
        width: calc(100% - 30px);
        min-height: 208px;
        margin: -58px auto 0;
        padding: 18px 14px 20px;
    }

    .service-info h3 {
        margin-bottom: 10px;
        font-size: clamp(24px, 1.9vw, 32px);
        line-height: 1.05;
    }

    .service-time {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .service-time i {
        font-size: 16px;
    }

    .service-price {
        gap: 15px;
        margin-bottom: 16px;
    }

    .old-price {
        font-size: 18px;
    }

    .new-price {
        font-size: 21px;
    }

    .service-btn {
        min-width: 148px;
        min-height: 46px;
        padding: 10px 22px;
        font-size: 18px;
        border-radius: 11px;
    }
}

/* HOME SERVICES DESKTOP FINAL COMPACT FIX */
@media (min-width: 1201px) {
    #services .services-container {
        width: 100% !important;
        max-width: 1360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #services .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        column-gap: 24px !important;
        row-gap: 30px !important;
    }

    #services .service-image-wrapper {
        height: 270px !important;
    }

    #services .service-info {
        width: calc(100% - 30px) !important;
        min-height: 205px !important;
        margin: -55px auto 0 !important;
        padding: 17px 13px 19px !important;
    }

    #services .service-info h3 {
        margin-bottom: 9px !important;
        font-size: clamp(24px, 1.75vw, 31px) !important;
        line-height: 1.05 !important;
    }

    #services .service-time {
        margin-bottom: 9px !important;
        font-size: 15px !important;
    }

    #services .service-time i {
        font-size: 16px !important;
    }

    #services .service-price {
        gap: 14px !important;
        margin-bottom: 14px !important;
    }

    #services .old-price {
        font-size: 18px !important;
    }

    #services .new-price {
        font-size: 21px !important;
    }

    #services .service-btn {
        min-width: 146px !important;
        min-height: 44px !important;
        margin-top: auto !important;
        padding: 9px 21px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }
}


/* HOME SERVICES DESKTOP EXTRA SMALLER - v109 */
@media (min-width: 1201px) {
    #services .services-container {
        max-width: 1280px !important;
    }

    #services .services-grid {
        column-gap: 22px !important;
        row-gap: 28px !important;
    }

    #services .service-image-wrapper {
        height: 235px !important;
    }

    #services .service-info {
        width: calc(100% - 24px) !important;
        min-height: 176px !important;
        margin: -46px auto 0 !important;
        padding: 14px 11px 15px !important;
    }

    #services .service-info h3 {
        margin-bottom: 7px !important;
        font-size: clamp(22px, 1.45vw, 27px) !important;
        line-height: 1.03 !important;
    }

    #services .service-time {
        margin-bottom: 7px !important;
        font-size: 13px !important;
    }

    #services .service-time i {
        font-size: 14px !important;
    }

    #services .service-price {
        gap: 12px !important;
        margin-bottom: 11px !important;
    }

    #services .old-price {
        font-size: 16px !important;
    }

    #services .new-price {
        font-size: 19px !important;
    }

    #services .service-btn {
        min-width: 132px !important;
        min-height: 40px !important;
        padding: 8px 18px !important;
        font-size: 17px !important;
        border-radius: 9px !important;
    }
}

/* HOME SERVICES DESKTOP PRICE-TO-BUTTON GAP FIX - v110 */
@media (min-width: 1201px) {
    #services .service-price {
        margin-bottom: 7px !important;
    }

    #services .service-btn {
        margin-top: 0 !important;
    }
}

/* HOME SERVICES DESKTOP BUTTON-BOTTOM GAP FIX - v111 */
@media (min-width: 1201px) {
    #services .service-info {
        min-height: 164px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================
   REEL AUDIO CONTROLS - v51
   Mute/unmute + manual volume slider.
========================================= */
.reel-audio-controls {
    position: absolute;
    right: 18px;
    bottom: 92px;
    left: 18px;
    z-index: 7;

    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 40px;
    padding: 7px 10px;

    background: rgba(24, 17, 21, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.reel-mute-btn {
    flex: 0 0 30px;

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

    width: 30px;
    height: 30px;
    padding: 0;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    cursor: pointer;
}

.reel-mute-btn i {
    font-size: 13px;
    pointer-events: none;
}

.reel-volume-slider {
    flex: 1 1 auto;
    min-width: 0;
    height: 4px;
    margin: 0;

    accent-color: #ffffff;
    cursor: pointer;
}

.reel-volume-slider:focus-visible,
.reel-mute-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .reel-audio-controls {
        right: 9px;
        bottom: 57px;
        left: 9px;
        gap: 6px;

        min-height: 31px;
        padding: 4px 6px;
    }

    .reel-mute-btn {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .reel-mute-btn i {
        font-size: 10px;
    }
}

/* =========================================
   REEL AUDIO CONTROLS - VERTICAL LEFT - v113
   Vertical volume slider positioned on the left side of each reel.
========================================= */
.reel-audio-controls {
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 14px !important;

    width: 46px !important;
    height: 170px !important;
    min-height: 0 !important;

    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 9px 7px !important;
    border-radius: 999px !important;

    transform: translateY(-50%) !important;
}

.reel-volume-slider {
    flex: 0 0 auto !important;
    width: 6px !important;
    min-width: 6px !important;
    height: 112px !important;
    margin: 0 !important;

    writing-mode: vertical-lr;
    direction: rtl;
    cursor: pointer;
}

@media (max-width: 768px) {
    .reel-audio-controls {
        left: 8px !important;
        width: 36px !important;
        height: 132px !important;
        gap: 7px !important;
        padding: 7px 5px !important;
    }

    .reel-volume-slider {
        width: 5px !important;
        min-width: 5px !important;
        height: 86px !important;
    }
}

/* =========================================
   REEL VOLUME POPUP - TAP TO EXPAND - v114
   Keep only the volume icon visible until it is tapped.
========================================= */
.reel-audio-controls {
    width: 46px !important;
    height: 46px !important;
    padding: 7px !important;
    gap: 0 !important;
    overflow: visible !important;
    transition: height 0.22s ease, padding 0.22s ease, gap 0.22s ease !important;
}

.reel-audio-controls .reel-volume-slider {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.18s ease !important;
}

.reel-audio-controls.volume-open {
    height: 170px !important;
    padding: 9px 7px !important;
    gap: 10px !important;
}

.reel-audio-controls.volume-open .reel-volume-slider {
    height: 112px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    .reel-audio-controls {
        width: 36px !important;
        height: 36px !important;
        padding: 5px !important;
    }

    .reel-audio-controls.volume-open {
        height: 132px !important;
        padding: 7px 5px !important;
        gap: 7px !important;
    }

    .reel-audio-controls.volume-open .reel-volume-slider {
        height: 86px !important;
    }
}

/* =========================================
   REEL VOLUME POSITION - ABOVE SMALL LABEL - v115
   Keep the volume icon aligned on the left, directly above the reel kicker.
========================================= */
.reel-audio-controls {
    top: auto !important;
    right: auto !important;
    bottom: 82px !important;
    left: 24px !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .reel-audio-controls {
        bottom: 52px !important;
        left: 13px !important;
    }
}

/* =========================================
   REELS AUDIO - MUTE / UNMUTE ONLY - v116
   No volume slider. Keep the icon just above the reel small label.
========================================= */
.reel-audio-controls {
    top: auto !important;
    right: auto !important;
    bottom: 82px !important;
    left: 24px !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 0 !important;
    padding: 7px !important;
    gap: 0 !important;
    transform: none !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.reel-audio-controls .reel-volume-slider {
    display: none !important;
}

/* Keep the small reel label visible on tablet and mobile. */
@media (max-width: 1100px) {
    .reel-small-title {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .reel-audio-controls {
        bottom: 54px !important;
        left: 13px !important;
        width: 36px !important;
        height: 36px !important;
        padding: 5px !important;
    }

    .reel-small-title {
        display: block !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
        letter-spacing: 1px !important;
    }
}

/* =========================================
   REEL MUTE ICON ALIGNMENT - v117
   Align mute icon with the top number, match its size, and lift it slightly.
========================================= */
.reel-audio-controls {
    left: 18px !important;
    bottom: 90px !important;
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
}

.reel-audio-controls .reel-mute-btn {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .reel-audio-controls {
        left: 10px !important;
        bottom: 62px !important;
        width: 30px !important;
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 !important;
    }

    .reel-audio-controls .reel-mute-btn {
        flex: 0 0 30px !important;
        width: 30px !important;
        height: 30px !important;
    }
}

/* =========================================
   REEL CONTENT LEFT ALIGN WITH MUTE ICON - v118
   Align the bottom text block vertically with the mute/unmute icon.
========================================= */
.reel-content {
    left: 18px !important;
}

@media (max-width: 768px) {
    .reel-content {
        left: 10px !important;
    }
}

/* =========================================
   FINAL SMALL RESPONSIVE TWEAK - v119
   Mobile mute icon slightly lower; Home service Book Now text slightly larger.
========================================= */

/* Desktop: slightly larger Home service Book Now text. */
@media (min-width: 1201px) {
    #services .service-btn {
        font-size: 18px !important;
    }
}

/* Tablet: slightly larger Home service Book Now text. */
@media (min-width: 769px) and (max-width: 1200px) {
    #services .service-btn {
        font-size: 21px !important;
    }
}

/* Mobile: move mute/unmute icon slightly down and enlarge Book Now text. */
@media (max-width: 768px) {
    .reel-audio-controls {
        bottom: 58px !important;
    }

    #services .service-btn {
        font-size: 17px !important;
    }
}

@media (max-width: 390px) {
    #services .service-btn {
        font-size: 16px !important;
    }
}

@media (max-width: 360px) {
    #services .service-btn {
        font-size: 15px !important;
    }
}

/* =========================================
   APPOINTMENT FORM TITLE +50% - v120
   Applied across desktop, tablet and mobile.
========================================= */
.booking-form-subtitle,
.appointment-form-title,
.form-subtitle {
    font-size: 45px !important;
    line-height: 1.1 !important;
}

@media (max-width: 991.98px) {
    .booking-form-subtitle,
    .appointment-form-title,
    .form-subtitle {
        font-size: 39px !important;
        line-height: 1.1 !important;
    }
}

/* =========================================
   APPOINTMENT FORM TITLE - MOBILE SINGLE LINE - v123
   Keep the title on one line on phones.
========================================= */
@media (max-width: 480px) {
    .appointment-form-title,
    .form-subtitle {
        font-size: 36px !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
    }
}


/* Admin-managed media empty states */
.site-logo-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 700;
    letter-spacing: .04em;
    color: #6f4a64;
}

.service-image-placeholder,
.full-service-image-placeholder,
.service-category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f8f1f5, #eee3eb);
    color: #755a6e;
    text-align: center;
}

.service-image-placeholder i,
.full-service-image-placeholder i,
.service-category-image-placeholder i {
    font-size: 34px;
    opacity: .72;
}

.service-image-placeholder span,
.full-service-image-placeholder span,
.service-category-image-placeholder small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-category-image-placeholder {
    position: absolute;
    inset: 0;
}

.booking-loader-logo-slot[hidden],
.footer-logo[hidden] {
    display: none !important;
}

.booking-loader-logo-slot img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 70px;
    margin: 0 auto 12px;
    object-fit: contain;
}
