/* Fogli di stile delle pagine statiche legali (privacy.html, contatti.html).
   Sono servite da nginx come file veri: devono restare leggibili senza JS,
   senza WASM e senza dipendenze esterne. */

:root {
    --brand-primary: #3D474F;
    --brand-secondary: #5C6872;
    --brand-accent: #B18F5A;
    --ink: #1f2937;
    --muted: #6b7280;
    --rule: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fbfbfa;
    color: var(--ink);
    font-family: 'Quattrocento Sans', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 46rem;
    margin: 0 auto;
    padding: 40px 20px 64px;
}

header.site {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 36px;
}

    header.site img {
        height: 84px;
        width: auto;
    }

    header.site .name {
        margin-top: 12px;
        font-size: 13px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
    }

h1 {
    font-family: 'Italiana', Georgia, serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.2;
    color: var(--brand-primary);
    margin: 0 0 6px;
}

h2 {
    font-family: 'Italiana', Georgia, serif;
    font-weight: 400;
    font-size: 23px;
    color: var(--brand-primary);
    margin: 36px 0 10px;
}

.updated {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 28px;
}

a {
    color: var(--brand-primary);
}

    a:hover {
        color: var(--brand-accent);
    }

.card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 22px 24px;
    margin: 22px 0;
}

    .card h2 {
        margin-top: 0;
    }

address {
    font-style: normal;
}

dl.kv {
    margin: 0;
}

    dl.kv dt {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 16px;
    }

    dl.kv dt:first-child {
        margin-top: 0;
    }

    dl.kv dd {
        margin: 2px 0 0;
    }

table.dt {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 15px;
}

    table.dt th,
    table.dt td {
        text-align: left;
        vertical-align: top;
        padding: 9px 10px;
        border-bottom: 1px solid var(--rule);
    }

    table.dt th {
        color: var(--muted);
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 700;
    }

.table-scroll {
    overflow-x: auto;
}

footer.site {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
}

    footer.site a {
        color: var(--muted);
    }

.back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

    .back:hover {
        color: var(--brand-primary);
    }
