/* ============================================
   SACRED GROVES PAGE — Ancient Sanctuary Theme
   ============================================ */

.sg-page {
    --forest:   #0a2e1a;
    --emerald:  #059669;
    --gold:     #f1c40f;
    --cream:    #f9f6ef;
    --fog:      #e8f0e9;
    --ink:      #0f1c10;
    --white:    #ffffff;
    --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-page {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Open Sans', sans-serif;
}



/* ── ANIMATIONS ── */
.sg-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.sg-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── SECTIONING ── */
.sg-section { padding: 25px 0; }
.sg-wrap { padding: 0 5%; max-width: 1400px; margin: 0 auto; }

.sg-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--forest);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}

/* ── STATS CARDS ── */
.sg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 25px;
    position: relative;
}
.sg-stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--fog);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(var(--emerald-100) 1px, transparent 1px);
    background-size: 20px 20px;
}
.sg-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--emerald); transform: scaleX(0); transition: 0.5s var(--ease);
}
.sg-stat-card:hover { transform: translateY(-10px); border-color: var(--emerald); }
.sg-stat-card:hover::before { transform: scaleX(1); }

.sg-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--forest);
    display: block;
    margin-bottom: 8px;
}
.sg-stat-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
}

/* ── TABOOS GRID ── */
.sg-taboo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.sg-taboo-card {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--fog);
    display: flex;
    gap: 25px;
    align-items: center;
    transition: 0.5s var(--ease);
    background-image: radial-gradient(var(--emerald-100) 1px, transparent 1px);
    background-size: 24px 24px;
}
.sg-taboo-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 30px 60px rgba(0,0,0,0.06); }
.sg-taboo-icon {
    width: 64px; height: 64px;
    background: var(--forest);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.sg-taboo-text h4 { font-weight: 800; color: var(--forest); margin-bottom: 5px; font-size: 1.1rem; }
.sg-taboo-text p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }

/* ── SPOTLIGHT CARD ── */
.sg-spotlight {
    background: var(--forest);
    border-radius: 60px;
    padding: 80px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
    overflow: hidden;
}
.sg-spotlight::after {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}
.sg-spotlight h2 { font-size: 3.5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 30px; }
.sg-spotlight p { font-size: 1.1rem; line-height: 1.8; opacity: 0.9; }

/* ── THREATS SECTION ── */
.sg-threat-module {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    border-left: 8px solid #ef4444;
    box-shadow: 0 40px 100px rgba(0,0,0,0.04);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .sg-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sg-spotlight { grid-template-columns: 1fr; padding: 50px; }
    .sg-spotlight h2 { font-size: 2.5rem; }
}
@media (max-width: 640px) {
    .sg-stats-grid { grid-template-columns: 1fr; }
}
