/* ── HERO ── */
.hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(184,134,11,.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-bg);
    border: 1px solid rgba(184,134,11,.25);
    color: var(--gold);
    border-radius: 99px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(1.4); }
}

.hero h2 {
    font-size: 64px;
    line-height: 1.05;
    max-width: 720px;
    margin-bottom: 24px;
}
.hero h2 em {
    font-style: italic;
    color: var(--gold);
}
.hero > p {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── ABOUT GRID ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 96px 0;
    border-top: 1px solid var(--border);
}
.about-grid img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    background: var(--border);
}
.about-text h3 {
    font-size: 32px;
    margin-bottom: 0;
}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0;
}
.stat {
    padding: 40px;
    text-align: center;
    background: var(--white);
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .hero h2 { font-size: 38px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
}
