/* ================================================================
   LUMINA SALON — HERO & HOMEPAGE SECTIONS
   ================================================================ */

/* ══════════════════════════════════════════
   HOMEPAGE HERO
══════════════════════════════════════════ */
.ls-hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--ls-grad-hero);
    color: var(--ls-white);
}

/* Video / image background */
.ls-hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.ls-hero__bg-img, .ls-hero__bg-video {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .35;
}
.ls-hero__bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,9,8,.85) 0%,
        rgba(10,9,8,.6) 40%,
        rgba(10,9,8,.4) 100%
    );
}

/* Decorative orb glow */
.ls-hero__glow {
    position: absolute; z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.ls-hero__glow--gold {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.2) 0%, transparent 70%);
    top: -100px; right: -100px;
    animation: ls-glow-drift 12s ease-in-out infinite;
}
.ls-hero__glow--rose {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,118,138,.15) 0%, transparent 70%);
    bottom: 0; left: 10%;
    animation: ls-glow-drift 15s ease-in-out infinite reverse;
}
@keyframes ls-glow-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(.95); }
}

/* Hero content */
.ls-hero__inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 0 80px;
    width: 100%;
}
.ls-container { position: relative; z-index: 1; }

.ls-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--ls-radius-pill);
    padding: 6px 14px 6px 6px;
    margin-bottom: 24px;
    font-size: .75rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--ls-gold-light);
}
.ls-hero__badge-dot {
    width: 22px; height: 22px;
    background: var(--ls-grad-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
}

.ls-hero__title {
    font-family: var(--ls-font-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--ls-white);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.ls-hero__title em {
    font-style: italic;
    color: var(--ls-gold-light);
    font-family: var(--ls-font-display);
    font-weight: 300;
}

.ls-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.ls-hero__actions {
    display: flex; align-items: center;
    gap: 16px; flex-wrap: wrap;
    margin-bottom: 48px;
}

.ls-hero__trust {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
}
.ls-hero__trust-avatars {
    display: flex;
}
.ls-hero__trust-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid var(--ls-dark);
    margin-left: -10px; object-fit: cover;
    background: var(--ls-dark-3);
}
.ls-hero__trust-avatar:first-child { margin-left: 0; }
.ls-hero__trust-text { font-size: .8rem; color: rgba(255,255,255,.6); }
.ls-hero__trust-text strong { color: var(--ls-gold); display: block; font-size: .9rem; }

/* Hero right: featured image stack */
.ls-hero__visual {
    position: relative;
    height: 520px;
}
.ls-hero__img-main {
    position: absolute;
    right: 0; top: 0;
    width: 75%; height: 90%;
    border-radius: var(--ls-radius-xl);
    object-fit: cover;
    box-shadow: var(--ls-shadow-lg);
}
.ls-hero__img-accent {
    position: absolute;
    left: 0; bottom: 0;
    width: 55%; height: 60%;
    border-radius: var(--ls-radius-xl);
    object-fit: cover;
    border: 4px solid var(--ls-dark);
    box-shadow: var(--ls-shadow-lg);
}
.ls-hero__stat-card {
    position: absolute;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--ls-radius);
    padding: 14px 18px;
    white-space: nowrap;
}
.ls-hero__stat-card--rating { top: 24px; left: -10px; }
.ls-hero__stat-card--clients { bottom: 40%; right: -20px; }
.ls-hero__stat-card-value {
    font-family: var(--ls-font-heading);
    font-size: 1.4rem; font-weight: 900;
    color: var(--ls-gold); display: block; line-height: 1;
}
.ls-hero__stat-card-label { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* Scroll indicator */
.ls-hero__scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 1; color: rgba(255,255,255,.4); font-size: .7rem;
    letter-spacing: .1em; text-transform: uppercase;
    animation: ls-scroll-bounce 2s ease-in-out infinite;
}
.ls-hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
}
@keyframes ls-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.ls-services-section { background: var(--ls-cream); }
.ls-services-section .ls-section-head { text-align: center; margin-bottom: 56px; }
.ls-services-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 40px;
}
.ls-services-tab {
    padding: 9px 22px;
    border-radius: var(--ls-radius-pill);
    font-size: .82rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    cursor: pointer; border: 1.5px solid var(--ls-border);
    background: var(--ls-white); color: var(--ls-text-muted);
    transition: all var(--ls-dur-fast) var(--ls-ease);
}
.ls-services-tab.is-active,
.ls-services-tab:hover { background: var(--ls-gold); color: var(--ls-black); border-color: var(--ls-gold); }

/* ══════════════════════════════════════════
   ABOUT / SPLIT SECTION
══════════════════════════════════════════ */
.ls-about-section {
    background: var(--ls-white);
    overflow: hidden;
}
.ls-about-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 600px;
}
.ls-about-section__imgs {
    position: relative;
    height: 580px;
}
.ls-about-section__img-1 {
    position: absolute;
    top: 0; left: 0;
    width: 65%; height: 75%;
    object-fit: cover;
    border-radius: var(--ls-radius-xl);
    box-shadow: var(--ls-shadow-lg);
}
.ls-about-section__img-2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 65%;
    object-fit: cover;
    border-radius: var(--ls-radius-xl);
    border: 6px solid var(--ls-cream);
    box-shadow: var(--ls-shadow-lg);
}
.ls-about-section__award {
    position: absolute;
    bottom: 20%; left: 50%; transform: translateX(-50%);
    background: var(--ls-grad-dark);
    border: 1px solid var(--ls-border-dark);
    border-radius: var(--ls-radius);
    padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    white-space: nowrap;
    box-shadow: var(--ls-shadow-lg);
    z-index: 2;
}
.ls-about-section__award-icon { font-size: 1.8rem; }
.ls-about-section__award-text { display: flex; flex-direction: column; }
.ls-about-section__award-text strong { font-size: .85rem; color: var(--ls-gold); font-weight: 700; }
.ls-about-section__award-text span  { font-size: .75rem; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════
   RESPONSIVE: HERO
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ls-hero__inner { grid-template-columns: 1fr; padding-top: 120px; }
    .ls-hero__visual { display: none; }
    .ls-hero__subtitle { max-width: 100%; }
    .ls-about-section__inner { grid-template-columns: 1fr; gap: 40px; }
    .ls-about-section__imgs { height: 300px; }
    .ls-about-section__award { display: none; }
}
@media (max-width: 640px) {
    .ls-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .ls-hero__actions { flex-direction: column; align-items: flex-start; }
    .ls-hero__actions .ls-btn { width: 100%; justify-content: center; }
}
