:root {
    --black: #070707;
    --black-soft: #0d0d0d;
    --charcoal: #151515;
    --charcoal-light: #1d1d1d;
    --gold: #d4af37;
    --gold-bright: #f2d06b;
    --gold-dark: #8f6b14;
    --cream: #f4efe5;
    --white: #ffffff;
    --gray: #b7b2aa;
    --gray-dark: #77736d;
    --line: rgba(255, 255, 255, 0.11);
    --gold-line: rgba(212, 175, 55, 0.36);
    --danger: #ff6b6b;
    --font-display: "Bebas Neue", sans-serif;
    --font-serif: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
    --container: 1240px;
    --page-gutter: clamp(12px, 3vw, 20px);
    --section-space: clamp(5rem, 9vw, 9rem);
    --header-height: 88px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55);
    --transition: 320ms cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
    margin: 0;
    min-width: 0;
    background: var(--black);
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.72;
    /* clip does not turn the body into a second vertical scroll container */
    overflow-x: clip;
    overflow-y: visible;
    text-rendering: optimizeLegibility;
}
body.lightbox-open { overflow: hidden; }
/* Keep normal page scrolling active when the mobile navigation is open. */
body.menu-open { overflow-x: clip; }
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* Fluid-layout safeguards */
html, body { width: 100%; max-width: 100%; }
main, section, header, footer, nav, .container, .nav-container { min-width: 0; }
.about-grid > *, .booking-grid > *, .faq-grid > *, .contact-grid > *,
.section-heading.split > *, .footer-grid > *, .form-row > *,
.hero-content, .about-copy, .booking-copy, .faq-heading, .faq-list,
.contact-card, .map-wrap, .service-card, .review-card { min-width: 0; }
h1, h2, h3, h4, p, a, span, strong, blockquote, label { overflow-wrap: break-word; }
.button, .nav-book-button, .mobile-book-button, .map-button { max-width: 100%; white-space: normal; text-align: center; }
.contact-item strong, .contact-item a, .footer a, .footer p { overflow-wrap: anywhere; }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 1rem;
    transform: translateY(-120%);
    background: var(--gold);
    color: var(--black);
    padding: .75rem 1rem;
    font-weight: 800;
    transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
    --cursor-x: -500px;
    --cursor-y: -500px;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .09), transparent 68%);
    pointer-events: none;
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s ease;
}
body.has-pointer .cursor-glow { opacity: 1; }

.container { width: min(calc(100% - (var(--page-gutter) * 2)), var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-space); }
.section-title {
    margin: 0;
    max-width: 940px;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.045em;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1.3rem;
    color: var(--gold-bright);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .23em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-heading { margin-bottom: clamp(2.8rem, 6vw, 5rem); }
.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading.centered > p:last-child { max-width: 640px; margin: 1.5rem auto 0; }
.section-heading.split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 3rem; align-items: end; }
.section-heading.split > p { margin: 0 0 .35rem; max-width: 540px; }
.lead { color: var(--white); font-family: var(arial); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.35; }

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: .85rem 1.55rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dark));
    color: var(--black);
    box-shadow: 0 12px 34px rgba(212, 175, 55, .24), inset 0 1px rgba(255,255,255,.48);
}
.button-primary:hover { box-shadow: 0 18px 45px rgba(212, 175, 55, .38), inset 0 1px rgba(255,255,255,.55); }
.button-ghost { border-color: rgba(255,255,255,.26); background: rgba(7,7,7,.32); color: var(--white); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(212,175,55,.08); }
.text-link { display: inline-flex; align-items: center; gap: .75rem; margin-top: 1rem; color: var(--cream); font-weight: 800; }
.text-link i { color: var(--gold); transition: transform var(--transition); }
.text-link:hover i { transform: translateX(6px); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition); }
.site-header.sticky { background: rgba(7,7,7,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.navbar { min-height: var(--header-height); display: flex; align-items: center; }
.nav-container { width: min(calc(100% - (var(--page-gutter) * 2)), 1380px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: .85rem; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: .9; text-transform: uppercase; }
.brand-copy strong { color: var(--white); font-family: var(--font-display); font-size: 1.65rem; letter-spacing: .07em; font-weight: 400; }
.brand-copy span { color: var(--gold); font-size: .6rem; font-weight: 800; letter-spacing: .28em; }
.logo-stage { position: relative; width: 58px; height: 58px; display: grid; place-items: center; perspective: 500px; filter: drop-shadow(0 10px 14px rgba(0,0,0,.52)); }
.logo-stage.small { width: 50px; height: 50px; }
.logo-shadow { position: absolute; width: 70%; height: 24%; bottom: 0; border-radius: 50%; background: rgba(212,175,55,.35); filter: blur(10px); transform: rotateX(70deg); }
.logo-disc {
    position: relative;
    width: 48px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid var(--gold-bright);
    background:
        radial-gradient(circle at 32% 25%, rgba(255,255,255,.24), transparent 22%),
        linear-gradient(145deg, #181818 0%, #050505 56%, #25200f 100%);
    box-shadow: inset 5px 5px 10px rgba(255,255,255,.07), inset -8px -10px 16px rgba(0,0,0,.8), 0 0 0 4px rgba(212,175,55,.08), 0 8px 0 #5b450f;
    transform-style: preserve-3d;
    animation: logoFloat 4s ease-in-out infinite;
}
.logo-stage.small .logo-disc { width: 42px; }
.logo-monogram { position: relative; z-index: 2; color: var(--gold-bright); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -.02em; text-shadow: 0 2px 0 #5a430c, 0 5px 10px rgba(0,0,0,.9); transform: translateZ(14px); }
.logo-blade { position: absolute; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--white), transparent); transform: rotate(-35deg) translateZ(18px); box-shadow: 0 0 8px var(--gold-bright); }
.logo-spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 11px 3px rgba(242,208,107,.55); }
.logo-spark-one { top: 1px; right: 6px; animation: sparkPulse 1.8s infinite; }
.logo-spark-two { bottom: 7px; left: 2px; animation: sparkPulse 1.8s .9s infinite; }
.brand:hover .logo-disc { animation-play-state: paused; transform: rotateY(18deg) rotateX(-8deg) translateY(-4px); }

.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); padding: 0; margin: 0; list-style: none; }
.nav-link { position: relative; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; transition: color var(--transition); }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.language-switch { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.28); }
.language-button { border: 0; padding: .35rem .2rem; background: none; color: var(--gray-dark); font-size: .68rem; font-weight: 800; cursor: pointer; }
.language-button.active { color: var(--gold-bright); }
.nav-book-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: .55rem 1.15rem; border-radius: 999px; background: var(--gold); color: var(--black); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.mobile-menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.03); cursor: pointer; }
.mobile-menu-toggle span { display: block; width: 100%; height: 1px; background: var(--white); margin: 5px 0; transition: transform var(--transition), opacity var(--transition); }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; padding: calc(var(--header-height) + 5rem) 0 clamp(5rem, 10vh, 8rem); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.12); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.72) 44%, rgba(5,5,5,.28) 76%, rgba(5,5,5,.54) 100%), linear-gradient(0deg, rgba(7,7,7,.96) 0%, transparent 42%); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(212,175,55,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.22) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(to right, black, transparent 74%); }
.hero-content { position: relative; z-index: 2; }
.hero-kicker { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.5rem; color: var(--gold-bright); font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.kicker-line { width: 54px; height: 1px; background: var(--gold); }
.hero-title { display: flex; flex-direction: column; margin: 0; max-width: 930px; color: var(--white); font-family: var(--font-display); font-size: clamp(4.6rem, 11.4vw, 10.8rem); font-weight: 400; line-height: .78; letter-spacing: -.025em; text-transform: uppercase; text-shadow: 0 20px 50px rgba(0,0,0,.65); }
.hero-title em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--gold-bright); text-stroke: 1.5px var(--gold-bright); filter: drop-shadow(0 0 20px rgba(212,175,55,.18));   font-size: 0.69em;}
.hero-text { max-width: 660px; margin: 2.1rem 0 0; color: rgba(255,255,255,.77); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-status-card {
    position: relative;
    width: 420px;
    max-width: min(100%, 760px);
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    margin-top: 1.25rem;
    padding: .55rem .82rem;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
        rgba(7,7,7,.58);
    box-shadow:
        0 12px 28px rgba(0,0,0,.28),
        inset 0 1px rgba(255,255,255,.08),
        inset 0 -8px 18px rgba(0,0,0,.18);
    backdrop-filter: blur(14px) saturate(1.08);
    color: rgba(255,255,255,.74);
    font-size: .68rem;
    line-height: 1;
    letter-spacing: .025em;
    white-space: nowrap;
    transform: translateZ(0);
    justify-content: center;
}
.hero-status-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 12%, rgba(255,255,255,.11) 46%, transparent 70%);
    transform: translateX(-115%);
    animation: heroStatusSlimSweep 8s ease-in-out infinite;
}
.hero-status-dot {
    position: relative;
    z-index: 1;
    width: .55rem;
    height: .55rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #24cf63;
    box-shadow: 0 0 0 3px rgba(36,207,99,.13), 0 0 12px rgba(36,207,99,.55);
    animation: statusPulseOpen 1.9s ease-in-out infinite;
}
.hero-status-card.is-closed .hero-status-dot {
    background: #ff4d5f;
    box-shadow: 0 0 0 3px rgba(255,77,95,.13), 0 0 12px rgba(255,77,95,.48);
    animation-name: statusPulseClosed;
}
.hero-status-card strong,
.hero-status-message,
.hero-status-time,
.hero-status-countdown,
.hero-status-separator {
    position: relative;
    z-index: 1;
    
}
.hero-status-card strong {
    color: var(--white);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.hero-status-message {
    color: rgba(255,255,255,.82);
    font-weight: 650;
}
.hero-status-separator {
    color: rgba(212,175,55,.55);
    font-size: .58rem;
}
.hero-status-time {
    color: rgba(255,255,255,.58);
}
.hero-status-countdown {
    color: var(--gold-bright);
    font-weight: 800;
}
@keyframes heroStatusSlimSweep {
    0%, 60%, 100% { transform: translateX(-115%); opacity: 0; }
    68% { opacity: .75; }
    82% { transform: translateX(115%); opacity: 0; }
}
@keyframes statusPulseOpen {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: .88; }
}
@keyframes statusPulseClosed {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: .86; }
}
@media (max-width: 760px) {
    /* Keep the status rail exactly as wide as the two-button row. */
    .hero-actions,
    .hero-status-card {
        width: min(100%, 430px);
        max-width: 430px;
    }

    .hero-status-card {
        min-height: 32px;
        justify-content: center;
        gap: clamp(.32rem, 1.5vw, .48rem);
        margin-top: 1.25rem;
        padding: .42rem clamp(.72rem, 2.8vw, .95rem);
        font-size: clamp(.59rem, 2.25vw, .64rem);
        text-align: center;
        box-shadow: 0 9px 22px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.07);
    }

    .hero-status-card strong {
        flex: 0 0 auto;
        font-size: .64rem;
    }

    .hero-status-message {
        min-width: 0;
        overflow: visible;
        text-overflow: clip;
        white-space: nowrap;
    }

    .hero-status-dot {
        width: .48rem;
        height: .48rem;
    }

    .hero-status-time,
    .hero-status-countdown,
    .hero-status-separator {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-actions,
    .hero-status-card {
        width: 100%;
        max-width: none;
    }

    .hero-status-card {
        gap: .3rem;
        margin-top: 1.15rem;
        min-height: 30px;
        padding: .38rem .62rem;
        font-size: clamp(.53rem, 2.55vw, .59rem);
        letter-spacing: 0;
    }

    .hero-status-card strong {
        font-size: .59rem;
    }
}

@media (max-width: 340px) {
    .hero-status-card {
        gap: .24rem;
        padding-inline: .48rem;
        font-size: .52rem;
    }

    .hero-status-card strong {
        font-size: .56rem;
    }
}

.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: clamp(2rem, 5vw, 4rem); font-size: .78rem; }
.proof-rating { display: flex; align-items: center; gap: .8rem; }
.rating-number { color: var(--cream); font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.rating-stars { color: var(--gold); letter-spacing: .08em; }
.proof-divider { width: 1px; height: 35px; background: var(--line); }
.hero-proof p { margin: 0; }
.hero-proof strong { color: var(--cream); }
.hero-proof > a { color: var(--gold-bright); font-weight: 800; border-bottom: 1px solid currentColor; }
.hero-scroll { position: absolute; z-index: 3; right: clamp(1.2rem, 4vw, 4rem); bottom: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: .7rem; color: rgba(255,255,255,.54); font-size: .62rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.hero-scroll i { color: var(--gold); animation: scrollBounce 1.8s ease-in-out infinite; }

.review-tape { position: relative; z-index: 3; overflow: hidden; border-block: 1px solid var(--gold-line); background: linear-gradient(90deg, #8e6a12, var(--gold-bright), #a98421); color: var(--black); transform: none; transform-origin: center; }
.review-track { width: max-content; display: flex; align-items: center; gap: .75rem; padding: .2rem 1rem; animation: tapeMove 34s linear infinite; will-change: transform; }
.review-tape:hover .review-track { animation-play-state: paused; }
.tape-item { display: flex; align-items: center; gap: .85rem; padding: .9rem 1.8rem; white-space: nowrap; font-weight: 900; text-transform: uppercase; }
.tape-item span { font-size: .72rem; letter-spacing: .1em; }
.tape-item q { font-size: .72rem; letter-spacing: .06em; }

.about-section { overflow: hidden; background: radial-gradient(circle at 95% 5%, rgba(212,175,55,.08), transparent 30%), var(--black-soft); }
.ambient-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(12px); }
.orb-one { width: 360px; height: 360px; right: -200px; top: 30%; border: 1px solid rgba(212,175,55,.16); box-shadow: inset 0 0 80px rgba(212,175,55,.04); }
.about-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-visual { position: relative; min-height: 690px; }
.image-frame { position: absolute; overflow: hidden; border: 1px solid var(--gold-line); background: var(--charcoal); box-shadow: var(--shadow-deep); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,.12), transparent 44%, rgba(0,0,0,.3)); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform 1.1s cubic-bezier(.2,.75,.25,1), filter .6s ease; }
.image-frame:hover img { transform: scale(1.055); filter: saturate(.95); }
.image-frame-main { inset: 0 12% 8% 0; border-radius: var(--radius-lg); }
.image-frame-float { width: 44%; height: 40%; right: 0; bottom: 0; border-radius: var(--radius-md); }
.image-caption { position: absolute; z-index: 2; left: 1.2rem; bottom: 1rem; color: var(--white); font-size: .62rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.experience-seal { position: absolute; z-index: 3; right: 2%; top: 10%; width: 135px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); background: rgba(7,7,7,.88); box-shadow: 0 0 0 7px rgba(7,7,7,.8), 0 0 0 8px rgba(212,175,55,.18); animation: sealFloat 5s ease-in-out infinite; }
.experience-seal strong { color: var(--cream); font-family: var(--font-display); font-size: 2rem; }
.experience-seal span { display: block; font-size: .52rem; letter-spacing: .24em; }
.about-copy > p:not(.eyebrow):not(.lead) { max-width: 670px; }
.about-highlight {
    position: relative;
    width: fit-content;
    margin: 1.7rem 0 0;
    padding: .18rem 0 .24rem 1.15rem;
    color: var(--gold-bright);
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.35vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.about-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    bottom: .2em;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
    box-shadow: 0 0 18px rgba(212, 175, 55, .3);
}
.about-closing {
    margin: .55rem 0 0;
    color: var(--cream);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .035em;
}
.about-pillars { display: grid; gap: .9rem; margin: 2.2rem 0; }
.about-pillars article { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.about-pillars i { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold); background: rgba(212,175,55,.05); }
.about-pillars h3 { margin: 0; color: var(--cream); font-family: var(--font-serif); font-size: 1.35rem; }
.about-pillars p { margin: .15rem 0 0; font-size: .86rem; }

.services-section { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card { position: relative; min-height: 340px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.45rem, 2.5vw, 2.15rem); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.012)); transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition); }
.service-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -95px; top: -95px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.16), transparent 68%); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { transform: translateY(-10px); border-color: var(--gold-line); background: linear-gradient(145deg, rgba(212,175,55,.075), rgba(255,255,255,.015)); box-shadow: 0 25px 55px rgba(0,0,0,.32); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: var(--gold); background: linear-gradient(145deg, rgba(212,175,55,.14), rgba(255,255,255,.018)); }
.featured-tag { position: absolute; top: 1.1rem; right: 1.1rem; padding: .35rem .65rem; border-radius: 999px; background: var(--gold); color: var(--black); font-size: .54rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-number { color: rgba(255,255,255,.25); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .08em; }
.service-icon { margin: 2rem 0 1.5rem; color: var(--gold); font-size: 2rem; }
.service-card h3 { margin: 0; color: var(--cream); font-family: var(--font-serif); font-size: 1.65rem; line-height: 1.1; }
.service-card p { margin: .9rem 0 1.4rem; font-size: .87rem; }
.service-card strong { margin-top: auto; color: var(--gold-bright); font-family: var(--font-display); font-size: 2rem; font-weight: 400; letter-spacing: .04em; }
.price-note { margin: 2rem auto 0; max-width: 860px; color: var(--gray-dark); text-align: center; font-size: .76rem; }

.signature-section { min-height: 760px; display: flex; align-items: center; overflow: hidden; }
.signature-image { position: absolute; inset: 0; background: url("../assets/gallery-02.webp") center 34%/cover no-repeat; background-attachment: fixed; filter: saturate(.58) contrast(1.14); }
.signature-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,6,6,.95), rgba(6,6,6,.67) 52%, rgba(6,6,6,.38)), linear-gradient(0deg, rgba(7,7,7,.9), transparent 50%, rgba(7,7,7,.35)); }
.signature-content { position: relative; z-index: 2; }
.signature-content h2 { max-width: 930px; margin: 0; color: var(--white); font-family: var(--font-serif); font-size: clamp(3rem, 6.7vw, 7rem); line-height: .9; letter-spacing: -.05em; }
.signature-steps { display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem); margin: 3rem 0; }
.signature-steps span { min-width: 210px; display: flex; align-items: center; gap: 1rem; }
.signature-steps b { color: var(--gold); font-family: var(--font-display); font-size: 2.1rem; font-weight: 400; }
.signature-steps em { color: var(--cream); font-style: normal; font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.gallery-section { background: var(--black-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: .8rem; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-sm); background: var(--charcoal); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.28) saturate(.75); transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .5s ease; }
.gallery-item:hover img { transform: scale(1.07); filter: grayscale(0) saturate(1); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: 1.1rem; color: var(--white); background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 54%); opacity: .2; transition: opacity var(--transition); }
.gallery-overlay em { font-style: normal; font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; padding: clamp(1rem, 4vw, 3rem); background: rgba(3,3,3,.96); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; display: grid; place-items: center; min-width: 0; }
.lightbox-image { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-deep); }
.lightbox-counter { margin-top: .9rem; color: var(--gray); font-size: .75rem; letter-spacing: .12em; }
.lightbox button { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--gold-line); border-radius: 50%; background: rgba(255,255,255,.03); color: var(--gold-bright); cursor: pointer; transition: background var(--transition), color var(--transition), transform var(--transition); }
.lightbox button:hover { background: var(--gold); color: var(--black); transform: scale(1.05); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.2rem; }

.reviews-section { overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(212,175,55,.08), transparent 34%), var(--black); }
.reviews-score { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 1.8rem; }
.reviews-score strong { color: var(--cream); font-family: var(--font-serif); font-size: 2.5rem; line-height: 1; }
.reviews-score > span { color: var(--gold); letter-spacing: .12em; }
.reviews-score small { color: var(--gray-dark); }
.reviews-carousel { position: relative; min-height: 380px; max-width: 920px; margin: 0 auto; }
.review-card { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); text-align: center; opacity: 0; transform: translateX(50px) scale(.97); pointer-events: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.75,.25,1); }
.review-card.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.quote-mark { height: 60px; color: var(--gold); font-family: var(--font-serif); font-size: 6rem; line-height: 1; opacity: .5; }
.review-stars { color: var(--gold); letter-spacing: .16em; font-size: .78rem; }
.review-card blockquote { max-width: 730px; margin: 1.3rem 0 2rem; color: var(--cream); font-family: var(--font-serif); font-size: clamp(1.55rem, 3vw, 2.6rem); line-height: 1.25; }
.review-card footer { display: flex; align-items: center; gap: .8rem; text-align: left; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--black); font-weight: 900; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer strong { color: var(--cream); font-size: .82rem; }
.review-card footer small { color: var(--gray-dark); font-size: .68rem; }
.review-controls { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 1.4rem; }
.review-controls > button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--cream); cursor: pointer; }
.review-dots { display: flex; gap: .55rem; }
.review-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: width var(--transition), border-radius var(--transition), background var(--transition); }
.review-dot.active { width: 25px; border-radius: 999px; background: var(--gold); }
.reviews-cta { display: flex; justify-content: center; margin-top: 2rem; }

.booking-section { overflow: hidden; background: linear-gradient(145deg, #19150b, #090909 55%); }
.booking-glow { position: absolute; width: 600px; height: 600px; left: -350px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.24), transparent 65%); filter: blur(12px); }
.booking-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(430px, 1.22fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.booking-copy { position: relative; z-index: 2; }
.booking-copy > p:not(.eyebrow) { max-width: 590px; }
.booking-benefits { display: grid; gap: .75rem; margin-top: 2rem; }
.booking-benefits span { display: flex; align-items: center; gap: .75rem; color: var(--cream); }
.booking-benefits i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(212,175,55,.14); color: var(--gold); font-size: .7rem; }
.booking-benefits em { font-style: normal; font-size: .82rem; font-weight: 700; }
.booking-form { position: relative; z-index: 2; padding: clamp(1.35rem, 4vw, 3rem); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); background: rgba(8,8,8,.72); box-shadow: var(--shadow-deep); backdrop-filter: blur(18px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: grid; gap: .5rem; margin-bottom: 1rem; }
.form-group > span { color: var(--cream); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: none; background: rgba(255,255,255,.035); color: var(--white); padding: .9rem 1rem; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.form-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.11); background: rgba(255,255,255,.05); }
.form-group.error input, .form-group.error select { border-color: var(--danger); }
.error-message { min-height: 1em; color: var(--danger); font-size: .66rem; }
.submit-button { width: 100%; margin-top: .4rem; }
.form-disclaimer { margin: .9rem 0 0; color: var(--gray-dark); font-size: .66rem; text-align: center; }


/* Site-owned appointment experience. Salonized only provides the right-side booking popup. */
.booking-glow-right {
    left: auto;
    right: -330px;
    top: auto;
    bottom: -310px;
    opacity: .72;
}
.booking-launch-card {
    position: relative;
    z-index: 2;
    min-width: 0;
    overflow: hidden;
    padding: clamp(1.2rem, 3.4vw, 2.4rem);
    border: 1px solid rgba(242,208,107,.34);
    border-radius: clamp(24px, 3vw, 38px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
        radial-gradient(circle at 88% 8%, rgba(212,175,55,.18), transparent 36%),
        rgba(7,7,7,.88);
    box-shadow:
        0 35px 85px rgba(0,0,0,.52),
        inset 0 1px rgba(255,255,255,.07),
        inset 0 0 70px rgba(212,175,55,.025);
    backdrop-filter: blur(20px);
    isolation: isolate;
}
.booking-launch-card::before,
.booking-launch-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.booking-launch-card::before {
    inset: -1px;
    z-index: -2;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255,240,185,.42), transparent 22%, transparent 72%, rgba(212,175,55,.26));
    opacity: .66;
}
.booking-launch-card::after {
    width: 280px;
    height: 280px;
    right: -150px;
    bottom: -170px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.16);
    box-shadow: 0 0 0 28px rgba(212,175,55,.025), 0 0 0 58px rgba(212,175,55,.018);
}
.booking-launch-topbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 36px;
    color: var(--cream);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.booking-secure {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin-left: auto;
    color: rgba(255,255,255,.56);
    font-size: .56rem;
    letter-spacing: .08em;
}
.booking-secure i { color: var(--gold); }
.salonized-live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 0 5px rgba(212,175,55,.1), 0 0 16px rgba(242,208,107,.72);
    animation: salonizedPulse 2.3s ease-in-out infinite;
}
.booking-visual {
    position: relative;
    width: min(100%, 360px);
    height: 215px;
    display: grid;
    place-items: center;
    margin: .25rem auto .35rem;
    perspective: 1050px;
    transform-style: preserve-3d;
}
.booking-calendar-3d {
    position: relative;
    z-index: 3;
    width: 150px;
    height: 126px;
    border: 1px solid rgba(255,229,153,.68);
    border-radius: 22px;
    background:
        linear-gradient(155deg, rgba(255,255,255,.12), transparent 26%),
        linear-gradient(145deg, #2a210d, #0b0b0b 65%);
    box-shadow:
        inset 0 1px rgba(255,255,255,.18),
        inset 0 -16px 34px rgba(0,0,0,.54),
        0 16px 0 #3b2807,
        0 26px 48px rgba(0,0,0,.62),
        0 0 34px rgba(212,175,55,.18);
    transform: rotateX(54deg) rotateZ(-12deg) translateZ(28px);
    transform-style: preserve-3d;
    animation: bookingCalendarFloat 5.6s ease-in-out infinite;
}
.booking-calendar-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 31px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242,208,107,.66), transparent);
}
.booking-calendar-binding {
    position: absolute;
    top: -13px;
    width: 13px;
    height: 31px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6d4909, #ffe69b 48%, #91620c);
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    transform: translateZ(16px);
}
.booking-calendar-binding-left { left: 33px; }
.booking-calendar-binding-right { right: 33px; }
.booking-calendar-grid {
    position: absolute;
    inset: 49px 20px 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.booking-calendar-grid i {
    display: block;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,.22);
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.booking-calendar-grid i:nth-child(5) {
    background: linear-gradient(145deg, var(--gold-bright), var(--gold-dark));
    box-shadow: 0 0 16px rgba(212,175,55,.32);
}
.booking-calendar-check {
    position: absolute;
    z-index: 4;
    right: -21px;
    bottom: -12px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255,239,182,.8);
    background: linear-gradient(145deg, var(--gold-bright), var(--gold-dark));
    color: #0a0905;
    box-shadow: 0 12px 25px rgba(0,0,0,.45), 0 0 25px rgba(212,175,55,.34);
    transform: translateZ(38px);
}
.booking-orbit {
    position: absolute;
    z-index: 1;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(242,208,107,.24);
    transform-style: preserve-3d;
}
.booking-orbit-one {
    transform: rotateX(70deg) rotateZ(12deg);
    animation: bookingOrbit 13s linear infinite;
}
.booking-orbit-two {
    width: 175px;
    border-style: dashed;
    opacity: .62;
    transform: rotateY(68deg) rotateZ(-18deg);
    animation: bookingOrbitReverse 17s linear infinite;
}
.booking-floor-glow {
    position: absolute;
    z-index: 0;
    bottom: 23px;
    width: 190px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(242,208,107,.42), rgba(212,175,55,.1) 44%, transparent 72%);
    filter: blur(12px);
    transform: rotateX(72deg);
}
.booking-launch-copy { text-align: center; }
.booking-card-kicker {
    margin: 0 0 .5rem;
    color: var(--gold-bright);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .2em;
}
.booking-launch-copy h3 {
    margin: 0;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: .98;
    letter-spacing: -.035em;
}
.booking-launch-copy > p:last-child {
    max-width: 520px;
    margin: .85rem auto 0;
    color: var(--gray);
    font-size: .83rem;
    line-height: 1.55;
}
.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    margin: 1.4rem 0 1.15rem;
}
.booking-steps span {
    min-width: 0;
    display: grid;
    gap: .18rem;
    padding: .82rem .55rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.028);
    text-align: center;
}
.booking-steps b {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: .08em;
}
.booking-steps em {
    color: var(--cream);
    font-style: normal;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.booking-launch-button { width: 100%; }
.booking-whatsapp-link {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin: .9rem auto 0;
    color: var(--gray);
    font-size: .68rem;
    font-weight: 700;
    transition: color var(--transition), transform var(--transition);
}
.booking-whatsapp-link i { color: #25d366; font-size: 1rem; }
.booking-whatsapp-link:hover { color: var(--cream); transform: translateY(-2px); }
.booking-launch-note {
    margin: .75rem auto 0;
    color: var(--gray-dark);
    font-size: .58rem;
    line-height: 1.45;
    text-align: center;
}
@keyframes salonizedPulse {
    0%, 100% { transform: scale(.88); opacity: .68; }
    50% { transform: scale(1.08); opacity: 1; }
}
@keyframes bookingCalendarFloat {
    0%, 100% { transform: rotateX(54deg) rotateZ(-12deg) translate3d(0,0,28px); }
    50% { transform: rotateX(50deg) rotateZ(-8deg) translate3d(0,-8px,40px); }
}
@keyframes bookingOrbit {
    from { transform: rotateX(70deg) rotateZ(12deg); }
    to { transform: rotateX(70deg) rotateZ(372deg); }
}
@keyframes bookingOrbitReverse {
    from { transform: rotateY(68deg) rotateZ(-18deg); }
    to { transform: rotateY(68deg) rotateZ(-378deg); }
}

.faq-section { background: var(--black-soft); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.55rem 0; border: 0; background: none; color: var(--cream); text-align: left; cursor: pointer; }
.faq-item button span { font-family: var(--font-serif); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; }
.faq-item button i { color: var(--gold); transition: transform var(--transition); }
.faq-item.active button i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding-right: 3rem; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer > p { padding-bottom: 1.5rem; }

.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); gap: 1rem; }
.contact-card, .map-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--black-soft); }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding-bottom: 1.6rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.contact-item > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold-line); color: var(--gold); }
.contact-item small, .hours-block > small { display: block; margin-bottom: .45rem; color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-item strong { display: block; color: var(--cream); font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.35; }
.contact-item div > a:last-child { display: inline-block; margin-top: .45rem; color: var(--gold-bright); font-size: .72rem; font-weight: 800; border-bottom: 1px solid currentColor; }
.hours-block ul { padding: 0; margin: 1rem 0; list-style: none; }
.hours-block li { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .35rem 1rem; padding: .42rem 0; font-size: .78rem; }
.hours-block li strong { color: var(--cream); font-weight: 700; }
.hours-block > p { color: var(--gray-dark); font-size: .65rem; }
.social-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.social-row a { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cream); transition: color var(--transition), border-color var(--transition), transform var(--transition), background var(--transition); }
.social-row a:hover { transform: translateY(-3px); border-color: var(--gold); background: var(--gold); color: var(--black); }
.map-wrap { position: relative; min-height: 660px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 660px; border: 0; filter: grayscale(1) invert(.9) contrast(.9) sepia(.2); }
.map-button { position: absolute; left: 1rem; right: auto; bottom: 1rem; display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1rem; border-radius: 999px; background: var(--gold); color: var(--black); font-size: .7rem; font-weight: 900; box-shadow: var(--shadow-deep); }

.footer { padding: 5rem 0 1.2rem; border-top: 1px solid var(--line); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); }
.footer h3 { margin: 0 0 1.2rem; color: var(--cream); font-family: var(--font-serif); font-size: 1.25rem; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: .55rem 0; color: var(--gray); font-size: .8rem; }
.footer-brand p { max-width: 330px; margin: 1.4rem 0 .7rem; font-size: .8rem; }
.footer-brand > span { color: var(--gray-dark); font-size: .68rem; }
.footer-grid .button { display: inline-flex !important; margin-top: .4rem !important; color: var(--black) !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: var(--gray-dark); font-size: .65rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 1200; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: .75rem; min-height: 52px; padding: .65rem 1rem; border-radius: 999px; background: #25d366; color: #061f0d; font-size: .72rem; font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.4); transition: transform var(--transition), box-shadow var(--transition); }
.whatsapp-float i { font-size: 1.35rem; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(37,211,102,.28); }
.back-to-top { position: fixed; z-index: 1190; right: 1.45rem; bottom: 5.2rem; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold-line); border-radius: 50%; background: rgba(7,7,7,.88); color: var(--gold); opacity: 0; visibility: hidden; transform: translateY(15px); transition: opacity var(--transition), visibility var(--transition), transform var(--transition); cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

/* =========================================================
   Real Twente Barbershop crest + interactive 3D presentation
   ========================================================= */
.logo-stage {
    isolation: isolate;
    border-radius: 50%;
    transform-style: preserve-3d;
}
.logo-stage::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 50%;
    background: conic-gradient(from 25deg, #6d4808, #f4d36f 18%, #9f6d13 38%, #ffe8a0 55%, #7b5008 76%, #f4d36f);
    box-shadow: 0 0 0 1px rgba(255, 224, 132, .32), 0 12px 30px rgba(0, 0, 0, .62), 0 0 24px rgba(212, 175, 55, .13);
    transform: translateZ(-6px);
}
.brand-logo-image {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 224, 132, .48);
    background: #000;
    box-shadow: inset 0 0 22px rgba(0, 0, 0, .72);
    transform: translateZ(8px);
    transition: transform var(--transition), filter var(--transition);
}
.logo-glint {
    position: absolute;
    inset: 5px;
    z-index: 3;
    overflow: hidden;
    border-radius: 50%;
    pointer-events: none;
}
.logo-glint::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -65%;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
    transform: skewX(-18deg);
    animation: logoGlint 5.2s ease-in-out infinite;
}
.brand:hover .brand-logo-image {
    transform: translateZ(13px) rotateY(11deg) rotateX(-5deg) scale(1.035);
    filter: saturate(1.12) brightness(1.08);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
}
.hero-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
}
.hero-emblem-stage {
    --emblem-size: min(38vw, 560px);
    position: relative;
    z-index: 2;
    width: var(--emblem-size);
    max-width: 100%;
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-items: center;
    perspective: 1500px;
    transform-style: preserve-3d;
    filter: drop-shadow(0 45px 62px rgba(0,0,0,.82));
}
.hero-emblem-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --shift-x: 0px;
    --shift-y: 0px;
    position: relative;
    z-index: 4;
    width: 78%;
    aspect-ratio: 1;
    padding: 10px;
    border-radius: 50%;
    transform-style: preserve-3d;
    transform: translate3d(var(--shift-x), var(--shift-y), 70px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 180ms cubic-bezier(.18,.75,.25,1);
    animation: emblemFloat 6.8s ease-in-out infinite;
}
.hero-emblem-card::before,
.hero-emblem-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-emblem-card::before {
    inset: -11px;
    z-index: -1;
    background: conic-gradient(from 0deg, #5c3603, #d4af37 13%, #fff0af 20%, #91600d 34%, #f3cc60 52%, #674004 68%, #ffe39a 82%, #8b5a0a);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.22), inset 0 0 24px rgba(0,0,0,.65), 0 0 0 2px rgba(212,175,55,.15), 0 0 55px rgba(212,175,55,.22);
    transform: translateZ(-26px);
}
.hero-emblem-card::after {
    inset: 1px;
    z-index: 3;
    border: 1px solid rgba(255, 229, 153, .42);
    box-shadow: inset 0 0 30px rgba(0,0,0,.72), inset 0 0 0 5px rgba(212,175,55,.06);
    transform: translateZ(22px);
}
.hero-emblem-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
    transform: translateZ(18px);
    backface-visibility: hidden;
}
.hero-emblem-edge {
    position: absolute;
    inset: 3%;
    z-index: 1;
    border-radius: 50%;
    background: #4d2e04;
    transform: translateZ(-34px);
    box-shadow: 0 0 0 10px #2d1901, 0 0 0 12px rgba(244,211,111,.26);
}
.hero-emblem-shine {
    position: absolute;
    inset: 10px;
    z-index: 5;
    overflow: hidden;
    border-radius: 50%;
    transform: translateZ(30px);
    pointer-events: none;
}
.hero-emblem-shine::before {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -70%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
    transform: skewX(-19deg);
    animation: emblemShine 7s 1.4s ease-in-out infinite;
}
.hero-emblem-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(242,208,107,.3);
    transform-style: preserve-3d;
}
.orbit-one {
    inset: 4%;
    transform: rotateX(68deg) rotateZ(-12deg);
    animation: orbitSpin 13s linear infinite;
}
.orbit-two {
    inset: 0;
    border-style: dashed;
    opacity: .55;
    transform: rotateY(72deg) rotateZ(18deg);
    animation: orbitSpinReverse 18s linear infinite;
}
.hero-emblem-depth {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(244,211,111,.24), rgba(69,40,3,.32) 46%, rgba(0,0,0,.9) 72%);
    filter: blur(1px);
    transform: translateZ(-80px) scale(.96);
}
.hero-emblem-floor {
    position: absolute;
    bottom: 4%;
    width: 62%;
    height: 13%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(242,208,107,.4), rgba(212,175,55,.13) 38%, transparent 72%);
    filter: blur(17px);
    transform: rotateX(75deg) translateZ(-100px);
    animation: emblemFloor 6.8s ease-in-out infinite;
}

/* Listed, clickable review cards */
.reviews-section {
    isolation: isolate;
}
.review-ambient {
    position: absolute;
    z-index: -1;
    width: 430px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .24;
    pointer-events: none;
    background: radial-gradient(circle, rgba(212,175,55,.32), transparent 67%);
}
.review-ambient-one { top: 5%; left: -230px; }
.review-ambient-two { right: -250px; bottom: 0; }
.reviews-score small b { color: var(--cream); }
.reviews-intro {
    max-width: 760px;
    margin: 1.2rem auto 0;
    color: var(--gray-dark);
    font-size: .84rem;
}
.reviews-marquee-shell {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}
.reviews-marquee {
    position: relative;
    overflow: hidden;
    padding: .2rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-marquee-track {
    width: max-content;
    display: flex;
    gap: 1rem;
    padding: .2rem 0;
    animation: tapeMove 95s linear infinite;
    will-change: transform;
}
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee:focus-within .reviews-marquee-track {
    animation-play-state: paused;
}
.reviews-marquee-forward .reviews-marquee-track {
    animation-name: tapeMove;
}
.reviews-marquee-reverse .reviews-marquee-track {
    animation-name: tapeMoveReverse;
}
.review-tape-card,
.review-list-card {
    --review-order: 1;
    position: relative;
    flex: 0 0 clamp(210px, 22vw, 255px);
    min-height: 205px;
    display: flex;
    flex-direction: column;
    padding: clamp(.95rem, 1.7vw, 1.15rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        radial-gradient(circle at 100% 0%, rgba(212,175,55,.1), transparent 42%);
    box-shadow: 0 22px 45px rgba(0,0,0,.2);
    transform-style: preserve-3d;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    transition-delay: calc(var(--review-order) * 18ms);
}
.review-tape-card::before,
.review-list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(115deg, transparent 15%, rgba(242,208,107,.12) 48%, transparent 72%);
    transform: translateX(-80%);
    transition: opacity .45s ease, transform .7s ease;
    pointer-events: none;
}
.review-tape-card:hover,
.review-tape-card:focus-visible,
.review-list-card:hover,
.review-list-card:focus-visible {
    transform: translateY(-9px) rotateX(1.5deg);
    border-color: rgba(242,208,107,.5);
    box-shadow: 0 32px 70px rgba(0,0,0,.42), 0 0 0 1px rgba(212,175,55,.08);
    background:
        linear-gradient(145deg, rgba(212,175,55,.09), rgba(255,255,255,.015)),
        radial-gradient(circle at 100% 0%, rgba(212,175,55,.17), transparent 48%);
}
.review-tape-card:hover::before,
.review-tape-card:focus-visible::before,
.review-list-card:hover::before,
.review-list-card:focus-visible::before {
    opacity: 1;
    transform: translateX(80%);
}
.review-card-index {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    color: rgba(255,255,255,.17);
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: .06em;
}
.review-list-stars {
    display: block;
    width: fit-content;
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .13em;
}
.review-tape-card blockquote,
.review-list-card blockquote {
    margin: 1.2rem 0 1.7rem;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(.92rem, 1.05vw, 1.02rem);
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-tape-card footer,
.review-list-card footer {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem;
    margin-top: auto;
}
.review-person { min-width: 0; }
.review-person strong,
.review-person small { display: block; }
.review-person strong {
    color: var(--cream);
    font-size: .76rem;
    overflow-wrap: anywhere;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .3rem;
    color: #2d9cff;
    font-size: .78rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 10px rgba(45,156,255,.22));
}
.verified-badge i { display: block; }
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .3rem;
    color: #2d9cff;
    font-size: .78rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 10px rgba(45,156,255,.22));
}
.verified-badge i { display: block; }
.review-person small {
    color: var(--gray-dark);
    font-size: .58rem;
    line-height: 1.35;
}
.review-tape-card footer > i,
.review-list-card footer > i {
    color: var(--gold);
    opacity: .65;
    transition: transform var(--transition), opacity var(--transition);
}
.review-tape-card:hover footer > i,
.review-list-card:hover footer > i {
    transform: translate(3px, -3px);
    opacity: 1;
}
.reviews-cta { margin-top: 2.4rem; }

/* Keep the root as the only vertical scroller while clipping decorative layers. */
html {
    overflow-x: clip;
    overflow-y: auto;
}
body,
main {
    overflow-x: clip;
}

/* =========================================================
   Final local-media + premium interaction refinements
   ========================================================= */

.hero {
    background: #070707 var(--hero-fallback, url('../assets/video-poster.webp')) center/cover no-repeat;
}
.hero.video-paused .hero-video { opacity: 0; }
.hero-video { transition: opacity .45s ease; }

.signature-image {
    background-image: url('../assets/gallery-02.webp');
    background-position: center 34%;
    background-size: cover;
}

/* Smooth scroll-triggered pop typography.
   Opacity + small translate/scale stay on the compositor and avoid the expensive
   blur/3D filters that made anchor scrolling feel stuck. */
.pop-heading {
    transform-style: flat;
}
.pop-heading .pop-word {
    display: inline-block;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, .28em, 0) scale(.975);
    transform-origin: 50% 100%;
    transition:
        opacity .46s cubic-bezier(.16,.84,.3,1),
        transform .52s cubic-bezier(.16,.84,.3,1);
    transition-delay: calc(var(--word-index, 0) * 28ms);
}
.pop-heading.is-visible .pop-word {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
.pop-copy {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(.992);
    transform-origin: 50% 100%;
    transition:
        opacity .42s cubic-bezier(.16,.84,.3,1),
        transform .48s cubic-bezier(.16,.84,.3,1);
}
.pop-copy.is-visible {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
    color: white;
    
}


/* Avoid double-running the old hero reveal and the new word pop together. */
.hero .hero-title.reveal-up,
.hero .hero-text.reveal-up {
    opacity: 1;
    transform: none;
    animation: none;
}


/* The main logo reacts to movement across the whole hero and to left/right clicks. */
.hero-emblem-stage {
    --glow-x: 50%;
    --glow-y: 42%;
    cursor: crosshair;
    touch-action: pan-y;
}
.hero-emblem-stage::before {
    content: "";
    position: absolute;
    inset: 5%;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,235,164,.27), rgba(212,175,55,.08) 34%, transparent 68%);
    filter: blur(10px);
    transition: background-position .18s ease, transform .32s ease;
}
.hero-emblem-card {
    transform:
        translate3d(var(--shift-x), var(--shift-y), 70px)
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        rotateZ(0deg)
        scale(1);
    transition: transform 260ms cubic-bezier(.16,.84,.3,1.14), filter 260ms ease;
}
@keyframes logoKickFloor {
    0%, 100% { opacity: .5; transform: rotateX(75deg) translateZ(-100px) scale(.94); }
    45% { opacity: 1; transform: rotateX(75deg) translateZ(-100px) scale(1.24); }
}

/* Every gallery image is supplied locally by the project owner. */
.gallery-item img {
    background: #111;
}
.gallery-item:nth-child(7) img {
    object-position: center 46%;
}

/* Direct Google reviews destination rather than the generic share/account redirect. */
.review-tape-card,
.reviews-cta a,
.hero-proof a {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    .pop-heading .pop-word,
    .pop-copy {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-emblem-card,
    .hero-emblem-stage,
    .hero-emblem-floor,
    .hero-emblem-orbit,
    .reviews-marquee-track,
    .review-track {
        animation: none !important;
        transition: none !important;
    }
}

.review-tape-card-static {
    cursor: default;
}
.review-tape-card-static:hover,
.review-tape-card-static:focus-visible {
    transform: none;
}


/* Run continuous movement only while it is actually visible. */
.review-track,
.reviews-marquee-track {
    animation-play-state: paused;
}
.review-track.motion-running,
.reviews-marquee-track.motion-running {
    animation-play-state: running;
}
.review-tape:hover .review-track.motion-running,
.reviews-marquee:hover .reviews-marquee-track.motion-running,
.reviews-marquee:focus-within .reviews-marquee-track.motion-running {
    animation-play-state: paused;
}
.hero.motion-paused .hero-emblem-card,
.hero.motion-paused .hero-emblem-floor,
.hero.motion-paused .hero-emblem-orbit,
.hero.motion-paused .hero-emblem-shine::before {
    animation-play-state: paused !important;
}

@media (max-width: 760px) {
    .page-noise,
    .cursor-glow {
        display: none;
    }

    .pop-heading .pop-word {
        transform: translate3d(0, .2em, 0) scale(.985);
        transition-duration: .36s, .4s;
        transition-delay: calc(var(--word-index, 0) * 18ms);
    }
    .pop-copy {
        transform: translate3d(0, 8px, 0);
        transition-duration: .32s, .38s;
    }
}

/* =========================================================
   Infinite 3D gallery tape — full-colour, full-image framing
   ========================================================= */
.gallery-section {
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 35%, rgba(212, 175, 55, .095), transparent 34%),
        linear-gradient(180deg, #0d0d0d, #070707 72%);
}

.gallery-scene {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-block: clamp(1.4rem, 3vw, 2.6rem) clamp(2.2rem, 5vw, 4.4rem);
    perspective: 1800px;
    transform-style: preserve-3d;
}

.gallery-viewport {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: clamp(1.5rem, 4vw, 3rem) max(var(--page-gutter), calc((100vw - var(--container)) / 2)) clamp(2.2rem, 5vw, 4rem);
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
    cursor: grab;
    perspective: 1500px;
    transform-style: preserve-3d;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.gallery-viewport:active {
    cursor: grabbing;
}

.gallery-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-rows: unset !important;
    align-items: center;
    width: max-content;
    gap: clamp(.9rem, 2vw, 1.45rem);
    padding: 0;
    transform-style: preserve-3d;
}

.gallery-item,
.gallery-item.gallery-large,
.gallery-item.gallery-wide {
    --gallery-rotate: 0deg;
    --gallery-pointer-x: 0deg;
    --gallery-pointer-y: 0deg;
    --gallery-depth: 0px;
    --gallery-lift: 0px;
    --gallery-scale: 1;
    --gallery-opacity: 1;
    --hover-scale: 1;
    --shine-x: 50%;
    --shine-y: 38%;
    position: relative;
    flex: 0 0 clamp(260px, 28vw, 410px);
    width: clamp(260px, 28vw, 410px);
    height: clamp(330px, 37vw, 525px);
    min-width: 0;
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(242, 208, 107, .34);
    border-radius: clamp(18px, 2.2vw, 30px);
    background:
        radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(242, 208, 107, .16), transparent 37%),
        linear-gradient(145deg, #1b170d 0%, #0b0b0b 42%, #141414 100%);
    box-shadow:
        0 38px 82px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(212, 175, 55, .08),
        inset 0 1px rgba(255, 255, 255, .08),
        inset 0 -20px 45px rgba(0, 0, 0, .42);
    opacity: var(--gallery-opacity);
    transform-style: preserve-3d;
    transform:
        translate3d(0, var(--gallery-lift), var(--gallery-depth))
        rotateX(var(--gallery-pointer-x))
        rotateY(calc(var(--gallery-rotate) + var(--gallery-pointer-y)))
        scale(var(--gallery-scale))
        scale(var(--hover-scale));
    transform-origin: 50% 58%;
    transition:
        border-color .34s ease,
        box-shadow .38s ease,
        filter .34s ease,
        opacity .28s ease,
        transform .22s cubic-bezier(.16, .84, .3, 1.05);
    will-change: transform;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: 2;
    border: 1px solid rgba(255, 224, 132, .18);
    border-radius: calc(clamp(18px, 2.2vw, 30px) - 7px);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .42),
        inset 0 0 28px rgba(212, 175, 55, .035);
    pointer-events: none;
    transform: translateZ(36px);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .56;
    background:
        radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 245, 201, .22), transparent 24%),
        linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, .08) 42%, transparent 61%);
    mix-blend-mode: screen;
    transition: opacity .35s ease;
    transform: translateZ(48px);
}

.gallery-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: clamp(.55rem, 1.25vw, .9rem);
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
    background: transparent;
    filter: none !important;
    transform: translateZ(26px) scale(.965);
    transition:
        transform .55s cubic-bezier(.16, .84, .3, 1),
        filter .4s ease;
    backface-visibility: hidden;
}

.gallery-item:hover,
.gallery-item:focus-visible {
    --hover-scale: 1.035;
    z-index: 8;
    border-color: rgba(255, 224, 132, .74);
    filter: brightness(1.04);
    box-shadow:
        0 52px 105px rgba(0, 0, 0, .68),
        0 0 44px rgba(212, 175, 55, .15),
        0 0 0 1px rgba(255, 224, 132, .16),
        inset 0 1px rgba(255, 255, 255, .12);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: .92;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    filter: saturate(1.06) contrast(1.02) brightness(1.04) !important;
    transform: translateZ(48px) scale(1);
}

.gallery-overlay {
    z-index: 5;
    inset: auto .85rem .85rem;
    min-height: 44px;
    padding: .7rem .85rem;
    align-items: center;
    border: 1px solid rgba(255, 224, 132, .18);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(7, 7, 7, .68);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translate3d(0, 12px, 54px);
    transition: opacity .3s ease, transform .36s cubic-bezier(.16, .84, .3, 1);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
    transform: translate3d(0, 0, 54px);
}

.gallery-orbit {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    width: min(82vw, 1180px);
    height: min(28vw, 390px);
    border: 1px solid rgba(212, 175, 55, .13);
    border-radius: 50%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.gallery-orbit-one {
    transform: translate(-50%, -50%) rotateX(73deg) rotateZ(-7deg);
    animation: galleryOrbitSpin 26s linear infinite;
}

.gallery-orbit-two {
    width: min(67vw, 940px);
    border-style: dashed;
    opacity: .55;
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(16deg);
    animation: galleryOrbitSpinReverse 34s linear infinite;
}

.gallery-floor {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 3%;
    width: min(76vw, 1040px);
    height: clamp(70px, 10vw, 130px);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(242, 208, 107, .2), rgba(212, 175, 55, .07) 38%, transparent 72%);
    filter: blur(22px);
    transform: translateX(-50%) rotateX(74deg);
    animation: galleryFloorPulse 5.8s ease-in-out infinite;
}

.lightbox-image {
    filter: none !important;
    background: #0c0c0c;
}

@keyframes galleryOrbitSpin {
    from { transform: translate(-50%, -50%) rotateX(73deg) rotateZ(-7deg); }
    to { transform: translate(-50%, -50%) rotateX(73deg) rotateZ(353deg); }
}

@keyframes galleryOrbitSpinReverse {
    from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(16deg); }
    to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-344deg); }
}

@keyframes galleryFloorPulse {
    0%, 100% { opacity: .48; transform: translateX(-50%) rotateX(74deg) scale(.94); }
    50% { opacity: .86; transform: translateX(-50%) rotateX(74deg) scale(1.07); }
}

/* =========================================================
   Salonized open / inline booking experience
   ========================================================= */
.booking-grid-inline {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}
.booking-grid-inline .booking-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: end;
}
.booking-grid-inline .booking-copy .eyebrow,
.booking-grid-inline .booking-copy .section-title {
    grid-column: 1;
}
.booking-grid-inline .booking-copy > p:not(.eyebrow) {
    grid-column: 1;
    max-width: 720px;
    margin-bottom: 0;
}
.booking-grid-inline .booking-benefits {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
    margin-top: 0;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-md);
    background: rgba(7,7,7,.5);
}
.salonized-booking-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    padding: clamp(.65rem, 1.8vw, 1.2rem);
    overflow: hidden;
    border: 1px solid rgba(242,208,107,.42);
    border-radius: clamp(20px, 3vw, 34px);
    background:
        radial-gradient(circle at 90% 0%, rgba(212,175,55,.15), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        rgba(7,7,7,.9);
    box-shadow: 0 32px 80px rgba(0,0,0,.52), inset 0 1px rgba(255,255,255,.06);
}
.salonized-booking-topbar {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 46px;
    padding: 0 .55rem .65rem;
    color: var(--cream);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.salonized-booking-topbar > i {
    margin-left: auto;
    color: var(--gold-bright);
}
.salonized-booking-frame {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: clamp(14px, 2vw, 24px);
    background: #fff;
}
.salonized-booking-frame .salonized-booking {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
}
.salonized-booking-note {
    margin: .8rem .4rem .1rem;
    color: var(--gray-dark);
    font-size: .68rem;
    text-align: center;
}


/* =========================================================
   Salonized wide inline calendar — desktop and phone
   ========================================================= */
.booking-section .container {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1440px);
}

.salonized-booking-shell {
    --salonized-height: 860px;
    padding: clamp(.45rem, 1vw, .8rem);
}

.salonized-booking-topbar {
    min-height: 42px;
    padding: 0 .45rem .5rem;
}

.salonized-booking-frame {
    position: relative;
    min-height: var(--salonized-height);
    contain: layout paint;
}

.salonized-booking-frame .salonized-booking {
    min-height: var(--salonized-height) !important;
}

.salonized-booking-frame iframe,
.salonized-booking iframe {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    height: var(--salonized-height) !important;
    min-height: var(--salonized-height) !important;
    margin: 0 !important;
    border: 0 !important;
    background: #fff !important;
    touch-action: pan-y !important;
    overscroll-behavior: contain;
    opacity: 0;
    transition: opacity .28s ease;
}

.salonized-booking-shell.salonized-ready iframe {
    opacity: 1;
}

.salonized-loading {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: var(--salonized-height);
    background:
        radial-gradient(circle at 50% 38%, rgba(212,175,55,.13), transparent 36%),
        #fff;
    color: #282828;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: opacity .25s ease, visibility .25s ease;
}

.salonized-ready .salonized-loading {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.salonized-loading-ring {
    width: 23px;
    height: 23px;
    border: 2px solid rgba(212,175,55,.22);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: salonizedLoadingSpin .7s linear infinite;
}

@keyframes salonizedLoadingSpin {
    to { transform: rotate(360deg); }
}

/* =========================================================
   V10 mixed photo/video gallery + slim Salonized side framing
   ========================================================= */
.gallery-item img,
.gallery-item video {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    padding: clamp(.55rem, 1.25vw, .9rem);
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
    background: #090909;
    filter: none !important;
    transform: translateZ(26px) scale(.965);
    transition: transform .55s cubic-bezier(.16, .84, .3, 1), filter .4s ease;
    backface-visibility: hidden;
}

.gallery-item video {
    pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.gallery-item:hover video,
.gallery-item:focus-visible video {
    filter: saturate(1.06) contrast(1.02) brightness(1.04) !important;
    transform: translateZ(48px) scale(1);
}

.gallery-item[data-media-type="video"] .gallery-overlay i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(212,175,55,.16);
    color: var(--gold-bright);
}

.lightbox figure {
    width: 100%;
}

.lightbox-image,
.lightbox-video {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: #050505;
    box-shadow: var(--shadow-deep);
}

.lightbox-image[hidden],
.lightbox-video[hidden] {
    display: none !important;
}

.salonized-booking-frame {
    position: relative;
    box-shadow:
        0 0 0 1px rgba(242,208,107,.22),
        inset 0 0 24px rgba(212,175,55,.035);
}

.salonized-booking-frame::before,
.salonized-booking-frame::after {
    content: "";
    position: absolute;
    z-index: 6;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(242,208,107,.72) 18%, rgba(143,107,20,.55) 82%, transparent);
    box-shadow: 0 0 14px rgba(212,175,55,.24);
}

.salonized-booking-frame::before { left: 2px; }
.salonized-booking-frame::after { right: 2px; }

/* =========================================================
   V14 — requested booking trust details, three-language UI,
   and a compact two-line live opening-status capsule.
   ========================================================= */
.hero-status-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .22rem;
    min-height: 46px;
    padding-block: .5rem;
    white-space: normal;
}

.hero-status-mainline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .48rem;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
}

.hero-status-schedule {
    position: relative;
    z-index: 1;
    display: block;
    color: rgba(255, 255, 255, .48);
    font-size: .52rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.booking-trust-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(.8rem, 2vw, 1.2rem);
    padding: clamp(.7rem, 1.4vw, 1rem);
    overflow: hidden;
    border: 1px solid rgba(242, 208, 107, .3);
    border-radius: clamp(18px, 2.4vw, 28px);
    background:
        radial-gradient(circle at 8% 0%, rgba(212, 175, 55, .13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .043), rgba(255, 255, 255, .012)),
        rgba(7, 7, 7, .72);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, .34),
        inset 0 1px rgba(255, 255, 255, .055);
}

.booking-trust-panel::after {
    content: "";
    position: absolute;
    right: -85px;
    top: -115px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .12);
    box-shadow: 0 0 0 28px rgba(212, 175, 55, .025);
    pointer-events: none;
}

.booking-recognition-card {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: .9rem;
    padding: .62rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
}

.booking-recognition-card img {
    width: 82px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 218, 118, .28);
    box-shadow: 0 11px 26px rgba(0, 0, 0, .35);
}

.booking-recognition-copy {
    min-width: 0;
    display: grid;
    gap: .24rem;
}

.booking-recognition-copy span {
    color: var(--gold);
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.booking-recognition-copy strong {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.65vw, 1.32rem);
    line-height: 1.05;
}

.booking-facts {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.booking-fact {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: .68rem;
    padding: .72rem .78rem;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
    color: var(--cream);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.35;
}

.booking-fact i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    color: var(--gold-bright);
    font-size: .75rem;
}

.faq-mobile-contact {
    display: none;
}

@media (max-width: 760px) {
    .hero-status-card {
        min-height: 43px;
        gap: .18rem;
        padding-block: .42rem;
    }

    .hero-status-mainline {
        gap: clamp(.3rem, 1.45vw, .44rem);
    }

    .hero-status-schedule {
        font-size: clamp(.43rem, 1.75vw, .5rem);
        letter-spacing: .055em;
    }

    .booking-trust-panel {
        grid-template-columns: minmax(0, 1fr);
        gap: .65rem;
        padding: .68rem;
        border-radius: 20px;
    }

    .booking-recognition-card {
        grid-template-columns: 68px minmax(0, 1fr);
        padding: .52rem;
        border-radius: 15px;
    }

    .booking-recognition-card img {
        width: 68px;
        border-radius: 12px;
    }

    .booking-recognition-copy span {
        font-size: .45rem;
    }

    .booking-recognition-copy strong {
        font-size: 1rem;
    }

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

    .booking-fact {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: .5rem;
        min-height: 58px;
        padding: .52rem .58rem;
        border-radius: 13px;
        font-size: .62rem;
        line-height: 1.3;
    }

    .booking-fact i {
        width: 28px;
        height: 28px;
        font-size: .65rem;
    }

    /* Requested placement: on phones the WhatsApp prompt sits after the FAQ list. */
    .faq-heading-contact {
        display: none;
    }

    .faq-mobile-contact {
        grid-column: 1 / -1;
        display: grid;
        gap: .75rem;
        margin-top: .35rem;
        padding: .95rem;
        border: 1px solid var(--gold-line);
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(212, 175, 55, .075), rgba(255, 255, 255, .018));
    }

    .faq-mobile-contact p {
        margin: 0;
        color: var(--gray);
        font-size: .75rem;
        line-height: 1.5;
    }

    .faq-mobile-contact .button {
        width: 100%;
        min-height: 44px;
    }

    .language-switch {
        gap: .18rem;
    }

    .language-button {
        min-width: 24px;
    }
}

@media (max-width: 400px) {
    .hero-status-card {
        min-height: 40px;
        padding-block: .38rem;
    }

    .hero-status-schedule {
        font-size: .42rem;
    }

    .booking-facts {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-fact {
        min-height: 0;
        font-size: .61rem;
    }

    .language-button {
        min-width: 22px;
        padding: .16rem .25rem;
        font-size: .55rem;
    }
}


/* =========================================================
   V15 — restore the original slim one-line live status.
   The status stays green/red and only shows the next open/close time.
   ========================================================= */
.hero-status-card {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .48rem !important;
    min-height: 38px !important;
    padding: .55rem .82rem !important;
    white-space: nowrap !important;
}

.hero-status-mainline,
.hero-status-schedule {
    display: contents !important;
}

@media (max-width: 760px) {
    .hero-status-card {
        min-height: 32px !important;
        flex-direction: row !important;
        gap: clamp(.32rem, 1.5vw, .48rem) !important;
        padding: .42rem clamp(.72rem, 2.8vw, .95rem) !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 400px) {
    .hero-status-card {
        min-height: 30px !important;
        gap: .3rem !important;
        padding: .38rem .62rem !important;
    }
}


/* =========================================================
   V16 — recognised training company + focused booking intro
   ========================================================= */
.training-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 38%, rgba(212,175,55,.10), transparent 32%),
        linear-gradient(180deg, #0b0b0b, #070707);
}
.training-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -270px;
    top: -280px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.12);
    box-shadow: 0 0 0 42px rgba(212,175,55,.018), 0 0 0 86px rgba(212,175,55,.012);
    pointer-events: none;
}
.training-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(1.3rem, 3.4vw, 2.6rem);
    border: 1px solid rgba(242,208,107,.28);
    border-radius: clamp(24px, 3vw, 38px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
        rgba(8,8,8,.78);
    box-shadow: 0 30px 80px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.055);
    isolation: isolate;
}
.training-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 290px;
    height: 290px;
    right: -130px;
    bottom: -165px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.12), transparent 68%);
    pointer-events: none;
}
.training-badge-wrap {
    display: grid;
    place-items: center;
    min-width: 0;
}
.training-badge-frame {
    position: relative;
    width: min(100%, 250px);
    padding: 10px;
    border: 1px solid rgba(255,226,141,.38);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(212,175,55,.14), rgba(255,255,255,.02));
    box-shadow: 0 24px 48px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.08);
}
.training-badge-frame::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 23px;
    border: 1px solid rgba(212,175,55,.15);
    pointer-events: none;
}
.training-badge-frame img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.44);
}
.training-copy {
    min-width: 0;
}
.training-copy .section-title {
    max-width: 760px;
    font-size: clamp(2.45rem, 4.8vw, 4.7rem);
}
.training-text {
    max-width: 720px;
    margin: 1.35rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(.92rem, 1.3vw, 1.06rem);
    line-height: 1.72;
}
.training-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .7rem;
    margin-top: 1.6rem;
}
.training-points span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .82rem .8rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
    color: var(--cream);
}
.training-points i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    color: var(--gold-bright);
    font-size: .72rem;
}
.training-points em {
    min-width: 0;
    font-style: normal;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.35;
}

.booking-copy-focused {
    align-items: stretch !important;
}
.booking-grid-inline .booking-copy-focused .booking-lead {
    grid-column: 1;
    align-self: center;
    max-width: 760px;
    margin: 0;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.35vw, 3rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.026em;
}
.booking-grid-inline .booking-benefits-priority {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    display: grid;
    align-content: center;
    gap: .68rem;
    margin: 0;
    padding: clamp(1rem, 2.1vw, 1.55rem);
}
.booking-benefits-priority span {
    min-height: 48px;
    padding: .5rem .1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.booking-benefits-priority span:last-child {
    border-bottom: 0;
}
.booking-benefits-priority i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: .74rem;
}
.booking-benefits-priority em {
    color: var(--cream);
    font-size: .84rem;
    line-height: 1.42;
}
