:root {
    color-scheme: dark;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #d4af37;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    color: #d4af37;
    line-height: 1.6;
}

/* ===== PRELOADER FULLSCREEN ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .6s ease, visibility .6s ease;
}

/* sembunyikan */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* loader box */
.loader {
    text-align: center;
    color: #d4af37;
    letter-spacing: .2em;
}

/* animasi simple barber style */
.barber-pole {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #d4af37;
    border-right: 3px solid rgba(212,175,55,0.3);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

.page-home {
    overflow-x: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0,0,0,.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.07);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 22px 0;
}

.brand {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: .2em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.site-nav a {
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
    font-size: .95rem;
    transition: color .2s ease, opacity .2s ease;
}

.site-nav a:hover {
    color: #d4af37;
}

.nav-cta {
    padding: .7rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
}

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    padding: 80px 0 120px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 28%),
        url('../images/5.jpg') center/cover no-repeat;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
}

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

.hero-copy,
.hero-panel,
.studio-copy,
.gallery-card,
.cta-band-inner {
    opacity: 0;
    transform: translateY(24px);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: .75rem;
    color: rgba(212, 175, 55, 0.7);
    margin-bottom: 1rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .95;
    letter-spacing: -.04em;
}

.hero p {
    max-width: 540px;
    color: rgba(212, 175, 55, 0.8);
    margin: 1.8rem 0 0;
    font-size: 1.05rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-metrics div {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(212, 175, 55, 0.03);
}

.hero-metrics strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: .25rem;
}

.hero-metrics span {
    font-size: .82rem;
    color: rgba(212, 175, 55, 0.72);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease, border .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #d4af37;
    color: #000;
}

.btn-secondary {
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    background: transparent;
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.panel-card {
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 2rem;
    background: rgba(212, 175, 55, 0.03);
    backdrop-filter: blur(16px);
    max-width: 360px;
}

.panel-card-large {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.panel-card-large::before {
    content: '';
    position: absolute;
    inset: auto -20% -35% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
}

.panel-label {
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(212, 175, 55, 0.55);
    font-size: .75rem;
    margin-bottom: 1rem;
}

.panel-card h2 {
    margin: 0;
    font-size: 1.75rem;
}

.panel-card p {
    color: rgba(212, 175, 55, 0.75);
    margin-top: 1rem;
}

.panel-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.panel-ribbon span,
.gallery-card,
.studio-card {
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(212, 175, 55, 0.03);
}

.panel-ribbon span {
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .78rem;
    color: rgba(212, 175, 55, 0.8);
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: 1.75rem;
    align-items: stretch;
}

.studio-intro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.85)), url('../images/studio-bg.svg') center/cover no-repeat;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.studio-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.4));
}

.studio-intro .container {
    position: relative;
    z-index: 1;
}

.studio-copy h2,
.about-grid h2,
.cta-band h2,
.section-head h2 {
    line-height: 1.02;
    letter-spacing: -.04em;
}

.studio-copy p,
.about-note,
.cta-band p {
    color: rgba(212, 175, 55, 0.78);
}

.studio-stack {
    display: grid;
    gap: 1rem;
}

.studio-card {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    margin: .5rem auto 0;
    max-width: 720px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.service-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 1.75rem;
}

.services {
    background: #f5f1e8;
    color: #111;
}

.services .eyebrow {
    color: #7a651f;
}

.services .section-head h2 {
    color: #000;
    font-weight: 700;
}

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

.service-grid-compact .service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-has-photo {
    padding: 0;
    overflow: hidden;
}

.service-card-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}

.service-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-has-photo:hover .service-card-photo img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.service-card-has-photo .service-index {
    margin-bottom: 0.35rem;
}

.service-index {
    color: rgba(17, 17, 17, 0.45);
    letter-spacing: .3em;
    font-size: .78rem;
}

.service-price {
    color: #7a651f;
    font-size: .85rem;
}

.services .service-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    color: #111;
    border-radius: 12px;
}

.services .service-card-has-photo {
    padding: 0;
}

.services .service-card h3,
.services .service-card p {
    color: #111;
}

.services .service-card p {
    color: rgba(17, 17, 17, 0.82);
}

.gallery-section {
    overflow: hidden;
}

.section-head-left {
    text-align: left;
}

.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    padding: 1rem 0;
    margin-bottom: 1.5rem;

    display: flex;
    justify-content: flex-end;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;

    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track span {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .75rem;
    color: rgba(212, 175, 55, 0.7);
}


/* =========================
   GALLERY GRID (TETAP)
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 1rem;
}

/* =========================
   CARD DASAR
========================= */
.gallery-card {
    min-height: 160px;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    font-size: 1.2rem;
    letter-spacing: -.02em;
    cursor: pointer;

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

/* hover card */
.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* =========================
   IMAGE CARD
========================= */
.image-card {
    position: relative;
    overflow: hidden;

    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.78)),
                var(--bg) center/cover no-repeat;

    min-height: 220px;

    /* animasi dasar */
    transition: transform .5s ease, background-size .5s ease;
    background-size: 100%;

    /* auto gerak halus */
    animation: floatSlow 10s ease-in-out infinite;
}

/* zoom saat hover */
.gallery-card:hover .image-card {
    transform: scale(1.04);
    background-size: 110%;
}

/* overlay */
.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.75));
    transition: opacity .4s ease;
}

/* overlay lebih terang saat hover */
.gallery-card:hover .image-card::after {
    opacity: 0.7;
}

/* =========================
   TEXT ANIMATION
========================= */
.image-card > div {
    position: relative;
    z-index: 1;

    transform: translateY(15px);
    opacity: 0.85;
    transition: all .4s ease;
}

/* text naik saat hover */
.gallery-card:hover .image-card > div {
    transform: translateY(0);
    opacity: 1;
}

/* text styling */
.image-card h3 {
    margin: .5rem 0 0;
    color: #f4d97a;
    font-size: 1.35rem;
    line-height: 1.1;
}

/* label */
.image-label {
    display: inline-flex;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
}

/* =========================
   SIZE VARIATION
========================= */
.gallery-card-tall {
    min-height: 340px;
    grid-row: span 2;
}

.gallery-card-wide {
    grid-column: span 2;
}

/* =========================
   AUTO FLOAT ANIMATION
========================= */
@keyframes floatSlow {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.02) translateY(-4px); }
    100% { transform: scale(1) translateY(0); }
}

/* delay biar natural */
.gallery-card:nth-child(2) .image-card {
    animation-delay: 1s;
}
.gallery-card:nth-child(3) .image-card {
    animation-delay: 2s;
}
.gallery-card:nth-child(4) .image-card {
    animation-delay: 3s;
}
.gallery-card:nth-child(5) .image-card {
    animation-delay: 4s;
}

/* =========================
   LIGHTBOX (TETAP + SMOOTH)
========================= */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    z-index: 200;
    padding: 1.5rem;

    opacity: 0;
    transition: opacity .3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-frame {
    margin: 0;
    width: min(100%, 1080px);
    max-height: 90vh;
    display: grid;
    gap: 1rem;
    animation: zoomIn .3s ease;
}

/* animasi muncul */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-frame img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #050505;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
}

.lightbox-frame figcaption {
    color: rgba(212, 175, 55, 0.85);
    text-align: center;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .75rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #d4af37;
    font-size: 1.6rem;
    cursor: pointer;
    transition: .3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.service-card {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 2rem;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(212, 175, 55, 0.75);
    margin-top: 1rem;
}

.about {
    background: #f5f1e8;
    color: #111;
}

.about .eyebrow {
    color: #7a651f;
}

.about-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
}

.about-grid h2 {
    color: #000;
    font-weight: 700;
}

.about-grid p {
    color: #555;
}

.about-grid-stack {
    display: grid;
}

.about-stat {
    padding: 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.08);
    color: #111;
}

.about-grid h2 {
    margin: 0;
    font-size: clamp(2.25rem, 3vw, 3.25rem);
}

.about-grid p {
    max-width: 640px;
    color: rgba(212, 175, 55, 0.77);
    margin-top: 1.5rem;
}

.about-note {
    font-size: .95rem;
}

.about-stats {
    display: grid;
    gap: 1rem;
}

.about-stats div {
    padding: 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(212, 175, 55, 0.03);
}

.about-stats strong {
    display: block;
    font-size: 2rem;
    margin-bottom: .5rem;
}

.contact {
    background: #f5f1e8;
    color: #111;
}

.contact .eyebrow {
    color: #7a651f;
}

.contact h2 {
    color: #000;
    font-weight: 700;
}

.contact p {
    color: #555;
}

.contact-grid {
    grid-template-columns: 1fr 0.85fr;
    align-items: stretch;
}

.contact-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.08);
    padding: 2rem;
    display: grid;
    gap: 1.25rem;
    color: #111;
}

.contact-card p {
    margin: 0;
    color: #555;
}

.contact-card a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-card strong {
    display: block;
    margin-bottom: .35rem;
    color: #111;
}

.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 2rem 0;
    color: rgba(212, 175, 55, 0.7);
}

.cta-band {
    background: #000;
    color: #d4af37;
}

.cta-band {
    background: #000;
    color: #d4af37;
}

.cta-band-inner {
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(212, 175, 55, 0.03);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band h2 {
    margin: .5rem 0 0;
    max-width: 760px;
}

.modal-content {
    max-height: 90vh;
    overflow: auto;
}

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

.animate-fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.6s ease-out;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-wrap a {
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero-grid,
    .service-grid,
    .about-grid,
    .contact-grid,
    .studio-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 0 100px;
    }

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

    .gallery-card-wide,
    .gallery-card-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .hamburger {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.07);
    }

    .site-nav.active {
        display: flex;
    }

    .nav-wrap {
        position: relative;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav {
        gap: 1rem;
    }

    .container {
        width: calc(100% - 20px);
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
    }

    .hero p {
        font-size: .9rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-grid,
    .gallery-grid,
    .studio-grid {
        grid-template-columns: 1fr;
    }

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

    .modal-content {
        padding: 1.5rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: .4rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #d4af37;
    transition: all .3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Booking app (Gojek/Grab style) */
body.booking-open,
body.review-open {
    overflow: hidden;
}

#reviewModal.review-app-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
}

#reviewModal.review-app-modal.active {
    display: flex;
}

#reviewModal .booking-sheet-body .form-alert {
    margin-bottom: 1rem;
}

/* ===== Halaman booking (/booking) — mobile-first (link bio IG) ===== */

body.page-booking-body {
    background: #0a0a0a;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.page-booking-body #preloader.hide {
    pointer-events: none;
}

/* Top bar ala aplikasi */
.site-header--booking {
    position: sticky;
    top: 0;
    z-index: 60;
    flex-shrink: 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    padding-top: env(safe-area-inset-top);
}

.booking-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem max(0.75rem, env(safe-area-inset-left)) 0.65rem max(0.75rem, env(safe-area-inset-right));
    min-height: 52px;
}

.booking-topbar-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -6px 0 -6px -6px;
    border-radius: 12px;
    color: #d4af37;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.booking-topbar-back:active {
    background: rgba(212, 175, 55, 0.12);
}

.booking-topbar-center {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.booking-topbar-eyebrow {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.65);
    line-height: 1.2;
}

.booking-topbar-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #f5f0e6;
    line-height: 1.25;
}

.booking-topbar-home {
    flex-shrink: 0;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.booking-topbar-home:active {
    background: rgba(212, 175, 55, 0.28);
}

.page-booking {
    padding: 0;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    background: #f7f5f0;
}

.booking-page-intro--desktop {
    display: none;
}

.booking-page-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.booking-page-app {
    width: 100%;
}

#bookingPage .booking-sheet--page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #f7f5f0;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

#bookingPage .booking-sheet-header {
    padding: 0.85rem 1rem 0.7rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    border-radius: 0;
}

#bookingPage .booking-sheet-home--desktop {
    display: none;
}

#bookingPage .booking-sheet-title h2 {
    margin: 0.15rem 0 0;
    font-size: 1.1rem;
    color: #111;
    padding-right: 0;
}

#bookingPage .booking-sheet-title .eyebrow {
    font-size: 0.68rem;
}

#bookingPage .booking-progress {
    margin-top: 0.65rem;
    gap: 5px;
}

#bookingPage .booking-progress-dot {
    height: 5px;
}

#bookingPage .booking-sheet-body {
    overflow: visible;
    padding: 0.85rem 1rem 1.25rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

#bookingPage .booking-step-title {
    font-size: 1.05rem;
}

#bookingPage .booking-step-desc {
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
}

#bookingPage .booking-field input,
#bookingPage .booking-field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border-radius: 14px;
}

#bookingPage .booking-unit-chip {
    min-height: 44px;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
}

#bookingPage .booking-service-item,
#bookingPage .booking-barber-item {
    min-height: 72px;
    padding: 0.75rem;
    border-radius: 16px;
}

#bookingPage .booking-service-thumb {
    width: 52px;
    height: 52px;
}

#bookingPage .booking-barber-avatar {
    width: 52px;
    height: 52px;
}

#bookingPage .booking-date-chip {
    min-width: 58px;
    min-height: 64px;
    padding: 0.55rem 0.4rem;
}

#bookingPage .booking-time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
}

#bookingPage .booking-time-slot {
    min-height: 48px;
    font-size: 0.9rem;
    border-radius: 12px;
}

#bookingPage .booking-summary {
    border-radius: 16px;
}

#bookingPage .booking-step {
    display: none !important;
    margin: 0;
    padding: 0;
}

#bookingPage .booking-step.is-active {
    display: block !important;
}

#bookingPage .booking-sheet-actions {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
}

#bookingPage .booking-sheet-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.8rem 0.75rem;
    border-radius: 14px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: auto !important;
    flex: 1;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

#bookingPage .booking-btn-back {
    flex: 0 0 88px;
    background: #ebe6dc;
    color: #333;
    font-size: 0.92rem;
}

#bookingPage .booking-btn-next,
#bookingPage .booking-btn-submit {
    background: #b89b5e;
    color: #111;
}

#bookingPage .booking-btn-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#bookingPage .booking-btn-back.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

#bookingPage .booking-service-item,
#bookingPage .booking-barber-item,
#bookingPage .booking-unit-chip,
#bookingPage .booking-date-chip,
#bookingPage .booking-time-slot {
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

#bookingPage *,
#bookingPage .booking-sheet-body .form-alert {
    box-sizing: border-box;
}

#bookingPage .booking-sheet-body .form-alert {
    margin-bottom: 1rem;
}

/* Footer ringkas di halaman booking mobile */
body.page-booking-body .site-footer {
    padding: 0.75rem 1rem;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

body.page-booking-body .footer-wrap {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
}

body.page-booking-body .footer-wrap p {
    margin: 0;
    color: rgba(212, 175, 55, 0.55);
}

body.page-booking-body .socials {
    justify-content: center;
    gap: 1rem;
}

body.page-booking-body .socials a {
    font-size: 0.8rem;
}

/* Desktop: kartu di tengah */
@media (min-width: 641px) {
    .page-booking {
        padding: 2rem 0 3rem;
        padding-bottom: 3rem;
        background: linear-gradient(180deg, #0a0a0a 0%, #141414 45%, #0a0a0a 100%);
    }

    .booking-page-intro--desktop {
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .booking-page-intro--desktop h1 {
        color: #f5f0e6;
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin: 0.35rem 0 0.5rem;
    }

    .booking-page-intro--desktop .eyebrow {
        color: #b89b5e;
    }

    .booking-page-lead {
        max-width: 420px;
        margin: 0 auto;
        color: rgba(212, 175, 55, 0.7);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .booking-page-container {
        max-width: 480px;
        margin: 0 auto;
        padding: 0 1rem 2rem;
        display: block;
    }

    .booking-page-app {
        display: block;
    }

    #bookingPage .booking-sheet--page {
        border-radius: 20px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
        overflow: visible;
    }

    #bookingPage .booking-sheet-header {
        border-radius: 20px 20px 0 0;
        position: relative;
        padding: 1rem 1.25rem 0.75rem;
    }

    #bookingPage .booking-sheet-home--desktop {
        display: inline-flex;
        align-items: center;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #7a651f;
        text-decoration: none;
    }

    #bookingPage .booking-sheet-title h2 {
        font-size: 1.25rem;
    }

    #bookingPage .booking-sheet-body {
        padding: 1rem 1.25rem 1.25rem;
        overflow-y: visible;
    }

    #bookingPage .booking-sheet-actions {
        border-radius: 0 0 20px 20px;
        position: sticky;
        bottom: 0;
        left: auto;
        right: auto;
        padding: 0.85rem 1rem;
        padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    }

    body.page-booking-body .site-footer {
        padding-bottom: 0.75rem;
    }

    #bookingPage .booking-btn-back {
        flex: 0 0 96px;
    }

    body.page-booking-body .site-footer {
        padding: 1.5rem 0;
    }

    body.page-booking-body .footer-wrap {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        font-size: inherit;
    }
}

#bookingModal .booking-sheet,
#reviewModal .booking-sheet {
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    margin: 0;
    background: #f7f5f0;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
    animation: bookingSlideUp 0.35s ease;
    box-sizing: border-box;
}

@media (min-width: 641px) {
    #reviewModal.review-app-modal {
        align-items: center;
        padding: 1rem;
    }
}

#bookingModal.booking-app-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
}

#bookingModal.booking-app-modal.active {
    display: flex;
}

#bookingModal.booking-app-modal.active .booking-sheet {
    pointer-events: auto;
}

@keyframes bookingSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 641px) {
    #bookingModal.booking-app-modal,
    #reviewModal.review-app-modal {
        align-items: center;
        padding: 1rem;
    }
    #bookingModal .booking-sheet,
    #reviewModal .booking-sheet {
        border-radius: 20px;
        max-height: 88vh;
    }
}

#bookingPage .booking-sheet-header,
#bookingModal .booking-sheet-header,
#reviewModal .booking-sheet-header {
    flex-shrink: 0;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    background: #fff;
    border-radius: 20px 20px 0 0;
}

.booking-sheet-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0ebe3;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
}

.booking-sheet-title h2 {
    margin: 0.25rem 0 0;
    font-size: 1.25rem;
    color: #111;
}

.booking-sheet-title .eyebrow {
    font-size: 0.7rem;
    color: #7a651f;
}

.booking-progress {
    display: flex;
    gap: 6px;
    margin-top: 0.85rem;
}

.booking-progress-dot {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #e0dcd4;
    transition: background 0.25s;
}

.booking-progress-dot.is-active {
    background: #b89b5e;
}

#bookingModal .booking-sheet-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}

#bookingModal .booking-step,
#bookingPage .booking-step {
    display: none !important;
    margin: 0;
    padding: 0;
}

#bookingModal .booking-step.is-active,
#bookingPage .booking-step.is-active {
    display: block !important;
}

.booking-step-title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    color: #111;
}

.booking-step-desc {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: #666;
}

.booking-hp-hint {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--text-muted, #8a8a8a);
}

.booking-hp-hint--found {
    color: #2e7d4f;
}

.booking-hp-hint--new {
    color: #6b5b3d;
}

.booking-hp-hint--loading {
    color: var(--text-muted, #8a8a8a);
}

.booking-field {
    margin-bottom: 1rem;
}

.booking-field label,
.booking-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
}

.booking-label {
    margin-top: 0.5rem;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0dcd4;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    color: #111;
}

.booking-field input[readonly] {
    background: #f5f3ef;
    color: #111;
    cursor: default;
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: #b89b5e;
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.2);
}

.booking-unit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-unit-chip {
    padding: 0.5rem 0.85rem;
    border: 2px solid #e8e4dc;
    border-radius: 999px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.booking-unit-chip.is-selected {
    border-color: #b89b5e;
    background: #b89b5e;
    color: #111;
}

.booking-time-slot.is-booked {
    opacity: 0.4;
    text-decoration: line-through;
}

.booking-barber-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.booking-barber-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e8e4dc;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-barber-item.is-selected {
    border-color: #b89b5e;
    box-shadow: 0 4px 16px rgba(184, 155, 94, 0.25);
}

.booking-barber-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #e8e4dc;
}

.booking-barber-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.booking-barber-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
}

.booking-barber-role {
    font-size: 0.75rem;
    color: #7a651f;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-barber-item.is-selected .booking-service-check {
    border-color: #b89b5e;
    background: #b89b5e;
    box-shadow: inset 0 0 0 4px #fff;
}

.booking-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.booking-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.65rem;
    border: 2px solid #e8e4dc;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-service-item.is-selected {
    border-color: #b89b5e;
    box-shadow: 0 4px 16px rgba(184, 155, 94, 0.25);
}

.booking-service-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.booking-service-info {
    flex: 1;
    min-width: 0;
}

.booking-service-name {
    display: block;
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
}

.booking-service-meta {
    display: block;
    font-size: 0.78rem;
    color: #777;
    margin-top: 2px;
}

.booking-service-price {
    display: block;
    font-size: 0.85rem;
    color: #7a651f;
    font-weight: 600;
    margin-top: 4px;
}

.booking-service-check {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-service-item.is-selected .booking-service-check {
    border-color: #b89b5e;
    background: #b89b5e;
    box-shadow: inset 0 0 0 4px #fff;
}

.booking-date-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.booking-date-strip::-webkit-scrollbar {
    display: none;
}

.booking-date-chip {
    flex: 0 0 auto;
    min-width: 64px;
    padding: 0.6rem 0.5rem;
    border: 2px solid #e8e4dc;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.booking-date-chip.is-selected {
    border-color: #b89b5e;
    background: #fff9ed;
}

.booking-date-chip-day {
    display: block;
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
}

.booking-date-chip-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.booking-date-chip-mon {
    display: block;
    font-size: 0.65rem;
    color: #666;
}

.booking-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (min-width: 400px) {
    .booking-time-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.booking-time-slot {
    padding: 0.65rem 0.35rem;
    border: 2px solid #e8e4dc;
    border-radius: 10px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-time-slot.is-selected {
    border-color: #b89b5e;
    background: #b89b5e;
    color: #fff;
}

.booking-time-slot.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-hint {
    font-size: 0.88rem;
    color: #888;
    grid-column: 1 / -1;
}

.booking-summary {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e8e4dc;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0ebe3;
    font-size: 0.88rem;
}

.booking-summary-row:last-child {
    border-bottom: none;
}

.booking-summary-row span {
    color: #777;
}

.booking-summary-row strong {
    color: #111;
    text-align: right;
}

#bookingPage .booking-sheet-actions,
#bookingModal .booking-sheet-actions,
#reviewModal .booking-sheet-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

#bookingPage .booking-sheet-actions button,
#bookingModal .booking-sheet-actions button,
#reviewModal .booking-sheet-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    width: auto !important;
    flex: 1;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    transform: none;
    letter-spacing: 0;
}

#bookingPage .booking-sheet-actions button:hover,
#bookingModal .booking-sheet-actions button:hover,
#reviewModal .booking-sheet-actions button:hover {
    transform: none;
    filter: brightness(0.97);
}

#bookingPage .booking-btn-back,
#bookingModal .booking-btn-back,
#reviewModal .booking-btn-back {
    flex: 0 0 96px;
    background: #ebe6dc;
    color: #333;
}

#bookingPage .booking-btn-next,
#bookingPage .booking-btn-submit,
#bookingModal .booking-btn-next,
#bookingModal .booking-btn-submit,
#reviewModal .review-btn-submit {
    background: #b89b5e;
    color: #111;
}

#bookingPage .booking-btn-next:disabled,
#bookingModal .booking-btn-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#bookingModal .booking-btn-submit {
    display: none;
    flex: 1.4;
}

#bookingPage .booking-btn-submit {
    display: none;
    flex: 1.4;
}

#reviewModal .review-btn-submit {
    display: inline-flex;
    flex: 1.4;
}

#bookingPage .booking-btn-back.is-hidden,
#bookingModal .booking-btn-back.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

/* Legacy modal form (fallback) */
#bookingModal .form-group {
    margin-bottom: 1rem;
}

#bookingModal .form-group label {
    display: block;
    margin-bottom: .4rem;
    font-size: .85rem;
    color: #555;
}

#bookingModal .form-group input,
#bookingModal .form-group select,
#bookingModal .form-group textarea {
    width: 100%;
    padding: .75rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #222;
    font-family: inherit;
    transition: .2s;
}

#bookingModal .form-group input:focus,
#bookingModal .form-group select:focus,
#bookingModal .form-group textarea:focus {
    border-color: #b89b5e;
    box-shadow: 0 0 0 3px rgba(184,155,94,0.15);
    outline: none;
}

#bookingModal .form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.modal:not(.booking-app-modal) {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal:not(.booking-app-modal).active {
    display: flex;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content h2 {
    margin-top: 0;
    color: #d4af37;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    color: rgba(212, 175, 55, 0.8);
    font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Mobile Adjustments */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.07);
    }
    
    .site-nav.active {
        display: flex;
    }
    
    .nav-wrap {
        position: relative;
    }
}

/* Reviews (dynamic from admin) */
.reviews-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 48%, #0a0a0a 100%);
    color: #d4af37;
}

.reviews-section .section-head {
    margin-bottom: 2.5rem;
}

.reviews-section .section-head h2 {
    color: #f5f0e6;
}

.reviews-section .eyebrow {
    color: #b89b5e;
}

.reviews-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 1.5rem 1.35rem 1.25rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 55%);
}

.review-card-quote {
    font-size: 3rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.35);
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 0.15rem;
}

.review-stars {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
}

.review-text {
    flex: 1;
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(245, 240, 230, 0.88);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-foot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.review-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111;
    background: linear-gradient(135deg, #d4af37 0%, #b89b5e 100%);
}

.review-card-meta {
    min-width: 0;
}

.review-author {
    margin: 0;
    font-weight: 600;
    font-size: 0.92rem;
    color: #f5f0e6;
}

.review-date {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    color: rgba(212, 175, 55, 0.65);
}

.review-empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.review-empty-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f5f0e6;
}

.review-empty-desc {
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(212, 175, 55, 0.75);
    font-size: 0.92rem;
}

.review-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.review-cta-label {
    margin: 0 0 0.2rem;
    font-weight: 600;
    font-size: 1rem;
    color: #f5f0e6;
}

.review-cta-desc {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(212, 175, 55, 0.8);
}

.review-cta-btn {
    flex-shrink: 0;
    min-width: 160px;
}

@media (max-width: 960px) {
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .review-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
    }

    .review-card {
        flex: 0 0 min(88vw, 320px);
        scroll-snap-align: start;
    }

    .review-cta-panel {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .review-cta-btn {
        width: 100%;
    }
}

.branch-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.form-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.form-alert-error {
    background: #ffebee;
    color: #c62828;
}

.branch-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.branch-photo {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.branch-body {
    padding: 1.25rem;
}

.branch-body h3 {
    margin-bottom: 0.5rem;
}

.branch-hours {
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 20px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: .9rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
    }
    
    .modal-content {
        padding: 1.5rem;
    }

    #bookingPage .booking-sheet-actions button,
    #bookingModal .booking-sheet-actions button,
    #reviewModal .booking-sheet-actions button {
        width: auto !important;
        min-height: 44px;
    }

    #bookingPage .booking-btn-back,
    #bookingModal .booking-btn-back,
    #reviewModal .booking-btn-back {
        flex: 0 0 88px;
    }
}

/* Booking & review sheet — perbaikan tampilan */
#bookingPage *,
#bookingModal *,
#reviewModal * {
    box-sizing: border-box;
}

#bookingModal .booking-sheet-body,
#reviewModal .booking-sheet-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.25rem 1.25rem;
}

#bookingModal .booking-service-item,
#bookingPage .booking-service-item {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    color: inherit;
    text-align: left;
}

#bookingModal .booking-sheet-title h2 {
    color: #111;
    padding-right: 2.5rem;
}

#bookingModal .booking-date-chip,
#bookingModal .booking-time-slot,
#bookingPage .booking-date-chip,
#bookingPage .booking-time-slot {
    font-family: inherit;
}
