/* stats.css */
.stats-bar {
    background: var(--charcoal);
    border-top: 1px solid rgba(245, 166, 35, 0.12);
    font-family: 'DM Sans', sans-serif;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

/* JS adds this once IntersectionObserver fires */
.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(245, 166, 35, 0.1);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(248, 244, 238, 0.4);
    text-transform: uppercase;
    margin-top: 8px;
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr 1fr; padding: 0 22px; }
    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(4)::after { display: none; }
}