/*=========================================
GLOBAL ANIMATIONS
=========================================*/

html{

    scroll-behavior:smooth;

}

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.show{

    opacity:1;

    transform:translateY(0);

}

img{

    transition:

        opacity .5s ease,

        transform .5s ease;

}

img.loaded{

    opacity:1;

}

.stat-number{
    font-variant-numeric:
    tabular-nums;
}

/*=========================================
 SECTION HEADING SYSTEM
=========================================*/
.section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
}

.section-subtitle {
    display: inline-block;
    letter-spacing: .35em;
    text-transform: uppercase;
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--navy);
    line-height: 1.15;
}

.section-heading h2 span {
    color: var(--gold);
}

.heading-divider {
    width: 120px;
    height: 4px;
    margin: 30px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading p {
    margin: auto;
    max-width: 760px;
    font-size: 1.12rem;
    line-height: 2;
    color: var(--muted);
}

/*=========================================
 EMPTY STATE PLACEHOLDER CARD
=========================================*/
.empty-placeholder-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg, 28px);
    box-shadow: var(--shadow-sm, 0 6px 18px rgba(0,0,0,.08));
    max-width: 600px;
    margin: 40px auto;
}

.empty-placeholder-card .placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.empty-placeholder-card h3 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--navy);
}

.empty-placeholder-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 450px;
}