/* ================================================================
   LUMINA SALON — COMPONENTS v3.0
   Complete, clean rebuild. No patches, no duplicates.
   ================================================================ */

/* ── PRELOADER ──────────────────────────────────────────────────── */
#ls-preloader {
    position: fixed !important; inset: 0 !important;
    z-index: 999999 !important;
    background: #0a0908 !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important; flex-direction: column !important;
    /* Transition handles both class-based and inline-style dismissal */
    transition: opacity .7s ease, visibility .7s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Class-based dismissal (legacy) */
.ls-preloader.is-hidden { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }
.ls-preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative; z-index: 2; }
.ls-preloader__ring { width: 120px; height: 120px; position: relative; display: flex; align-items: center; justify-content: center; }
.ls-preloader__ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ls-preloader__ring-track { stroke: rgba(201,168,76,.15); fill: none; }
.ls-preloader__ring-fill  { stroke: #c9a84c; fill: none; stroke-dasharray: 251.2; stroke-dashoffset: 251.2; stroke-linecap: round; transform-origin: center; animation: lsPre 2.8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes lsPre { to { stroke-dashoffset: 0; } }
.ls-preloader__logo { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.ls-preloader__wordmark { font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -.02em; white-space: nowrap; }
.ls-preloader__tagline { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(201,168,76,.7); margin: 0; }
.ls-preloader__progress { width: 180px; height: 1.5px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.ls-preloader__progress-fill { height: 100%; width: 0; background: linear-gradient(90deg,#c9a84c,#e8c97a); animation: lsProgress 2.8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes lsProgress { to { width: 100%; } }
.ls-preloader__percent { font-size: .65rem; color: rgba(255,255,255,.3); letter-spacing: .1em; margin-top: -8px; }
.ls-preloader__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ls-preloader__particle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #c9a84c; opacity: 0; animation: lsParticle 3.5s ease-in-out infinite; }
.ls-preloader__particle:nth-child(1){left:12%;top:22%;animation-delay:.3s}
.ls-preloader__particle:nth-child(2){left:84%;top:18%;animation-delay:.8s}
.ls-preloader__particle:nth-child(3){left:22%;top:78%;animation-delay:1.2s}
.ls-preloader__particle:nth-child(4){left:76%;top:72%;animation-delay:1.6s}
.ls-preloader__particle:nth-child(5){left:50%;top:8%;animation-delay:.5s}
.ls-preloader__particle:nth-child(6){left:8%;top:55%;animation-delay:2s}
@keyframes lsParticle { 0%,100%{opacity:0;transform:translateY(0) scale(0)} 50%{opacity:.7;transform:translateY(-24px) scale(1)} }

/* ── DESKTOP HEADER v7 ─────────────────────────────────────────
   Hidden on mobile. Fixed at top on desktop.
   Layout: [Logo] [Nav Links] [Actions]
   ──────────────────────────────────────────────────────────── */
.ls-header {
    display: none;
}
@media (min-width: 768px) {
    .ls-header {
        display: flex;
        align-items: center;
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 64px;
        z-index: 1000;
        background: rgba(10,9,8,0);
        transition: background .35s ease, box-shadow .35s ease;
        will-change: background;
    }
    .ls-header.is-scrolled {
        background: rgba(10,9,8,.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255,255,255,.07);
    }
    .ls-header__inner {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 clamp(20px,3vw,48px);
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 32px;
        height: 100%;
    }
    /* Logo — left, image only */
    .ls-header__logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        flex-shrink: 0;
    }
    .ls-header__logo img {
        height: 32px;
        width: auto;
        display: block;
    }
    .ls-header__wordmark {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: -.02em;
        white-space: nowrap;
        text-decoration: none;
    }
    /* Navigation — centred */
    .ls-header__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    .ls-header__nav-link {
        font-family: 'DM Sans', sans-serif;
        font-size: .78rem;
        font-weight: 500;
        color: rgba(255,255,255,.7);
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 6px;
        letter-spacing: .04em;
        text-transform: uppercase;
        transition: color .2s, background .2s;
        white-space: nowrap;
    }
    .ls-header__nav-link:hover,
    .ls-header__nav-link.is-active {
        color: #fff;
        background: rgba(255,255,255,.08);
    }
    /* Actions — right */
    .ls-header__actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-shrink: 0;
    }
    .ls-header__icon {
        width: 36px; height: 36px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: rgba(255,255,255,.8);
        text-decoration: none;
        position: relative;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.1);
        transition: background .2s, color .2s;
        flex-shrink: 0;
    }
    .ls-header__icon svg { width: 17px; height: 17px; }
    .ls-header__icon:hover { background: rgba(201,168,76,.15); color: #c9a84c; }
    .ls-header__badge {
        position: absolute; top: -3px; right: -3px;
        width: 15px; height: 15px; border-radius: 50%;
        background: #c9a84c; color: #0a0908;
        font-size: .5rem; font-weight: 900;
        display: flex; align-items: center; justify-content: center;
        line-height: 1;
    }
    .ls-header__avatar {
        width: 26px; height: 26px; border-radius: 50%;
        background: linear-gradient(135deg,#c9a84c,#e8c97a);
        display: flex; align-items: center; justify-content: center;
        font-family: 'Playfair Display',serif;
        font-size: .78rem; font-weight: 900; color: #0a0908;
    }
    .ls-header__btn-book {
        background: #c9a84c;
        color: #0a0908;
        font-family: 'DM Sans', sans-serif;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 50px;
        white-space: nowrap;
        transition: background .2s, color .2s;
        flex-shrink: 0;
    }
    .ls-header__btn-book:hover {
        background: #fff;
        color: #0a0908;
    }
    /* Push content below fixed header */
    .ls-hero { margin-top: 0 !important; }
}

/* ── BOTTOM NAV (mobile only, <768px) ──────────────────────────── */
.ls-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: 72px;
    background: rgba(10,9,8,.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: stretch; justify-content: space-around;
    z-index: 990;
    padding-bottom: max(env(safe-area-inset-bottom,0px),0px);
}
@media(min-width:768px){ .ls-bottom-nav { display: none; } }
.ls-bnav-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    padding: 8px 4px 6px; text-decoration: none;
    color: rgba(255,255,255,.42);
    font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    transition: color .2s; border: none; background: none;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    min-width: 0;
}
.ls-bnav-item svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform .2s; }
.ls-bnav-item span { display: block; white-space: nowrap; line-height: 1.1; font-size: .58rem; }
.ls-bnav-item.active, .ls-bnav-item:hover { color: #c9a84c; }
.ls-bnav-item.active svg { transform: translateY(-2px); }
/* Book button */
.ls-bnav-book { color: #c9a84c !important; }
.ls-bnav-book__ring {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg,#c9a84c,#e8c97a);
    display: flex; align-items: center; justify-content: center;
    color: #0a0908;
    box-shadow: 0 0 0 3px rgba(201,168,76,.2), 0 4px 20px rgba(201,168,76,.4);
    margin-top: -22px; margin-bottom: 0; flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
}
.ls-bnav-book__ring svg { width: 22px; height: 22px; stroke: #0a0908; }
.ls-bnav-book:hover .ls-bnav-book__ring { transform: scale(1.08) translateY(-4px); box-shadow: 0 0 0 4px rgba(201,168,76,.3), 0 8px 28px rgba(201,168,76,.55); }
.ls-bnav-badge { position: absolute; top: -4px; right: -4px; width: 15px; height: 15px; border-radius: 50%; background: #c9a84c; color: #0a0908; font-size: .5rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.ls-bnav-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#c9a84c,#e8c97a); display: flex; align-items: center; justify-content: center; font-family:'Playfair Display',serif; font-weight: 900; font-size: .72rem; color: #0a0908; flex-shrink: 0; }
/* Body padding for bottom nav */
body { padding-bottom: calc(72px + max(env(safe-area-inset-bottom,0px),0px)); }
@media(min-width:768px){ body { padding-bottom: 0; } }

/* ── HERO ───────────────────────────────────────────────────────── */
.ls-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.ls-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ls-hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.ls-hero__overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,9,8,.88) 0%, rgba(10,9,8,.65) 50%, rgba(10,9,8,.45) 100%); }
/* Floating brand pill — mobile only */
.ls-hero__brand-pill {
    position: absolute; top: max(16px, env(safe-area-inset-top,16px)); left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; align-items: center; justify-content: center;
    background: rgba(10,9,8,.55); backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50px; padding: 8px 20px;
    white-space: nowrap;
}
@media(min-width:768px){ .ls-hero__brand-pill { display: none; } }
.ls-hero__brand-name { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -.02em; }
/* Hero content */
.ls-hero .ls-container { position: relative; z-index: 2; width: 100%; }
.ls-hero__inner { padding: clamp(90px,16vh,160px) 0 clamp(80px,12vh,120px); }
@media(max-width:767px){ .ls-hero__inner { padding-top: 100px; } }
.ls-hero__content { max-width: 600px; }
.ls-hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.28); border-radius: 50px; padding: 6px 16px 6px 6px; margin-bottom: 22px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #e8c97a; }
.ls-hero__badge-dot { width: 22px; height: 22px; background: linear-gradient(135deg,#c9a84c,#e8c97a); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: #0a0908; }
.ls-hero__title { font-family: 'Playfair Display',serif; font-size: clamp(2.4rem,7vw,5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; color: #fff; margin: 0 0 18px; }
.ls-hero__subtitle { font-size: clamp(.95rem,2vw,1.15rem); color: rgba(255,255,255,.7); line-height: 1.75; margin: 0 0 36px; }
.ls-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
@media(max-width:640px){ .ls-hero__actions .ls-btn { width: 100%; justify-content: center; } }
/* Stats bar */
.ls-hero__stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ls-hero__stat { display: flex; flex-direction: column; }
.ls-hero__stat-n { font-family: 'Playfair Display',serif; font-size: 1.6rem; font-weight: 900; color: #c9a84c; line-height: 1; }
.ls-hero__stat-l { font-size: .68rem; color: rgba(255,255,255,.5); letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }
.ls-hero__stat-div { width: 1px; height: 38px; background: rgba(255,255,255,.15); }
/* Scroll hint */
.ls-hero__scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.ls-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent); animation: lsScrollDrop 2s ease-in-out infinite; }
@keyframes lsScrollDrop { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* ── SERVICES SLIDER ────────────────────────────────────────────── */
.ls-services-section { background: #111010; overflow: hidden; padding: clamp(48px,8vh,80px) 0; }
.ls-services-swiper { overflow: hidden !important; padding-left: clamp(16px,5vw,48px) !important; padding-right: 16px !important; padding-bottom: 20px !important; }
.ls-services-swiper.swiper-initialized { overflow: visible !important; }
./* Services swiper — equal height cards */
.ls-service-slide {
    height: auto !important; /* let Swiper equalize */
    flex-shrink: 0;
}
.ls-services-swiper .swiper-wrapper {
    align-items: stretch !important;
}
.ls-services-swiper .swiper-slide {
    height: auto !important;
}
.ls-service-slide .ls-svc-card {
    height: 100% !important;
}
.ls-svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; height: 100%; transition: transform .25s, border-color .25s, box-shadow .25s; -webkit-tap-highlight-color: transparent; }
.ls-svc-card:hover { transform: translateY(-5px); border-color: rgba(232,104,26,.4); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.ls-svc-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #222; flex-shrink: 0; }
.ls-svc-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ls-svc-card:hover .ls-svc-card__media img { transform: scale(1.06); }
.ls-svc-card__icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#fff8ee,#ffecd4); }
.ls-svc-card__icon svg { width: 48px; height: 48px; stroke: #e8681a; }
.ls-svc-card__badge { position: absolute; top: 10px; left: 10px; background: rgba(232,104,26,.9); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; }
.ls-svc-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.ls-svc-card__name { font-family: 'Playfair Display',serif; font-weight: 700; font-size: .9rem; color: #1a1a1a; line-height: 1.3; margin: 0; }
.ls-svc-card__meta { display: flex; align-items: center; gap: 8px; }
.ls-svc-card__price { font-weight: 800; color: #e8681a; font-size: .88rem; }
.ls-svc-card__dur { font-size: .7rem; color: #888; background: #f5f5f5; padding: 2px 8px; border-radius: 20px; }
.ls-svc-card__cta { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08); font-size: .72rem; font-weight: 700; color: #e8681a; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; justify-content: space-between; }
.ls-services-swiper-pag { position: relative !important; text-align: center; margin-top: 16px; }
.ls-services-swiper-pag .swiper-pagination-bullet { background: rgba(255,255,255,.25); opacity: 1; }
.ls-services-swiper-pag .swiper-pagination-bullet-active { background: #c9a84c; width: 22px; border-radius: 3px; }

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.ls-about-section { background: #faf8f5; padding: clamp(60px,10vh,100px) 0; overflow: hidden; }
.ls-about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media(min-width:900px){ .ls-about-grid { grid-template-columns: 1fr 1fr; } }
.ls-about__visual { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.ls-about__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-about__award { position: absolute; bottom: 20px; left: 20px; background: rgba(10,9,8,.92); border: 1px solid rgba(201,168,76,.3); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; backdrop-filter: blur(12px); }
.ls-about__award strong { display: block; color: #c9a84c; font-size: .82rem; font-weight: 700; }
.ls-about__award span { color: rgba(255,255,255,.45); font-size: .72rem; }
.ls-about__content h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 16px; }
.ls-about__content p { color: #7a736e; line-height: 1.8; margin-bottom: 16px; }
.ls-about__stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; }
.ls-about__stat { background: #fff; border: 1px solid #e8e2da; border-radius: 10px; padding: 14px; }
.ls-about__stat strong { display: block; font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 900; color: #c9a84c; }
.ls-about__stat span { font-size: .75rem; color: #999; }

/* ── GALLERY ───────────────────────────────────────────────────── */
.ls-gallery-section { background: #0a0908; padding: clamp(60px,10vh,100px) 0; }
.ls-gallery-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.ls-gallery-masonry { columns: 2; column-gap: 10px; }
@media(min-width:640px){ .ls-gallery-masonry { columns: 3; } }
@media(min-width:1024px){ .ls-gallery-masonry { columns: 4; column-gap: 14px; } }
.ls-gallery-item { break-inside: avoid; margin-bottom: 10px; border-radius: 10px; overflow: hidden; position: relative; display: block; cursor: pointer; text-decoration: none; }
.ls-gallery-item img { width: 100%; height: auto; display: block; transition: transform .4s; }
.ls-gallery-item:hover img { transform: scale(1.04); }
.ls-gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.ls-gallery-item:hover .ls-gallery-item__overlay { opacity: 1; }

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.ls-testimonials-section { background: #1a1917; padding: clamp(60px,10vh,100px) 0; }
.ls-testimonials-swiper { overflow: hidden !important; }
.ls-testimonials-pag { position: relative !important; text-align: center; margin-top: 20px; }
.ls-testimonials-pag .swiper-pagination-bullet { background: rgba(255,255,255,.28); opacity: 1; }
.ls-testimonials-pag .swiper-pagination-bullet-active { background: #c9a84c; }
.ls-review-card { background: #0a0908; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.ls-review-card__stars { color: #c9a84c; font-size: .95rem; letter-spacing: 2px; }
.ls-review-card__text { color: rgba(255,255,255,.72); line-height: 1.75; font-size: .93rem; flex: 1; font-style: italic; font-family: 'Playfair Display',serif; margin: 0; }
.ls-review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); }
.ls-review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#c9a84c,#e8c97a); display: flex; align-items: center; justify-content: center; font-family:'Playfair Display',serif; font-weight: 900; font-size: 1rem; color: #0a0908; flex-shrink: 0; }
.ls-review-card__author strong { display: block; color: #fff; font-size: .88rem; }
.ls-review-card__author span  { color: rgba(255,255,255,.4); font-size: .75rem; }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.ls-cta-section { position: relative; padding: clamp(80px,12vh,120px) 0; overflow: hidden; background: #0a0908; }
.ls-cta-bg { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 65%); pointer-events: none; }
.ls-cta-inner { position: relative; z-index: 1; text-align: center; }
.ls-cta-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.ls-cta-trust span { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.45); }
.ls-cta-trust svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── BOOKING WIDGET ─────────────────────────────────────────────── */
.wssp-kiosk-btn,.wssp-walkin-btn,.wssp-walkin-link,[class*="kiosk"],[class*="walkin"],a[href*="wssp_kiosk="],a[href*="wssp_pos="],a[href*="wssp_queue="]{display:none !important}
.ls-booking-page-hero{background:#0a0908;text-align:center;padding:clamp(80px,12vh,120px) 0 clamp(32px,4vh,48px)}
.ls-booking-page-hero h1{color:#fff;margin-bottom:8px}
.ls-booking-page-hero p{color:rgba(255,255,255,.5)}
.ls-booking-wrap{max-width:900px;margin:0 auto;padding:clamp(24px,5vw,48px)}
.wssp-booking-wrapper,.wssp_booking_wrap,.wssp-booking-container{max-width:860px !important;margin:0 auto !important}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.ls-reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease;transition-delay:var(--delay,0s)}
.ls-reveal.revealed{opacity:1;transform:none}
.ls-reveal--right{transform:translateX(22px)}
.ls-reveal--right.revealed{transform:none}
.ls-reveal--delay-1{--delay:.15s}
.ls-reveal--delay-2{--delay:.3s}
.ls-reveal--delay-3{--delay:.45s}
.ls-reveal--delay-4{--delay:.6s}

/* ── UTILITY ───────────────────────────────────────────────────── */
::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-thumb{background:rgba(201,168,76,.3);border-radius:2px}
::selection{background:rgba(201,168,76,.2)}
.ls-btn--dark{background:#0a0908;color:#fff;border:1.5px solid #0a0908}
.ls-btn--dark:hover{background:#1a1714}

/* ================================================================
   v4.1 FIXES
   ================================================================ */

/* ── BODY: dark background prevents white flash ─────────────────── */
html, body { background: #0a0908; }
/* Sections that are cream/light reset their own background */
.ls-about-section { background: #faf8f5; }
.woocommerce ul.products li.product { background: #fff !important; }

/* ── HERO: remove top gap completely ────────────────────────────── */
.ls-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Brand pill: top of hero on mobile, accounts for browser chrome */
.ls-hero__brand-pill {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(10,9,8,.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50px;
    padding: 9px 22px;
    white-space: nowrap;
    pointer-events: none;
}
@media (min-width: 768px) { .ls-hero__brand-pill { display: none !important; } }
.ls-hero__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 900;
    color: #fff; letter-spacing: .04em;
}

/* ── SERVICES SLIDER — DESKTOP ───────────────────────────────────
   On desktop the slider should show 3–4 cards at a time, nicely 
   spaced, not stretched full width.
   ──────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    .ls-services-section .ls-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 clamp(32px,4vw,72px);
    }
    .ls-services-swiper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }
    .ls-services-swiper.swiper-initialized {
        overflow: visible !important;
    }
    /* Desktop slide widths — calculated to show 3.5 cards */
    .ls-service-slide {
        width: calc(25% - 16px) !important;
        min-width: 220px !important;
        max-width: 280px !important;
    }
}
@media (min-width: 1200px) {
    .ls-service-slide {
        width: calc(22% - 16px) !important;
        min-width: 240px !important;
        max-width: 300px !important;
    }
}

/* ── OUR VALUES CARDS — mobile fix ──────────────────────────────
   3-column grid overflows on mobile. Stack to 1 col on small screens.
   ──────────────────────────────────────────────────────────────── */
/* Target the values grid wherever it appears */
.ls-values-grid,
.ls-about-values,
[class*="values"] .ls-grid-3,
.ls-grid-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}
@media (min-width: 640px) {
    .ls-values-grid,
    .ls-about-values,
    [class*="values"] .ls-grid-3,
    .ls-grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
/* Ensure value cards don't overflow */
.ls-value-card, .ls-about-value-card {
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    min-width: 0 !important;
}
.ls-value-card p, .ls-about-value-card p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

/* ── GALLERY — ensure all selected images show ───────────────────
   The masonry layout must not clip items.
   ──────────────────────────────────────────────────────────────── */
.ls-gallery-masonry {
    columns: 2;
    column-gap: 10px;
    orphans: 1; widows: 1;
}
@media (min-width: 640px)  { .ls-gallery-masonry { columns: 3; } }
@media (min-width: 1024px) { .ls-gallery-masonry { columns: 4; column-gap: 14px; } }
.ls-gallery-item {
    break-inside: avoid;
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    /* IMPORTANT: no height constraint — let image natural height show */
}
.ls-gallery-item img {
    width: 100%;
    height: auto !important;    /* never clip images */
    display: block;
    transition: transform .4s ease;
}
.ls-gallery-item:hover img { transform: scale(1.04); }
.ls-gallery-item__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.ls-gallery-item:hover .ls-gallery-item__overlay { opacity: 1; }

/* ── ABOUT PAGE: values section container fix ────────────────── */
.ls-about-values-wrap {
    padding: 0 16px;
}

/* ================================================================
   DEFINITIVE FIXES v4.3 — White gap, shop gap, cart, performance
   ================================================================ */

/* ── No white flash anywhere ─────────────────────────────────── */
html, body {
    background: #0a0908 !important;
}
/* Pages with light backgrounds manage their own background */
.ls-about-section,
.woocommerce ul.products li.product,
.ls-woo-wrapper {
    background-color: revert;
}
.ls-about-section { background: #faf8f5; }
.woocommerce ul.products li.product { background: #fff !important; }
.ls-woo-wrapper { background: #faf8f5; }

/* ── WooCommerce pages: ensure dark hero covers any gap ─────── */
.woocommerce, .woocommerce-page {
    /* background handled by woocommerce.css */
}
/* The shop hero is always dark — no gap */
.ls-page-hero {
    background: #ffffff !important;
    margin-top: 0 !important;
    padding-top: clamp(72px,10vh,110px) !important;
    padding-bottom: clamp(20px,3vh,32px) !important;
    border-bottom: 1px solid #f0f0f0;
}
.ls-page-hero .ls-container { text-align: center; }
.ls-page-hero__logo-wrap { margin-bottom: 16px; }
.ls-page-hero__logo-link { display: inline-block; text-decoration: none; }
.ls-page-hero__logo-link img {
    height: 40px; width: auto; display: block; margin: 0 auto;
}
.ls-page-hero__brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; color: #1a1a1a;
}
.ls-page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800; color: #1a1a1a;
    margin: 0 0 8px;
}
.ls-page-hero__breadcrumb {
    display: flex !important;
    align-items: center; justify-content: center;
    gap: 6px; font-size: .84rem; color: #888;
    font-family: 'DM Sans', sans-serif;
}
.ls-page-hero__breadcrumb a { color: #e8681a; text-decoration: none; font-weight: 600; }
.ls-page-hero__breadcrumb a:hover { text-decoration: underline; }
.ls-page-hero__breadcrumb svg { width: 8px; height: 12px; color: #bbb; flex-shrink: 0; }
.woocommerce-cart .ls-page-hero,
.woocommerce-checkout .ls-page-hero,
.woocommerce-page .ls-page-hero { display: none; }

/* ── Shop: fix first-row gap from .onsale badge ──────────────── */
/* The gap happens because align-items:start is set globally,
   but the .onsale badge is OUTSIDE the grid flow, causing height mismatch.
   Fix: use align-items:start + ensure onsale is position:absolute */
.woocommerce ul.products {
    align-items: start !important;
}
/* Make absolutely sure the first item in the grid fills its cell */
.woocommerce ul.products li.product:first-child {
    margin-top: 0 !important;
}
/* Remove any phantom top spacing from WC default styles */
.woocommerce-result-count,
.woocommerce-ordering {
    background: transparent !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
    float: none !important;
    width: auto !important;
}

/* ── Cart page: hide the WC breadcrumb arrow / empty state arrow ─ */
/* WC 7+ shows a large SVG arrow when cart is empty */
.woocommerce-cart .woocommerce-message:before,
.woocommerce-cart .woocommerce-info:before,
.woocommerce .woocommerce-message:before,
.woocommerce .woocommerce-info:before {
    display: none !important;
}
/* Cart wrapper should have proper background */
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-cart .woocommerce {
    background: transparent !important;
}
.woocommerce-cart table.cart {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
/* Cart empty message styling */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 48px;
    color: var(--ls-text-muted);
}
.woocommerce-cart .return-to-shop .button {
    background: #0a0908 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 16px !important;
}

/* ── Performance: reduce paint layers ───────────────────────── */
.ls-hero__bg-img {
    will-change: transform;
}
.ls-preloader {
    will-change: opacity, visibility;
}
/* Reduce animation overhead */
@media (prefers-reduced-motion: reduce) {
    .ls-preloader__ring-fill,
    .ls-preloader__progress-fill,
    .ls-preloader__particle {
        animation: none !important;
    }
}

/* ── Mobile: account for admin bar ─────────────────────────── */
/* WordPress admin bar adds 46px on mobile — don't let it create white gap */
.admin-bar .ls-hero,
.admin-bar .ls-page-hero {
    margin-top: 0 !important;
}
@media (max-width: 600px) {
    .admin-bar .ls-bottom-nav {
        bottom: 0 !important;
    }
}

/* ── Inner page white space fix ─────────────────────────────── */
/* Any page that doesn't start with a hero section */
.page-template-template-blank main {
    background: #faf8f5;
    min-height: 60vh;
}
.woocommerce-cart main,
.woocommerce-checkout main {
    background: #ffffff;
    min-height: 60vh;
}

/* Hide WC breadcrumb arrows/text that shows on cart page */
.woocommerce-breadcrumb { display: none !important; }
/* Cart page: ensure content area is not empty-looking */
.woocommerce-cart .woocommerce,
.woocommerce-cart .ls-woo-wrapper { background: #faf8f5; min-height: 60vh; padding-top: 20px; }
.woocommerce-cart table.cart { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.woocommerce-cart table.cart td, .woocommerce-cart table.cart th { padding: 14px 16px; border-bottom: 1px solid #e8e2da; }
.woocommerce-cart .cart_totals { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); margin-top: 24px; }
/* checkout button styled in woocommerce.css */

/* Empty cart */
.woocommerce-cart .cart-empty { text-align: center; padding: 60px 0; color: #7a736e; }
.woocommerce-cart .return-to-shop .button { background: #0a0908; color: #fff; border-radius: 50px; padding: 12px 28px; text-decoration: none; font-weight: 700; display: inline-block; margin-top: 16px; }

/* ── SHOP PRODUCT GRID v6 ───────────────────────────────────── */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    align-items: start !important;
}
@media (min-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        gap: 14px !important;
    }
}
@media (min-width: 768px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
}
@media (min-width: 1100px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
}
/* Product card */
.woocommerce ul.products li.product {
    background: #fff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.07) !important;
    transition: transform .22s ease, box-shadow .22s !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    position: relative !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 32px rgba(0,0,0,.12) !important;
}
/* Product image — exact uniform height */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img.wp-post-image {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .35s !important;
    margin: 0 !important;
}
@media (min-width: 480px) {
    .woocommerce ul.products li.product a img { height: 200px !important; }
}
@media (min-width: 768px) {
    .woocommerce ul.products li.product a img { height: 220px !important; }
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05) !important; }
/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: .85rem !important;
    font-weight: 700 !important;
    color: #0a0908 !important;
    margin: 0 0 5px !important;
    padding: 12px 12px 0 !important;
    line-height: 1.3 !important;
}
/* Price */
.woocommerce ul.products li.product .price {
    font-weight: 800 !important;
    font-size: .9rem !important;
    color: #0a0908 !important;
    margin: 0 0 6px !important;
    padding: 0 12px !important;
    display: block !important;
}
.woocommerce ul.products li.product .price del {
    color: #aaa !important;
    font-weight: 400 !important;
    font-size: .77rem !important;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    color: #c0392b !important;
}
/* Stars */
.woocommerce ul.products li.product .star-rating {
    font-size: .72rem !important;
    color: #c9a84c !important;
    margin: 0 0 4px !important;
    padding: 0 12px !important;
    display: block !important;
}
/* Add to Cart button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(100% - 24px) !important;
    margin: 6px 12px 14px !important;
    padding: 10px 12px !important;
    background: #0a0908 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: .75rem !important;
    font-weight: 700 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background .2s !important;
    -webkit-tap-highlight-color: transparent !important;
}
.woocommerce ul.products li.product .button:hover {
    background: #c9a84c !important;
    color: #0a0908 !important;
}
/* Sale badge */
.woocommerce ul.products li.product .onsale {
    position: absolute !important;
    top: 10px !important; left: 10px !important;
    right: auto !important; bottom: auto !important;
    background: #c0392b !important;
    color: #fff !important;
    border-radius: 5px !important;
    padding: 3px 9px !important;
    font-size: .65rem !important;
    font-weight: 800 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.5 !important;
    z-index: 2 !important;
}
/* Related products */
.related.products { margin-top: 40px; }
.related.products h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
}
.related.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 768px) {
    .related.products ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ── SHOP HERO v7 ────────────────────────────────────────────── */
.ls-shop-hero {
    background: #0a0908;
    text-align: center;
    padding: 40px 20px 24px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .ls-shop-hero { padding-top: 100px; /* clear fixed header */ }
}
.ls-shop-hero__logo img { height: 48px; width: auto; }
.ls-shop-hero__wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900; color: #fff;
}
.ls-shop-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 800;
    color: #fff; margin: 10px 0 0;
}

/* ── WOO WRAPPER ────────────────────────────────────────────── */
.ls-woo-wrapper {
    background: #faf8f5;
    min-height: 50vh;
}

/* ── SHOP PRODUCT GRID v7 ────────────────────────────────────── */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    list-style: none !important;
    margin: 0 !important; padding: 0 !important;
    float: none !important;
    align-items: start !important; /* CRITICAL: stops empty gap when cards differ in height */
}
@media (min-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { gap: 16px !important; }
}
@media (min-width: 900px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (min-width: 1200px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
/* Product card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #fff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
    transition: transform .22s, box-shadow .22s !important;
    float: none !important; width: 100% !important;
    margin: 0 !important; padding: 0 !important;
    display: flex !important; flex-direction: column !important;
    position: relative !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px) !important; box-shadow: 0 10px 28px rgba(0,0,0,.11) !important; }
/* Image — uniform height, no gap */
.woocommerce ul.products li.product a img {
    width: 100% !important; height: 170px !important;
    object-fit: cover !important; display: block !important;
    margin: 0 !important; transition: transform .35s !important;
}
@media (min-width: 640px) { .woocommerce ul.products li.product a img { height: 200px !important; } }
@media (min-width: 900px) { .woocommerce ul.products li.product a img { height: 220px !important; } }
.woocommerce ul.products li.product:hover a img { transform: scale(1.05) !important; }
/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: .88rem !important; font-weight: 700 !important;
    color: #0a0908 !important; margin: 0 !important;
    padding: 12px 12px 4px !important; line-height: 1.3 !important;
}
/* Price */
.woocommerce ul.products li.product .price {
    font-weight: 800 !important; font-size: .9rem !important;
    color: #0a0908 !important; display: block !important;
    padding: 0 12px !important; margin: 0 0 4px !important;
}
.woocommerce ul.products li.product .price del { color: #bbb !important; font-weight: 400 !important; font-size: .76rem !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; color: #c0392b !important; }
/* Stars */
.woocommerce ul.products li.product .star-rating { display: block !important; padding: 0 12px !important; margin: 0 0 4px !important; font-size: .72rem !important; }
/* Add to cart button */
.woocommerce ul.products li.product .button {
    display: block !important;
    width: calc(100% - 24px) !important; margin: auto 12px 14px !important;
    padding: 10px !important;
    background: #0a0908 !important; color: #fff !important;
    border: none !important; border-radius: 8px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: .74rem !important; font-weight: 700 !important;
    letter-spacing: .05em !important; text-transform: uppercase !important;
    text-decoration: none !important; text-align: center !important;
    cursor: pointer !important; transition: background .2s !important;
}
.woocommerce ul.products li.product .button:hover { background: #c9a84c !important; color: #0a0908 !important; }
/* Sale badge */
.woocommerce ul.products li.product .onsale {
    position: absolute !important; top: 10px !important; left: 10px !important;
    right: auto !important; bottom: auto !important;
    background: #c0392b !important; color: #fff !important;
    border-radius: 5px !important; padding: 2px 8px !important;
    font-size: .64rem !important; font-weight: 800 !important;
    letter-spacing: .05em !important; text-transform: uppercase !important;
    min-height: auto !important; min-width: auto !important; line-height: 1.5 !important;
}

/* ── CART PAGE v7 ────────────────────────────────────────────── */
/* Hide ALL WC breadcrumbs/arrows everywhere */
.woocommerce-breadcrumb,
.woocommerce-breadcrumb *,
nav.woocommerce-breadcrumb { display: none !important; }

/* Cart table */
.woocommerce-cart .woocommerce-cart-form { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); margin-bottom: 24px; }
.woocommerce-cart table.cart { width: 100%; border-collapse: collapse; }
.woocommerce-cart table.cart th, .woocommerce-cart table.cart td { padding: 14px 16px; border-bottom: 1px solid #f0ebe4; vertical-align: middle; }
.woocommerce-cart table.cart th { background: #faf8f5; font-weight: 700; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: #7a736e; }
.woocommerce-cart table.cart td.product-thumbnail img { width: 70px !important; height: 70px !important; object-fit: cover !important; border-radius: 8px !important; }
.woocommerce-cart table.cart td.product-name a { font-family: 'Playfair Display', serif; font-weight: 700; color: #0a0908; text-decoration: none; }
/* Cart totals */
.woocommerce-cart .cart_totals { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.woocommerce-cart .cart_totals h2 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; }
.woocommerce-cart .wc-proceed-to-checkout { margin-top: 16px; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: block !important; width: 100% !important;
    background: #0a0908 !important; color: #fff !important;
    border-radius: 50px !important; padding: 14px 24px !important;
    font-family: 'DM Sans', sans-serif !important; font-size: .85rem !important;
    font-weight: 800 !important; letter-spacing: .06em !important;
    text-transform: uppercase !important; text-align: center !important;
    text-decoration: none !important; transition: background .2s !important;
    border: none !important; cursor: pointer !important;
}

/* Empty cart */
.woocommerce-cart .cart-empty { text-align: center; padding: 60px 20px; }
.woocommerce-cart .return-to-shop .button { background: #0a0908; color: #fff; border-radius: 50px; padding: 12px 28px; text-decoration: none; font-weight: 700; display: inline-block; margin-top: 16px; }

/* ── WOO ORDERING BAR — remove empty gap ─────────────────────── */
.woocommerce-result-count { margin-bottom: 12px !important; font-size: .8rem !important; color: #7a736e !important; }
.woocommerce-ordering { margin-bottom: 12px !important; float: none !important; }
.woocommerce .woocommerce-ordering select { border: 1px solid #e0d9d0 !important; border-radius: 8px !important; padding: 6px 12px !important; background: #fff !important; font-size: .8rem !important; color: #0a0908 !important; cursor: pointer !important; }

/* ── PAGE LOGO HEADER (non-homepage pages) ─────────────────────
   All pages except account: just logo centred at top (not scrolled header)
   This is handled by header.php logo-only, NOT a separate element.
   On light-bg pages the header needs text colours adjusted.
   ─────────────────────────────────────────────────────────────── */
.page-template-template-services .ls-header__nav-link,
.page-template-template-about .ls-header__nav-link,
.page-template-template-contact .ls-header__nav-link,
.page-template-template-gallery .ls-header__nav-link,
./* ── Non-hero pages: white header ── */
body:not(.home) .ls-header {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.08) !important;
}
body:not(.home) .ls-header.is-scrolled {
    background: rgba(255,255,255,0.99) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.1) !important;
}
body:not(.home) .ls-header__nav-link,
body:not(.home) .ls-header__icon,
body:not(.home) .ls-header__wordmark {
    color: #1a1a1a !important;
}
body:not(.home) .ls-header__nav-link:hover { color: #e8681a !important; }
body:not(.home) .ls-header__nav-link.is-active { color: #e8681a !important; }
body:not(.home) .ls-header__logo img { filter: none !important; }
/* Legacy overrides below */
page-template-template-faq .ls-header__nav-link,
.woocommerce-page .ls-header__nav-link,
.woocommerce-page .ls-header__icon {
    color: #1a1a1a !important;
}

/* ── PROFILE PICTURE UPLOAD (account page) ──────────────────── */
.ls-avatar-upload-wrap { text-align: center; margin-bottom: 24px; }
.ls-avatar-current {
    width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
    border: 3px solid #c9a84c; margin: 0 auto 12px; display: block;
}
.ls-avatar-placeholder {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg,#c9a84c,#e8c97a);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
    color: #0a0908; margin: 0 auto 12px;
}
.ls-avatar-upload-btn {
    display: inline-block; background: transparent;
    border: 1px solid #c9a84c; color: #c9a84c;
    border-radius: 50px; padding: 7px 18px;
    font-size: .75rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; cursor: pointer; transition: all .2s;
}
.ls-avatar-upload-btn:hover { background: #c9a84c; color: #0a0908; }
#ls-avatar-input { display: none; }


/* ── PAGE LOGO HERO (all non-home pages) ────────────────────────
   Shows logo centred at top of every page (except account/auth).
   ──────────────────────────────────────────────────────────────── */
.ls-page-logo-hero {
    background: #0a0908;
    text-align: center;
    padding: 56px 20px 32px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .ls-page-logo-hero {
        padding-top: 104px; /* clear 64px fixed header + 40px breathing room */
        min-height: 180px;
    }
}
.ls-page-logo-hero__logo {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
}
.ls-page-logo-hero__logo img {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.ls-page-logo-hero__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
}
.ls-page-logo-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Hide any old ls-page-hero breadcrumb text */
/* breadcrumb styled above */

/* ── WHITE TOP FIX — force dark bg on all pages ─────────────── */
html, body {
    background-color: #0a0908 !important;
    margin: 0;
    padding: 0;
}
/* Individual sections restore their own backgrounds */
.ls-about-section,
.ls-section,
.ls-woo-wrapper,
.woocommerce-page main,
section:not(.ls-hero):not(.ls-shop-hero):not(.ls-page-logo-hero) {
    /* sections set their own bg — body stays dark to prevent flash */
}

/* ── SCROLL HEADER TOGGLE ───────────────────────────────────── */
/* Ensure 'is-scrolled' (not 'scrolled') class is toggled */
.ls-header.is-scrolled {
    background: rgba(10,9,8,.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.07) !important;
}
