/* ==========================================
   LunarStar Section System
   Unified section rhythm & hierarchy
========================================== */

.ls-section {
    position: relative;
    padding-block: 120px;
    overflow: hidden;
}

.ls-section > .container {
    position: relative;
    z-index: 2;
}

/* Top entrance line */
.ls-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(1200px, 92vw);
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 176, 82, 0.15),
            rgba(212, 176, 82, 0.45),
            rgba(212, 176, 82, 0.15),
            transparent
        );
}

/* Subtle ambient glow */
.ls-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at top,
            rgba(255, 255, 255, 0.02),
            transparent 60%
        );
    opacity: 0.8;
}

/* ========================================
   Section Heading
======================================== */

.section-heading {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

/* Eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(212, 176, 82, 0.78);
    margin-bottom: 16px;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(212, 176, 82, 0.45);
}

/* ========================================
   Section Divider
======================================== */

.section-divider {
    margin-top: 84px;
    height: 80px;
    position: relative;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 176, 82, 0.55),
            transparent
        );
}
