:root {
    --primary: #ec8300;
    /* Arancio Balistra */
    --attivita: #e85855;
    --immobili: #247ba0;
    --richieste: #4cbaa7;
    --notizie: #edc844;
    --bg: #f4f7f9;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
}

.site-home {
    font-family: Inter, Arial, sans-serif;
}

.site-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

.site-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.site-hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1;
    margin: 12px 0 18px;
    color: #111827;
}

.site-hero p {
    font-size: 20px;
    max-width: 680px;
    color: #475569;
}

.site-eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ec8300;
}

.site-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.site-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ec8300;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.site-btn.secondary {
    background: #111827;
}

.site-home-luxury .site-hero {
    background: linear-gradient(135deg, #111827, #3f2f1f);
}

.site-home-luxury h1,
.site-home-luxury p {
    color: #fff;
}

.site-home-template1 .site-hero {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}