/* ============================================= */
/* CASE ARCHIVE PAGE STYLES                       */
/* Uses the same design tokens as welcome.css      */
/* (--vs-red, font families, .label-caps, .vs-btn) */
/* ============================================= */

/* ---------- HERO ---------- */
.case-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #efe6d4;
}

.case-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.case-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 16, 10, 0.55) 0%,
        rgba(20, 16, 10, 0.25) 45%,
        rgba(20, 16, 10, 0.05) 75%
    );
}

.case-hero .container {
    position: relative;
    z-index: 2;
}

.case-hero-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    color: #f7f2e7;
    margin: 18px 0 22px;
}

.case-hero-subline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e6ddc9;
    max-width: 560px;
    margin-bottom: 34px;
}

/* ---------- INTRO ---------- */
.case-intro {
    padding: 110px 0;
    background-color: #fdfaf3;
}

.case-intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.case-intro-text .text-large {
    font-family: 'Marcellus', serif;
    font-size: 1.7rem;
    color: #1c1a15;
    line-height: 1.5;
    margin-bottom: 18px;
}

.case-intro-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #555;
    font-size: 1.05rem;
}

.case-progression {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 50px 0;
}

.progression-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.progression-num {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--vs-red, #8a2b1d);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.progression-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #2a2a2a;
    letter-spacing: 0.3px;
}

.progression-connector {
    width: 40px;
    height: 1px;
    background: #ccc2a8;
    margin-top: -20px;
}

.case-intro-closing p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.case-intro-closing .text-emphasis {
    font-family: 'Marcellus', serif;
    font-style: italic;
    color: #1c1a15;
    font-size: 1.2rem;
}

/* ---------- BENEFITS / HOW THIS HELPS ---------- */
.case-benefits {background-color: #f4efe2;}
.case-benefits .label-caps {display: block;text-align: center;}
.case-benefits h2 {font-family: 'Marcellus', serif;text-align: center;font-size: clamp(1.8rem, 3vw, 2.6rem);margin: 14px 0 60px;color: #1c1a15;}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.benefit-card {
    background: #fdfaf3;
    border: 1px solid #e4dcc7;
    padding: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.benefit-card-wide {
    grid-column: span 2;
}
.benefit-num {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: var(--vs-red, #8a2b1d);
    display: block;
    margin-bottom: 10px;
}
.benefit-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.25rem;
    color: #1c1a15;
    margin-bottom: 14px;
}
.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #555;
    line-height: 1.75;
    font-size: 0.98rem;
}
.benefit-note {
    margin-top: 12px;
    font-style: italic;
}
.case-listing {
    background-color: #fdfaf3;
    text-align: center;
}
.case-listing h2 {
    font-family: 'Marcellus', serif;
    margin: 14px 0 40px;
    color: #1c1a15;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card-wide {
        grid-column: span 1;
    }
    .case-progression {
        flex-direction: column;
    }
    .progression-connector {
        width: 1px;
        height: 24px;
        margin-top: 0;
    }
}