@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/raleway-300-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/barlow-condensed-700-latin.woff2') format('woff2');
}

:root {
    --font-body: 'Raleway', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --bs-body-font-family: var(--font-body);
    --bs-info-light: #e2c55a;
    --bs-info-dim: rgba(201, 162, 39, 0.15);
    --border-subtle: rgba(201, 162, 39, 0.2);
    --bs-info-light: #e2c55a;
    --bg-card: #161616;
    --bg-dark: #0e0e0e;

    --bg-card-hover: #1e1e1e;
    --gold: #bf925b;
    --gold-light: #e2c55a;
    --gold-dim: rgba(201, 162, 39, 0.15);
    --text-primary: #f0ece4;
    --text-muted: #8a8578;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --navbar-h: 70px;
}

@media (min-width: 992px) {
    :root {
        --navbar-h: 87px;
    }
}





















/* ─── Base ─── */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--bs-secondary-color);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

.bb-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-image: var(--bb-icon);
    mask-image: var(--bb-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.bb-icon--arrow-right {
    --bb-icon: url('/assets/icons/arrow-right.svg');
}

.bb-icon--balance-scale {
    --bb-icon: url('/assets/icons/balance-scale.svg');
}

.bb-icon--bars {
    --bb-icon: url('/assets/icons/bars.svg');
}

.bb-icon--bell {
    --bb-icon: url('/assets/icons/bell.svg');
}

.bb-icon--check-circle {
    --bb-icon: url('/assets/icons/check-circle.svg');
}

.bb-icon--check {
    --bb-icon: url('/assets/icons/check.svg');
}

.bb-icon--chevron-down {
    --bb-icon: url('/assets/icons/chevron-down.svg');
}

.bb-icon--chevron-left {
    --bb-icon: url('/assets/icons/chevron-left.svg');
}

.bb-icon--chevron-right {
    --bb-icon: url('/assets/icons/chevron-right.svg');
}

.bb-icon--cookie-bite {
    --bb-icon: url('/assets/icons/cookie-bite.svg');
}

.bb-icon--door-open {
    --bb-icon: url('/assets/icons/door-open.svg');
}

.bb-icon--envelope {
    --bb-icon: url('/assets/icons/envelope.svg');
}

.bb-icon--eye {
    --bb-icon: url('/assets/icons/eye.svg');
}

.bb-icon--eye-slash {
    --bb-icon: url('/assets/icons/eye-slash.svg');
}

.bb-icon--external-link {
    --bb-icon: url('/assets/icons/external-link.svg');
}

.bb-icon--facebook {
    --bb-icon: url('/assets/icons/facebook.svg');
}

.bb-icon--info-circle {
    --bb-icon: url('/assets/icons/info-circle.svg');
}

.bb-icon--instagram {
    --bb-icon: url('/assets/icons/instagram.svg');
}

.bb-icon--map-pin {
    --bb-icon: url('/assets/icons/map-pin.svg');
}

.bb-icon--parking {
    --bb-icon: url('/assets/icons/parking.svg');
}

.bb-icon--phone {
    --bb-icon: url('/assets/icons/phone.svg');
}

.bb-icon--scissors {
    --bb-icon: url('/assets/icons/scissors.svg');
}

.bb-icon--shield {
    --bb-icon: url('/assets/icons/shield.svg');
}

.bb-icon--shopping-bag {
    --bb-icon: url('/assets/icons/shopping-bag.svg');
}

.bb-icon--spa {
    --bb-icon: url('/assets/icons/spa.svg');
}

.bb-icon--star {
    --bb-icon: url('/assets/icons/star.svg');
}

.bb-icon--sun {
    --bb-icon: url('/assets/icons/sun.svg');
}

.bb-icon--user {
    --bb-icon: url('/assets/icons/user.svg');
}

.bb-icon--user-circle {
    --bb-icon: url('/assets/icons/user-circle.svg');
}

.bb-icon--user-tie {
    --bb-icon: url('/assets/icons/user-tie.svg');
}

.bb-icon--whatsapp {
    --bb-icon: url('/assets/icons/whatsapp.svg');
}

/* ─── Navbar (transparent initially, opaque on scroll) ─── */
.navbar {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-subtle);
}

/* Constrain navbar content to container width on desktop */
.navbar .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-brand {
    position: relative;
    z-index: 1001;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 35px;
    width: auto;
    transition: opacity 0.3s, height 0.3s;
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 55px;
    }
}

.navbar-brand:hover img {
    opacity: 0.85;
}

.nav-link {
    color: rgba(240, 236, 228, 0.8) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    transition: color .3s;
}

.navbar.scrolled .nav-link {
    color: var(--text-muted) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-info) !important;
}

/* Add these new rules to ensure hover/active work when scrolled */
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--bs-info) !important;
}

/* ─── Custom Hamburger Toggle (Animated) ─── */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: none !important;
}

.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--bs-info);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ─── Full-Screen Mobile Menu (Slide In/Out) ─── */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(14, 14, 14, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse.collapsing {
        height: 100vh;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.collapsing[style*="height: 0px"] {
        transform: translateX(100%);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.05s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 0.5rem 0 !important;
        color: rgba(240, 236, 228, 0.9) !important;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--bs-info) !important;
    }
}

/* ─── Mobile Menu Social Icons ─── */
.mobile-social {
    display: none;
}

@media (max-width: 991px) {
    .mobile-social {
        display: flex;
        gap: 1.2rem;
        justify-content: flex-start;
        padding: 2rem 0 1rem;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateX(-30px);
    }

    .navbar-collapse.show .mobile-social {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }

    .mobile-social a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--bs-info-dim);
        border: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-info);
        font-size: 1.2rem;
        text-decoration: none;
        transition: background .3s, border-color .3s, transform .3s;
    }

    .mobile-social a:hover {
        background: rgba(201, 162, 39, 0.25);
        border-color: var(--bs-info);
        transform: translateY(-3px);
    }
}






/* ─── Footer (3-column with logo) ─── */
footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-subtle);
    padding: 3.5rem 1rem 2rem;
}

footer .row {
    margin-bottom: 1rem;
}

footer .col-md-4 {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 0;
    }
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .footer-logo img {
        height: 50px;
    }
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.footer-address p {
    margin-bottom: 0.3rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-info);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color .3s;
}

.footer-phone:hover {
    color: var(--bs-info-light);
}

.footer-phone .bb-icon {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-info);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
}

.footer-social a:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--bs-info);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color .3s;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-info);
    transition: width .3s;
}

.footer-links a:hover {
    color: var(--bs-info);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.68rem;
    opacity: .5;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}







/* ─── Utility ─── */
.spacer {
    height: 3.2rem;
}

.spacer-sm {
    height: 2rem;
}







/* ─── Section Background Variants ─── */
.section-dark {
    background: var(--bg-dark);
    position: relative;
}

.section-darker {
    background: linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
    position: relative;
}

.section-gradient {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.section-subtle {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

/* ═══════════════════════════════════════════════════
           UNIQUE TO HOMEPAGE
           ═══════════════════════════════════════════════════ */
/* --navbar-h: computed height of the fixed navbar */



/* ─── Hero (full-screen parallax version) ─── */
.hero-parallax {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: var(--hero-image-desktop, url('/assets/images/barber-haircut.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 991px) {
    .hero-parallax-bg {
        background-image: var(--hero-image-mobile, var(--hero-image-desktop, url('/assets/images/barber-haircut-800.webp')));
    }
}



.hero-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.3) 0%, rgba(14, 14, 14, 0.7) 100%);
    z-index: 1;
}



.hero-parallax-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    will-change: transform;
}



.hero-parallax .hero-label {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


.hero-parallax h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.hero-parallax .hero-subline {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-weight: 300;
    color: rgba(240, 236, 228, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-parallax .hero-rule {
    width: 58px;
    height: 2px;
    background: var(--bs-info);
    margin: 1.8rem auto;
}

.hero-parallax .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-hero-primary:hover {
    background: var(--bs-info-light);
    transform: translateY(-2px);
    color: #0e0e0e;
}

.btn-hero-secondary {
    display: inline-block;
    background: rgba(22, 22, 22, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 236, 228, 0.3);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
}

.btn-hero-secondary:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}








/* ─── --band modifier: 2nd-tier pages only ───────────
           Homepage never uses this class → its 100vh layout is
           completely untouched no matter what stylesheet order. */

.hero-parallax--band {
    height: 32vh;
    min-height: calc(var(--navbar-h) + 180px);
}

.hero-parallax--band .hero-parallax-bg {
    top: -20%;
    height: 140%;
}

.hero-parallax--band .hero-parallax-overlay {
    background: linear-gradient(180deg,
            rgba(14, 14, 14, 0.2) 0%,
            rgba(14, 14, 14, 0.5) 50%,
            rgba(14, 14, 14, 0.82) 100%);
}

/* Content pinned to bottom of the band */
.hero-parallax--band .hero-parallax-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1rem 2.2rem;
    height: auto;
    /* Prevent inheriting 100% height which centers text */
    justify-content: flex-end;
}

.hero-parallax--band .hero-label {
    margin-bottom: 0.8rem;
}

.hero-parallax--band h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0;
}

.hero-parallax--band .hero-rule {
    margin: 1rem auto 0;
}

@media (max-width: 575.98px) {
    .hero-parallax--band {
        height: 28vh;
        min-height: calc(var(--navbar-h) + 150px);
    }

    .hero-parallax--band .hero-parallax-content {
        padding-bottom: 1.6rem;
    }

    .hero-parallax--band h1 {
        font-size: 1.4rem;
    }
}



/* Old hero styles removed, replaced with parallax version above */

/* ─── Services Grid (6 cards) ─── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: border-color .3s, transform .3s;
    height: 100%;
}

.service-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
}

.service-card .service-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    padding: 0.7rem;
    color: var(--bs-info);
}

.service-card .service-icon .bb-icon {
    font-size: 2rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Welcome Section ─── */
.welcome-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2.5rem 2rem;
}

.welcome-section .welcome-badge {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.welcome-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 1.2rem;
}

.welcome-section p {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 0.9rem;
}

.welcome-section .btn-outline {
    display: inline-block;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    margin-top: 0.8rem;
}

.welcome-section .btn-outline:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}

/* ─── Pricing Card (reused but simplified) ─── */
/* ═══ NEW/UPDATED PRICING CARD STYLES ═══ */

.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-v2:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.12);
}

/* Card Header with Icon */
.pricing-card-v2 .card-header-v2 {
    padding: 1.8rem 1.5rem 1.4rem;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.pricing-card-v2 .service-icon-v2 {
    width: 48px;
    height: 48px;
    color: var(--bs-info);
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.3rem;
}

.pricing-card-v2 .service-icon-v2 .bb-icon {
    font-size: 1.25rem;
}

.pricing-card-v2 h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
}

.pricing-card-v2 .synopsis {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Price Display - "from" above price */
.pricing-card-v2 .price-display {
    text-align: center;
    margin-bottom: 0;
}

.pricing-card-v2 .from-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.pricing-card-v2 .price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
}

/* List Items with Alternating Backgrounds */
.pricing-card-v2 .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-card-v2 .services-list li {
    padding: 0.7rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
}

/* Alternating backgrounds */
.pricing-card-v2 .services-list li:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.pricing-card-v2 .services-list li:nth-child(even) {
    background: transparent;
}

.pricing-card-v2 .services-list li:hover {
    background: rgba(201, 162, 39, 0.08);
}

/* Checkmark icon before each item */
.pricing-card-v2 .services-list li::before {
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    flex-shrink: 0;
}

/* Card Footer with Button */
.pricing-card-v2 .card-footer-v2 {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.pricing-card-v2 .btn-more-info {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.65rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.pricing-card-v2 .btn-more-info:hover {
    background: var(--bs-info);
    border-color: var(--bs-info);
    color: #0e0e0e;
    transform: translateY(-1px);
}



/* ─── Gallery Grid ─── */
.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.gallery-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.gallery-item .img-wrap {
    width: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-item .img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.gallery-item .img-wrap .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--bs-info);
    opacity: .3;
}

.gallery-item .caption {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--border-subtle);
}

.gallery-item .caption h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.2rem;
}

.gallery-item .caption .tag {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bs-info);
    font-weight: 600;
}

/* ─── Blog Preview Card ─── */
.blog-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-preview:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.blog-preview .blog-img {
    width: 100%;
    min-height: 180px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-preview .blog-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.blog-preview .blog-img i {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--bs-info);
    opacity: .3;
}

.blog-preview .blog-content {
    padding: 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview .blog-cat {
    display: inline-block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.blog-preview h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.blog-preview h4 a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: color .25s;
}

.blog-preview h4 a:hover {
    color: var(--bs-info);
}

.blog-preview p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-preview .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bs-info);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: gap .25s;
}

.blog-preview .read-more:hover {
    gap: 0.65rem;
}

.blog-preview .read-more .bb-icon {
    font-size: 0.55rem;
}

/* ─── Testimonial Section (Carousel) ─── */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.15);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card .stars .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
}

.testimonial-card .quote-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-card .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card .author-avatar .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.testimonial-card .author-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s, border-color .3s;
}

.carousel-btn:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
}

.carousel-btn .bb-icon {
    font-size: 0.85rem;
}

/* ─── Contact Form Section ─── */
.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2.2rem 2rem;
}

.contact-form-section .form-intro {
    margin-bottom: 1.8rem;
}

.contact-form-section .form-intro p {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-form-section .form-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--bs-secondary-color);
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    border-radius: 3px;
    transition: border-color .3s;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    background: var(--bg-dark);
    border-color: var(--bs-info);
    color: var(--bs-secondary-color);
    box-shadow: none;
}

.contact-form-section .btn-submit {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 3px;
    transition: background .3s, transform .2s;
    cursor: pointer;
}

.contact-form-section .btn-submit:hover {
    background: var(--bs-info-light);
    transform: translateY(-1px);
}












/* ─── Section Heading ─── */
.section-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.section-heading .label {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin-bottom: 0;
}

.section-heading .rule {
    width: 32px;
    height: 2px;
    background: var(--bs-info);
    margin: 0.8rem auto 0;
}

/* ─── Blog Card ─── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: row;
}

.blog-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 28px rgba(201, 162, 39, 0.08);
    transform: translateY(-2px);
}

/* Image column */
.blog-card .card-img-col {
    width: 240px;
    min-width: 240px;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.blog-card .card-img-col .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
}

/* subtle pattern overlay on image placeholder */
.blog-card .card-img-col .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.blog-card .card-img-col .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--bs-info);
    opacity: .35;
}

/* category tag sitting on image */
.blog-card .card-img-col .cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1rem 0.7rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.blog-card .card-img-col .cat-tag span {
    display: inline-block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.28rem 0.55rem;
    border-radius: 2px;
}

/* Content column */
.blog-card .card-body-col {
    flex: 1;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card .card-body-col h5 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.blog-card .card-body-col h5 a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: color .25s;
}

.blog-card .card-body-col h5 a:hover {
    color: var(--bs-info);
}

.blog-card .card-body-col p {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--bs-info);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: gap .25s, color .25s;
}

.read-more:hover {
    gap: 0.65rem;
    color: var(--bs-info-light);
}

.read-more .bb-icon {
    font-size: 0.55rem;
}

/* ─── Stack on mobile ─── */
@media (max-width: 600px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-card .card-img-col {
        width: 100%;
        min-width: 0;
        min-height: 160px;
    }
}

/* ─── Sidebar ─── */
.sidebar-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.sidebar-panel .panel-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.4rem;
}

.sidebar-panel .panel-header .label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.sidebar-panel .panel-header h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.sidebar-panel .panel-body {
    padding: 1.2rem 1.4rem;
}

/* Contact list in sidebar */
.sb-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.sb-contact-row:last-child {
    border-bottom: none;
}

.sb-contact-row .sb-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sb-contact-row .sb-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.7rem;
}

.sb-contact-row .sb-text .sb-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.sb-contact-row .sb-text .sb-value {
    color: var(--bs-secondary-color);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.sb-contact-row .sb-text .sb-value a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .25s, border-color .25s;
}

.sb-contact-row .sb-text .sb-value a:hover {
    color: var(--bs-info);
    border-color: var(--bs-info);
}

/* Hours rows in sidebar */
.sb-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.sb-hours-row:last-child {
    border-bottom: none;
}

.sb-hours-row .day {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sb-hours-row .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bs-info);
    flex-shrink: 0;
}

.sb-hours-row .time {
    color: var(--bs-secondary-color);
    font-size: 0.72rem;
    font-weight: 500;
}

.sb-hours-row.closed .dot {
    background: #3a3a3a;
}

.sb-hours-row.closed .day {
    opacity: .5;
}

.sb-hours-row.closed .time {
    color: #5a4a4a;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* WhatsApp btn */
.btn-wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
}

.btn-wa-inline:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}




/* ─── Legal intro bar ─── */
.legal-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.legal-intro .intro-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-intro .intro-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.legal-intro .intro-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
}

.legal-intro .intro-text strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* ─── Legal Section Block ─── */
.legal-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .3s;
}

.legal-block:hover {
    border-color: rgba(201, 162, 39, 0.35);
}

/* header row */
.legal-block .block-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-block .block-header .block-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bs-info);
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-block .block-header h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

/* body text */
.legal-block .block-body {
    padding: 1.3rem 1.6rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.9;
}

.legal-block .block-body strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

.legal-block .block-body a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.legal-block .block-body a:hover {
    border-color: var(--bs-info);
}




/* styled list inside a .block-body */
.block-body ul.rights-list {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
}

.block-body ul.rights-list li {
    position: relative;
    padding: 0.46rem 0 0.46rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
}

.block-body ul.rights-list li:last-child {
    border-bottom: none;
}

/* gold chevron bullet */
.block-body ul.rights-list li::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/chevron-right.svg') no-repeat center / contain;
    mask: url('/assets/icons/chevron-right.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* "last updated" date tag inside intro */
.legal-intro .intro-date {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bs-info);
    font-weight: 600;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.22rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

/* subsection styling inside block-body */
.block-body h4 {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin: 1.2rem 0 0.5rem;
}

.block-body h4:first-child {
    margin-top: 0;
}














/* ═══════════════════════════════════════════════════
           PAGE INTRO  —  article variant
           
           Base .page-intro is the same card + glow block used
           on standard pages (contact, pricing, etc).
           
           .page-intro--article adds three things inside that block:
             1. Breadcrumbs  — top-left, understated nav trail
             2. img-wrap     — the article's featured image placeholder,
                               flush edge-to-edge inside the card (no
                               extra border / outer card wrapper)
             3. Intro text   — the article opening paragraph, sits
                               below the image inside the same glow
           
           This replaces both the old standalone .featured-image card
           AND the .article-intro block that used to live at the top
           of .article-body.  The article body now starts clean with
           its first <h2>.
           ═══════════════════════════════════════════════════ */

/* ── base page-intro (shared with standard pages) ── */
.page-intro {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.page-intro::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.14) 0%, transparent 75%);
    pointer-events: none;
}

/* ── article-specific layout inside page-intro ── */
.page-intro--article {
    padding: 0;
    /* children handle their own spacing */
}

/* Breadcrumb row — sits at the very top of the block */
.page-intro--article .breadcrumb-row {
    position: relative;
    z-index: 1;
    padding: 1.4rem 0 0;
    /* left/right handled by .container */
}

.page-intro--article .breadcrumb {
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.page-intro--article .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .25s;
}

.page-intro--article .breadcrumb-item a:hover {
    color: var(--gold);
}

.page-intro--article .breadcrumb-item.active {
    color: var(--gold);
    font-weight: 600;
}

.page-intro--article .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
    content: '›';
    opacity: .5;
}

/* ── img + intro row ────────────────────────────────
           Desktop (≥576px): flex row — image left, text right.
           Mobile (<576px):  stacks back to image on top, text below.
           .img-intro-row is the flex container that wraps both. */
.page-intro--article .img-intro-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: 1.2rem;
}

/* img-wrap — left column on desktop */
.page-intro--article .img-wrap {
    flex: 0 0 38%;
    min-width: 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.page-intro--article .img-wrap[style] {
    background-size: cover;
    background-position: center;
}

/* grid overlay — visible only when there's no real image */
.page-intro--article .img-wrap .img-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-intro--article .img-wrap .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: .3;
}

/* right-edge fade on desktop — blends image into the card bg
           beside it */
.page-intro--article .img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-card));
    pointer-events: none;
}

/* Intro text — right column on desktop */
.page-intro--article .article-intro {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    padding: 1.8rem 0 1.8rem 1.6rem;
    /* left gap only — separates text from image edge */
    text-align: left;
    display: flex;
    align-items: center;
}

/* ── mobile: stack image on top, text below ── */
@media (max-width: 575.98px) {
    .page-intro--article .breadcrumb-row {
        padding: 1.1rem 0 0;
    }

    .page-intro--article .img-intro-row {
        flex-direction: column;
    }

    .page-intro--article .img-wrap {
        flex: none;
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    /* on mobile the fade switches to bottom edge */
    .page-intro--article .img-wrap::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(transparent, var(--bg-card));
    }

    .page-intro--article .article-intro {
        padding: 1.2rem 0 1.6rem;
        font-size: 0.82rem;
    }
}







/* ─── Article Body ─── */
.article-body {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 2.2rem;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin: 2rem 0 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-subtle);
}

.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.article-body p strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* Bullet lists in article (from privacy-policy.html) */
.article-body ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}

.article-body ul li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
}

.article-body ul li::before {
    content: '';
    width: 0.62rem;
    height: 0.62rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.55rem;
}













.hero {
    position: relative;
    text-align: center;
    padding: 3.2rem 1rem 1.8rem;
    /* was 6rem 1rem 4.5rem */
    background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    /* was clamp(2rem, 5vw, 3rem) */
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    /* rule sits right on it */
    line-height: 1.2;
}

.hero-rule {
    width: 48px;
    height: 2px;
    background: var(--bs-info);
    margin: 1rem auto 0;
    /* was 1.4rem auto 1.6rem */
}









/* ═══════════════════════════════════════════════════
           PAGE INTRO  —  NEW
           This is the merged block.  Visually it reads as the
           bottom half of the hero band because:
             • no top spacer — it sits flush under .hero
             • background continues the dark-to-card gradient
             • the radial glow bleeds down from ::before above
           The intro <p> that used to live inside .hero lives here.
           The old first .section-heading ("01 How to Reach Us")
           has been removed — it was redundant.
           ═══════════════════════════════════════════════════ */
.page-intro {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    padding: 2.2rem 1rem 2.4rem;
    text-align: center;
}

/* soft radial glow — same family as .hero::before, anchored to top
           so it visually bleeds upward and merges the two bands */
.page-intro::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.14) 0%, transparent 75%);
    pointer-events: none;
}

.page-intro p {
    position: relative;
    /* above the glow */
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}

/* ─── mobile tweak for hero + intro ─── */
@media (max-width: 575.98px) {
    .hero {
        padding: 2.2rem 1rem 1.2rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .page-intro {
        padding: 1.6rem 1rem 1.8rem;
    }

    .page-intro p {
        font-size: 0.82rem;
    }
}





/* ─── CTA strip ─── */
.cta-strip {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    padding: 3.5rem 1rem;
}

.cta-strip h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
}

.cta-strip p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold {
    display: inline-block;
    background: var(--bs-info);
    color: #0e0e0e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--bs-info-light);
    transform: translateY(-1px);
}







/* ─── Contact Info Cards ─── */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 1.6rem;
    text-align: center;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 24px rgba(201, 162, 39, 0.08);
    transform: translateY(-3px);
}

.contact-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.contact-card .icon-wrap .bb-icon {
    color: var(--bs-info);
    font-size: 1.15rem;
}

.contact-card .card-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card .card-value {
    color: var(--bs-secondary-color);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
}

.contact-card .card-value a {
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color .25s, border-color .25s;
}

.contact-card .card-value a:hover {
    color: var(--bs-info);
    text-decoration: none;
}






/* ─── Hours & Info Two-Col ─── */
.info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
}

.info-panel-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.6rem 1.8rem;
}

.info-panel-header .label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.info-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.info-panel-body {
    padding: 1.6rem 1.8rem;
}

/* ─── Hours Table ─── */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.62rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hours-row .time {
    font-size: 0.8rem;
    font-weight: 500;
}

.hours-row.closed .day {
    color: var(--text-muted);
    opacity: 0.5;
}

.hours-row.closed .time {
    color: #5a4a4a;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* gold dot beside open days */
.hours-row .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-info);
    margin-right: 0.7rem;
    flex-shrink: 0;
}

.hours-row.closed .dot {
    background: #3a3a3a;
}

/* ─── "Here for you" blurb inside panel ─── */
.here-for-you {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.here-for-you a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.here-for-you a:hover {
    border-color: var(--bs-info);
}




/* ─── Map placeholder ─── */
.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.map-placeholder .map-header {
    background: linear-gradient(135deg, #1a1710 0%, #141210 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.map-placeholder .map-header .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.map-placeholder .map-header span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bs-info);
    font-weight: 600;
}










/* ─── FAQ accordion wrapper ─── */
.faq-block {
    max-width: 740px;
    margin: 0 auto 3.5rem;
}

/* ─── Accordion Item ─── */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    border-color: rgba(201, 162, 39, 0.38);
    box-shadow: 0 2px 18px rgba(201, 162, 39, 0.06);
}

/* ─── Accordion Header / Button ─── */
.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent;
    font-weight: 500;
    padding: 1.1rem 1.25rem 1.1rem 1rem;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: background .25s, color .25s;
}

.accordion-button:not(.collapsed) {
    background: var(--bs-info-dim);
    color: var(--bs-info-light);
}

/* gold left-bar on open item */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid var(--bs-info);
}

/* custom chevron icon – rotate on open */
.accordion-button::after {
    background-image: none !important;
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/chevron-down.svg') no-repeat center / contain;
    mask: url('/assets/icons/chevron-down.svg') no-repeat center / contain;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform .35s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* ─── Accordion Body ─── */
.accordion-body {
    padding: 0 1.25rem 1.2rem 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    border-top: 1px solid var(--border-subtle);
    margin: 0 1.25rem;
    padding-top: 1rem;
    text-align: left;
}

.accordion-body a {
    color: var(--bs-info);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color .25s;
}

.accordion-body a:hover {
    border-color: var(--bs-info);
}












/* ═══ UPDATED PRICE CARD STYLES ═══ */

/* Main card container - UPDATED */
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    height: 100%;
}

.price-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 28px rgba(201, 162, 39, 0.09);
    transform: translateY(-3px);
}

/* Card image container */
.price-card .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

/* When image exists - it displays on top */
.price-card .card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity .3s, transform .3s;
    position: relative;
    z-index: 2;
    /* ADDED - image on top layer */
}

.price-card:hover .card-image img {
    opacity: 1;
    transform: scale(1.05);
}

/* Placeholder - ONLY visible when no image or image hidden */
.price-card .card-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* CHANGED - placeholder on bottom layer */
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

.price-card .card-image .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.price-card .card-image .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--bs-info);
    opacity: .3;
}

/* Card top section - UPDATED for centered content */
.price-card .card-top {
    padding: 1.6rem 1.4rem 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
    text-align: center;
    /* NEW - center alignment */
}

/* Remove the old service icon (now using image header) */
.price-card .card-top .service-icon {
    display: none;
}

.price-card .card-top h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.7rem;
}

.price-card .card-top p {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* UPDATED - "from" price display - now centered with from ABOVE */
.price-card .card-top .from-price {
    display: flex;
    flex-direction: column;
    /* NEW - stack vertically */
    align-items: center;
    gap: 0.3rem;
}

.price-card .card-top .from-price .from-label {
    font-size: 0.58rem;
    /* NEW - smaller */
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    font-weight: 500;
    order: 1;
    /* NEW - appears first (above price) */
}

.price-card .card-top .from-price .price-big {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Slightly increased */
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
    order: 2;
    /* NEW - appears second (below "from") */
}

/* UPDATED - Price lines with alternating backgrounds */
.price-card .card-lines {
    flex: 1;
    padding: 0;
    /* UPDATED - remove padding */
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.4rem;
    /* UPDATED - padding on individual items */
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
    /* NEW */
}

/* NEW - Alternating backgrounds */
.price-line:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.price-line:nth-child(even) {
    background: transparent;
}

.price-line:hover {
    background: rgba(201, 162, 39, 0.08);
}

.price-line:last-child {
    border-bottom: none;
}

.price-line .line-name {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 400;
}

.price-line .line-price {
    color: var(--bs-secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Card footer - keep existing */
.price-card .card-foot {
    padding: 1rem 1.4rem 1.4rem;
    flex-shrink: 0;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    gap: 0.45rem;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 1.1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    display: block;
    text-align: center;
}

.btn-book:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}



/* ─── Products Note Section ─── */
.products-note {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.6rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.products-note .note-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.products-note .note-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
}

.products-note .note-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.8;
    flex: 1;
}

.products-note .note-text strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}







/* ─── Promo Card ─── */
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: row;
}

.promo-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 6px 32px rgba(201, 162, 39, 0.1);
    transform: translateY(-3px);
}

/* Image column */
.promo-card .promo-img {
    width: 280px;
    min-width: 280px;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.promo-card .promo-img .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
}

.promo-card .promo-img .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.promo-card .promo-img .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    color: var(--bs-info);
    opacity: .3;
}

/* Content column */
.promo-card .promo-body {
    flex: 1;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
}

.promo-card .promo-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.6rem;
}

.promo-card .promo-body .promo-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.promo-card .promo-body .promo-pricing .new-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-info);
    line-height: 1;
}

.promo-card .promo-body .promo-pricing .old-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 300;
}

.promo-card .promo-body .promo-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-card .promo-body .promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.promo-card .promo-body .promo-features li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 300;
    line-height: 1.6;
}

.promo-card .promo-body .promo-features li::before {
    content: '';
    width: 0.68rem;
    height: 0.68rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/check.svg') no-repeat center / contain;
    mask: url('/assets/icons/check.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.promo-card .promo-body .btn-promo {
    display: inline-block;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    color: var(--bs-info);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.55rem 1.2rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, border-color .3s, color .3s;
    align-self: flex-start;
    margin-top: auto;
}

.promo-card .promo-body .btn-promo:hover {
    background: var(--bs-info-dim);
    border-color: var(--bs-info);
    color: var(--bs-info-light);
}

/* Stack on mobile */
@media (max-width: 700px) {
    .promo-card {
        flex-direction: column;
    }

    .promo-card .promo-img {
        width: 100%;
        min-width: 0;
        min-height: 180px;
    }
}

/* ─── Terms section ─── */
.terms-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.6rem 1.8rem;
    margin-top: 0.8rem;
}

.terms-section .terms-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.terms-section .terms-header .terms-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-section .terms-header .terms-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.8rem;
}

.terms-section .terms-header h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin: 0;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-section ul li {
    position: relative;
    padding: 0.38rem 0 0.38rem 1.3rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 300;
    line-height: 1.7;
}

.terms-section ul li:last-child {
    border-bottom: none;
}

.terms-section ul li::before {
    content: '';
    width: 0.62rem;
    height: 0.62rem;
    background-color: var(--bs-info);
    -webkit-mask: url('/assets/icons/caret-right.svg') no-repeat center / contain;
    mask: url('/assets/icons/caret-right.svg') no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0.5rem;
}








/* ═══════════════════════════════════════════════════════════════
   ABOUT US in - ADDITIONAL CSS
   Add these styles to your style-fixed.css file
   ═══════════════════════════════════════════════════════════════ */

/* ─── About Page Content Sections ─── */
.about-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 2rem 2.2rem;
    margin-bottom: 2rem;
}

.about-intro p {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: var(--bs-secondary-color);
    font-weight: 500;
}

/* ─── Service Feature Cards (What We Do) ─── */
.service-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.service-feature-card:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.12);
}

.service-feature-card .card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.service-feature-card .card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity .3s, transform .3s;
}

.service-feature-card:hover .card-image img {
    opacity: 1;
    transform: scale(1.05);
}

.service-feature-card .card-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-feature-card .card-image .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.service-feature-card .card-image .img-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: var(--bs-info);
    opacity: .3;
}

.service-feature-card .card-body {
    padding: 1.8rem 1.6rem;
    flex: 1;
    text-align: center;
}

.service-feature-card .card-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.8rem;
}

.service-feature-card .card-body p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

.service-feature-card .card-footer {
    padding: 1rem 1.6rem 1.6rem;
    border-top: 1px solid var(--border-subtle);
}

/* Hero-style button for service cards */
.btn-service-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bs-info);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-service-primary:hover {
    background: var(--bs-info-light);
    transform: translateY(-2px);
    color: #0e0e0e;
}

/* ─── Location Features ─── */
.location-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-feature:last-child {
    margin-bottom: 0;
}

.location-feature .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bs-info-dim);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-feature .feature-icon .bb-icon {
    color: var(--bs-info);
    font-size: 0.9rem;
}

.location-feature .feature-content h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.4rem;
}

.location-feature .feature-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Team Member Cards ─── */
.team-member-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color .3s, transform .3s;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.team-member-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.team-member-card .team-photo {
    width: 100%;
    max-width: 240px;
    height: 240px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.team-member-card .team-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ─── Team Member Card — Mobile: full-width photo ─── */
/* Add this to the bottom of style-fixed.css            */

@media (max-width: 767.98px) {
    .team-member-card .team-photo {
        max-width: 100%;
        height: 260px;
    }

    .team-member-card .team-info {
        min-width: 0;
    }
}

.team-member-card .team-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-member-card .team-photo .photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.team-member-card .team-photo .photo-placeholder .bb-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: var(--bs-info);
    opacity: .25;
}

.team-member-card .team-info {
    flex: 1;
    padding: 1.8rem 2rem;
    min-width: 280px;
}

.team-member-card .team-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.4rem;
}

.team-member-card .team-info .role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bs-info);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member-card .team-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

/* ─── Benefits List (Why Choose Us) ─── */
.benefits-list {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list .benefit-item {
    padding: 0.85rem 1.8rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list .benefit-item:last-child {
    border-bottom: none;
}

.benefits-list .benefit-item:nth-child(odd) {
    background: rgba(201, 162, 39, 0.03);
}

.benefits-list .benefit-item .bb-icon {
    color: var(--bs-info);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.benefits-list .benefit-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ─── Map Placeholder ─── */
.map-placeholder--mobile {
    width: 100%;
    height: 280px;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}






.header-font {
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1.header-font {
    font-size: 60px;
}






/* ═══════════════════════════════════════════════════
   LANGUAGE SWITCHER - FIXED MOBILE VERSION
   ═══════════════════════════════════════════════════ */

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.lang-toggle:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}

.lang-toggle .lang-current-flag {
    width: 24px;
    height: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-toggle .bb-icon {
    font-size: 0.65rem;
    color: var(--gold);
    transition: transform 0.25s;
}

.lang-toggle:hover .bb-icon {
    transform: translateY(2px);
}

/* Dropdown - Hidden by default on ALL screen sizes */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1001;
}

/* Show state - works on desktop AND mobile */
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(201, 162, 39, 0.1);
}

.lang-option.active {
    background: rgba(201, 162, 39, 0.15);
}

.lang-option img {
    width: 24px;
    height: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-option span {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-option.active span {
    color: var(--gold);
}

/* Mobile adjustments - ONLY styling, not visibility */
@media (max-width: 991px) {
    .lang-switcher {
        width: 100%;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    /* Dropdown adjusts position but still requires .show to be visible */
    .lang-dropdown {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 100%;
        /* Open upwards */
        margin-bottom: 0.5rem;
        min-width: auto;
        /* "Mix of gold and dim-gold" - Solid background for visibility */
        background: #14120a;
        /* Dark base */
        border: 1px solid var(--border-subtle);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
        z-index: 1005;
        /* Ensure on top of social icons */
    }

    .lang-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        /* Ensure distinct background for options if needed, but inheriting is fine */
    }
}

/* ─── Booking + Dashboard Prototypes ─── */
.prototype-page {
    padding-top: calc(var(--navbar-h) + 1.5rem);
    position: relative;
    overflow: clip;
}

.prototype-page::before,
.prototype-page::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.9;
}

.prototype-page::before {
    width: 26rem;
    height: 26rem;
    top: 4rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(226, 197, 90, 0.2) 0%, rgba(226, 197, 90, 0.04) 45%, transparent 72%);
}

.prototype-page::after {
    width: 22rem;
    height: 22rem;
    top: 18rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(191, 146, 91, 0.18) 0%, rgba(191, 146, 91, 0.03) 50%, transparent 72%);
}

.prototype-hero,
.prototype-shell-section,
.prototype-bridge {
    position: relative;
    z-index: 1;
}

.prototype-hero {
    padding: 2rem 0 2.5rem;
}

.prototype-hero--admin {
    padding-bottom: 2rem;
}

.prototype-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(14px);
}

.prototype-switcher__link {
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.prototype-switcher__link:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.prototype-switcher__link.is-active {
    background: linear-gradient(135deg, rgba(226, 197, 90, 0.25), rgba(191, 146, 91, 0.15));
    color: var(--text-primary);
}

.prototype-copy {
    padding: 1rem 0;
}

.prototype-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.prototype-copy h1 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}

.prototype-copy p {
    max-width: 42rem;
    color: rgba(240, 236, 228, 0.82);
    font-size: 1.02rem;
    margin: 0;
}

.prototype-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.proto-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.proto-button:hover {
    transform: translateY(-1px);
}

.proto-button--solid {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #101010;
    border-color: rgba(226, 197, 90, 0.55);
}

.proto-button--solid:hover {
    color: #101010;
}

.proto-button--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.proto-button--ghost:hover {
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.4);
}

.proto-button--block {
    width: 100%;
}

.proto-stack,
.proto-sidebar-stack {
    display: grid;
    gap: 1.5rem;
}

.prototype-shell-section {
    padding: 1rem 0 2.5rem;
}

.prototype-bridge {
    padding: 0 0 4rem;
}

.proto-section-card,
.proto-summary-card,
.proto-bridge-card,
.proto-admin-shell {
    position: relative;
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.92) 0%, rgba(13, 13, 13, 0.94) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proto-section-card,
.proto-summary-card,
.proto-bridge-card {
    padding: 1.5rem;
}

.proto-summary-card--hero {
    height: 100%;
}

.proto-summary-card--sticky {
    position: sticky;
    top: calc(var(--navbar-h) + 1.5rem);
}

.proto-summary-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.proto-summary-card h2,
.proto-section-card h2,
.proto-section-card h3,
.proto-bridge-card h2,
.proto-admin-brand h2,
.proto-admin-topbar h2 {
    color: var(--text-primary);
    margin: 0;
}

.proto-summary-card h2,
.proto-bridge-card h2,
.proto-admin-brand h2,
.proto-admin-topbar h2 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.proto-summary-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 0.98;
    margin-bottom: 1rem;
}

.proto-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.proto-stat-card {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 197, 90, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.proto-stat-card strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.proto-stat-card span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.proto-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.proto-bullet-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(240, 236, 228, 0.84);
}

.proto-bullet-list .bb-icon {
    margin-top: 0.2rem;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.proto-bullet-list--compact {
    margin-top: 1.25rem;
}

.proto-section-head,
.proto-side-head,
.proto-admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.proto-section-head {
    margin-bottom: 1.35rem;
}

.proto-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 0.98;
    margin-bottom: 0.45rem;
}

.proto-section-head p,
.proto-review-card p,
.proto-admin-brand p,
.proto-bridge-card p {
    color: var(--text-muted);
    margin: 0;
}

.proto-step-index {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.13);
    border: 1px solid rgba(226, 197, 90, 0.3);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1;
}

.proto-choice-grid,
.proto-staff-grid {
    display: grid;
    gap: 1rem;
}

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

.proto-staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proto-choice-card,
.proto-staff-card,
.proto-mini-card,
.proto-kpi-card,
.proto-schedule-column,
.proto-email-preview,
.proto-review-card {
    border-radius: 22px;
    border: 1px solid rgba(226, 197, 90, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.1rem;
}

.proto-choice-card.is-selected,
.proto-staff-card.is-selected {
    background: linear-gradient(180deg, rgba(226, 197, 90, 0.13) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(226, 197, 90, 0.3);
}

.proto-choice-card.is-disabled {
    opacity: 0.75;
}

.proto-card-top,
.proto-staff-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.proto-icon-ring,
.proto-avatar {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.12);
    border: 1px solid rgba(226, 197, 90, 0.26);
    color: var(--gold-light);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.proto-avatar {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.proto-chip,
.proto-pill,
.proto-badge,
.proto-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-chip,
.proto-pill,
.proto-toggle {
    background: rgba(226, 197, 90, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(226, 197, 90, 0.22);
}

.proto-chip--muted,
.proto-pill--soft {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
}

.proto-pill--highlight {
    background: rgba(191, 146, 91, 0.18);
    color: var(--text-primary);
}

.proto-badge {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 236, 228, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.78rem;
    font-weight: 600;
}

.proto-choice-card h3,
.proto-staff-card h3,
.proto-mini-card h3,
.proto-kpi-card strong,
.proto-schedule-column h4,
.proto-side-head h3 {
    color: var(--text-primary);
    margin: 0 0 0.45rem;
}

.proto-choice-card p,
.proto-staff-card p,
.proto-mini-card p,
.proto-email-preview p {
    color: var(--text-muted);
    margin: 0;
}

.proto-choice-meta,
.proto-badge-row,
.proto-legend,
.proto-action-row,
.proto-support-actions,
.proto-placeholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.proto-choice-meta {
    margin-top: 1rem;
    justify-content: space-between;
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.86rem;
}

.proto-price {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1;
}

.proto-date-row,
.proto-slot-grid {
    display: grid;
    gap: 0.75rem;
}

.proto-date-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.proto-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proto-date-pill,
.proto-slot {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    min-height: 3.15rem;
    padding: 0.8rem 0.95rem;
    font-weight: 700;
}

.proto-date-pill.is-active,
.proto-date-pill.is-selected,
.proto-slot.is-selected {
    background: linear-gradient(135deg, rgba(226, 197, 90, 0.24), rgba(191, 146, 91, 0.12));
    border-color: rgba(226, 197, 90, 0.35);
}

.proto-slot.is-preliminary {
    color: var(--gold-light);
    border-style: dashed;
    border-color: rgba(226, 197, 90, 0.34);
}

.proto-slot.is-full {
    opacity: 0.4;
}

.proto-legend {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.proto-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.proto-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    display: inline-block;
}

.proto-dot--available {
    background: rgba(255, 255, 255, 0.55);
}

.proto-dot--selected {
    background: var(--gold-light);
}

.proto-dot--preliminary {
    background: rgba(226, 197, 90, 0.65);
}

.proto-dot--full {
    background: rgba(255, 255, 255, 0.22);
}

.proto-account-grid,
.proto-email-layout,
.proto-panel-grid {
    display: grid;
    gap: 1rem;
}

.proto-account-grid,
.proto-email-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proto-field-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.proto-field {
    display: grid;
    gap: 0.35rem;
}

.proto-field span {
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.82rem;
}

.proto-field input {
    width: 100%;
    min-height: 3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.6);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
}

.proto-tabbar {
    display: inline-flex;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0.35rem;
}

.proto-tab {
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    color: var(--text-muted);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-tab.is-active {
    color: var(--text-primary);
    background: rgba(226, 197, 90, 0.13);
}

.proto-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
}

.proto-summary-row strong {
    color: var(--text-primary);
}

.proto-summary-row--total {
    margin-bottom: 1rem;
}

.proto-footnote {
    margin: 0.9rem 0 0;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.proto-timeline {
    list-style: none;
    counter-reset: proto-timeline;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.proto-timeline li {
    position: relative;
    counter-increment: proto-timeline;
    padding-left: 3rem;
    color: var(--text-muted);
}

.proto-timeline li::before {
    content: counter(proto-timeline);
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 197, 90, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(226, 197, 90, 0.26);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.proto-timeline strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.proto-bridge-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.prototype-page--booking .proto-section-card,
.prototype-page--booking .proto-summary-card,
.prototype-page--booking .proto-bridge-card,
.prototype-page--booking .proto-mini-card {
    border-radius: 18px;
}

.prototype-page--booking .proto-choice-card,
.prototype-page--booking .proto-staff-card,
.prototype-page--booking .proto-date-pill,
.prototype-page--booking .proto-slot,
.prototype-page--booking .proto-field input,
.prototype-page--booking .proto-tabbar,
.prototype-page--booking .proto-tab,
.prototype-page--booking .proto-button {
    border-radius: 12px;
}

.prototype-page--booking .proto-stepper-progress {
    display: grid;
    gap: 0.9rem;
}

.prototype-page--booking .proto-progress-pill {
    opacity: 0.45;
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.prototype-page--booking .proto-progress-pill.is-active,
.prototype-page--booking .proto-progress-pill.is-done {
    opacity: 1;
}

.prototype-page--booking .proto-progress-pill.is-active {
    background: rgba(226, 197, 90, 0.18);
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.28);
}

.prototype-page--booking .proto-progress-pill.is-done {
    background: rgba(76, 175, 122, 0.12);
    color: #dff2e5;
    border-color: rgba(76, 175, 122, 0.28);
}

.prototype-page--booking .proto-step-card {
    opacity: 0.42;
    pointer-events: none;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.prototype-page--booking .proto-step-card.is-active,
.prototype-page--booking .proto-step-card.is-done {
    opacity: 1;
    pointer-events: auto;
}

.prototype-page--booking .proto-step-card.is-active {
    border-color: rgba(226, 197, 90, 0.24);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.prototype-page--booking .proto-step-card.is-done {
    border-color: rgba(76, 175, 122, 0.2);
}

.prototype-page--booking .proto-step-card.is-done .proto-step-body {
    display: none;
}

.prototype-page--booking .proto-step-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.prototype-page--booking .proto-step-head__main {
    display: flex;
    gap: 1rem;
    min-width: 0;
}

.prototype-page--booking .proto-step-edit {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prototype-page--booking .proto-step-card.is-done .proto-step-edit {
    display: inline-flex;
}

.prototype-page--booking .proto-step-card.is-active .proto-step-index {
    background: rgba(226, 197, 90, 0.22);
    border-color: rgba(226, 197, 90, 0.36);
    color: var(--text-primary);
}

.prototype-page--booking .proto-step-card.is-done .proto-step-index {
    background: rgba(76, 175, 122, 0.18);
    border-color: rgba(76, 175, 122, 0.34);
    color: #dff2e5;
}

.prototype-page--booking .proto-step-summary {
    display: none;
    align-items: baseline;
    gap: 0.7rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.prototype-page--booking .proto-step-summary strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.prototype-page--booking .proto-step-card.is-done .proto-step-summary {
    display: flex;
    flex-wrap: wrap;
}

.prototype-page--booking .proto-step-body {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.35rem;
}

.prototype-page--booking .proto-choice-card--button,
.prototype-page--booking .proto-staff-card--button,
.prototype-page--booking .proto-date-pill,
.prototype-page--booking .proto-slot,
.prototype-page--booking .proto-tab {
    width: 100%;
    text-align: left;
    appearance: none;
    cursor: pointer;
}

.prototype-page--booking .proto-choice-card--button,
.prototype-page--booking .proto-staff-card--button {
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.prototype-page--booking .proto-choice-card--button:hover,
.prototype-page--booking .proto-staff-card--button:hover,
.prototype-page--booking .proto-date-pill:hover,
.prototype-page--booking .proto-slot:hover,
.prototype-page--booking .proto-tab:hover,
.prototype-page--booking .proto-step-edit:hover {
    border-color: rgba(226, 197, 90, 0.24);
}

.prototype-page--booking .proto-choice-card--button:focus-visible,
.prototype-page--booking .proto-staff-card--button:focus-visible,
.prototype-page--booking .proto-date-pill:focus-visible,
.prototype-page--booking .proto-slot:focus-visible,
.prototype-page--booking .proto-tab:focus-visible,
.prototype-page--booking .proto-button:focus-visible,
.prototype-page--booking .proto-step-edit:focus-visible {
    outline: 2px solid rgba(226, 197, 90, 0.55);
    outline-offset: 2px;
}

.prototype-page--booking .proto-choice-card.is-disabled,
.prototype-page--booking .proto-slot.is-full,
.prototype-page--booking .proto-slot.is-preliminary {
    cursor: not-allowed;
}

.prototype-page--booking .proto-date-pill span,
.prototype-page--booking .proto-slot .proto-slot-label {
    display: block;
}

.prototype-page--booking .proto-date-pill small,
.prototype-page--booking .proto-slot small {
    color: var(--text-muted);
    font-size: 0.74rem;
}

.prototype-page--booking .proto-slot {
    display: grid;
    gap: 0.12rem;
}

.prototype-page--booking .proto-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.prototype-page--booking .proto-step-helper {
    margin: 0;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.prototype-page--booking .proto-tab {
    border: none;
    background: transparent;
}

.prototype-page--booking .proto-tab-panel {
    display: none;
    margin-top: 1rem;
}

.prototype-page--booking .proto-tab-panel.is-active {
    display: block;
}

.prototype-page--booking .proto-summary-status {
    margin-bottom: 1rem;
}

.prototype-page--booking .proto-summary-status.is-ready {
    background: rgba(226, 197, 90, 0.14);
    color: var(--text-primary);
    border-color: rgba(226, 197, 90, 0.26);
}

.prototype-page--booking .proto-summary-status.is-submitted {
    background: rgba(76, 175, 122, 0.14);
    color: #dff2e5;
    border-color: rgba(76, 175, 122, 0.28);
}

.prototype-page--booking .proto-summary-row .is-empty {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
}

.prototype-page--booking .proto-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
    transform: none;
}

.prototype-page--booking .proto-submit-note {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 122, 0.24);
    background: rgba(76, 175, 122, 0.08);
}

.prototype-page--booking .proto-submit-note.is-visible {
    display: block;
}

.prototype-page--booking .proto-submit-note strong {
    display: block;
    color: #dff2e5;
    margin-bottom: 0.35rem;
}

.prototype-page--booking .proto-submit-note p {
    margin: 0;
    color: rgba(223, 242, 229, 0.84);
}

.prototype-page--admin .proto-section-card,
.prototype-page--admin .proto-summary-card,
.prototype-page--admin .proto-bridge-card,
.prototype-page--admin .proto-admin-shell,
.prototype-page--admin .proto-kpi-card,
.prototype-page--admin .proto-email-preview,
.prototype-page--admin .proto-review-card,
.prototype-page--admin .proto-schedule-column {
    border-radius: 18px;
}

.prototype-page--admin .proto-button {
    border-radius: 12px;
}

.proto-admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    overflow: hidden;
}

.proto-admin-sidebar {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(9, 9, 9, 0.96));
    display: grid;
    gap: 1.35rem;
    align-content: start;
}

.proto-admin-brand {
    margin-bottom: 0.25rem;
}

.proto-admin-brand h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    line-height: 0.98;
    margin-bottom: 0.65rem;
}

.proto-admin-sidebar__section {
    display: grid;
    gap: 0.65rem;
}

.proto-admin-sidebar__label {
    color: rgba(240, 236, 228, 0.38);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.proto-admin-nav {
    display: grid;
    gap: 0.4rem;
}

.proto-admin-nav a {
    display: grid;
    grid-template-columns: 1.1rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 3.4rem;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    color: rgba(240, 236, 228, 0.84);
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.015);
}

.proto-admin-nav a .bb-icon {
    color: rgba(240, 236, 228, 0.48);
    font-size: 0.9rem;
}

.proto-admin-nav a.is-active,
.proto-admin-nav a:hover {
    color: var(--text-primary);
    background: rgba(226, 197, 90, 0.08);
    border-color: rgba(226, 197, 90, 0.16);
}

.proto-admin-nav a.is-active .bb-icon,
.proto-admin-nav a:hover .bb-icon {
    color: var(--gold-light);
}

.proto-admin-nav__text {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.proto-admin-nav__text strong {
    color: inherit;
    font-size: 0.88rem;
    line-height: 1.1;
}

.proto-admin-nav__text small {
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.35;
}

.proto-admin-nav__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    min-height: 1.7rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.proto-admin-sidebar__footer {
    margin-top: 0.35rem;
}

.proto-admin-note {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.proto-admin-note p {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
}

.proto-admin-main {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.proto-admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0 0.4rem;
}

.proto-admin-topbar__copy {
    max-width: 38rem;
}

.proto-admin-topbar__sub,
.proto-side-head p {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
}

.proto-admin-topbar__cluster {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.proto-admin-icon-button {
    position: relative;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(240, 236, 228, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.proto-admin-icon-button .bb-icon {
    font-size: 0.96rem;
}

.proto-admin-icon-button:hover {
    border-color: rgba(226, 197, 90, 0.22);
    color: var(--gold-light);
}

.proto-admin-icon-button__badge {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    min-width: 1.2rem;
    min-height: 1.2rem;
    padding: 0 0.2rem;
    border-radius: 999px;
    background: rgba(226, 197, 90, 0.96);
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.proto-admin-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.7rem 0.45rem 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.proto-admin-user-chip strong,
.proto-admin-user-chip small {
    display: block;
}

.proto-admin-user-chip strong {
    color: var(--text-primary);
    font-size: 0.82rem;
}

.proto-admin-user-chip small {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.proto-admin-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.proto-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.proto-kpi-card {
    padding: 1rem;
}

.proto-kpi-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.proto-kpi-card span,
.proto-kpi-card small {
    display: block;
    color: var(--text-muted);
}

.proto-kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(240, 236, 228, 0.72);
}

.proto-kpi-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.15rem;
    line-height: 1;
    margin: 0.55rem 0 0.35rem;
}

.proto-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.proto-panel-grid--primary {
    grid-template-columns: 1.4fr 1fr;
}

.proto-side-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.proto-table-wrap {
    overflow-x: auto;
}

.proto-data-table {
    width: 100%;
    min-width: 46rem;
    border-collapse: collapse;
}

.proto-data-table th {
    padding: 0 0.75rem 0.8rem;
    color: rgba(240, 236, 228, 0.46);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proto-data-table td {
    padding: 0.95rem 0.75rem;
    color: rgba(240, 236, 228, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.proto-data-table tbody tr:last-child td {
    border-bottom: none;
}

.proto-data-table td strong,
.proto-data-table td span {
    display: block;
}

.proto-data-table td strong {
    color: var(--text-primary);
    margin-bottom: 0.18rem;
}

.proto-data-table td span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.proto-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.proto-inline-actions .proto-button {
    min-height: 2.35rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.7rem;
}

.proto-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proto-status-chip--pending {
    background: rgba(226, 197, 90, 0.12);
    border-color: rgba(226, 197, 90, 0.22);
    color: var(--gold-light);
}

.proto-status-chip--confirmed {
    background: rgba(76, 175, 122, 0.12);
    border-color: rgba(76, 175, 122, 0.22);
    color: #dff2e5;
}

.proto-status-chip--alert {
    background: rgba(191, 146, 91, 0.14);
    border-color: rgba(191, 146, 91, 0.26);
    color: #f1dfc0;
}

.proto-schedule-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.proto-schedule-column {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.proto-schedule-column__head {
    display: grid;
    gap: 0.4rem;
}

.proto-schedule-column h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0;
}

.proto-schedule-slot {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem;
    display: grid;
    gap: 0.25rem;
}

.proto-schedule-slot span {
    color: rgba(240, 236, 228, 0.54);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proto-schedule-slot strong {
    color: var(--text-primary);
    font-size: 0.94rem;
}

.proto-schedule-slot--muted {
    opacity: 0.68;
}

.proto-schedule-slot--alert {
    border-color: rgba(191, 146, 91, 0.26);
    background: rgba(191, 146, 91, 0.08);
}

.proto-admin-list,
.proto-rule-list,
.proto-toggle-list {
    display: grid;
    gap: 0.75rem;
}

.proto-admin-list__item,
.proto-rule-row,
.proto-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proto-admin-list__item:last-child,
.proto-rule-row:last-child,
.proto-toggle-row:last-child {
    border-bottom: none;
}

.proto-admin-list__meta,
.proto-toggle-row div {
    display: grid;
    gap: 0.2rem;
}

.proto-admin-list__meta strong,
.proto-rule-row strong,
.proto-toggle-row strong {
    color: var(--text-primary);
}

.proto-admin-list__meta span,
.proto-rule-row span,
.proto-toggle-row span {
    color: var(--text-muted);
}

.proto-toggle.is-on {
    background: rgba(226, 197, 90, 0.16);
    color: var(--text-primary);
}

.proto-placeholder-list span {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(240, 236, 228, 0.8);
    font-size: 0.8rem;
}

.proto-email-preview__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.proto-email-preview__meta span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.proto-email-preview__body {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.proto-email-preview__body strong {
    color: var(--text-primary);
}

.proto-review-card {
    min-height: 100%;
}

.proto-review-card p {
    margin-bottom: 1rem;
}

@media (max-width: 1199px) {
    .proto-admin-shell {
        grid-template-columns: 1fr;
    }

    .proto-admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .proto-kpi-grid,
    .proto-schedule-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proto-panel-grid--primary,
    .proto-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .prototype-hero {
        padding-top: 1.2rem;
    }

    .proto-choice-grid,
    .proto-staff-grid,
    .proto-account-grid,
    .proto-email-layout,
    .proto-kpi-grid,
    .proto-date-row,
    .proto-slot-grid,
    .proto-schedule-board {
        grid-template-columns: 1fr;
    }

    .proto-summary-card--sticky {
        position: static;
    }

    .proto-bridge-card,
    .proto-admin-topbar,
    .proto-admin-topbar__cluster,
    .proto-side-head,
    .proto-section-head,
    .proto-admin-list__item,
    .proto-rule-row,
    .proto-toggle-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .prototype-page--booking .proto-step-head,
    .prototype-page--booking .proto-step-head__main,
    .prototype-page--booking .proto-step-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .proto-admin-topbar__actions,
    .prototype-hero-actions {
        width: 100%;
    }

    .proto-admin-topbar__cluster,
    .proto-admin-topbar__actions .proto-button,
    .prototype-hero-actions .proto-button,
    .proto-bridge-card .proto-button {
        width: 100%;
    }

    .proto-admin-user-chip,
    .proto-admin-icon-button {
        width: 100%;
    }

    .proto-admin-icon-button {
        justify-content: flex-start;
        padding-left: 1rem;
    }
}

@media (max-width: 575px) {
    .prototype-page {
        padding-top: calc(var(--navbar-h) + 1rem);
    }

    .prototype-switcher {
        width: 100%;
        border-radius: 26px;
    }

    .prototype-switcher__link {
        width: 100%;
        text-align: center;
    }

    .proto-section-card,
    .proto-summary-card,
    .proto-bridge-card,
    .proto-admin-sidebar,
    .proto-admin-main {
        padding: 1.1rem;
    }

    .proto-stat-grid {
        grid-template-columns: 1fr;
    }

    .proto-data-table {
        min-width: 38rem;
    }
}

/* ─── Public Auth Pages ─── */
.public-auth-page {
    background:
        radial-gradient(circle at top left, rgba(191, 146, 91, 0.16), transparent 34%),
        #0e0e0e;
    color: var(--text-primary);
}

.public-auth-navbar {
    background: rgba(14, 14, 14, 0.95);
}

.public-auth {
    overflow: hidden;
}

.public-auth__hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--navbar-h) + clamp(1.35rem, 2.6vw, 2.4rem)) 0 clamp(2rem, 3.2vw, 3rem);
    background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.96) 0%, rgba(14, 14, 14, 0.84) 48%, rgba(14, 14, 14, 0.42) 100%),
        url('/assets/images/barber-haircut.webp') center right / cover no-repeat;
}

.public-auth__hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7rem;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--bg-dark));
}

.public-auth__hero > .container {
    position: relative;
    z-index: 1;
}

.public-auth__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 0.64fr);
    gap: clamp(1.6rem, 4vw, 3.5rem);
    align-items: center;
}

.public-auth__copy {
    max-width: 34.5rem;
}

.public-auth__copy h1 {
    max-width: 15ch;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 4.8vw, 4.2rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.public-auth__copy p {
    max-width: 34rem;
    color: rgba(240, 236, 228, 0.74);
    font-size: 0.94rem;
    line-height: 1.76;
}

.public-auth__lead {
    margin-top: 1rem;
    color: rgba(240, 236, 228, 0.9) !important;
    font-size: clamp(0.98rem, 1.2vw, 1.05rem) !important;
}

.public-auth__quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.35rem;
}

.public-auth__quick-actions .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.68rem 1.55rem;
}

.public-auth__text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.public-auth__text-link:hover {
    color: var(--text-primary);
}

.public-auth__button--ghost {
    background: rgba(14, 14, 14, 0.28);
    border: 1px solid rgba(226, 197, 90, 0.34);
    color: var(--gold-light);
}

.public-auth__button--ghost:hover {
    background: rgba(226, 197, 90, 0.12);
    color: var(--text-primary);
}

.public-auth__card {
    border: 1px solid rgba(226, 197, 90, 0.24);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    padding: clamp(1.2rem, 2.5vw, 1.9rem);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.public-auth__card-header {
    margin-bottom: 1.05rem;
}

.public-auth__card-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.1vw, 2.55rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.public-auth__card-header p {
    margin: 0.65rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.public-auth__card .admin-auth__form {
    gap: 0.8rem;
}

.public-auth__card .admin-field {
    position: relative;
}

.public-auth__card .admin-field > span,
.public-auth__card .admin-field > label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.public-auth__card .admin-field input {
    min-height: 3.45rem;
}

.public-auth__card .admin-field input::placeholder {
    color: rgba(240, 236, 228, 0.46);
}

.public-auth__password-input {
    position: relative;
}

.public-auth__password-input input {
    padding-right: 3.25rem;
}

.public-auth__password-toggle {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(240, 236, 228, 0.7);
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.public-auth__password-toggle:hover,
.public-auth__password-toggle:focus-visible {
    border-color: rgba(226, 197, 90, 0.32);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    outline: none;
}

.public-auth__password-helper {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(135deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.03);
}

.public-auth__password-helper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-auth__password-helper-header strong {
    color: var(--text-primary);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-auth__password-label {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.82rem;
    font-weight: 700;
}

.public-auth__password-meter {
    height: 0.38rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.09);
}

.public-auth__password-meter span {
    display: block;
    width: var(--password-meter, 0%);
    height: 100%;
    background: #7f1d2d;
    transition: width 0.22s ease, background-color 0.22s ease;
}

.public-auth__password-helper[data-strength="fair"] .public-auth__password-meter span {
    background: #bf925b;
}

.public-auth__password-helper[data-strength="good"] .public-auth__password-meter span {
    background: var(--gold-light);
}

.public-auth__password-helper[data-strength="strong"] .public-auth__password-meter span {
    background: #78b884;
}

.public-auth__password-rules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.public-auth__password-rules li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.82rem;
    line-height: 1.35;
}

.public-auth__password-rules .bb-icon {
    color: rgba(240, 236, 228, 0.26);
}

.public-auth__password-rules li.is-met {
    color: rgba(240, 236, 228, 0.9);
}

.public-auth__password-rules li.is-met .bb-icon {
    color: var(--gold-light);
}

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

.public-auth__field-wide {
    grid-column: 1 / -1;
}

.public-auth__account-links {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.public-auth__account-links a {
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.public-auth__account-links a:hover {
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.08);
    transform: translateY(-1px);
}

.public-auth__account-links strong {
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-auth__account-links span {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.86rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .public-auth__hero {
        background:
            linear-gradient(180deg, rgba(14, 14, 14, 0.94) 0%, rgba(14, 14, 14, 0.84) 58%, rgba(14, 14, 14, 0.98) 100%),
            url('/assets/images/barber-haircut-800.webp') center / cover no-repeat;
    }

    .public-auth__grid {
        grid-template-columns: 1fr;
    }

    .public-auth__card {
        order: 1;
    }

    .public-auth__copy {
        order: 2;
    }

    .public-auth__copy h1 {
        max-width: 12ch;
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }
}

@media (max-width: 575px) {
    .public-auth__hero {
        padding-top: calc(var(--navbar-h) + 1.65rem);
    }

    .public-auth__form-grid {
        grid-template-columns: 1fr;
    }

    .public-auth__password-rules {
        grid-template-columns: 1fr;
    }

    .public-auth__quick-actions,
    .public-auth__quick-actions .btn-gold,
    .public-auth__text-link {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Sunbed Client Kiosk ─── */
.sunbed-kiosk-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 14%, rgba(226, 197, 90, 0.16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(191, 146, 91, 0.18), transparent 30%),
        linear-gradient(145deg, #0b0b0b 0%, #17120d 52%, #080808 100%);
    color: var(--text-primary);
}

.sunbed-kiosk {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: clamp(1.1rem, 3vw, 2.5rem);
}

.sunbed-kiosk__panel {
    display: grid;
    gap: clamp(1rem, 2vw, 1.35rem);
    width: min(100%, 34rem);
    padding: clamp(1.25rem, 3.2vw, 2.2rem);
    border: 1px solid rgba(226, 197, 90, 0.25);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.sunbed-kiosk__brand {
    display: flex;
    justify-content: center;
    padding-bottom: 0.35rem;
}

.sunbed-kiosk__brand img {
    width: min(100%, 18rem);
    height: auto;
}

.sunbed-kiosk__intro {
    display: grid;
    gap: 0.75rem;
    text-align: center;
}

.sunbed-kiosk__intro h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 8vw, 3.7rem);
    font-weight: 700;
    line-height: 0.94;
    text-transform: uppercase;
}

.sunbed-kiosk__intro p,
.sunbed-kiosk__help {
    margin: 0;
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.94rem;
    line-height: 1.65;
}

.sunbed-kiosk__intro--found h1 {
    font-size: clamp(2.25rem, 7vw, 3.2rem);
}

.sunbed-kiosk__form {
    display: grid;
    gap: 0.9rem;
}

.sunbed-kiosk__form .admin-field {
    text-align: left;
}

.sunbed-kiosk__form .admin-field input {
    min-height: 3.8rem;
    font-size: 1.05rem;
    text-align: center;
}

.sunbed-kiosk__balance {
    display: grid;
    gap: 0.3rem;
    padding: 1.1rem;
    border: 1px solid rgba(226, 197, 90, 0.26);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.14), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.03);
    text-align: center;
}

.sunbed-kiosk__balance span {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sunbed-kiosk__balance strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 14vw, 5rem);
    line-height: 0.9;
}

.sunbed-kiosk__balance small {
    color: rgba(240, 236, 228, 0.7);
}

.sunbed-kiosk__reset {
    display: flex;
    justify-content: center;
}

.sunbed-kiosk__text-button {
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-kiosk__text-button:hover,
.sunbed-kiosk__text-button:focus-visible {
    color: var(--text-primary);
    outline: none;
}

@media (max-width: 575px) {
    .sunbed-kiosk {
        align-items: start;
    }

    .sunbed-kiosk__panel {
        min-height: calc(100vh - 2.2rem);
        align-content: center;
    }
}

/* ─── Sunbed Consent Capture ─── */
.sunbed-consent-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(226, 197, 90, 0.13), transparent 30%),
        radial-gradient(circle at 90% 86%, rgba(191, 146, 91, 0.16), transparent 34%),
        #090909;
    color: var(--text-primary);
}

.sunbed-consent {
    min-height: 100vh;
    padding: clamp(1rem, 2vw, 1.6rem);
}

.sunbed-consent__shell {
    display: grid;
    gap: 1rem;
    max-width: 96rem;
    margin: 0 auto;
}

.sunbed-consent__header {
    display: grid;
    grid-template-columns: minmax(11rem, 18rem) 1fr;
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(226, 197, 90, 0.04)),
        rgba(16, 16, 16, 0.92);
}

.sunbed-consent__header img {
    width: 100%;
    height: auto;
}

.sunbed-consent__header h1 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 0.94;
    text-transform: uppercase;
}

.sunbed-consent__header p {
    max-width: 48rem;
    margin: 0.55rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.sunbed-consent__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
    gap: 1rem;
    align-items: start;
}

.sunbed-consent__document,
.sunbed-consent__card {
    border: 1px solid rgba(226, 197, 90, 0.2);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(12, 12, 12, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.sunbed-consent__document {
    overflow: hidden;
}

.sunbed-consent__document-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(226, 197, 90, 0.16);
}

.sunbed-consent__document-head strong {
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sunbed-consent__document-head a,
.sunbed-consent__clear {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-consent__document object {
    display: block;
    width: 100%;
    height: min(76vh, 56rem);
    background: #201f1d;
}

.sunbed-consent__card {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.sunbed-consent__form-head {
    display: grid;
    gap: 0.45rem;
}

.sunbed-consent__form-head small {
    color: rgba(240, 236, 228, 0.48);
    font-size: 0.72rem;
    line-height: 1.4;
    word-break: break-all;
}

.sunbed-consent__checks {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(255, 255, 255, 0.025);
}

.sunbed-consent__signature {
    display: grid;
    gap: 0.55rem;
}

.sunbed-consent__signature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sunbed-consent__signature-head span {
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sunbed-consent__clear {
    border: 0;
    background: transparent;
}

.sunbed-consent__signature canvas {
    display: block;
    width: 100%;
    height: 12rem;
    border: 1px solid rgba(226, 197, 90, 0.32);
    background: rgba(255, 255, 255, 0.025);
    touch-action: none;
}

.sunbed-consent__signature p {
    margin: 0;
    color: #ffb4a8;
    font-size: 0.84rem;
}

.sunbed-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.admin-consent-summary {
    display: grid;
    gap: 1rem;
}

.admin-consent-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.admin-consent-history {
    display: grid;
    gap: 0.75rem;
}

.admin-consent-history article {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.15);
    background: rgba(255, 255, 255, 0.025);
}

.admin-consent-history small {
    color: rgba(240, 236, 228, 0.58);
}

@media (max-width: 991px) {
    .sunbed-consent__grid,
    .sunbed-consent__header {
        grid-template-columns: 1fr;
    }

    .sunbed-consent__header img {
        width: min(100%, 17rem);
    }

    .sunbed-consent__document object {
        height: 58vh;
    }
}

@media (max-width: 575px) {
    .sunbed-consent {
        padding: 0.75rem;
    }

    .sunbed-consent__document object {
        height: 46vh;
    }

    .sunbed-consent__actions,
    .sunbed-consent__actions .admin-button {
        width: 100%;
    }
}

/* ─── Laravel Admin App ─── */
.admin-auth-page,
.admin-app-page {
    background:
        radial-gradient(circle at top left, rgba(191, 146, 91, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(226, 197, 90, 0.12), transparent 26%),
        #090909;
    color: var(--text-primary);
}

.admin-app-page {
    --admin-schedule-drawer-offset: 5.5rem;
}

.admin-auth-page a,
.admin-app-page a {
    color: inherit;
    text-decoration: none;
}

.admin-auth {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
}

.admin-auth__panel {
    padding: clamp(2rem, 4vw, 4rem);
}

.admin-auth__panel--brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(191, 146, 91, 0.03));
}

.admin-auth__panel--form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-auth__brandmark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.admin-auth__brandmark strong {
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-size: 1.5rem;
}

.admin-auth__brandmark small,
.admin-auth__copy p,
.admin-auth__feature-list p,
.admin-auth__header p,
.admin-auth__footer {
    color: rgba(240, 236, 228, 0.72);
}

.admin-auth__brandmark-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(226, 197, 90, 0.32);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-auth__eyebrow,
.admin-shell__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-auth__copy h1,
.admin-auth__header h2,
.admin-topbar h2,
.admin-section-head h3,
.admin-shell__brand h1,
.admin-template-card h4,
.admin-staff-card h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.admin-auth__copy h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 0.95;
}

.admin-auth__copy p {
    max-width: 40rem;
    margin-top: 1.2rem;
    font-size: 1.02rem;
}

.admin-auth__feature-list {
    display: grid;
    gap: 1rem;
}

.admin-auth__feature-list article,
.admin-empty-state {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.admin-auth__feature-list .bb-icon,
.admin-empty-state .bb-icon {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    color: var(--gold-light);
}

.admin-auth__feature-list strong,
.admin-empty-state strong,
.admin-section-head h3,
.admin-kpi-card strong {
    color: var(--text-primary);
}

.admin-auth__card,
.admin-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 14, 0.88);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-auth__card {
    width: min(32rem, 100%);
    padding: 2rem;
}

.admin-auth__header {
    margin-bottom: 1.5rem;
}

.admin-auth__header h2 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 0.94;
}

.admin-auth__form {
    display: grid;
    gap: 1rem;
}

.admin-field {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
}

.admin-field span {
    color: rgba(240, 236, 228, 0.84);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.admin-field select {
    height: 3.5rem;
    padding-right: 2.85rem;
    appearance: none;
    color-scheme: dark;
    border-color: rgba(226, 197, 90, 0.28);
    background-color: rgba(255, 255, 255, 0.03);
    background-image:
        url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23d8c278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: right 1rem center, center, center;
    background-size: 0.82rem auto, 100% 100%, 100% 100%;
    cursor: pointer;
}

.admin-field textarea {
    resize: vertical;
}

.admin-field input[readonly] {
    border-color: rgba(226, 197, 90, 0.16);
    background: rgba(226, 197, 90, 0.06);
    color: rgba(240, 236, 228, 0.82);
    cursor: default;
}

.admin-field select option {
    background-color: #151515;
    color: var(--text-primary);
}

.admin-field select option:checked {
    background-color: rgba(226, 197, 90, 0.24);
    color: #fff;
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-themed-select {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.admin-themed-select__native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.admin-themed-select__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    cursor: pointer;
}

.admin-themed-select__button:focus-visible,
.admin-themed-select.is-open .admin-themed-select__button {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-themed-select.is-invalid .admin-themed-select__button {
    border-color: rgba(220, 78, 78, 0.72);
    box-shadow: 0 0 0 3px rgba(220, 78, 78, 0.12);
}

.admin-themed-select.is-disabled .admin-themed-select__button {
    cursor: not-allowed;
    opacity: 0.62;
}

.admin-themed-select.is-placeholder .admin-themed-select__value {
    color: rgba(240, 236, 228, 0.56);
}

.admin-themed-select__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-themed-select__chevron {
    flex: 0 0 auto;
    width: 0.82rem;
    height: 0.55rem;
    background: var(--gold-light);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.22s ease;
}

.admin-themed-select.is-open .admin-themed-select__chevron {
    transform: rotate(180deg);
}

.admin-themed-select__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 1160;
    display: grid;
    gap: 0.18rem;
    max-height: min(18rem, 48vh);
    padding: 0.38rem;
    overflow: auto;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.035)),
        #111;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.admin-themed-select__menu[hidden] {
    display: none;
}

.admin-themed-select__option {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.68rem 0.78rem;
    border: 0;
    background: transparent;
    color: rgba(240, 236, 228, 0.82);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    cursor: pointer;
}

.admin-themed-select__option:hover,
.admin-themed-select__option:focus-visible,
.admin-themed-select__option[aria-selected="true"] {
    outline: none;
    background: rgba(226, 197, 90, 0.14);
    color: #fff;
}

.admin-themed-select__option[aria-selected="true"] {
    box-shadow: inset 3px 0 0 var(--gold-light);
}

.admin-themed-select__option:disabled {
    color: rgba(240, 236, 228, 0.42);
    cursor: not-allowed;
}

.admin-themed-select__group {
    padding: 0.65rem 0.78rem 0.25rem;
    color: rgba(226, 197, 90, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-check-field {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(240, 236, 228, 0.76);
    font-size: 0.94rem;
}

.admin-check-field input {
    margin-top: 0.32rem;
    accent-color: var(--gold-light);
}

.admin-check-field--compact {
    align-items: center;
}

.admin-check-field--compact input {
    margin-top: 0;
}

.admin-check-field a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.admin-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid transparent;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-button:hover {
    transform: translateY(-1px);
}

.admin-button--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.admin-button--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #111;
}

.admin-button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.admin-button--ghost:hover {
    border-color: rgba(226, 197, 90, 0.48);
    color: var(--gold-light);
}

.admin-button--compact {
    min-height: 2.3rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
}

.admin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.admin-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.96rem;
}

.admin-alert--success {
    background: rgba(58, 130, 92, 0.14);
    border-color: rgba(58, 130, 92, 0.38);
    color: #d7f6e2;
}

.admin-alert--error {
    background: rgba(155, 51, 51, 0.14);
    border-color: rgba(196, 83, 83, 0.34);
    color: #ffd9d9;
}

.admin-auth__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.35rem;
    font-size: 0.92rem;
}

.admin-auth__footer a {
    color: var(--gold-light);
}

.admin-shell {
    --admin-mobile-topbar-height: 4.2rem;
    --admin-dashboard-bg:
        radial-gradient(circle at 14% 0%, rgba(191, 146, 91, 0.16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(226, 197, 90, 0.1), transparent 26%),
        #0e0e0e;
    --admin-dashboard-chrome:
        linear-gradient(180deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.015)),
        #0a0a0a;
    --admin-dashboard-card:
        linear-gradient(145deg, rgba(191, 146, 91, 0.12), rgba(255, 255, 255, 0.025) 46%, rgba(226, 197, 90, 0.05)),
        var(--bg-card);
    --admin-dashboard-card-alt:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025) 48%, rgba(191, 146, 91, 0.1)),
        var(--bg-card);
    --admin-dashboard-card-border: rgba(226, 197, 90, 0.22);
    --admin-dashboard-card-border-alt: rgba(191, 146, 91, 0.28);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 19.5rem minmax(0, 1fr);
    min-width: 0;
    background: var(--admin-dashboard-bg);
}

.admin-menu-toggle,
.admin-menu-close,
.admin-menu-backdrop {
    display: none;
}

.admin-shell__sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.35rem;
    border-right: 1px solid rgba(226, 197, 90, 0.14);
    background: var(--admin-dashboard-chrome);
}

.admin-sidebar__logo {
    display: inline-flex;
    width: min(16rem, 100%);
    margin-bottom: 1.35rem;
}

.admin-sidebar__logo img {
    width: 100%;
    height: auto;
}

.admin-shell__brand h1 {
    font-size: 2.2rem;
    line-height: 0.95;
}

.admin-shell__brand p,
.admin-topbar p,
.admin-kpi-card small,
.admin-definition-list dd,
.admin-template-card p,
.admin-template-card small,
.admin-staff-card p,
.admin-table td span {
    color: rgba(240, 236, 228, 0.68);
}

.admin-shell__nav {
    display: grid;
    gap: 0.4rem;
}

.admin-shell__nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 3rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid transparent;
    color: rgba(240, 236, 228, 0.74);
}

.admin-shell__nav-label {
    display: block;
    margin: 0.95rem 0 0.2rem;
    padding: 0 0.95rem;
    color: rgba(226, 197, 90, 0.66);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-shell__nav a .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: rgba(240, 236, 228, 0.54);
}

.admin-shell__nav a small {
    margin-left: auto;
    color: rgba(226, 197, 90, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-shell__nav a:hover,
.admin-shell__nav a.is-active {
    border-color: rgba(226, 197, 90, 0.2);
    background: rgba(226, 197, 90, 0.08);
    color: var(--text-primary);
}

.admin-shell__nav a:hover .bb-icon,
.admin-shell__nav a.is-active .bb-icon {
    color: var(--gold-light);
}

.admin-shell__sidebar-note {
    margin-top: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.admin-shell__sidebar-actions {
    display: none;
    gap: 0.65rem;
}

.admin-shell__sidebar-actions form,
.admin-shell__sidebar-actions .admin-button {
    width: 100%;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-badge--gold {
    border-color: rgba(226, 197, 90, 0.3);
    background: rgba(226, 197, 90, 0.1);
    color: var(--gold-light);
}

.admin-shell__main {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
    min-width: 0;
}

.admin-card {
    padding: 1.15rem;
    min-width: 0;
    overflow: hidden;
    border-color: var(--admin-dashboard-card-border);
    background: var(--admin-dashboard-card);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.admin-card:nth-of-type(even) {
    border-color: var(--admin-dashboard-card-border-alt);
    background: var(--admin-dashboard-card-alt);
}

.admin-shell .admin-empty-state {
    border-color: rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin: -1rem -1rem 0;
    padding: 0.82rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(226, 197, 90, 0.14);
    background: var(--admin-dashboard-chrome);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: none;
    min-width: 0;
}

.admin-topbar__left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 auto;
    min-width: 0;
}

.admin-topbar__brandmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.15rem;
    min-width: 4.15rem;
    height: 2.45rem;
    padding: 0.35rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(0, 0, 0, 0.28);
}

.admin-topbar__brandmark img {
    max-width: 100%;
    max-height: 100%;
}

.admin-topbar__mobile-logo {
    display: none;
    align-items: center;
    justify-content: center;
    width: 7.2rem;
    min-width: 7.2rem;
    height: 2.55rem;
    padding: 0.3rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.055);
}

.admin-topbar__mobile-logo img {
    width: 100%;
    height: auto;
}

.admin-topbar__title {
    min-width: 0;
}

.admin-menu-toggle {
    align-items: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-menu-toggle__hamburger {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.45rem;
    height: 1.05rem;
}

.admin-menu-toggle__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-0.85rem);
}

.admin-menu-toggle[aria-expanded="true"] .admin-menu-toggle__hamburger span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
}

.admin-topbar h2 {
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(34vw, 34rem);
}

.admin-topbar .admin-shell__eyebrow {
    margin-bottom: 0.28rem;
    font-size: 0.66rem;
}

.admin-topbar p {
    margin: 0.25rem 0 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(34vw, 36rem);
}

.admin-topbar p span {
    color: rgba(240, 236, 228, 0.3);
}

.admin-topbar__actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.55rem;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.admin-topbar__actions form {
    margin: 0;
}

.admin-topbar__actions .admin-button {
    min-height: 2.65rem;
    padding: 0.62rem 0.8rem;
    font-size: 0.72rem;
}

.admin-customer-search {
    position: relative;
    flex: 1 1 min(28rem, 100%);
    max-width: min(34rem, 42vw);
    min-width: 12rem;
    z-index: 960;
}

.admin-customer-search--booking {
    flex: none;
    max-width: none;
    min-width: 0;
    z-index: 1010;
}

.admin-customer-search__field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 2.75rem;
    margin: 0;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
}

.admin-customer-search__field .bb-icon {
    width: 1rem;
    height: 1rem;
    color: var(--gold-light);
    flex: 0 0 auto;
}

.admin-customer-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    font-size: 0.86rem;
}

.admin-customer-search input::placeholder {
    color: rgba(240, 236, 228, 0.48);
}

.admin-customer-search__results {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    max-height: min(26rem, 70vh);
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-customer-search__item,
.admin-customer-search__empty {
    display: grid;
    gap: 0.25rem;
    width: 100%;
    padding: 0.8rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    font: inherit;
    text-align: left;
}

.admin-customer-search__item:last-child,
.admin-customer-search__empty:last-child {
    border-bottom: 0;
}

.admin-customer-search__item {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: inherit;
    cursor: pointer;
}

.admin-customer-search__item:hover,
.admin-customer-search__item:focus-visible {
    outline: none;
    background: rgba(226, 197, 90, 0.08);
}

.admin-customer-search__item strong {
    color: var(--text-primary);
    line-height: 1.2;
}

.admin-customer-search__item span,
.admin-customer-search__item small,
.admin-customer-search__empty {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.78rem;
    line-height: 1.35;
}

.admin-notifications {
    position: relative;
}

.admin-notifications summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 2.85rem;
    min-height: 2.85rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-notifications summary > span:not(.bb-icon) {
    display: none;
}

.admin-notifications summary::-webkit-details-marker {
    display: none;
}

.admin-notifications summary .bb-icon {
    width: 1.24rem;
    height: 1.24rem;
    color: var(--gold-light);
}

.admin-notifications summary strong {
    position: absolute;
    top: 0.32rem;
    right: 0.32rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.02rem;
    height: 1.02rem;
    padding: 0 0.26rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 2px #0a0a0a;
    color: #111;
    font-size: 0.6rem;
    letter-spacing: 0;
    line-height: 1;
    transform: translate(28%, -24%);
}

.admin-user-menu {
    position: relative;
}

.admin-user-menu summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    min-height: 2.85rem;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-notifications summary:hover,
.admin-notifications[open] summary,
.admin-user-menu summary:hover,
.admin-user-menu[open] summary {
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-notifications summary:focus-visible,
.admin-user-menu summary:focus-visible {
    outline: 2px solid rgba(226, 197, 90, 0.55);
    outline-offset: 0.12rem;
}

.admin-user-menu summary::-webkit-details-marker {
    display: none;
}

.admin-user-menu summary .bb-icon {
    width: 1.28rem;
    height: 1.28rem;
    color: var(--gold-light);
}

.admin-user-menu__panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 950;
    width: min(17rem, 86vw);
    padding: 0.55rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-user-menu__meta {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem 0.85rem 0.85rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-menu__meta strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.25;
}

.admin-user-menu__meta small {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.76rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.admin-user-menu__divider {
    height: 1px;
    margin: 0.35rem 0;
    background: rgba(255, 255, 255, 0.08);
}

.admin-user-menu__panel a,
.admin-user-menu__panel button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.75rem 0.85rem;
    border: 0;
    background: transparent;
    color: rgba(240, 236, 228, 0.78);
    font: inherit;
    font-size: 0.86rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.admin-user-menu__panel a:hover,
.admin-user-menu__panel button:hover {
    background: rgba(226, 197, 90, 0.08);
    color: var(--text-primary);
}

.admin-user-menu__panel .bb-icon {
    color: var(--gold-light);
}

.admin-user-menu__panel form {
    margin: 0;
}

.admin-notifications__panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 950;
    width: min(24rem, 86vw);
    padding: 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-notifications__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0 0 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-notifications__head-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-notifications__head-actions form {
    margin: 0;
}

.admin-notifications__head a,
.admin-notifications__head button {
    color: var(--gold-light);
}

.admin-notifications__head button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.admin-notification-item,
.admin-notification-empty {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-notification-item:last-child,
.admin-notification-empty:last-child {
    border-bottom: 0;
}

.admin-notification-item strong,
.admin-notification-empty strong {
    color: var(--text-primary);
}

.admin-notification-item span,
.admin-notification-empty span,
.admin-notification-item small {
    color: rgba(240, 236, 228, 0.64);
}

.admin-notification-item--cancellation strong {
    color: #ffd9d9;
}

.admin-grid {
    display: grid;
    gap: 1.3rem;
    min-width: 0;
}

.admin-grid--kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.admin-kpi-card {
    display: grid;
    gap: 0.55rem;
}

.admin-kpi-card span {
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-kpi-card strong {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.88;
    color: var(--gold-light);
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 42rem;
}

.admin-table th,
.admin-table td {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-table td strong {
    display: block;
    color: var(--text-primary);
}

.admin-definition-list {
    display: grid;
    gap: 0.9rem;
}

.admin-definition-list div {
    display: grid;
    gap: 0.28rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-definition-list dt {
    color: rgba(240, 236, 228, 0.6);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-definition-list dd {
    margin: 0;
}

.admin-muted-copy {
    color: rgba(240, 236, 228, 0.68);
}

.admin-account-notice {
    border-color: rgba(226, 197, 90, 0.28);
    background: linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025));
}

.admin-account-notice p {
    color: rgba(240, 236, 228, 0.74);
}

.admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-inline-actions form {
    margin: 0;
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 0.75rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-filter-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.admin-filter-bar__actions .admin-button {
    min-height: 3.5rem;
    white-space: nowrap;
}

.admin-filter-bar--audit {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr) auto;
}

.admin-compact-filter {
    margin: 0;
}

.admin-compact-filter .admin-field {
    min-width: min(14rem, 100%);
}

.admin-compact-filter .admin-field select {
    min-height: 2.65rem;
    height: 2.65rem;
    padding-block: 0.45rem;
}

.admin-compact-filter .admin-themed-select__button {
    min-height: 2.65rem;
    height: 2.65rem;
    padding-block: 0.45rem;
}

.admin-sunbed-card {
    display: grid;
    gap: 1.2rem;
}

.admin-sunbed-summary .admin-kpi-card,
.admin-sunbed-form {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-sunbed-summary .admin-kpi-card strong {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.admin-sunbed-summary .admin-kpi-card small {
    color: rgba(240, 236, 228, 0.6);
}

.admin-sunbed-forms {
    align-items: start;
}

.admin-sunbed-form .admin-section-head {
    margin-bottom: 0;
}

.admin-sunbed-ledger {
    display: grid;
    gap: 1rem;
}

.admin-sunbed-table {
    min-width: 48rem;
}

.admin-booking-form {
    display: grid;
    gap: 1.4rem;
    min-width: 0;
}

.admin-form-section {
    display: grid;
    gap: 1rem;
}

.admin-choice-grid,
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-form-grid--booking-details {
    align-items: start;
}

.admin-duration-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
    align-items: start;
}

.admin-duration-fields__note {
    grid-column: 1 / -1;
    line-height: 1.45;
}

.admin-form-grid--booking-details .admin-field {
    align-content: start;
}

.admin-form-grid--booking-details .admin-field input,
.admin-form-grid--booking-details .admin-field select,
.admin-form-grid--booking-details .admin-slot-picker__button {
    display: block;
    height: 3.6rem;
    min-height: 3.6rem;
    line-height: 1.2;
}

.admin-form-grid--booking-details .admin-field input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

.admin-slot-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    margin-top: -0.25rem;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background: rgba(226, 197, 90, 0.05);
    text-align: center;
}

.admin-slot-status .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--gold-light);
    flex: 0 0 auto;
}

.admin-slot-status .admin-muted-copy {
    line-height: 1.35;
}

.admin-slot-picker {
    position: relative;
    min-width: 0;
}

.admin-slot-picker__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-slot-picker__button .bb-icon {
    width: 0.82rem;
    height: 0.82rem;
    color: var(--gold-light);
    transition: transform 0.2s ease;
}

.admin-slot-picker__button:disabled {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(240, 236, 228, 0.46);
    cursor: not-allowed;
}

.admin-slot-picker.is-open .admin-slot-picker__button,
.admin-slot-picker__button:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-slot-picker.is-open .admin-slot-picker__button .bb-icon {
    transform: rotate(180deg);
}

.admin-slot-picker.has-error .admin-slot-picker__button {
    border-color: rgba(196, 83, 83, 0.64);
    box-shadow: 0 0 0 3px rgba(196, 83, 83, 0.12);
}

.admin-slot-picker__menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 980;
    display: grid;
    gap: 0.35rem;
    max-height: min(20rem, 52vh);
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.28);
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.admin-slot-picker__menu[hidden] {
    display: none;
}

.admin-slot-picker__option {
    display: grid;
    gap: 0.18rem;
    width: 100%;
    min-height: 3.15rem;
    padding: 0.72rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(226, 197, 90, 0.035)),
        rgba(255, 255, 255, 0.02);
    color: rgba(240, 236, 228, 0.78);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-slot-picker__option strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.15;
}

.admin-slot-picker__option small {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.74rem;
    line-height: 1.2;
}

.admin-slot-picker__option:hover,
.admin-slot-picker__option:focus-visible,
.admin-slot-picker__option.is-selected {
    outline: none;
    border-color: rgba(226, 197, 90, 0.42);
    background: rgba(226, 197, 90, 0.1);
    color: var(--text-primary);
}

.admin-slot-picker__option:hover {
    transform: translateY(-1px);
}

.admin-slot-picker__option.is-selected {
    box-shadow: inset 0 0 0 1px rgba(226, 197, 90, 0.2);
}

.admin-choice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-choice-card:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.4);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.025);
}

.admin-choice-card input {
    margin-top: 0.25rem;
    accent-color: var(--gold-light);
}

.admin-choice-card input:checked + span strong {
    color: var(--gold-light);
}

.admin-choice-card strong,
.admin-choice-card small,
.admin-choice-card em {
    display: block;
}

.admin-choice-card strong {
    color: var(--text-primary);
}

.admin-choice-card small,
.admin-choice-card em {
    color: rgba(240, 236, 228, 0.68);
}

.admin-choice-card em {
    margin-top: 0.35rem;
    font-style: normal;
}

.admin-choice-card--stacked {
    grid-template-columns: auto minmax(0, 1fr);
}

.admin-choice-card__controls {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.admin-choice-card__controls > span {
    display: grid;
    gap: 0.35rem;
}

.admin-choice-card__controls span span {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.admin-choice-card__controls input[type="text"] {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text-primary);
}

.admin-choice-card__controls select {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 2.4rem 0.7rem 0.8rem;
    border: 1px solid rgba(226, 197, 90, 0.24);
    background:
        url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 1.4L7 7L12.6 1.4' stroke='%23d8c278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 0.8rem center / 0.82rem auto no-repeat,
        rgba(0, 0, 0, 0.18);
    color: var(--text-primary);
    color-scheme: dark;
    appearance: none;
}

.admin-shell select option,
.admin-shell select optgroup,
.admin-choice-card__controls select option {
    background-color: #151515;
    color: var(--text-primary);
}

.admin-shell select option:checked,
.admin-choice-card__controls select option:checked {
    background-color: rgba(226, 197, 90, 0.24);
    color: #fff;
}

.admin-shell select option:disabled,
.admin-choice-card__controls select option:disabled {
    color: rgba(240, 236, 228, 0.46);
}

.admin-choice-card__controls select:focus {
    outline: none;
    border-color: rgba(226, 197, 90, 0.66);
    box-shadow: 0 0 0 3px rgba(226, 197, 90, 0.12);
}

.admin-choice-card__controls .admin-themed-select__button {
    min-height: 2.8rem;
    padding: 0.7rem 0.8rem;
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.18);
}

.admin-field--wide {
    grid-column: 1 / -1;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.admin-action-stack,
.admin-note-list,
.admin-timeline {
    display: grid;
    gap: 1rem;
}

.admin-action-stack form {
    margin: 0;
}

.admin-note-list {
    margin-top: 1rem;
}

.admin-note-list article,
.admin-note-list__link,
.admin-timeline li {
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-note-list__link {
    color: inherit;
    text-decoration: none;
    scroll-margin-top: 5.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-note-list__link:hover,
.admin-note-list__link:focus-visible,
.admin-note-list__link:target {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.025);
}

.admin-note-list__link.is-unread {
    border-color: rgba(226, 197, 90, 0.36);
    box-shadow: inset 0 0 0 1px rgba(226, 197, 90, 0.12);
}

.admin-note-list strong,
.admin-note-list small,
.admin-note-list p,
.admin-timeline strong,
.admin-timeline span,
.admin-timeline p,
.admin-timeline small {
    display: block;
}

.admin-note-list small,
.admin-timeline span,
.admin-timeline small {
    color: rgba(240, 236, 228, 0.6);
}

.admin-note-list p,
.admin-timeline p {
    margin: 0.45rem 0 0;
    color: rgba(240, 236, 228, 0.74);
}

.admin-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-staff-list,
.admin-template-grid {
    display: grid;
    gap: 0.9rem;
}

.admin-staff-card,
.admin-template-card {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-staff-card__meta,
.admin-template-card__head,
.admin-template-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: space-between;
}

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

.admin-template-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-placeholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-placeholder-groups {
    display: grid;
    gap: 1rem;
}

.admin-placeholder-groups > div {
    display: grid;
    gap: 0.55rem;
}

.admin-placeholder-groups strong {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-resource-list {
    display: grid;
    gap: 0.35rem;
    color: rgba(240, 236, 228, 0.68);
    font-size: 0.86rem;
}

.admin-resource-list a {
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
    color: inherit;
    text-decoration: none;
}

.admin-resource-list a:hover {
    border-color: rgba(226, 197, 90, 0.24);
    background: rgba(226, 197, 90, 0.06);
}

.admin-resource-list a strong {
    color: var(--text-primary);
}

.admin-stat-list {
    display: grid;
    gap: 0.85rem;
}

.admin-stat-row {
    display: grid;
    gap: 0.55rem;
}

.admin-stat-row > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(240, 236, 228, 0.7);
    font-size: 0.86rem;
}

.admin-stat-row strong {
    color: var(--text-primary);
}

.admin-stat-meter {
    height: 0.6rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.admin-stat-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.admin-hours-grid,
.admin-schedule-staff-list {
    display: grid;
    gap: 0.8rem;
}

.admin-schedule-editor {
    gap: 1rem;
}

.admin-schedule-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-schedule-launch-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    min-height: 5.2rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-schedule-launch-card:hover,
.admin-schedule-launch-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.42);
    outline: none;
}

.admin-schedule-launch-card--shop {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 5.8rem;
}

.admin-schedule-launch-card__icon {
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.08);
    color: var(--gold-light);
}

.admin-schedule-launch-card__icon .bb-icon,
.admin-schedule-launch-card > .bb-icon {
    width: 1rem;
    height: 1rem;
}

.admin-schedule-launch-card__copy {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.admin-schedule-launch-card__copy > span {
    color: rgba(226, 197, 90, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-schedule-launch-card__copy strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.admin-schedule-launch-card__copy small,
.admin-schedule-staff-summary span,
.admin-schedule-drawer__head p {
    color: rgba(240, 236, 228, 0.68);
}

.admin-schedule-drawer {
    position: fixed;
    inset: var(--admin-schedule-drawer-offset, 5.5rem) 0 0;
    z-index: 850;
    visibility: hidden;
    pointer-events: none;
}

.admin-schedule-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.admin-schedule-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    transition: background-color 0.22s ease;
}

.admin-schedule-drawer.is-open .admin-schedule-drawer__backdrop {
    background: rgba(0, 0, 0, 0.62);
}

.admin-schedule-drawer__panel {
    position: absolute;
    inset: 0 0 0 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(37rem, calc(100vw - 2rem));
    border-left: 1px solid rgba(226, 197, 90, 0.28);
    background:
        radial-gradient(circle at 100% 0%, rgba(226, 197, 90, 0.1), transparent 32rem),
        #10100f;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
    transform: translateX(104%);
    transition: transform 0.24s ease;
}

.admin-schedule-drawer.is-open .admin-schedule-drawer__panel {
    transform: translateX(0);
}

.admin-schedule-drawer__head,
.admin-schedule-drawer__foot {
    padding: 1.25rem;
    border-color: rgba(255, 255, 255, 0.08);
}

.admin-schedule-drawer__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-schedule-drawer__head h3 {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.9;
}

.admin-schedule-drawer__head p {
    margin: 0.6rem 0 0;
}

.admin-schedule-drawer__close {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 1.45rem;
    line-height: 1;
}

.admin-schedule-drawer__body {
    min-height: 0;
    overflow-y: auto;
    padding: 1rem 1.25rem;
}

.admin-schedule-drawer__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.admin-hours-row.admin-hours-row--drawer {
    grid-template-columns: minmax(5.8rem, 1fr) auto minmax(6.4rem, 0.7fr) minmax(6.4rem, 0.7fr);
    padding: 0.72rem;
}

.admin-schedule-staff-summary {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(226, 197, 90, 0.16);
    background: rgba(226, 197, 90, 0.045);
}

.admin-schedule-staff-summary strong {
    display: block;
    color: var(--text-primary);
}

body.is-schedule-drawer-open {
    overflow: hidden;
}

.admin-hours-row {
    display: grid;
    grid-template-columns: minmax(7rem, 1fr) auto minmax(8rem, 0.75fr) minmax(8rem, 0.75fr);
    gap: 0.75rem;
    align-items: end;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-hours-row--compact {
    grid-template-columns: minmax(6rem, 1fr) auto minmax(7rem, 0.65fr) minmax(7rem, 0.65fr);
    padding: 0.7rem;
}

.admin-hours-row > strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-schedule-staff-card,
.admin-note-list__item {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-note-list__item + .admin-note-list__item {
    margin-top: 0.8rem;
}

.admin-note-list__item strong,
.admin-note-list__item span,
.admin-note-list__item p {
    display: block;
}

.admin-note-list__item strong {
    color: var(--text-primary);
}

.admin-note-list__item span,
.admin-note-list__item p {
    margin: 0;
    color: rgba(240, 236, 228, 0.68);
}

.admin-placeholder-list code {
    display: inline-flex;
    padding: 0.28rem 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.22);
    background: rgba(226, 197, 90, 0.07);
    color: var(--gold-light);
    font-size: 0.78rem;
}

.admin-grid--email-editor {
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
}

.admin-email-preview,
.admin-email-preview > div {
    display: grid;
    gap: 0.65rem;
}

.admin-email-preview {
    gap: 1rem;
}

.admin-email-preview__frame {
    overflow: hidden;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: #f3efe6;
}

.admin-email-preview__frame iframe {
    display: block;
    width: 100%;
    height: 42rem;
    border: 0;
    background: #f3efe6;
}

.admin-email-preview strong {
    color: rgba(240, 236, 228, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-email-preview p {
    margin: 0;
    color: var(--text-primary);
}

.admin-email-preview__html,
.admin-email-preview pre {
    max-height: 20rem;
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(240, 236, 228, 0.8);
}

.admin-email-preview__details summary {
    cursor: pointer;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-email-preview__html p:last-child {
    margin-bottom: 0;
}

.admin-email-preview pre {
    white-space: pre-wrap;
    font-size: 0.84rem;
}

.admin-test-email-form {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-customer-picker {
    display: grid;
    gap: 0.45rem;
    max-height: 18rem;
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(226, 197, 90, 0.2);
    background: rgba(0, 0, 0, 0.18);
}

.admin-customer-picker[hidden] {
    display: none;
}

.admin-customer-picker__item {
    display: grid;
    gap: 0.22rem;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(240, 236, 228, 0.74);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-customer-picker__item:hover,
.admin-customer-picker__item:focus-visible {
    outline: none;
    border-color: rgba(226, 197, 90, 0.38);
    background: rgba(226, 197, 90, 0.08);
}

.admin-customer-picker__item strong {
    color: var(--text-primary);
}

.admin-customer-picker__item span,
.admin-customer-picker__item small {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.78rem;
}

.admin-day-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.85rem;
}

.admin-day-column {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 18rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-day-column__head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-day-column__head strong {
    color: var(--text-primary);
}

.admin-day-column__head span {
    color: rgba(240, 236, 228, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-day-column__body {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: 0.75rem;
}

.admin-flag-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-flag-list article {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.95rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-flag-list article > div {
    display: grid;
    gap: 0.2rem;
}

.admin-flag-list strong {
    color: var(--text-primary);
}

.admin-flag-list small,
.admin-flag-list p {
    margin: 0;
    color: rgba(240, 236, 228, 0.64);
}

.admin-flag-form {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-audit-list {
    display: grid;
    gap: 0.75rem;
}

.admin-audit-item {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-audit-item > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-audit-item strong {
    color: var(--text-primary);
}

.admin-audit-item p,
.admin-audit-item small {
    margin: 0;
    color: rgba(240, 236, 228, 0.62);
}

.admin-audit-item details summary {
    cursor: pointer;
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-audit-item pre {
    max-height: 16rem;
    overflow: auto;
    margin: 0.55rem 0 0;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.78rem;
    white-space: pre-wrap;
}

.admin-preset-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.admin-week-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-week-toolbar strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-week-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(10rem, 1fr));
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.admin-week-day {
    display: grid;
    grid-template-rows: auto minmax(12rem, 1fr);
    min-width: 10rem;
    border: 1px solid rgba(226, 197, 90, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(226, 197, 90, 0.04)),
        rgba(255, 255, 255, 0.02);
}

.admin-week-day.is-today {
    border-color: rgba(226, 197, 90, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.025);
}

.admin-week-day__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-week-day__head div {
    display: grid;
    gap: 0.2rem;
}

.admin-week-day__head span,
.admin-week-day__head small {
    color: rgba(240, 236, 228, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-week-day__head strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 0.9;
}

.admin-week-day__body {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: 0.75rem;
}

.admin-week-day__body > .admin-muted-copy {
    margin: 0;
    font-size: 0.82rem;
}

.admin-week-appointment {
    display: grid;
    gap: 0.22rem;
    padding: 0.75rem;
    border: 1px solid rgba(226, 197, 90, 0.14);
    background: rgba(0, 0, 0, 0.18);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-week-appointment:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 197, 90, 0.38);
    background: rgba(226, 197, 90, 0.06);
}

.admin-week-appointment--preliminary {
    border-color: rgba(226, 197, 90, 0.34);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.1), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
}

.admin-week-appointment--preliminary time {
    color: var(--gold);
}

.admin-week-appointment--confirmed {
    border-color: rgba(226, 197, 90, 0.18);
}

.admin-week-appointment time {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.admin-week-appointment strong {
    color: var(--text-primary);
    line-height: 1.2;
}

.admin-week-appointment span,
.admin-week-appointment small {
    color: rgba(240, 236, 228, 0.64);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* ─── Customer Booking Area ─── */
.customer-sidebar__logo {
    display: inline-flex;
    width: min(16rem, 100%);
    margin-bottom: 1.1rem;
}

.customer-sidebar__logo img {
    width: 100%;
    height: auto;
}

.customer-topbar .admin-topbar__brandmark {
    border-color: rgba(226, 197, 90, 0.28);
    background: rgba(226, 197, 90, 0.06);
}

.customer-profile-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
}

.customer-profile-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.customer-profile-card p {
    max-width: 45rem;
    margin: 0.75rem 0 0;
    color: rgba(240, 236, 228, 0.72);
}

.customer-profile-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
    align-items: center;
}

.admin-shell--customer .admin-choice-card > span,
.admin-shell--customer .admin-card,
.admin-shell--customer .admin-section-head,
.admin-shell--customer .admin-empty-state,
.admin-shell--customer .customer-profile-card {
    min-width: 0;
}

.admin-shell--customer .admin-card p,
.admin-shell--customer .admin-choice-card em,
.admin-shell--customer .admin-choice-card small,
.admin-shell--customer .admin-section-head h3,
.admin-shell--customer .customer-profile-card h3 {
    overflow-wrap: anywhere;
}

.customer-sidebar {
    gap: 0;
    padding-top: 1.35rem;
}

.customer-sidebar__logo {
    margin-bottom: 1.35rem;
}

.customer-sidebar__nav {
    align-content: start;
}

.customer-topbar {
    justify-content: flex-end;
}

.customer-topbar .admin-topbar__left {
    flex: 0 0 auto;
}

.customer-topbar .admin-topbar__actions {
    width: 100%;
}

.customer-topbar .admin-notifications summary {
    justify-content: center;
    width: 2.85rem;
    padding-inline: 0;
}

.customer-topbar .admin-notifications summary > span:not(.bb-icon) {
    display: none;
}

.customer-bookings-table {
    min-width: 48rem;
}

.customer-sunbed-summary .admin-kpi-card,
.customer-sunbed-ledger {
    border-color: rgba(226, 197, 90, 0.22);
    background:
        linear-gradient(145deg, rgba(226, 197, 90, 0.09), rgba(255, 255, 255, 0.025) 46%, rgba(191, 146, 91, 0.1)),
        rgba(16, 16, 16, 0.92);
}

.customer-sunbed-summary .admin-kpi-card strong {
    color: var(--gold-light);
}

.customer-sunbed-table {
    min-width: 44rem;
}

.customer-review-card {
    max-width: none;
}

.customer-review-hero,
.customer-review-copy {
    border-color: rgba(226, 197, 90, 0.24);
}

.customer-review-guide .admin-kpi-card strong {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}

.customer-review-tips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-customer-sunbed-hub {
    overflow: visible;
}

.admin-customer-sunbed-kpis {
    margin-bottom: 1.65rem;
}

.admin-customer-sunbed-actions {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.admin-customer-sunbed-actions .admin-schedule-launch-card {
    min-height: 5.1rem;
}

.admin-schedule-drawer__panel.admin-booking-form {
    gap: 0;
}

@media (max-width: 1199px) {
    .admin-auth {
        grid-template-columns: 1fr;
    }

    .admin-auth__panel--brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .admin-grid--kpis,
    .admin-grid--split,
    .admin-template-grid,
    .admin-template-grid--wide,
    .admin-grid--email-editor,
    .admin-filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-review-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-menu-toggle,
    .admin-topbar__mobile-logo {
        display: inline-flex;
    }

    .admin-menu-backdrop {
        position: fixed;
        inset: var(--admin-mobile-topbar-height) 0 0;
        z-index: 1020;
        border: 0;
        background: rgba(0, 0, 0, 0.64);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .admin-shell.is-admin-menu-open .admin-menu-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .admin-shell__sidebar {
        position: fixed;
        inset: var(--admin-mobile-topbar-height) auto 0 0;
        z-index: 1030;
        width: min(21rem, 88vw);
        max-height: calc(100dvh - var(--admin-mobile-topbar-height));
        overflow-y: auto;
        border-right: 1px solid rgba(226, 197, 90, 0.14);
        border-bottom: 0;
        background: var(--admin-dashboard-chrome);
        transform: translateX(-105%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .admin-shell.is-admin-menu-open .admin-shell__sidebar {
        transform: translateX(0);
    }

    .admin-shell__brand {
        padding-right: 2.5rem;
    }

    .admin-topbar {
        top: 0;
        z-index: 1040;
        align-items: center;
        min-height: var(--admin-mobile-topbar-height);
        padding-block: 0.58rem;
    }

    .admin-app-page {
        --admin-schedule-drawer-offset: 5rem;
    }

    .admin-topbar__left {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .admin-topbar__actions {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .customer-topbar {
        justify-content: space-between;
    }

    .customer-topbar .admin-topbar__left {
        flex: 1 1 auto;
    }

    .customer-topbar .admin-topbar__actions {
        width: auto;
        flex: 0 0 auto;
    }

    .admin-sidebar__logo,
    .customer-sidebar__logo {
        display: none;
    }

    .admin-topbar h2,
    .admin-topbar p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .admin-auth__panel,
    .admin-shell__sidebar,
    .admin-shell__main,
    .admin-topbar,
    .admin-card {
        padding: 1rem;
    }

    .admin-auth__card {
        padding: 1.4rem;
    }

    .admin-auth__footer,
    .admin-topbar__actions,
    .admin-section-head,
    .admin-staff-card__meta,
    .admin-template-card__head,
    .admin-template-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-shell__nav,
    .admin-grid--kpis,
    .admin-grid--split,
    .admin-template-grid,
    .admin-template-grid--wide,
    .admin-schedule-card-grid,
    .admin-grid--email-editor,
    .admin-choice-grid,
    .admin-form-grid,
    .admin-duration-fields,
    .admin-filter-bar,
    .admin-hours-row,
    .admin-hours-row--drawer,
    .admin-hours-row--compact {
        grid-template-columns: 1fr;
    }

    .admin-week-toolbar,
    .admin-week-toolbar .admin-button {
        width: 100%;
    }

    .admin-week-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-week-toolbar strong {
        order: -1;
        text-align: center;
    }

    .admin-week-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .admin-week-day {
        min-width: 0;
        grid-template-rows: auto auto;
    }

    .admin-filter-bar__actions,
    .admin-filter-bar__actions .admin-button {
        width: 100%;
    }

    .admin-flag-list article {
        flex-direction: column;
    }

    .admin-schedule-launch-card,
    .admin-schedule-launch-card--shop {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 4.8rem;
    }

    .admin-schedule-launch-card .admin-badge {
        grid-column: 2 / 3;
        width: fit-content;
    }

    .admin-schedule-drawer__panel {
        inset: auto 0 0;
        width: 100%;
        max-height: min(88vh, calc(100dvh - var(--admin-schedule-drawer-offset, 5rem)));
        border-top: 1px solid rgba(226, 197, 90, 0.28);
        border-left: 0;
        box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.46);
        transform: translateY(104%);
    }

    .admin-schedule-drawer.is-open .admin-schedule-drawer__panel {
        transform: translateY(0);
    }

    .admin-schedule-drawer__head,
    .admin-schedule-drawer__body,
    .admin-schedule-drawer__foot {
        padding-inline: 1rem;
    }

    .admin-schedule-drawer__foot,
    .admin-schedule-drawer__foot .admin-button {
        width: 100%;
    }

    .admin-schedule-drawer__foot {
        flex-direction: column;
    }

    .admin-schedule-staff-summary {
        flex-direction: column;
    }

    .admin-topbar__left {
        flex: 1 1 auto;
        width: auto;
        flex-wrap: nowrap;
    }

    .admin-customer-search {
        flex: 1 1 auto;
        max-width: none;
        min-width: 0;
    }

    .admin-customer-search__field {
        min-height: 3rem;
        padding-inline: 0.7rem;
    }

    .admin-customer-search input {
        font-size: 0.8rem;
    }

    .admin-customer-search__results {
        position: fixed;
        top: 4.35rem;
        left: 0.65rem;
        right: 0.65rem;
        max-height: min(24rem, calc(100vh - 5.2rem));
    }

    .admin-customer-search--booking .admin-customer-search__results {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        max-height: min(24rem, 62vh);
    }

    .admin-topbar__title {
        display: none;
    }

    .admin-topbar__brandmark {
        display: none;
    }

    .admin-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding: 0.5rem 0.65rem;
    }

    .admin-topbar h2 {
        max-width: 46vw;
        font-size: 1.08rem;
    }

    .admin-topbar p,
    .admin-topbar .admin-shell__eyebrow {
        display: none;
    }

    .admin-topbar__actions {
        width: auto;
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
    }

    .admin-topbar__actions > .admin-button,
    .admin-topbar__actions > form {
        display: none;
    }

    .admin-form-actions,
    .admin-form-actions .admin-button {
        width: 100%;
    }

    .admin-notifications {
        width: auto;
    }

    .admin-notifications summary,
    .admin-user-menu summary {
        width: 3rem;
        min-height: 3rem;
        justify-content: center;
        padding: 0;
    }

    .admin-notifications summary > span:not(.bb-icon) {
        display: none;
    }

    .admin-notifications__panel {
        position: absolute;
        right: 0;
        margin-top: 0.55rem;
        width: min(20rem, calc(100vw - 2rem));
    }

    .admin-user-menu__panel {
        right: 0;
        width: min(17rem, calc(100vw - 2rem));
    }

    .admin-shell__sidebar-actions {
        display: grid;
    }

    .admin-form-actions {
        flex-direction: column;
    }

    .admin-menu-toggle {
        width: auto;
        justify-content: center;
        padding-inline: 0.85rem;
    }

    .admin-menu-toggle__label {
        display: none;
    }

    .admin-shell--customer,
    .admin-shell--customer .admin-shell__main {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .admin-topbar__mobile-logo {
        width: min(7.2rem, 32vw);
        min-width: min(7.2rem, 32vw);
        height: 2.5rem;
    }

    .admin-menu-toggle {
        width: 3.05rem;
        min-width: 3.05rem;
        padding-inline: 0;
    }

    .admin-shell__sidebar {
        padding-top: 1rem;
    }

    .admin-shell--customer .admin-card,
    .admin-shell--customer .admin-choice-card {
        width: 100%;
    }

    .customer-profile-card {
        grid-template-columns: 1fr;
    }

    .customer-profile-card__meta {
        justify-content: flex-start;
    }

    .admin-shell--customer .admin-table-wrap {
        overflow: visible;
    }

    .admin-shell--customer .admin-table,
    .admin-shell--customer .admin-table thead,
    .admin-shell--customer .admin-table tbody,
    .admin-shell--customer .admin-table tr,
    .admin-shell--customer .admin-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .admin-shell--customer .admin-table thead {
        display: none;
    }

    .admin-shell--customer .admin-table tbody {
        display: grid;
        gap: 0.9rem;
    }

    .admin-shell--customer .admin-table tr {
        padding: 1rem;
        border: 1px solid rgba(226, 197, 90, 0.2);
        background:
            linear-gradient(145deg, rgba(191, 146, 91, 0.1), rgba(255, 255, 255, 0.025)),
            rgba(255, 255, 255, 0.02);
    }

    .admin-shell--customer .admin-table td {
        display: grid;
        grid-template-columns: minmax(6.5rem, 0.42fr) minmax(0, 1fr);
        gap: 0.7rem;
        padding: 0.45rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .admin-shell--customer .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-shell--customer .admin-table td::before {
        content: attr(data-label);
        color: var(--gold-light);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .admin-shell--customer .admin-table td[data-label="Actions"] {
        grid-template-columns: 1fr;
    }
}
