/* ========================================
   Quote — Editorial Cinematic Moment
   ======================================== */

.quote-box {
    position: relative;
    width: 100%;
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem);
    background: var(--color-bg-secondary);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Gradient orbs — stage spotlights */
.quote-box::before,
.quote-box::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.quote-box::before {
    background: var(--color-accent-blue);
    top: -240px;
    left: -120px;
}

.quote-box::after {
    background: var(--color-accent-warm);
    bottom: -240px;
    right: -120px;
    opacity: 0.1;
}

/* Editorial labels at top corners */
.quote-box .eyebrow {
    position: relative;
    margin-bottom: 3.5rem;
    z-index: 2;
    color: var(--color-text-muted);
    justify-content: center;
}

.quote-box .eyebrow::before,
.quote-box .eyebrow::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.quote-box blockquote {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
}

/* Floating decorative quote mark */
.quote-box blockquote::before {
    content: '\201C';
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 16vw, 14rem);
    font-weight: 500;
    color: var(--color-accent-cyan);
    opacity: 0.18;
    line-height: 1;
    pointer-events: none;
    z-index: -1;
    letter-spacing: -0.04em;
}

.quote-box blockquote span {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.quote-box blockquote footer {
    margin-top: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 400;
    font-style: normal;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.quote-box blockquote footer::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--color-accent-cyan);
}

/* Decorative animated line */
.quote-box .quote-line {
    display: block;
    width: 1px;
    height: 90px;
    background: linear-gradient(to bottom, var(--color-accent-cyan), transparent);
    margin: 3rem auto 0;
    border-radius: 0;
    position: relative;
}

.quote-box .quote-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent-cyan);
    box-shadow: 0 0 20px var(--color-accent-cyan);
}

/* Hero variant */
.quote-box.quote-box--hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-box.quote-box--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 15, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .quote-box {
        padding: clamp(3.5rem, 12vw, 6rem) 1.5rem;
    }

    .quote-box blockquote::before {
        font-size: 7rem;
        top: -2.5rem;
    }

    .quote-box blockquote span {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .quote-box blockquote footer {
        margin-top: 1.75rem;
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .quote-box .quote-line {
        height: 60px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .quote-box {
        padding: 3rem 1.25rem;
    }

    .quote-box blockquote::before {
        font-size: 5.5rem;
        top: -1.5rem;
    }

    .quote-box blockquote span {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .quote-box blockquote footer {
        font-size: 0.65rem;
    }
}
