:root {
    --gold: #b8872c;
    --gold-light: #d7ae5a;
    --gold-soft: #ead6a8;

    --black: #11110f;
    --black-soft: #191815;

    --ivory: #f8f5ee;
    --beige: #eee8dc;
    --white: #ffffff;

    --text: #24231f;
    --muted: #77736a;
    --border: #e6dfd2;

    --success: #2f7b52;
    --danger: #a33a32;

    --sidebar-width: 290px;

    --shadow:
        0 20px 60px rgba(35, 27, 12, 0.08);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(circle at top left,
            rgba(215, 174, 90, 0.08),
            transparent 30%),
        var(--ivory);
}


/* =========================================================
   APP
   ========================================================= */

.ganieve-app {
    min-height: 100vh;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.ganieve-sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--sidebar-width);

    background:
        linear-gradient(180deg,
            #11110f 0%,
            #171612 100%);

    color: #fff;

    z-index: 1000;

    overflow-y: auto;

    border-right:
        1px solid rgba(215, 174, 90, 0.18);
}

.sidebar-inner {
    min-height: 100%;
    padding: 30px 22px;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-wrapper {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 8px 10px 26px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.logo-wrapper a {
    display: block;
}

.ganieve-logo {
    width: 190px;
    max-width: 100%;
    height: auto;

    display: block;
}


/* =========================================================
   SIDEBAR SECTION
   ========================================================= */

.sidebar-section {
    margin-top: 28px;
}

.sidebar-label {
    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.48);
}


/* =========================================================
   BOOKING STEPS
   ========================================================= */

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.booking-step {
    display: flex;

    gap: 12px;

    padding: 12px;

    border-radius: 12px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.booking-step.active {
    background:
        linear-gradient(135deg,
            rgba(184, 135, 44, 0.23),
            rgba(215, 174, 90, 0.08));

    border:
        1px solid rgba(215, 174, 90, 0.18);
}

.step-number {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.06);

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 10px;
    font-weight: 700;
}

.booking-step.active .step-number {
    background: var(--gold);
    color: #fff;
}

.booking-step strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
    font-weight: 600;
}

.booking-step small {
    display: block;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 11px;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.summary-card {
    padding: 16px;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

.summary-service {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 17px;
}

.summary-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(184, 135, 44, 0.16);

    color: var(--gold-light);
}

.summary-service span {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.summary-service strong {
    display: block;

    color: #fff;

    font-size: 13px;
}

.summary-row {
    padding: 10px 0;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.summary-key {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 11px;
}

.summary-row strong {
    color: #fff;

    font-size: 11px;

    text-align: right;
}

.summary-divider {
    height: 1px;

    margin: 12px 0;

    background:
        rgba(255, 255, 255, 0.07);
}

.summary-heading {
    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.customer-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customer-summary span {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.customer-summary strong {
    display: block;

    color: #fff;

    font-size: 11px;

    word-break: break-word;
}


/* =========================================================
   SIDEBAR FOOTER
   ========================================================= */

.sidebar-footer {
    margin-top: auto;

    padding-top: 28px;
}

.sidebar-footer span {
    display: block;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 11px;
}

.sidebar-footer small {
    display: block;

    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.3);

    font-size: 10px;
}


/* =========================================================
   MAIN
   ========================================================= */

.ganieve-main {
    min-height: 100vh;

    margin-left: var(--sidebar-width);
}


/* =========================================================
   HEADER
   ========================================================= */

.ganieve-header {
    height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 42px;

    background:
        rgba(248, 245, 238, 0.88);

    border-bottom:
        1px solid rgba(35, 27, 12, 0.07);

    backdrop-filter: blur(15px);

    position: sticky;

    top: 0;

    z-index: 900;
}

.header-breadcrumb {
    color: var(--muted);

    font-size: 12px;
}

.header-breadcrumb span::before {
    content: "✦";

    margin-right: 7px;

    color: var(--gold);
}

.header-home {
    color: var(--text);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.header-home:hover {
    color: var(--gold);
}


/* =========================================================
   CONTENT
   ========================================================= */

.ganieve-content {
    max-width: 1380px;

    margin: 0 auto;

    padding: 20px 42px 70px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.page-eyebrow {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.page-title {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(36px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 600;

    color: var(--black);
}

.page-description {
    max-width: 680px;

    margin-top: 16px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   ALERT
   ========================================================= */

.alert {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 13px;
}

.alert-icon {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 24px;

    border-radius: 50%;

    font-weight: 700;
}

.alert-success {
    background: #eef8f2;
    color: #276842;
}

.alert-success .alert-icon {
    background: #d7efdf;
}

.alert-error {
    background: #fdf0ef;
    color: #9a3931;
}

.alert-error .alert-icon {
    background: #f8d7d4;
}


/* =========================================================
   RESPONSIVE SIDEBAR
   ========================================================= */

/* =========================================
   MOBILE HAMBURGER BUTTON
   ========================================= */

.mobile-menu-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #11110F;
    transition: all 0.25s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
}

/* Optional hamburger animation */
.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
    display: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --sidebar-width: 255px;
    }

    .ganieve-content {
        padding-left: 28px;
        padding-right: 28px;
    }

    .ganieve-header {
        padding: 0 28px;
    }

    .ganieve-logo {
        width: 165px;
    }
}


@media (max-width: 850px) {

    .ganieve-sidebar {
        transform: translateX(-100%);

        transition:
            transform 0.3s ease;
    }

    .ganieve-sidebar.open {
        transform: translateX(0);
    }

    .ganieve-main {
        margin-left: 0;
    }

    .mobile-menu-button {
        display: inline-flex;

        align-items: center;
        justify-content: center;
    }

    .sidebar-overlay {
        position: fixed;

        inset: 0;

        z-index: 950;

        background:
            rgba(0, 0, 0, 0.45);

        backdrop-filter:
            blur(2px);
    }

    .sidebar-overlay.active {
        display: block;
    }

    .ganieve-header {
        height: 66px;
    }
}


@media (max-width: 600px) {

    .ganieve-content {
        padding:
            30px 17px 50px;
    }

    .ganieve-header {
        padding: 0 17px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-description {
        font-size: 14px;
    }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    margin-top: 42px;
}

.service-card {
    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(43, 31, 10, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 22px 50px rgba(43, 31, 10, 0.11);
}

.service-card-image {
    position: relative;

    display: block;

    height: 290px;

    overflow: hidden;

    background:
        var(--beige);
}

.service-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform:
        scale(1.06);
}

.service-card-arrow {
    position: absolute;

    right: 16px;
    top: 16px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(17, 17, 15, 0.75);

    color: #fff;

    backdrop-filter:
        blur(8px);

    font-size: 18px;
}

.service-card-body {
    padding: 22px;
}

.service-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.service-card-category {
    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.13em;
}

.service-card-mark {
    color: var(--gold-light);
}

.service-card h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 26px;

    font-weight: 600;

    line-height: 1.2;
}

.service-card p {
    min-height: 48px;

    margin: 12px 0 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.service-card-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 16px;

    border-top:
        1px solid var(--border);
}

.service-card-footer>span {
    color: var(--muted);

    font-size: 12px;
}

.service-card-footer a {
    color: var(--black);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.service-card-footer a:hover {
    color: var(--gold);
}


/* SERVICE CARD RESPONSIVE */

@media (max-width: 1050px) {

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: 240px;
    }

}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page {
    width: 100%;
}


/* =========================================================
   SERVICES HERO
   ========================================================= */

.services-hero {
    min-height: 430px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(280px, 0.75fr);

    gap: 40px;

    align-items: center;

    padding:
        42px 48px;

    margin-bottom: 70px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #11110f 0%,
            #1b1813 65%,
            #272016 100%);

    overflow: hidden;

    position: relative;

    box-shadow:
        0 28px 70px rgba(22, 17, 8, 0.14);
}


.services-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -150px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(215, 174, 90, 0.17),
            transparent 68%);
}


.hero-copy {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


.services-hero .page-eyebrow {
    color:
        var(--gold-light);
}


.services-hero .page-title {
    color: #fff;

    font-size:
        clamp(42px, 5vw, 70px);
}


.services-hero .page-title em {
    color:
        var(--gold-light);

    font-style: normal;
}


.services-hero .page-description {
    color:
        rgba(255, 255, 255, 0.62);

    max-width: 570px;
}


.hero-meta {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 28px;
}


.hero-meta-item {
    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-meta-icon {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--gold-light);

    background:
        rgba(215, 174, 90, 0.1);

    border:
        1px solid rgba(215, 174, 90, 0.2);
}


.hero-meta-item strong {
    display: block;

    color: #fff;

    font-size: 12px;
}


.hero-meta-item small {
    display: block;

    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 10px;
}


.hero-meta-line {
    width: 1px;
    height: 32px;

    background:
        rgba(255, 255, 255, 0.12);
}


/* =========================================================
   HERO ART
   ========================================================= */

.services-hero-art {
    position: relative;

    min-height: 340px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.gold-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(215, 174, 90, 0.55);
}


.ring-one {
    width: 245px;
    height: 245px;

    transform:
        rotate(22deg);
}


.ring-two {
    width: 175px;
    height: 175px;

    transform:
        rotate(-35deg);

    border-color:
        rgba(215, 174, 90, 0.35);
}


.hero-art-center {
    width: 112px;
    height: 112px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #d7ae5a,
            #9b6c18);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25);

    position: relative;

    z-index: 2;
}


.hero-art-center span {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: #fff;

    font-size: 54px;

    font-weight: 600;
}


.hero-art-caption {
    position: absolute;

    bottom: 0;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    gap: 10px;

    white-space: nowrap;

    color:
        rgba(255, 255, 255, 0.28);

    font-size: 8px;

    letter-spacing: 0.22em;
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.service-category-section {
    margin-bottom: 72px;
}


.category-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}


.category-title {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 46px);

    font-weight: 600;

    line-height: 1.1;

    color: var(--black);
}


.category-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding-bottom: 8px;

    color: var(--text);

    border-bottom:
        1px solid var(--gold);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.category-link:hover {
    color: var(--gold);

    gap: 12px;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.premium-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.premium-service-card {
    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(48, 35, 10, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.premium-service-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 60px rgba(48, 35, 10, 0.12);

    border-color:
        rgba(184, 135, 44, 0.28);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.premium-service-image {
    position: relative;

    display: block;

    height: 280px;

    overflow: hidden;

    background:
        var(--beige);

    text-decoration: none;
}


.premium-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.premium-service-card:hover .premium-service-image img {
    transform:
        scale(1.07);
}


.service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 42%,
            rgba(17, 17, 15, 0.52) 100%);
}


.service-arrow {
    position: absolute;

    right: 16px;
    top: 16px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(17, 17, 15, 0.72);

    backdrop-filter:
        blur(9px);

    font-size: 18px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.premium-service-card:hover .service-arrow {
    background:
        var(--gold);

    transform:
        rotate(45deg);
}


.service-image-label {
    position: absolute;

    left: 17px;
    bottom: 15px;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 9px;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.premium-service-content {
    padding: 22px;
}


.premium-service-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}


.service-number {
    color:
        var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;
}


.service-category-name {
    color:
        var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.11em;
}


.premium-service-content h3 {
    margin: 0;

    color:
        var(--black);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    line-height: 1.16;

    font-weight: 600;
}


.premium-service-content p {
    min-height: 47px;

    margin:
        11px 0 20px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE FOOTER
   ========================================================= */

.premium-service-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 16px;

    border-top:
        1px solid var(--border);
}


.service-duration {
    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--muted);

    font-size: 11px;
}


.duration-icon {
    color:
        var(--gold);

    font-size: 16px;
}


.service-explore {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--black);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.service-explore:hover {
    color:
        var(--gold);

    gap: 11px;
}


/* =========================================================
   EMPTY
   ========================================================= */

.empty-services {
    padding: 50px 30px;

    text-align: center;

    border:
        1px dashed var(--border);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.5);
}


.empty-services span {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 50%;

    background:
        rgba(184, 135, 44, 0.1);

    color:
        var(--gold);
}


.empty-services h3 {
    margin:
        5px 0 8px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;
}


.empty-services p {
    margin: 0;

    color:
        var(--muted);

    font-size: 13px;
}


.empty-page {
    margin-top: 30px;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.services-bottom-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-top: 20px;

    padding: 46px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #ede4d4,
            #f8f3eb);

    border:
        1px solid rgba(184, 135, 44, 0.18);
}


.services-bottom-cta h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 600;
}


.services-bottom-cta h2 em {
    color:
        var(--gold);

    font-style: normal;
}


.services-bottom-cta p {
    margin:
        12px 0 0;

    color:
        var(--muted);

    font-size: 14px;
}


.cta-symbol {
    width: 78px;
    height: 78px;

    flex: 0 0 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold);

    border:
        1px solid rgba(184, 135, 44, 0.35);

    font-size: 28px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .services-hero {
        grid-template-columns: 1fr 0.55fr;

        padding: 35px;
    }

    .premium-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 800px) {

    .services-hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 35px 28px;
    }

    .services-hero-art {
        min-height: 260px;
    }

    .category-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }

    .services-bottom-cta {
        padding: 34px 28px;
    }

}


@media (max-width: 620px) {

    .services-hero {
        margin-bottom: 50px;

        border-radius: 18px;

        padding: 30px 22px;
    }

    .services-hero .page-title {
        font-size: 40px;
    }

    .hero-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }

    .hero-meta-line {
        display: none;
    }

    .services-hero-art {
        min-height: 220px;
    }

    .ring-one {
        width: 175px;
        height: 175px;
    }

    .ring-two {
        width: 125px;
        height: 125px;
    }

    .hero-art-center {
        width: 82px;
        height: 82px;
    }

    .hero-art-center span {
        font-size: 40px;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
    }

    .premium-service-image {
        height: 255px;
    }

    .services-bottom-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}

/* =========================================================
   CATEGORY PAGE
   ========================================================= */

.category-page {
    width: 100%;
}


/* =========================================================
   BACK LINK
   ========================================================= */

.category-back {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.category-back span {
    color: var(--gold);

    font-size: 16px;
}

.category-back:hover {
    color: var(--gold);

    gap: 11px;
}


/* =========================================================
   CATEGORY HERO
   ========================================================= */

.category-hero {
    min-height: 390px;

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(260px, 0.75fr);

    align-items: center;

    gap: 40px;

    padding:
        48px 52px;

    margin-bottom: 65px;

    overflow: hidden;

    border-radius: 23px;

    background:
        linear-gradient(135deg,
            #11110f 0%,
            #191712 58%,
            #292116 100%);

    box-shadow:
        0 28px 70px rgba(26, 19, 7, 0.14);
}

.category-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -240px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(215, 174, 90, 0.18),
            transparent 68%);
}

.category-hero::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    border:
        1px solid rgba(215, 174, 90, 0.14);
}


.category-hero-content {
    position: relative;

    z-index: 2;
}

.category-hero-content .page-eyebrow {
    color: var(--gold-light);
}

.category-hero-content .page-title {
    color: #fff;

    max-width: 700px;

    text-transform: none;
}

.category-hero-content .page-description {
    color:
        rgba(255, 255, 255, 0.61);

    max-width: 580px;
}


/* =========================================================
   CATEGORY STATS
   ========================================================= */

.category-stats {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 28px;
}

.category-stat {
    display: flex;

    flex-direction: column;
}

.category-stat strong {
    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 29px;

    line-height: 1;
}

.category-stat span {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.43);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.category-stat-divider {
    width: 1px;
    height: 34px;

    background:
        rgba(255, 255, 255, 0.12);
}


/* =========================================================
   CATEGORY ART
   ========================================================= */

.category-hero-art {
    min-height: 300px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}


.category-art-circle {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(215, 174, 90, 0.38);
}

.circle-large {
    width: 245px;
    height: 245px;

    transform:
        rotate(24deg);
}

.circle-medium {
    width: 190px;
    height: 190px;

    border-color:
        rgba(215, 174, 90, 0.25);

    transform:
        rotate(-30deg);
}

.circle-small {
    width: 135px;
    height: 135px;

    border-color:
        rgba(215, 174, 90, 0.19);
}


.category-art-center {
    width: 90px;
    height: 90px;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #d7ae5a,
            #9c6c1b);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.3);
}

.category-art-center span {
    color: #fff;

    font-size: 30px;
}


/* =========================================================
   SERVICES HEADING
   ========================================================= */

.category-services-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.category-services-heading h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(29px, 4vw, 45px);

    line-height: 1.1;

    font-weight: 600;
}

.category-services-heading .page-eyebrow {
    margin-bottom: 8px;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.category-empty {
    padding:
        65px 30px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.55);

    border:
        1px dashed var(--border);

    border-radius: 18px;
}

.category-empty-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 15px;

    border-radius: 50%;

    color: var(--gold);

    background:
        rgba(184, 135, 44, 0.1);

    font-size: 22px;
}

.category-empty h3 {
    margin:
        0 0 8px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 30px;
}

.category-empty p {
    margin:
        0 auto 22px;

    color: var(--muted);

    font-size: 13px;
}

.category-empty-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        12px 20px;

    border-radius: 8px;

    background:
        var(--black);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease;
}

.category-empty-button:hover {
    background:
        var(--gold);
}


/* =========================================================
   BOTTOM SECTION
   ========================================================= */

.category-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-top: 70px;

    padding:
        42px 46px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #eee5d6,
            #f8f3ea);

    border:
        1px solid rgba(184, 135, 44, 0.17);
}

.category-bottom h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(31px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 600;
}

.category-bottom h2 em {
    color: var(--gold);

    font-style: normal;
}

.category-bottom p {
    max-width: 550px;

    margin:
        11px 0 0;

    color: var(--muted);

    font-size: 14px;
}

.category-bottom-mark {
    width: 82px;
    height: 82px;

    flex: 0 0 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(184, 135, 44, 0.35);

    border-radius: 50%;
}

.category-bottom-mark span {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: var(--gold);

    font-size: 42px;
}


/* =========================================================
   CATEGORY RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .category-hero {
        grid-template-columns: 1fr 0.55fr;

        padding:
            40px 35px;
    }

    .category-art-circle.circle-large {
        width: 200px;
        height: 200px;
    }

    .category-art-circle.circle-medium {
        width: 155px;
        height: 155px;
    }

    .category-art-circle.circle-small {
        width: 110px;
        height: 110px;
    }

}


@media (max-width: 760px) {

    .category-hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding:
            38px 28px;
    }

    .category-hero-art {
        min-height: 230px;
    }

    .category-services-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }

    .category-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding:
            35px 28px;
    }

}


@media (max-width: 520px) {

    .category-hero {
        padding:
            30px 21px;

        border-radius: 18px;
    }

    .category-hero-content .page-title {
        font-size: 39px;
    }

    .category-stats {
        gap: 15px;
    }

    .category-stat strong {
        font-size: 25px;
    }

    .category-stat span {
        font-size: 8px;
    }

    .category-hero-art {
        min-height: 190px;
    }

    .category-art-circle.circle-large {
        width: 160px;
        height: 160px;
    }

    .category-art-circle.circle-medium {
        width: 125px;
        height: 125px;
    }

    .category-art-circle.circle-small {
        width: 90px;
        height: 90px;
    }

    .category-art-center {
        width: 68px;
        height: 68px;
    }

    .category-art-center span {
        font-size: 23px;
    }

}

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.service-detail-page {
    width: 100%;
}


/* =========================================================
   BACK
   ========================================================= */

.service-detail-back {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 26px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.service-detail-back span {
    color: var(--gold);

    font-size: 16px;
}

.service-detail-back:hover {
    color: var(--gold);

    gap: 12px;
}


/* =========================================================
   HERO
   ========================================================= */

.service-detail-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr) minmax(0, 1.05fr);

    min-height: 570px;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid var(--border);

    box-shadow:
        0 25px 70px rgba(45, 31, 7, 0.08);

    margin-bottom: 80px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.service-detail-image {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    background:
        var(--beige);
}

.service-detail-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.service-detail-hero:hover .service-detail-image img {
    transform:
        scale(1.025);
}

.service-detail-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(17, 17, 15, 0.55) 100%);
}

.service-detail-image-label {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: #fff;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.18em;
}

.service-detail-image-label span:last-child {
    color:
        rgba(255, 255, 255, 0.58);

    letter-spacing: 0.12em;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.service-detail-hero-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        65px 65px 60px;
}

.service-detail-hero-content .page-eyebrow {
    margin-bottom: 13px;
}

.service-detail-title {
    margin: 0;

    max-width: 680px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(40px, 4vw, 62px);

    font-weight: 600;

    line-height: 1.02;

    color:
        var(--black);
}

.service-detail-intro {
    max-width: 620px;

    margin:
        23px 0 0;

    color:
        var(--muted);

    font-size: 15px;

    line-height: 1.85;
}

.service-detail-intro p {
    margin:
        0 0 14px;
}

.service-detail-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   META
   ========================================================= */

.service-detail-meta {
    display: flex;

    align-items: center;

    gap: 23px;

    margin-top: 35px;

    padding:
        20px 0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.service-meta-item {
    display: flex;

    align-items: center;

    gap: 11px;
}

.service-meta-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--gold);

    background:
        rgba(184, 135, 44, 0.09);

    border:
        1px solid rgba(184, 135, 44, 0.2);
}

.service-meta-item span {
    color:
        var(--muted);

    font-size: 10px;
}

.service-meta-item strong {
    display: block;

    margin-top: 3px;

    color:
        var(--black);

    font-size: 12px;
}

.service-meta-divider {
    width: 1px;
    height: 35px;

    background:
        var(--border);
}


/* =========================================================
   ACTION
   ========================================================= */

.service-detail-actions {
    margin-top: 30px;
}

.service-book-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding:
        15px 22px;

    border-radius: 9px;

    background:
        var(--black);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        gap 0.25s ease;
}

.service-book-button span {
    color:
        var(--gold-light);

    font-size: 17px;
}

.service-book-button:hover {
    background:
        var(--gold);

    transform:
        translateY(-2px);

    gap: 19px;
}

.service-detail-actions p {
    margin:
        10px 0 0;

    color:
        var(--muted);

    font-size: 11px;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.service-detail-info {
    margin-bottom: 80px;
}

.service-info-heading {
    max-width: 720px;

    margin-bottom: 30px;
}

.service-info-heading h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(33px, 4vw, 50px);

    font-weight: 600;

    line-height: 1.1;
}

.service-info-heading h2 em {
    color:
        var(--gold);

    font-style: normal;
}


/* =========================================================
   INFO GRID
   ========================================================= */

.service-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.service-info-card {
    position: relative;

    min-height: 250px;

    padding: 27px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.65);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-info-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(184, 135, 44, 0.28);

    box-shadow:
        0 16px 40px rgba(49, 36, 11, 0.07);
}

.service-info-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color:
        rgba(184, 135, 44, 0.3);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.service-info-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 12px;

    color:
        var(--gold);

    background:
        rgba(184, 135, 44, 0.09);

    font-size: 20px;
}

.service-info-card h3 {
    margin:
        0 0 10px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 600;
}

.service-info-card p {
    margin: 0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BOOKING CTA
   ========================================================= */

.service-booking-cta {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    padding:
        35px 40px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #ebe1d0,
            #f8f2e8);

    border:
        1px solid rgba(184, 135, 44, 0.18);
}

.service-booking-cta-mark {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(184, 135, 44, 0.35);

    color:
        var(--gold);

    font-size: 22px;
}

.service-booking-cta-content .page-eyebrow {
    margin-bottom: 7px;
}

.service-booking-cta-content h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.1;

    font-weight: 600;
}

.service-booking-cta-content h2 em {
    color:
        var(--gold);

    font-style: normal;
}

.service-booking-cta-content p {
    margin:
        8px 0 0;

    color:
        var(--muted);

    font-size: 13px;
}

.service-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding:
        14px 20px;

    border-radius: 8px;

    background:
        var(--black);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        gap 0.2s ease;
}

.service-cta-button:hover {
    background:
        var(--gold);

    gap: 15px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .service-detail-hero {
        grid-template-columns:
            1fr 1fr;
    }

    .service-detail-hero-content {
        padding:
            45px 40px;
    }

    .service-detail-title {
        font-size:
            clamp(35px, 5vw, 50px);
    }

}


@media (max-width: 800px) {

    .service-detail-hero {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .service-detail-image {
        min-height: 420px;
    }

    .service-detail-hero-content {
        padding:
            40px 30px 45px;
    }

    .service-info-grid {
        grid-template-columns: 1fr;
    }

    .service-booking-cta {
        grid-template-columns: 1fr;

        align-items: flex-start;
    }

}


@media (max-width: 560px) {

    .service-detail-hero {
        border-radius: 18px;
    }

    .service-detail-image {
        min-height: 330px;
    }

    .service-detail-hero-content {
        padding:
            32px 22px 35px;
    }

    .service-detail-title {
        font-size: 35px;
    }

    .service-detail-intro {
        font-size: 14px;
    }

    .service-detail-meta {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }

    .service-meta-divider {
        width: 100%;
        height: 1px;
    }

    .service-book-button,
    .service-cta-button {
        width: 100%;
    }

    .service-detail-actions {
        margin-top: 25px;
    }

    .service-info-card {
        min-height: auto;

        padding: 24px;
    }

    .service-booking-cta {
        padding:
            30px 24px;

        border-radius: 16px;
    }

}

/* ==========================================================================
   PERSONAL INFORMATION PAGE
   ========================================================================== */

.booking-information-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0 70px;
}

.booking-page-header {
    margin-bottom: 30px;
}

.booking-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--text, #24231f);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.booking-back-link:hover {
    color: var(--gold, #b8872c);
    transform: translateX(-3px);
}

.booking-back-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.booking-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold, #b8872c);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.booking-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold, #b8872c);
}

.booking-page-title {
    margin: 10px 0 10px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 600;
}

.booking-page-description {
    max-width: 700px;
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================================================
   BOOKING DETAILS STRIP
   ========================================================================== */

.booking-details-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(40, 35, 28, .05);
}

.booking-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid var(--border, #e6dfd2);
}

.booking-detail-item:last-child {
    border-right: 0;
}

.booking-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
}

.booking-detail-content {
    min-width: 0;
}

.booking-detail-label {
    display: block;
    margin-bottom: 3px;
    color: var(--muted, #77736a);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.booking-detail-value {
    display: block;
    color: var(--text, #24231f);
    font-size: 14px;
    line-height: 1.4;
}


/* ==========================================================================
   MAIN GRID
   ========================================================================== */

.booking-information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
    gap: 28px;
    align-items: start;
}


/* ==========================================================================
   FORM CARD
   ========================================================================== */

.booking-form-card {
    background: #fff;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 15px 45px rgba(40, 35, 28, .055);
}

.booking-form-heading {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 32px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border, #e6dfd2);
}

.booking-section-number {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark, #11110f);
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
}

.booking-section-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: var(--gold, #b8872c);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.booking-form-heading h2 {
    margin: 0 0 5px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
    font-weight: 600;
}

.booking-form-heading p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 13px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-form-group {
    margin-bottom: 21px;
}

.booking-form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    color: var(--text, #24231f);
    font-size: 13px;
    font-weight: 700;
}

.booking-required {
    color: #b34d43;
}

.booking-optional {
    margin-left: 5px;
    color: var(--muted, #77736a);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.booking-input-wrap,
.booking-textarea-wrap {
    position: relative;
}

.booking-input-icon,
.booking-textarea-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #b8872c);
    pointer-events: none;
}

.booking-textarea-icon {
    height: 48px;
    align-items: flex-start;
    padding-top: 15px;
}

.booking-form-control {
    width: 100%;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 12px;
    padding: 14px 15px 14px 48px;
    outline: none;
    background: #fff;
    color: var(--text, #24231f);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.booking-form-control::placeholder {
    color: #aaa59c;
}

.booking-form-control:hover {
    border-color: #d2c7b5;
}

.booking-form-control:focus {
    border-color: var(--gold, #b8872c);
    box-shadow: 0 0 0 4px rgba(184, 135, 44, .10);
    background: #fffdfa;
}

.booking-form-textarea {
    min-height: 140px;
    padding-top: 14px;
    line-height: 1.7;
    resize: vertical;
}

.booking-field-error {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: #b42318;
    font-size: 12px;
}


/* ==========================================================================
   PRIVACY NOTE
   ========================================================================== */

.booking-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 8px 0 25px;
    padding: 16px;
    border-radius: 14px;
    background: var(--ivory, #f8f5ee);
    border: 1px solid var(--border, #e6dfd2);
}

.booking-privacy-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--gold, #b8872c);
}

.booking-privacy-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text, #24231f);
    font-size: 12px;
}

.booking-privacy-note p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================================
   FORM ACTIONS
   ========================================================================== */

.booking-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ganieve-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 21px;
    border-radius: 11px;
    text-decoration: none;
    border: 1px solid transparent;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.ganieve-btn-primary {
    background: var(--dark, #11110f);
    color: #fff;
    box-shadow: 0 10px 24px rgba(17, 17, 15, .13);
}

.ganieve-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    background: #25241f;
    box-shadow: 0 13px 30px rgba(17, 17, 15, .18);
}

.ganieve-btn-secondary {
    background: #fff;
    color: var(--text, #24231f);
    border-color: var(--border, #e6dfd2);
}

.ganieve-btn-secondary:hover {
    color: var(--text, #24231f);
    transform: translateY(-2px);
    border-color: #cabda8;
}

.booking-submit-btn {
    min-width: 190px;
}

.booking-submit-btn:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none !important;
}

.booking-submit-btn.is-loading {
    pointer-events: none;
}

.booking-spinner {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bookingSpin .7s linear infinite;
}

@keyframes bookingSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================================
   SIDE CARD
   ========================================================================== */

.booking-side-card {
    position: sticky;
    top: 28px;
}

.booking-side-card-inner {
    padding: 28px;
    border-radius: 22px;
    background: var(--dark, #11110f);
    color: #fff;
    box-shadow: 0 18px 45px rgba(17, 17, 15, .15);
    overflow: hidden;
    position: relative;
}

.booking-side-card-inner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    border: 1px solid rgba(215, 174, 90, .25);
}

.booking-side-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--light-gold, #d7ae5a);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.booking-side-treatment {
    display: flex;
    align-items: center;
    gap: 14px;
}

.booking-side-treatment-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(215, 174, 90, .12);
    color: var(--light-gold, #d7ae5a);
}

.booking-side-treatment span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.booking-side-treatment h3 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.booking-side-divider {
    height: 1px;
    margin: 22px 0;
    background: rgba(255, 255, 255, .10);
}

.booking-side-list {
    display: grid;
    gap: 17px;
}

.booking-side-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.booking-side-list-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    color: var(--light-gold, #d7ae5a);
}

.booking-side-list-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.booking-side-list-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.booking-side-message {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 24px;
    padding: 15px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .05);
}

.booking-side-message-icon {
    color: var(--light-gold, #d7ae5a);
    padding-top: 2px;
}

.booking-side-message p {
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.booking-empty-card {
    max-width: 680px;
    margin: 30px auto;
    padding: 55px 35px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(40, 35, 28, .05);
}

.booking-empty-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
    font-size: 25px;
}

.booking-empty-card h2 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    color: var(--text, #24231f);
}

.booking-empty-card p {
    max-width: 480px;
    margin: 0 auto 24px;
    color: var(--muted, #77736a);
    line-height: 1.7;
    font-size: 14px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1050px) {

    .booking-details-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-detail-item:nth-child(2) {
        border-right: 0;
    }

    .booking-detail-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border, #e6dfd2);
    }

    .booking-information-grid {
        grid-template-columns: 1fr;
    }

    .booking-side-card {
        position: static;
    }

}

@media (max-width: 700px) {

    .booking-information-page {
        padding: 15px 0 45px;
    }

    .booking-page-title {
        font-size: 36px;
    }

    .booking-page-description {
        font-size: 14px;
    }

    .booking-details-strip {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .booking-detail-item,
    .booking-detail-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border, #e6dfd2);
    }

    .booking-detail-item:last-child {
        border-bottom: 0;
    }

    .booking-form-card {
        padding: 23px 18px;
        border-radius: 17px;
    }

    .booking-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form-heading {
        gap: 12px;
    }

    .booking-section-number {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 14px;
    }

    .booking-form-heading h2 {
        font-size: 25px;
    }

    .booking-form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .ganieve-btn,
    .booking-submit-btn {
        width: 100%;
    }

    .booking-side-card-inner {
        padding: 23px;
        border-radius: 17px;
    }

}

/* ==========================================================================
   REVIEW APPOINTMENT PAGE
   ========================================================================== */

.booking-review-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0 70px;
}

.review-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
    gap: 28px;
    align-items: start;
}


/* ==========================================================================
   MAIN REVIEW CARD
   ========================================================================== */

.review-main-card {
    background: #fff;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 15px 45px rgba(40, 35, 28, .055);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border, #e6dfd2);
}

.review-card-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--gold, #b8872c);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.review-card-header h2 {
    margin: 0;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
}

.review-card-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
    font-size: 18px;
}


/* ==========================================================================
   SERVICE BOX
   ========================================================================== */

.review-service-box {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 25px 0 30px;
    padding: 20px;
    border-radius: 16px;
    background: var(--ivory, #f8f5ee);
    border: 1px solid var(--border, #e6dfd2);
}

.review-service-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff;
    color: var(--gold, #b8872c);
    box-shadow: 0 7px 20px rgba(50, 42, 30, .06);
    font-size: 19px;
}

.review-service-label {
    display: block;
    margin-bottom: 3px;
    color: var(--muted, #77736a);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.review-service-content h3 {
    margin: 0 0 4px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}

.review-service-content p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================================
   REVIEW SECTION
   ========================================================================== */

.review-section {
    margin-bottom: 31px;
}

.review-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.review-section-number {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark, #11110f);
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 13px;
}

.review-section-heading>div>span {
    display: block;
    margin-bottom: 2px;
    color: var(--gold, #b8872c);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.review-section-heading h3 {
    margin: 0;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}


/* ==========================================================================
   APPOINTMENT DETAILS
   ========================================================================== */

.review-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.review-detail-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 13px;
    background: #fff;
}

.review-detail-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
}

.review-detail-card span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted, #77736a);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-detail-card strong {
    display: block;
    color: var(--text, #24231f);
    font-size: 12px;
    line-height: 1.35;
}

.review-available {
    color: #52765a !important;
}


/* ==========================================================================
   CUSTOMER INFORMATION
   ========================================================================== */

.review-customer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.review-customer-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 13px;
    background: #fff;
}

.review-customer-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--ivory, #f8f5ee);
    color: var(--gold, #b8872c);
}

.review-customer-card span:not(.review-customer-icon) {
    display: block;
    margin-bottom: 4px;
    color: var(--muted, #77736a);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-customer-card strong {
    display: block;
    color: var(--text, #24231f);
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.review-additional-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
    padding: 15px;
    border-radius: 13px;
    background: var(--ivory, #f8f5ee);
    border: 1px solid var(--border, #e6dfd2);
}

.review-additional-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff;
    color: var(--gold, #b8872c);
}

.review-additional-info span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted, #77736a);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-additional-info p {
    margin: 0;
    color: var(--text, #24231f);
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
}


/* ==========================================================================
   CONFIRMATION NOTICE
   ========================================================================== */

.review-confirmation-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 6px;
    padding: 17px;
    border-radius: 14px;
    border: 1px solid rgba(184, 135, 44, .2);
    background: rgba(215, 174, 90, .08);
}

.review-confirmation-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: var(--gold, #b8872c);
}

.review-confirmation-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text, #24231f);
    font-size: 12px;
}

.review-confirmation-note p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================================
   ACTIONS
   ========================================================================== */

.review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 26px;
    padding-top: 25px;
    border-top: 1px solid var(--border, #e6dfd2);
}

.review-actions form {
    margin: 0;
}

.review-confirm-btn {
    min-width: 220px;
}

.review-confirm-btn:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none !important;
}


/* ==========================================================================
   RIGHT SUMMARY
   ========================================================================== */

.review-side-column {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 16px;
}

.review-summary-card {
    padding: 27px;
    border-radius: 21px;
    background: var(--dark, #11110f);
    color: #fff;
    box-shadow: 0 18px 45px rgba(17, 17, 15, .15);
}

.review-summary-eyebrow,
.review-side-eyebrow {
    display: block;
    margin-bottom: 17px;
    color: var(--light-gold, #d7ae5a);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .17em;
}

.review-summary-treatment {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-summary-treatment-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(215, 174, 90, .12);
    color: var(--light-gold, #d7ae5a);
}

.review-summary-treatment span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .53);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-summary-treatment h3 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 500;
}

.review-summary-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(255, 255, 255, .10);
}

.review-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 17px;
}

.review-summary-item:last-child {
    margin-bottom: 0;
}

.review-summary-item-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--light-gold, #d7ae5a);
    font-size: 12px;
}

.review-summary-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-summary-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}


/* ==========================================================================
   CUSTOMER SUMMARY
   ========================================================================== */

.review-customer-summary {
    padding: 23px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 18px;
    background: #fff;
}

.review-side-customer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.review-side-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
}

.review-side-customer h4 {
    margin: 0 0 7px;
    color: var(--text, #24231f);
    font-size: 13px;
}

.review-side-customer span {
    display: block;
    margin-top: 4px;
    color: var(--muted, #77736a);
    font-size: 10px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.review-side-customer span i {
    width: 15px;
    color: var(--gold, #b8872c);
}


/* ==========================================================================
   FINAL SIDE NOTE
   ========================================================================== */

.review-side-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 17px;
    border-radius: 15px;
    background: var(--ivory, #f8f5ee);
    border: 1px solid var(--border, #e6dfd2);
}

.review-side-note-icon {
    padding-top: 2px;
    color: var(--gold, #b8872c);
}

.review-side-note p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1050px) {

    .review-page-grid {
        grid-template-columns: 1fr;
    }

    .review-side-column {
        position: static;
    }

}

@media (max-width: 700px) {

    .booking-review-page {
        padding: 15px 0 45px;
    }

    .review-main-card {
        padding: 23px 18px;
        border-radius: 17px;
    }

    .review-card-header h2 {
        font-size: 24px;
    }

    .review-service-box {
        align-items: flex-start;
        padding: 16px;
    }

    .review-service-content h3 {
        font-size: 19px;
    }

    .review-detail-grid,
    .review-customer-grid {
        grid-template-columns: 1fr;
    }

    .review-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .review-actions form {
        width: 100%;
    }

    .review-actions .ganieve-btn {
        width: 100%;
    }

    .review-confirm-btn {
        min-width: 0;
    }

    .review-summary-card,
    .review-customer-summary {
        border-radius: 17px;
    }

}

/* ==========================================================================
   APPOINTMENT CONFIRMED PAGE
   ========================================================================== */

.booking-confirmed-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 25px 0 75px;
}


/* ==========================================================================
   SUCCESS HERO
   ========================================================================== */

.confirmed-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.confirmed-success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px) scale(.92);
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.confirmed-success-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.confirmed-success-ring {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6ef;
    border: 1px solid #cfe2d2;
    color: #557b5e;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(82, 118, 90, .10);
}

.confirmed-eyebrow {
    justify-content: center;
}

.confirmed-title {
    margin: 12px 0 10px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 4.3vw, 55px);
    line-height: 1.08;
    font-weight: 600;
}

.confirmed-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted, #77736a);
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================================================
   REFERENCE
   ========================================================================== */

.confirmed-reference {
    width: fit-content;
    max-width: 100%;
    margin: 20px auto 30px;
    padding: 9px 15px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(40, 35, 28, .045);
}

.confirmed-reference span {
    color: var(--muted, #77736a);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.confirmed-reference strong {
    color: var(--gold, #b8872c);
    font-size: 12px;
}


/* ==========================================================================
   MAIN GRID
   ========================================================================== */

.confirmed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
    gap: 28px;
    align-items: start;
}


/* ==========================================================================
   MAIN CARD
   ========================================================================== */

.confirmed-main-card {
    background: #fff;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 15px 45px rgba(40, 35, 28, .055);
}


/* ==========================================================================
   TREATMENT
   ========================================================================== */

.confirmed-treatment {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--border, #e6dfd2);
}

.confirmed-treatment-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--soft-beige, #eee8dc);
    color: var(--gold, #b8872c);
    font-size: 20px;
}

.confirmed-treatment-content>span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted, #77736a);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.confirmed-treatment-content h2 {
    margin: 0 0 4px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
}

.confirmed-treatment-content p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 12px;
}


/* ==========================================================================
   SECTION
   ========================================================================== */

.confirmed-section {
    padding: 27px 0;
    border-bottom: 1px solid var(--border, #e6dfd2);
}

.confirmed-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.confirmed-section-number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark, #11110f);
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 13px;
}

.confirmed-section-heading>div>span {
    display: block;
    margin-bottom: 3px;
    color: var(--gold, #b8872c);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.confirmed-section-heading h3 {
    margin: 0;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}


/* ==========================================================================
   DETAILS
   ========================================================================== */

.confirmed-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.confirmed-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 13px;
    background: #fff;
}

.confirmed-detail-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ivory, #f8f5ee);
    color: var(--gold, #b8872c);
}

.confirmed-detail span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted, #77736a);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.confirmed-detail strong {
    display: block;
    color: var(--text, #24231f);
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================================
   CUSTOMER
   ========================================================================== */

.confirmed-customer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.confirmed-customer-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 13px;
    background: #fff;
}

.confirmed-customer-item:nth-child(3) {
    grid-column: 1 / -1;
}

.confirmed-customer-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--ivory, #f8f5ee);
    color: var(--gold, #b8872c);
}

.confirmed-customer-item div>span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted, #77736a);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.confirmed-customer-item strong {
    display: block;
    color: var(--text, #24231f);
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}


/* ==========================================================================
   NOTICE
   ========================================================================== */

.confirmed-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 25px;
    padding: 17px;
    border: 1px solid #d7e4d9;
    border-radius: 14px;
    background: #f4f9f5;
}

.confirmed-notice-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: #557b5e;
}

.confirmed-notice strong {
    color: var(--text, #24231f);
    font-size: 12px;
}

.confirmed-notice p {
    margin: 4px 0 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================================
   ACTIONS
   ========================================================================== */

.confirmed-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 26px;
}

.confirmed-google-btn {
    background: var(--dark, #11110f);
}

.confirmed-google-btn:hover {
    background: #25241f;
}


/* ==========================================================================
   RETURN LINK
   ========================================================================== */

.confirmed-return {
    margin-top: 21px;
    padding-top: 20px;
    border-top: 1px solid var(--border, #e6dfd2);
    text-align: center;
}

.confirmed-home-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text, #24231f);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: color .25s ease;
}

.confirmed-home-link:hover {
    color: var(--gold, #b8872c);
}


/* ==========================================================================
   SIDE COLUMN
   ========================================================================== */

.confirmed-side-column {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 16px;
}


/* ==========================================================================
   SUMMARY CARD
   ========================================================================== */

.confirmed-summary-card {
    position: relative;
    overflow: hidden;
    padding: 27px;
    border-radius: 21px;
    background: var(--dark, #11110f);
    color: #fff;
    box-shadow: 0 18px 45px rgba(17, 17, 15, .15);
}

.confirmed-summary-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    border: 1px solid rgba(215, 174, 90, .16);
}

.confirmed-summary-eyebrow {
    display: block;
    margin-bottom: 17px;
    color: var(--light-gold, #d7ae5a);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.confirmed-summary-treatment {
    display: flex;
    align-items: center;
    gap: 13px;
}

.confirmed-summary-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(215, 174, 90, .12);
    color: var(--light-gold, #d7ae5a);
}

.confirmed-summary-treatment span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.confirmed-summary-treatment h3 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 500;
}

.confirmed-summary-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(255, 255, 255, .10);
}

.confirmed-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 17px;
}

.confirmed-summary-item:last-child {
    margin-bottom: 0;
}

.confirmed-summary-item-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--light-gold, #d7ae5a);
    font-size: 12px;
}

.confirmed-summary-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.confirmed-summary-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================================
   NEXT CARD
   ========================================================================== */

.confirmed-next-card {
    padding: 24px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 18px;
    background: #fff;
}

.confirmed-next-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--gold, #b8872c);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.confirmed-next-card h3 {
    margin: 0 0 19px;
    color: var(--text, #24231f);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}

.confirmed-next-list {
    display: grid;
    gap: 15px;
}

.confirmed-next-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.confirmed-next-item>span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ivory, #f8f5ee);
    color: var(--gold, #b8872c);
    font-size: 9px;
    font-weight: 700;
}

.confirmed-next-item p {
    margin: 1px 0 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================================
   SIDE NOTE
   ========================================================================== */

.confirmed-side-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border, #e6dfd2);
    border-radius: 15px;
    background: var(--ivory, #f8f5ee);
}

.confirmed-side-note>span {
    padding-top: 2px;
    color: var(--gold, #b8872c);
}

.confirmed-side-note p {
    margin: 0;
    color: var(--muted, #77736a);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1050px) {

    .confirmed-grid {
        grid-template-columns: 1fr;
    }

    .confirmed-side-column {
        position: static;
    }

}

@media (max-width: 700px) {

    .booking-confirmed-page {
        padding: 15px 0 45px;
    }

    .confirmed-title {
        font-size: 36px;
    }

    .confirmed-description {
        font-size: 13px;
    }

    .confirmed-main-card {
        padding: 23px 18px;
        border-radius: 17px;
    }

    .confirmed-treatment {
        align-items: flex-start;
    }

    .confirmed-treatment-content h2 {
        font-size: 22px;
    }

    .confirmed-details-grid,
    .confirmed-customer-grid {
        grid-template-columns: 1fr;
    }

    .confirmed-customer-item:nth-child(3) {
        grid-column: auto;
    }

    .confirmed-actions {
        grid-template-columns: 1fr;
    }

    .confirmed-summary-card,
    .confirmed-next-card {
        border-radius: 17px;
    }

    .confirmed-reference {
        flex-wrap: wrap;
        justify-content: center;
    }

}

/* ==========================================================================
   CLICKABLE SERVICE TITLE
   ========================================================================== */

.premium-service-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.premium-service-card h3 a:hover {
    color: var(--gold, #b8872c);
}

/* ==========================================================================
   DESKTOP COLLAPSIBLE SIDEBAR
   ========================================================================== */

:root {
    --ganieve-sidebar-expanded: 280px;
    --ganieve-sidebar-collapsed: 82px;
    --ganieve-sidebar-transition: .35s cubic-bezier(.4, 0, .2, 1);
}


/* ==========================================================================
   APP WRAPPER
   ========================================================================== */

.ganieve-app {
    --current-sidebar-width: var(--ganieve-sidebar-expanded);

    width: 100%;
    min-height: 100vh;
}


/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.ganieve-sidebar {
    width: var(--current-sidebar-width) !important;
    transition:
        width var(--ganieve-sidebar-transition),
        transform var(--ganieve-sidebar-transition);

    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    z-index: 1000;

    overflow: hidden;
}


/* ==========================================================================
   SIDEBAR INNER
   ========================================================================== */

.ganieve-sidebar .sidebar-inner {
    width: 100%;
    min-width: 0;
    height: 100%;

    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;
}


/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.ganieve-main {
    width: calc(100% - var(--current-sidebar-width)) !important;

    margin-left: var(--current-sidebar-width) !important;

    min-width: 0;

    transition:
        width var(--ganieve-sidebar-transition),
        margin-left var(--ganieve-sidebar-transition);
}


/* ==========================================================================
   COLLAPSE BUTTON
   ========================================================================== */

.sidebar-collapse-button {
    position: absolute;

    top: 22px;
    right: 5px;

    width: 30px;
    height: 30px;

    z-index: 1100;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;

    background: #1c1c19;
    color: #d7ae5a;

    font-size: 11px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .20);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.sidebar-collapse-button:hover {
    background: #b8872c;
    color: #11110f;
    border-color: #b8872c;

    transform: scale(1.05);
}


/* ==========================================================================
   COLLAPSED STATE
   ========================================================================== */

.ganieve-app.sidebar-collapsed {
    --current-sidebar-width: var(--ganieve-sidebar-collapsed);
}


/* ==========================================================================
   LOGO - EXPANDED
   ========================================================================== */

.ganieve-sidebar .logo-wrapper {
    transition:
        padding .3s ease,
        opacity .3s ease;
}


/* ==========================================================================
   COLLAPSED LOGO
   ========================================================================== */

.ganieve-app.sidebar-collapsed .logo-wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;

    display: flex;
    justify-content: center;
}

.ganieve-app.sidebar-collapsed .ganieve-logo {
    width: 48px !important;
    max-width: 48px !important;
    height: auto;

    object-fit: contain;
}


/* ==========================================================================
   SIDEBAR SECTION LABELS
   ========================================================================== */

.ganieve-app.sidebar-collapsed .sidebar-label {
    height: 0;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
    opacity: 0;
}


/* ==========================================================================
   BOOKING STEPS
   ========================================================================== */

.ganieve-app.sidebar-collapsed .booking-steps {
    margin-top: 18px;
}

.ganieve-app.sidebar-collapsed .booking-step {
    width: 52px;
    min-width: 52px;

    min-height: 52px;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: transparent;
}


/* Hide title/subtitle in collapsed state */

.ganieve-app.sidebar-collapsed .booking-step>div {
    display: none !important;
}


/* Step number becomes the entire navigation item */

.ganieve-app.sidebar-collapsed .booking-step .step-number {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px;

    margin: 0 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* Active collapsed step */

.ganieve-app.sidebar-collapsed .booking-step.active {
    background: rgba(184, 135, 44, .12);
    border: 1px solid rgba(184, 135, 44, .30);
}

.ganieve-app.sidebar-collapsed .booking-step.active .step-number {
    background: #b8872c;
    color: #11110f;
}


/* ==========================================================================
   APPOINTMENT SUMMARY
   ========================================================================== */

/* Hide summary text in collapsed state */

.ganieve-app.sidebar-collapsed .summary-card {
    display: flex;
    flex-direction: column;
    padding: 8px !important;
    border: none;
    background: none;
}

.ganieve-app.sidebar-collapsed .summary-service>div:last-child,
.ganieve-app.sidebar-collapsed .summary-row,
.ganieve-app.sidebar-collapsed .summary-heading,
.ganieve-app.sidebar-collapsed .customer-summary,
.ganieve-app.sidebar-collapsed .summary-divider {
    display: none !important;
}


/* Keep the service icon */

.ganieve-app.sidebar-collapsed .summary-service {
    margin: 0 !important;
}

.ganieve-app.sidebar-collapsed .summary-icon {
    width: 42px !important;
    height: 42px !important;

    margin: 0 auto;
}


/* ==========================================================================
   SIDEBAR FOOTER
   ========================================================================== */

.ganieve-app.sidebar-collapsed .sidebar-footer {
    opacity: 0;
    visibility: hidden;

    height: 0;
    overflow: hidden;

    margin: 0;
    padding: 0;
}


/* ==========================================================================
   COLLAPSE ARROW
   ========================================================================== */

.ganieve-app.sidebar-collapsed .sidebar-collapse-button {
    right: -14px;

    transform: rotate(180deg);
}

.ganieve-app.sidebar-collapsed .sidebar-collapse-button:hover {
    transform: rotate(180deg) scale(1.05);
}


/* ==========================================================================
   COLLAPSED SIDEBAR SPACING
   ========================================================================== */

.ganieve-app.sidebar-collapsed .sidebar-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ganieve-app.sidebar-collapsed .booking-steps {
    width: 100%;
}

.ganieve-app.sidebar-collapsed .booking-step {
    gap: 0;
}


/* ==========================================================================
   CONTENT WIDTH SAFETY
   ========================================================================== */

.ganieve-main,
.ganieve-content,
.ganieve-content>* {
    min-width: 0;
    max-width: 100%;
}


/* ==========================================================================
   DESKTOP ONLY
   ========================================================================== */

@media (min-width: 901px) {

    .ganieve-sidebar {
        transform: translateX(0) !important;
    }

    .ganieve-main {
        display: block;
    }

}


/* ==========================================================================
   TABLET / MOBILE
   ========================================================================== */

@media (max-width: 900px) {

    .ganieve-app {
        --current-sidebar-width: 0px;
    }

    .ganieve-sidebar {
        width: min(300px, 88vw) !important;

        transform: translateX(-105%) !important;

        box-shadow:
            12px 0 35px rgba(0, 0, 0, .20);
    }

    .ganieve-sidebar.sidebar-open {
        transform: translateX(0) !important;
    }

    .ganieve-main {
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* Collapse button is unnecessary on mobile */
    .sidebar-collapse-button {
        display: none !important;
    }

    /* Never apply collapsed desktop styles on mobile */
    .ganieve-app.sidebar-collapsed {
        --current-sidebar-width: 0px;
    }

    .ganieve-app.sidebar-collapsed .sidebar-label,
    .ganieve-app.sidebar-collapsed .booking-step>div,
    .ganieve-app.sidebar-collapsed .summary-row,
    .ganieve-app.sidebar-collapsed .summary-heading,
    .ganieve-app.sidebar-collapsed .customer-summary {
        display: block;
    }

}


/* ==========================================================================
   REDUCE MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .ganieve-sidebar,
    .ganieve-main,
    .sidebar-collapse-button {
        transition: none !important;
    }

}

/* =========================================================
   CLICKABLE BOOKING STEPS
   ========================================================= */

.booking-step {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.booking-step:hover {
    color: inherit;
    text-decoration: none;
}

.booking-step:focus,
.booking-step:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}