.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}
.hero-h1-lg {
    font-size: clamp(2.1rem, 5.2vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.hero-italic-gold {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-grid {
    margin-top: 26px;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 12px;
    padding: 18px 20px;
    height: 100%;
    backdrop-filter: blur(8px);
    transition:
        border-color 0.25s,
        background 0.25s,
        transform 0.25s;
}
.hero-stat:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}
.hero-stat .num {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat .lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #c2cfc7;
    font-weight: 500;
}
@media (max-width: 480px) {
    .hero-stat {
        padding: 14px 14px;
    }
    .hero-stat .lbl {
        font-size: 10px;
        letter-spacing: 1px;
    }
}
