/* ================================================================
   LUMINA SALON — PAGE-SPECIFIC STYLES
   ================================================================ */

/* ── Prose / content ── */
.ls-prose { max-width: 72ch; }
.ls-prose h2, .ls-prose h3, .ls-prose h4 { margin-top: 1.8em; }
.ls-prose p  { margin-bottom: 1.3em; line-height: 1.85; }
.ls-prose ul, .ls-prose ol { margin-bottom: 1.3em; padding-left: 1.5em; }
.ls-prose li { margin-bottom: .5em; }
.ls-prose img { border-radius: var(--ls-radius-lg); margin: 2em 0; }
.ls-prose blockquote {
    border-left: 3px solid var(--ls-gold);
    padding: 1em 1.5em; margin: 2em 0;
    font-family: var(--ls-font-display);
    font-style: italic; font-size: 1.15rem;
    background: var(--ls-gold-pale);
    border-radius: 0 var(--ls-radius) var(--ls-radius) 0;
}
.ls-prose table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.ls-prose th, .ls-prose td { padding: 12px 16px; border-bottom: 1px solid var(--ls-border); text-align: left; }
.ls-prose th { font-weight: 700; background: var(--ls-cream); color: var(--ls-text-dark); }
.ls-prose a { color: var(--ls-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── About page ── */
.ls-about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 48px 0;
}
.ls-value-card {
    background: var(--ls-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--ls-dur) var(--ls-ease);
}
.ls-value-card:hover { border-color: var(--ls-gold); box-shadow: 0 0 0 3px rgba(201,168,76,.08); transform: translateY(-3px); }
.ls-value-card__icon { font-size: 2.5rem; margin-bottom: 14px; }
.ls-value-card__title { font-family: var(--ls-font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ls-value-card__desc { font-size: .875rem; color: var(--ls-text-muted); line-height: 1.6; }

/* ── FAQ accordion ── */
.ls-faq-item {
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius);
    background: var(--ls-white);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--ls-dur-fast);
}
.ls-faq-item:hover { border-color: var(--ls-gold); }
.ls-faq-q {
    width: 100%; text-align: left;
    padding: 20px 24px;
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: var(--ls-font-heading); font-size: 1rem; font-weight: 700;
    color: var(--ls-text-dark);
}
.ls-faq-q:focus-visible { outline: 2px solid var(--ls-gold); outline-offset: 2px; }
.ls-faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ls-faq-body p { padding: 0 24px 20px; color: var(--ls-text-muted); line-height: 1.75; font-size: .95rem; margin: 0; }

/* ── Contact form ── */
.ls-contact-form select.ls-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px; cursor: pointer;
}
.ls-contact-form textarea.ls-input { resize: vertical; min-height: 120px; }

/* ── Promotions page ── */
.ls-promo-page-card {
    background: var(--ls-white);
    border-radius: var(--ls-radius-lg);
    overflow: hidden;
    box-shadow: var(--ls-shadow-sm);
    border: 1px solid var(--ls-border);
    transition: all var(--ls-dur) var(--ls-ease);
}
.ls-promo-page-card:hover { transform: translateY(-4px); box-shadow: var(--ls-shadow-lg); }

/* ── Single team member ── */
.ls-team-single { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.ls-team-single__portrait {
    position: sticky; top: calc(var(--ls-header-h) + 24px);
}
.ls-team-single__img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    border-radius: var(--ls-radius-xl); box-shadow: var(--ls-shadow-lg);
}
.ls-team-single__info {
    margin-top: 20px;
    background: var(--ls-dark-2);
    border-radius: var(--ls-radius);
    padding: 20px;
    border: 1px solid var(--ls-border-dark);
}
.ls-team-single__info-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .875rem; }
.ls-team-single__info-row svg { width: 16px; height: 16px; color: var(--ls-gold); flex-shrink: 0; margin-top: 2px; }
.ls-team-single__info-row:last-child { margin-bottom: 0; }
.ls-team-single__content h1 { margin-bottom: 4px; }
.ls-team-single__role { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ls-gold); font-weight: 700; margin-bottom: 16px; }
.ls-team-single__services { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.ls-team-single__service-tag {
    background: var(--ls-gold-pale); color: #7a5a1a;
    padding: 6px 14px; border-radius: var(--ls-radius-pill);
    font-size: .75rem; font-weight: 700; letter-spacing: .04em;
}
@media (max-width: 768px) {
    .ls-team-single { grid-template-columns: 1fr; gap: 32px; }
    .ls-team-single__portrait { position: static; }
    .ls-team-single__img { aspect-ratio: 1; max-width: 280px; margin: 0 auto; }
}

/* ── Gallery single ── */
.ls-gallery-single-img {
    width: 100%; max-height: 70vh; object-fit: contain;
    border-radius: var(--ls-radius-xl);
    background: var(--ls-dark-3);
    display: block;
}

/* ── Department/Taxonomy page ── */
.ls-dept-hero {
    background: var(--ls-grad-dark); text-align: center;
    padding: clamp(60px,10vh,100px) 0 clamp(40px,6vh,70px);
}
.ls-dept-hero__icon { font-size: 4rem; display: block; margin-bottom: 12px; }
.ls-dept-hero h1 { color: var(--ls-white); margin-bottom: 8px; }
.ls-dept-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; }

/* ── Booking page ── */
.ls-booking-page { background: var(--ls-cream); }
.ls-booking-page .ls-page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); }

/* ── Search page ── */
.ls-search-form-wrap {
    background: var(--ls-white);
    border-radius: var(--ls-radius-lg);
    padding: 24px; margin-bottom: 40px;
    box-shadow: var(--ls-shadow-sm);
    border: 1px solid var(--ls-border);
}
.ls-search-form { display: flex; gap: 12px; }
.ls-search-form .ls-input { flex: 1; }

/* ── Sidebar ── */
.ls-sidebar .ls-widget { margin-bottom: 28px; }
.ls-sidebar .ls-widget__title {
    font-family: var(--ls-font-body); font-size: .75rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ls-gold); margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--ls-border);
}
.ls-sidebar ul { list-style: none; padding: 0; margin: 0; }
.ls-sidebar li { padding: 8px 0; border-bottom: 1px solid var(--ls-border); font-size: .9rem; }
.ls-sidebar li a { color: var(--ls-text-body); text-decoration: none; transition: color var(--ls-dur-fast); }
.ls-sidebar li a:hover { color: var(--ls-gold); }

/* ── Cookie banner ── */
#ls-cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
    background: var(--ls-dark-2);
    border-top: 1px solid var(--ls-border-dark);
    padding: 16px 24px;
    display: none; align-items: center; justify-content: space-between; gap: 16px;
    font-size: .875rem; color: rgba(255,255,255,.7);
    flex-wrap: wrap;
    transition: opacity .4s;
}
#ls-cookie-banner a { color: var(--ls-gold); }
#ls-cookie-accept {
    flex-shrink: 0;
    padding: 8px 20px; border-radius: var(--ls-radius-pill);
    background: var(--ls-grad-gold); color: var(--ls-black);
    border: none; cursor: pointer; font-weight: 700; font-size: .8rem;
    white-space: nowrap;
}
@media (max-width: 768px) {
    #ls-cookie-banner { flex-direction: column; text-align: center; }
    .ls-team-single { grid-template-columns: 1fr; }
}

/* ── Reading progress bar ── */
#ls-read-progress {
    position: fixed; top: 0; left: 0; z-index: 2000;
    height: 3px; width: 0;
    background: var(--ls-grad-gold);
    transition: width .1s linear;
}

/* ── Sticky mobile book bar ── */
#ls-sticky-book-bar {
    position: fixed; bottom: 70px; left: 0; right: 0; z-index: 500;
    background: var(--ls-dark);
    border-top: 1px solid var(--ls-border-dark);
    padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    transform: translateY(100%); opacity: 0;
    transition: all var(--ls-dur) var(--ls-ease);
}
#ls-sticky-book-bar.visible { transform: translateY(0); opacity: 1; }
#ls-sticky-book-bar .ls-btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { #ls-sticky-book-bar { display: none; } }

/* ── Image lazy load fade in ── */
img.ls-img-loaded { animation: ls-img-fade .4s ease; }
@keyframes ls-img-fade { from { opacity: 0; } to { opacity: 1; } }

/* ── Print styles (for appointment ticket etc.) ── */
@media print {
    .ls-header, .ls-footer, .ls-bottom-nav, .ls-wa-float, .ls-scroll-top { display: none !important; }
    body { background: white; color: black; }
    .ls-main { padding-top: 0 !important; }
}

/* ════════════════════════════════════════════════════════
   HOMEPAGE — Redesigned service cards + new sections
   ════════════════════════════════════════════════════════ */

/* ── Service chips (category filter) ── */
.ls-services-chips {
    display: flex; gap: 8px; overflow-x: auto;
    padding-bottom: 8px; margin-bottom: 28px;
    scrollbar-width: none;
}
.ls-services-chips::-webkit-scrollbar { display: none; }
.ls-chip {
    flex-shrink: 0; padding: 8px 18px;
    border: 1.5px solid var(--ls-border); border-radius: var(--ls-radius-pill);
    background: transparent; color: var(--ls-text-muted);
    font-family: var(--ls-font-body); font-size: .8rem; font-weight: 600;
    cursor: pointer; letter-spacing: .04em; text-transform: uppercase;
    transition: all var(--ls-dur-fast);
    white-space: nowrap;
}
.ls-chip.is-active,
.ls-chip:hover {
    background: var(--ls-dark); color: var(--ls-gold);
    border-color: var(--ls-dark);
}

/* ── Service grid v2 — stacked premium cards ── */
.ls-services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .ls-services-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.ls-svc-card {
    background: var(--ls-white);
    border-radius: var(--ls-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-sm);
    transition: all var(--ls-dur) var(--ls-ease);
    cursor: pointer;
}
.ls-svc-card:hover { transform: translateY(-4px); box-shadow: var(--ls-shadow-lg); }
.ls-svc-card:hover .ls-svc-card__btn { background: var(--ls-dark); color: var(--ls-gold); }

.ls-svc-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: var(--ls-dark-3);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.ls-svc-card__img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.4) 100%);
}
.ls-svc-card__icon { font-size: 2.4rem; z-index: 1; }
.ls-svc-card__time {
    position: absolute; bottom: 8px; right: 8px; z-index: 2;
    background: rgba(0,0,0,.6); color: rgba(255,255,255,.9);
    font-size: .68rem; font-weight: 700; padding: 3px 8px;
    border-radius: 20px; letter-spacing: .05em;
}
.ls-svc-card__body { padding: 14px 16px; }
.ls-svc-card__name {
    font-family: var(--ls-font-heading); font-size: .9rem; font-weight: 700;
    color: var(--ls-text-dark); margin-bottom: 4px; line-height: 1.3;
}
.ls-svc-card__price {
    font-size: .82rem; font-weight: 800; color: var(--ls-gold); margin-bottom: 10px;
}
.ls-svc-card__btn {
    display: block; text-align: center;
    padding: 8px 0; border-radius: var(--ls-radius-pill);
    background: var(--ls-grad-gold); color: var(--ls-black);
    font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none;
    transition: all var(--ls-dur-fast);
}

/* ── About section ── */
.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: var(--ls-radius-xl); overflow: hidden;
    aspect-ratio: 4/5; max-height: 540px;
}
.ls-about__visual img { width: 100%; height: 100%; object-fit: cover; }
.ls-about__img-placeholder {
    width: 100%; height: 100%;
    background: var(--ls-dark-3);
    display: flex; align-items: center; justify-content: center;
}
.ls-about__badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(10,9,8,.8); backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,.3); border-radius: 12px;
    padding: 12px 16px; display: flex; align-items: center; gap: 10px;
    font-size: 1.4rem;
}

.ls-about__stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.ls-about__stat { border-left: 2px solid rgba(201,168,76,.3); padding-left: 16px; }
.ls-about__stat-n {
    font-family: var(--ls-font-heading); font-size: 1.8rem; font-weight: 900;
    color: var(--ls-gold); display: block; line-height: 1;
}
.ls-about__stat-l { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; display: block; }

/* ── Hero bounce animation ── */
@keyframes ls-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Hero v2 scroll hint ── */
.ls-hero__scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 5;
}
.ls-hero__learn-btn {
    color: rgba(255,255,255,.8) !important;
    border-color: rgba(255,255,255,.3) !important;
}
.ls-hero__learn-btn:hover {
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
}

/* ── Hero badge ── */
.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 16px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ls-gold); margin-bottom: 20px;
}

/* ── Reveal with custom delay ── */
.ls-reveal[style*="--delay"] {
    transition-delay: var(--delay, 0s) !important;
}
