/* ==========================================================================
   FADE CRAFT — PREMIUM STYLESHEET: GRAY-INFUSED BLACK BACKGROUNDS
   ========================================================================== */

:root {
    /* Gray-tinted black backgrounds — pulled from shop's stone floor */
    --bg-base: #050505;
    --bg-deep: #050505;
    --bg-section-alt: #0d0c0b;
    --bg-surface: #141210;
    --bg-card: #1a1815;
    --bg-raised: #211f1c;
    --bg-marquee: #0a0908;

    --text-main: #ffffff;
    --text-muted: #a3a3a3;

    /* Shop Gray — from stone floor & reception desk */
    --shop-gray: #b8b4ae;
    --shop-gray-deep: #7a7872;
    --shop-gray-subtle: rgba(184, 180, 174, 0.07);
    --shop-gray-border: rgba(184, 180, 174, 0.18);

    --accent: #ffffff;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.04);

    --font-heading: 'Bebas Neue', sans-serif;
    --font-sans: 'Raleway', sans-serif;
    --container-w: 1400px;
    --section-pad: clamp(100px, 15vh, 200px);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   1. RESET & FOUNDATION
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    background-color: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto;
    scroll-behavior: auto !important;
    width: 100%; max-width: 100%; overflow-x: hidden;
    overscroll-behavior-y: none;
}

html.lenis, html.lenis body { height: auto; width: 100%; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background: var(--bg-base);
    min-height: 100vh; width: 100%; max-width: 100%;
    overflow-x: hidden; font-weight: 400;
}

body.loading { overflow: hidden; }
a, button, .hover-target { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--shop-gray); outline-offset: 4px; }
::-webkit-scrollbar { width: 0px; background: transparent; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6, .marquee-text, .primary-btn, .sub-heading, .nav-link, .status-txt, .port-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 5%; width: 100%; }

.accent-text {
    color: var(--shop-gray);
    text-shadow: 0 4px 20px rgba(184, 180, 174, 0.2);
}

/* ==========================================================================
   2. BRAND LOGO SYSTEM
   ========================================================================== */
.brand-logo-img {
    display: block; max-width: 100%; object-fit: contain;
    user-select: none; -moz-user-select: none;
    -webkit-user-select: none; -webkit-user-drag: none;
}
.logo-header { height: clamp(60px, 8vw, 90px); }
.logo-preloader { height: clamp(120px, 15vw, 180px); }
.logo-map { height: 90px; }
.logo-footer { height: clamp(150px, 20vw, 250px); }

/* ==========================================================================
   GLASS PANELS
   ========================================================================== */
.glass-panel {
    background: rgba(26, 24, 21, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--shop-gray-border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(184,180,174,0.06);
    color: var(--text-main);
    transform: translateZ(0);
}

/* ==========================================================================
   3. CUSTOM CURSOR
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    .cursor-dot, .cursor-ring {
        position: fixed; top: 0; left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%; pointer-events: none; z-index: 999999;
    }
    .cursor-dot {
        width: 6px; height: 6px; background-color: var(--shop-gray);
        transition: opacity 0.3s ease; box-shadow: 0 0 8px rgba(184,180,174,0.5);
    }
    .cursor-ring {
        width: 40px; height: 40px;
        border: 1px solid rgba(184, 180, 174, 0.3);
        transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth), background-color 0.3s ease, border-color 0.3s ease;
    }
    .cursor-text {
        position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
        font-size: 14px; font-weight: 400; letter-spacing: 2px;
        color: var(--bg-base); pointer-events: none; z-index: 1000000;
        opacity: 0; transition: opacity 0.3s ease; text-transform: uppercase;
        font-family: var(--font-heading);
    }
    body.cursor-hover .cursor-ring {
        width: 65px; height: 65px;
        background-color: rgba(184,180,174,0.05); border-color: rgba(184,180,174,0.6);
    }
    body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0); }
    body.cursor-drag .cursor-ring {
        width: 80px; height: 80px; background-color: var(--shop-gray);
        border-color: transparent; mix-blend-mode: difference;
    }
    body.cursor-drag .cursor-dot { opacity: 0; }
    body.cursor-drag .cursor-text { opacity: 1; color: var(--bg-base); mix-blend-mode: normal; }
}

/* ==========================================================================
   4. PRELOADER
   ========================================================================== */
.preloader {
    position: fixed; inset: 0; background-color: var(--bg-base);
    z-index: 999998; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 40px;
}
.preloader-brand .logo-preloader { transform: translateY(50px); opacity: 0; }
.preloader-bar { width: 250px; height: 1px; background: rgba(184,180,174,0.1); position: relative; overflow: hidden; }
.preloader-progress { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--shop-gray); }

/* ==========================================================================
   5. NAVIGATION & HEADER
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    transition: padding 0.6s var(--ease-smooth), background-color 0.6s var(--ease-smooth), border-color 0.6s var(--ease-smooth);
}
.site-header.scrolled {
    padding: 10px 5%; background: rgba(13, 12, 11, 0.97);
    border-bottom: 1px solid var(--shop-gray-border);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    transform: translateZ(0);
}

.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: block; } }
.nav-list { display: flex; gap: 50px; }
.nav-link {
    font-size: 1.1rem; letter-spacing: 3px; position: relative; padding-bottom: 6px;
    color: var(--text-muted); transition: color 0.4s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 1px;
    background-color: var(--shop-gray); transition: width 0.4s var(--ease-bounce);
}
.nav-link:hover { color: var(--shop-gray); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 30px; }
.shop-status {
    display: flex; align-items: center; gap: 12px; padding: 8px 16px;
    border-radius: 50px; border: 1px solid var(--shop-gray-border);
    background: rgba(26, 24, 21, 0.5);
}
.status-txt { font-size: 0.9rem; letter-spacing: 2px; font-weight: 600; margin-top: 1px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
.status-dot.open { background: var(--shop-gray); box-shadow: 0 0 10px rgba(184,180,174,0.5); }

.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(8, 7, 6, 0.99);
    z-index: 9999; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    clip-path: circle(0% at 100% 0%); transition: clip-path 0.8s var(--ease-smooth);
}
.mobile-menu-overlay.active { clip-path: circle(150% at 100% 0%); }
.mobile-nav-list { text-align: center; display: flex; flex-direction: column; gap: 40px; }
.mobile-nav-link {
    font-size: clamp(3.5rem, 12vw, 5rem); color: var(--text-muted);
    transition: transform 0.4s ease, color 0.4s ease; font-family: var(--font-heading);
}
.mobile-close-btn {
    position: absolute; top: 25px; right: 5%; background: transparent; border: none;
    color: var(--text-main); font-size: 2.5rem; cursor: pointer; z-index: 100000;
    transition: transform 0.3s ease, color 0.3s ease;
}
.menu-toggle { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; z-index: 10001; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle .line { width: 35px; height: 2px; background: var(--text-main); transition: transform 0.4s var(--ease-smooth); }

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.primary-btn {
    display: inline-flex; padding: 18px 40px; border: 1px solid var(--shop-gray-border);
    color: var(--text-main); letter-spacing: 3px; font-size: 1.1rem;
    position: relative; overflow: hidden; align-items: center; gap: 15px;
    cursor: pointer; transition: all 0.4s ease; background: rgba(26,24,21,0.3); border-radius: 4px;
}
.primary-btn .btn-text { position: relative; z-index: 2; transition: color 0.4s ease; }
.primary-btn .btn-bg {
    position: absolute; inset: 0; background: var(--shop-gray); z-index: 1;
    transform: translateY(100%); transition: transform 0.5s var(--ease-bounce);
}

.floating-book-btn {
    position: fixed; bottom: 40px; right: 40px; width: 108px; height: 108px;
    border-radius: 50%; background: var(--bg-surface);
    border: 1px solid var(--shop-gray-border); display: flex; justify-content: center;
    align-items: center; z-index: 990; transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}
.circular-text { position: absolute; width: 100%; height: 100%; animation: rotateText 15s linear infinite; font-family: var(--font-heading); }
.circular-text svg { width: 100%; height: 100%; display: block; overflow: visible; transform-origin: center center; }
.circular-text text { font-size: 10px; font-weight: 500; letter-spacing: 1.4px; fill: var(--shop-gray); transition: fill 0.4s ease; text-transform: uppercase; }
.floating-book-btn i { color: var(--shop-gray); transition: color 0.4s ease; font-size: 1.5rem; }

@media (max-width: 768px) {
    .floating-book-btn { width: 80px; height: 80px; bottom: 20px; right: 20px; }
    .floating-book-btn i { font-size: 1.15rem; }
}
@keyframes rotateText { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ==========================================================================
   AMBIENT BACKGROUND LOGO
   ========================================================================== */
.ambient-logo-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 1; pointer-events: none; display: flex;
    justify-content: center; align-items: center; overflow: hidden;
    background: var(--bg-base); isolation: isolate;
}
.ambient-logo-bg img { width: 100%; height: 100%; object-fit: contain; opacity: 0.03; transform: scale(1.1); -webkit-user-drag: none; }
#smooth-wrapper { position: relative; z-index: 10; }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero-section {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: flex-end;
    padding-bottom: clamp(60px, 15vh, 140px);
    justify-content: flex-start; overflow: hidden; z-index: 1; width: 100%;
    background: var(--bg-base);
}
#particles-js { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-image-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; background: var(--bg-base); }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: 75% top; -webkit-user-drag: none; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(5,4,3,0.97) 0%, rgba(5,4,3,0.82) 25%, rgba(5,4,3,0.4) 45%, rgba(5,4,3,0) 65%),
    linear-gradient(to top, rgba(5,4,3,0.95) 0%, rgba(5,4,3,0) 45%);
}
.hero-container-smart {
    z-index: 5; display: flex; justify-content: flex-start; align-items: flex-end;
    width: 100%; max-width: 2000px; padding-left: clamp(20px, 4vw, 80px);
}
.hero-text-box {
    position: relative; z-index: 2; max-width: clamp(400px, 45vw, 750px); padding: 0; text-align: left;
    border: none !important; background: transparent !important;
    box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
}
.hero-title, .main-tagline, .hero-desc, .hero-subtitle {
    text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.95);
}
.hero-subtitle {
    font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 5px;
    color: var(--shop-gray); margin-bottom: 25px;
    display: flex; align-items: center; justify-content: flex-start; gap: 20px;
}
.hero-subtitle::before { content: ''; width: 45px; height: 2px; background: var(--shop-gray); display: block; }
.hero-title {
    font-family: var(--font-heading); font-size: clamp(3.5rem, 6.5vw, 8rem);
    line-height: 0.95; margin-bottom: 20px; letter-spacing: 1px; color: var(--text-main);
}
.title-line { overflow: hidden; font-size: clamp(2.2rem, 4vw, 8rem); }
.title-line span { display: inline-block; }
.tagline-wrapper { margin-bottom: 20px; }
.main-tagline {
    font-family: var(--font-sans); font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300; color: var(--text-main); letter-spacing: 1px;
    line-height: 1.3; text-transform: none !important;
}
.hero-desc {
    font-family: var(--font-sans); font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.8; color: var(--text-muted); margin-bottom: 35px; max-width: 650px;
}

/* Mobile/Tablet */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-bg-img { object-position: 65% top !important; }
    .hero-text-box { max-width: 55vw; }
    .hero-overlay {
        background: linear-gradient(90deg, rgba(5,4,3,1) 0%, rgba(5,4,3,0.87) 45%, rgba(5,4,3,0) 100%),
        linear-gradient(to top, rgba(5,4,3,0.97) 0%, rgba(5,4,3,0) 40%);
    }
    .hero-title { font-size: clamp(3.2rem, 7vw, 5rem); }
}
@media (max-width: 1024px) and (orientation: portrait), (max-width: 768px) {
    .shop-status { padding: 5px 12px; gap: 8px; }
    .status-txt { font-size: 0.7rem; letter-spacing: 1px; margin-top: 0; }
    .status-dot { width: 5px; height: 5px; }
    .header-actions { gap: 15px; }
    .site-header { padding: 10px 5%; }
    .hero-section { min-height: 100vh; min-height: 100svh; height: auto; padding-bottom: 40px; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; padding-top: 75px; }
    .hero-image-wrapper { background: var(--bg-base); height: 45svh !important; min-height: 380px !important; position: relative !important; width: 100%; flex-shrink: 0; }
    .hero-bg-img { object-fit: cover !important; object-position: 60% top !important; height: 100% !important; width: 100% !important; }
    .hero-overlay { background: linear-gradient(to top, var(--bg-base) 0%, rgba(5,4,3,0.7) 15%, rgba(5,4,3,0) 80%); }
    .hero-container-smart { position: relative; padding-top: 20px !important; margin-top: -30px; padding-left: 20px; padding-right: 20px; z-index: 10; display: flex; flex-direction: column; flex-grow: 1; align-items: flex-start; }
    .hero-text-box { padding: 0; max-width: 100%; }
    .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); margin-bottom: 12px; line-height: 1; }
    .main-tagline { font-size: 1.3rem; margin-bottom: 15px; }
    .hero-desc { margin-bottom: 30px; font-size: 0.95rem; }
}

/* ==========================================================================
   8. MARQUEE — WARM GRAY-BLACK STRIP
   ========================================================================== */
.marquee-section {
    padding: 18px 0;
    background: var(--bg-marquee);
    border-top: 1px solid var(--shop-gray-border);
    border-bottom: 1px solid var(--shop-gray-border);
    position: relative; z-index: 10; overflow: hidden; width: 100%; max-width: 100%;
}
.marquee-inner { display: flex; width: 200%; animation: marquee 20s linear infinite; will-change: transform; }
.marquee-text {
    font-size: 1.4rem; letter-spacing: 5px; white-space: nowrap; padding-right: 50px;
    display: flex; align-items: center; margin-top: 4px; color: var(--shop-gray);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   9. SECTIONS — ALTERNATING GRAY-BLACK BACKGROUNDS
   ========================================================================== */
section { padding: var(--section-pad) 0; position: relative; }
.section-heading { font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.95; margin-bottom: 40px; color: var(--text-main); }
.mb-large { margin-bottom: 60px; }
.text-center { text-align: center; }

/* Hero bg already set above */
.ethos-section { background: var(--bg-section-alt); }
.transformation-section { background: var(--bg-base); }
.services-section { background: var(--bg-section-alt); }
.portfolio-section { background: var(--bg-base); overflow: hidden; padding-bottom: 150px; }
.reviews-section { background: var(--bg-surface); }
.map-section { background: var(--bg-base); }

/* ==========================================================================
   10. ETHOS
   ========================================================================== */
.ethos-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(60px, 10vw, 120px); align-items: center; }
@media (max-width: 1024px) { .ethos-grid { grid-template-columns: 1fr; } }
.lead-text { font-size: clamp(1.2rem, 2.5vw, 2.2rem); line-height: 1.5; margin-bottom: 30px; color: var(--text-main); font-weight: 500; font-family: var(--font-sans); text-transform: none; }
.body-text { font-size: clamp(0.95rem, 1.2vw, 1.1rem); line-height: 1.9; color: var(--text-muted); font-weight: 400; margin-bottom: 50px; font-family: var(--font-sans); text-transform: none; }

.ethos-visuals { position: relative; height: 700px; width: 100%; display: flex; align-items: center; }
@media (max-width: 1024px) { .ethos-visuals { height: 500px; margin-top: 60px; } }
.graphic-frame { display: none; }
.img-wrap { overflow: hidden; background: transparent; border-radius: 4px; -webkit-mask-image: -webkit-radial-gradient(white, black); backface-visibility: hidden; transform: translateZ(0); }
.ethos-visuals .img-wrap img { width: 100%; height: 100%; object-fit: contain !important; transition: transform 1.2s var(--ease-smooth); -webkit-user-drag: none; }
.primary-img { position: absolute; bottom: -5%; left: 5%; width: 55%; height: 80%; z-index: 2; background: transparent; }
.secondary-img { position: absolute; top: 5%; right: 0; width: 75%; height: 70%; z-index: 1; background: transparent; }
@media (max-width: 768px) {
    .ethos-visuals { height: auto; aspect-ratio: 0.9; margin-top: 40px; }
    .primary-img { width: 65%; height: 85%; bottom: -5%; left: 0; }
    .secondary-img { width: 80%; height: 75%; top: 0; right: 0; }
}

/* ==========================================================================
   MONOCHROME REVEAL
   ========================================================================== */
.monochrome-reveal { filter: grayscale(100%); opacity: 0.8; transition: filter 1.2s ease, opacity 1.2s ease, border-color 0.5s ease; }
.monochrome-reveal.color-active { filter: grayscale(0%); opacity: 1; }
.monochrome-reveal.color-active img { filter: grayscale(0%); }

/* ==========================================================================
   BEFORE/AFTER SLIDER
   ========================================================================== */
.sub-heading { color: var(--text-muted); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 60px; font-family: var(--font-heading); }
.slider-container { display: flex; justify-content: center; width: 100%; }
.ba-wrapper {
    position: relative; width: 100%; max-width: 600px; aspect-ratio: 4 / 5; margin: 0 auto;
    overflow: hidden; background: var(--bg-surface);
    border: 1px solid var(--shop-gray-border); border-radius: 12px;
    user-select: none; touch-action: none;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    backface-visibility: hidden; transform: translateZ(0);
}
.ba-image { position: absolute; inset: 0; background-repeat: no-repeat; background-size: contain !important; background-position: center !important; -webkit-user-drag: none; }
.ba-under { z-index: 0; }
.ba-over { z-index: 1; clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.ba-handle { position: absolute; top: 0; left: 50%; height: 100%; width: 2px; z-index: 2; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.handle-line { position: absolute; width: 2px; height: 100%; background: var(--shop-gray); }
.handle-btn { width: 50px; height: 50px; background: var(--bg-card); border: 2px solid var(--shop-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--shop-gray); font-size: 1rem; position: relative; z-index: 3; pointer-events: none; transition: transform 0.3s ease; box-shadow: 0 0 30px rgba(0,0,0,0.9); user-select: none; }

/* ==========================================================================
   11. SERVICES
   ========================================================================== */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
@media (max-width: 1024px) { .services-layout { grid-template-columns: 1fr; } .services-image-col { display: none; } }

.accordion-item { border-bottom: 1px solid rgba(184,180,174,0.1); padding: 15px 0; }
.accordion-header { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-header h3 { font-size: clamp(2.5rem, 5vw, 5rem); color: var(--text-muted); transition: color 0.4s ease, transform 0.4s ease; margin: 0; letter-spacing: 1px; }
.icon-cross { width: 20px; height: 20px; position: relative; display: flex; justify-content: center; align-items: center; }
.icon-cross::before, .icon-cross::after { content: ''; position: absolute; background: var(--text-muted); transition: all 0.4s var(--ease-smooth); }
.icon-cross::before { width: 100%; height: 2px; }
.icon-cross::after { height: 100%; width: 2px; }
.accordion-item.active .accordion-header h3 { color: var(--shop-gray); transform: translateX(10px); }
.accordion-item.active .icon-cross::before, .accordion-item.active .icon-cross::after { background: var(--shop-gray); }
.accordion-item.active .icon-cross::after { transform: rotate(90deg); opacity: 0; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.accordion-item.active .accordion-body { max-height: 800px; }

.service-items { padding-bottom: 40px; padding-left: 20px; }
.service-items li { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px dashed rgba(184,180,174,0.08); }
.service-items li:last-child { border-bottom: none; }
.service-items li.category-divider { border-bottom: none; padding-bottom: 0; }
.s-info h4 { font-size: 1.4rem; margin-bottom: 5px; letter-spacing: 1px; color: var(--text-main); font-family: var(--font-heading); text-transform: uppercase; }
.s-info p { font-size: 0.95rem; color: var(--text-muted); font-weight: 400; text-transform: none; font-family: var(--font-sans); }
.s-price { font-size: 1.6rem; color: var(--shop-gray); font-family: var(--font-heading); }

.sticky-image-container { position: sticky; top: 150px; height: 75vh; }
.graphic-backdrop { position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--shop-gray-border); border-radius: 8px; z-index: 0; }
.sticky-image-wrapper {
    position: absolute; inset: 0; overflow: hidden; z-index: 1; border-radius: 8px; background: var(--bg-card);
    -webkit-mask-image: -webkit-radial-gradient(white, black); backface-visibility: hidden; transform: translateZ(0);
}
.sticky-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease, transform 1s ease; -webkit-user-drag: none; }

.hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px dashed rgba(184,180,174,0.08); }
.hours-list li .day { font-size: 1.1rem; font-weight: 600; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
.hours-list li .time { font-size: 0.95rem; font-family: var(--font-sans); }
.amenity-item { display: flex; align-items: center; gap: 15px; color: var(--text-muted); font-size: 1.2rem; letter-spacing: 1px; font-family: var(--font-heading); text-transform: uppercase; }

/* ==========================================================================
   12. LOOKBOOK & REVIEWS
   ========================================================================== */
.horizontal-scroll-wrapper {
    width: 100%; max-width: 100%; overflow-x: auto; scrollbar-width: none; cursor: grab; padding: 20px 0;
    scroll-behavior: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
}
.horizontal-scroll-wrapper::-webkit-scrollbar { display: none; }
.horizontal-scroll-wrapper:active { cursor: grabbing; }
.portfolio-track { display: flex; gap: 60px; padding-right: 5%; width: max-content; }
.port-card { width: clamp(280px, 30vw, 450px); }

.img-overflow {
    width: 100%; aspect-ratio: 3 / 4; overflow: hidden; margin-bottom: 25px;
    border-radius: 8px; background: var(--bg-card);
    border: 1px solid var(--shop-gray-border);
    -webkit-mask-image: -webkit-radial-gradient(white, black); backface-visibility: hidden; transform: translateZ(0);
}
.img-overflow img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-smooth); -webkit-user-drag: none; }
.port-title { font-size: 2.2rem; color: var(--shop-gray); margin-top: 5px; }

@media (max-width: 768px) { .review-box { width: 320px !important; padding: 25px; } }

.review-box {
    padding: 40px; position: relative; transition: transform 0.5s ease;
    background: var(--bg-card);
    border: 1px solid rgba(184,180,174,0.1);
    border-radius: 8px;
}
.review-box p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 0; color: var(--text-main); font-weight: 400; font-family: var(--font-sans); text-transform: none; }
.g-header { display: flex; align-items: center; margin-bottom: 20px; position: relative; }
.avatar { width: 45px; height: 45px; border-radius: 50%; background: #333; color: #fff; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; font-weight: bold; margin-right: 15px; }
.g-info { display: flex; flex-direction: column; }
.r-name { letter-spacing: 1px; font-size: 1rem; color: var(--text-main); font-family: var(--font-heading); text-transform: uppercase; }
.r-time { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-sans); text-transform: none; }
.g-icon { position: absolute; right: 0; top: 10px; font-size: 1.5rem; color: var(--shop-gray-deep); transition: color 1s ease; }
.r-stars { margin-bottom: 15px; color: var(--shop-gray-deep); font-size: 0.9rem; letter-spacing: 2px; transition: color 1s ease; }
.review-box.color-active .r-stars { color: #fbbc04; }
.review-box.color-active .g-icon { color: #4285F4; }

/* ==========================================================================
   13. MAP & FOOTER
   ========================================================================== */
.map-section { position: relative; height: 80vh; width: 100%; border-top: 1px solid var(--shop-gray-border); border-bottom: 1px solid var(--shop-gray-border); }
.map-iframe { filter: grayscale(100%) invert(100%) contrast(1.2) brightness(0.9); }
.map-hover-reveal .map-iframe { filter: grayscale(100%) invert(100%) contrast(1.2) brightness(0.9); transition: filter 0.8s var(--ease-smooth); }
@media (hover: hover) and (pointer: fine) { .map-hover-reveal:hover .map-iframe { filter: grayscale(0%) invert(0%) contrast(1) brightness(1); } }

.map-overlay-card {
    position: absolute; top: 50%; left: 5%; transform: translateY(-50%);
    padding: 50px; max-width: 450px; z-index: 10;
    border-left: 4px solid var(--shop-gray);
    background: rgba(13, 12, 11, 0.92);
}
.map-overlay-card p { color: var(--text-main); font-family: var(--font-sans); text-transform: none; font-size: 1.1rem; font-weight: 500; }
@media (max-width: 768px) { .map-overlay-card { width: 90%; left: 5%; padding: 30px; } }

.site-footer {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    background: var(--bg-section-alt);
    padding-top: 150px; overflow: hidden;
    border-top: 1px solid var(--shop-gray-border);
}
.footer-cta-container { margin-bottom: 80px; position: relative; z-index: 5; }
.cta-panel { padding: 80px 40px; max-width: 900px; margin: 0 auto; }
.cta-panel p { color: var(--text-main); font-family: var(--font-sans); text-transform: none; font-size: 1.1rem; font-weight: 400; }

.huge-footer-text-container { width: 100%; overflow: hidden; display: flex; justify-content: center; margin-bottom: -4vh; contain: paint; transform: translateZ(0); }

.footer-bottom {
    border-top: 1px solid var(--shop-gray-border);
    padding: 40px 5%; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;
}
.copyright { font-size: 1rem; color: var(--shop-gray-deep); letter-spacing: 2px; font-family: var(--font-heading); }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } }

/* ==========================================================================
   14. RIPPLE
   ========================================================================== */
.premium-ripple {
    position: fixed; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(184, 180, 174, 0.5); background: rgba(184, 180, 174, 0.04);
    transform: translate(-50%, -50%) scale(0); pointer-events: none; z-index: 9999999;
    animation: ripple-expand 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes ripple-expand {
    0% { transform: translate(-50%, -50%) scale(0.2); opacity: 1; border-width: 2px; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; border-width: 0px; }
}

/* ==========================================================================
   15. CAROUSEL
   ========================================================================== */
.carousel-container { position: relative; width: 100%; }
.carousel-nav { display: flex; gap: 15px; }
.carousel-btn {
    background: var(--bg-card); border: 1px solid var(--shop-gray-border);
    color: var(--shop-gray); width: 50px; height: 50px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; transition: all 0.4s var(--ease-smooth); font-size: 1.2rem;
}
.desktop-only { display: flex; }
@media (max-width: 1024px) { .desktop-only { display: none !important; } }
.port-card, .review-box, .video-card { scroll-snap-align: start; }

/* ==========================================================================
   16. FLOATING SHAPES
   ========================================================================== */
.floating-shape {
    position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.025;
    background: radial-gradient(circle, var(--shop-gray) 0%, transparent 70%);
}
.shape-1 { width: 600px; height: 600px; top: -150px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -80px; left: -100px; }
.shape-3 { width: 700px; height: 700px; top: 50%; right: -200px; transform: translateY(-50%); }

/* ==========================================================================
   17. HOVER STATES
   ========================================================================== */
.gs-reveal-up, .gs-reveal-left, .gs-reveal-right, .gs-reveal-scale { will-change: transform, opacity; }

@media (hover: hover) and (pointer: fine) {
    .ethos-visuals .img-wrap:hover img { transform: scale(1.03); }
    .sticky-image-container:hover img { transform: scale(1.05); }
    .port-card:hover img { transform: scale(1.05); }
    .review-box:hover { transform: translateY(-10px); border-color: var(--shop-gray-border); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
    .ba-wrapper:hover .handle-btn { transform: scale(1.1); }
    .accordion-header:hover h3 { transform: translateX(10px); color: var(--shop-gray); }
    .primary-btn:hover { border-color: var(--shop-gray); }
    .primary-btn:hover .btn-bg { transform: translateY(0); }
    .primary-btn:hover .btn-text { color: var(--bg-base); }
    .floating-book-btn:hover { background: var(--shop-gray); border-color: var(--shop-gray); }
    .floating-book-btn:hover .circular-text text { fill: var(--bg-base); }
    .floating-book-btn:hover i { color: var(--bg-base); }
    .carousel-btn:hover { background: var(--shop-gray); color: var(--bg-base); transform: scale(1.1); }
    .nav-link:hover { color: var(--shop-gray); }
    .nav-link:hover::after { width: 100%; }
    .mobile-nav-link:hover { color: var(--shop-gray); transform: translateX(10px); }
    .mobile-close-btn:hover { color: var(--shop-gray); transform: scale(1.1) rotate(90deg); }
}

/* ==========================================================================
   18. PROMOTIONAL MODAL
   ========================================================================== */
.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 99997;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.promo-modal.visible {
    opacity: 1;
    visibility: visible;
}
.promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.promo-card {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 55px);
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.65s var(--ease-bounce);
}
.promo-modal.visible .promo-card {
    transform: translateY(0) scale(1);
}
.promo-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--shop-gray-border);
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}
.promo-close:hover { color: var(--text-main); border-color: var(--shop-gray); transform: rotate(90deg); }
.promo-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--shop-gray);
    border: 1px solid var(--shop-gray-border);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.promo-icon {
    font-size: 1.8rem;
    color: var(--shop-gray);
    opacity: 0.5;
    margin-bottom: 18px;
    display: block;
}
.promo-amount {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 14vw, 7rem);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text-main);
}
.promo-sub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 400;
}
.promo-body {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: none;
    font-weight: 400;
}
.promo-cta-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
}
.promo-expire-note {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--shop-gray-deep);
    text-transform: none;
    letter-spacing: 1px;
}