/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ── */
body {
    font-family: "Source Sans 3", sans-serif;
    color: #1a1a2e;
    line-height: 1.7;
    background: #fafafa;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: #c0392b; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ── */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.logo h1 {
    font-family: "Merriweather", serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a2e;
}
.tagline {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2px;
}
.site-header nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.site-header nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}
.site-header nav a:hover { color: #c0392b; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.hero h2 {
    font-family: "Merriweather", serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0.9;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .number {
    display: block;
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}
.stat .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ── Sections ── */
.section { padding: 64px 0; }
.section-alt { background: #fff; }
.section h2 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a2e;
}
.section p {
    font-size: 1.05rem;
    max-width: 720px;
    color: #444;
    margin-bottom: 16px;
}

/* ── Cards ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 28px;
    transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card h3 {
    font-family: "Merriweather", serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.card p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

/* ── Footer ── */
.site-footer {
    background: #1a1a2e;
    color: #999;
    text-align: center;
    padding: 32px 0;
    font-size: 0.9rem;
}
.site-footer a { color: #e74c3c; }
.site-footer p { margin-bottom: 8px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero h2 { font-size: 1.8rem; }
    .hero-stats { gap: 24px; }
    .stat .number { font-size: 1.5rem; }
    .header-inner { flex-direction: column; text-align: center; }
    .site-header nav { justify-content: center; }
}
