/* ---------------------------------------------------------------------------
   SITO LOJACONO — area pubblica.

   Impaginazione editoriale: bianco, nero e grigi, angoli vivi, Source Sans 3
   con titoli pieni e molta aria. Un solo colore d'accento, l'arancio, per
   sopratitoli, pulsanti principali e piccoli segni; il verde scuro solo per
   la fascia della sostenibilità.

   L'arancio pieno sotto il testo bianco è scurito quanto basta per restare
   leggibile (contrasto 4,6:1); sul nero i sopratitoli usano la sua versione
   chiara (6,6:1).
   --------------------------------------------------------------------------- */

body.site {
    --rule: #0d0f13;
    --rule-soft: #d9dade;
    --ink: #0d0f13;
    --ink-2: #454b56;
    --ink-3: #6c737f;
    --paper: #fff;
    --paper-2: #f3f3f3;
    --accento: #d0440c;
    --accento-scuro: #a93608;
    --accento-chiaro: #ff6a2b;
    --verde-scuro: #10271c;
    --notte: #0b0b0c;
    background: var(--paper);
    color: var(--ink);
    font-size: 17px;
}

body.site .wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
body.site .wrap-narrow { max-width: 820px; }

body.site a { color: var(--ink); text-underline-offset: 3px; }
body.site h1, body.site h2, body.site h3, body.site h4 { letter-spacing: -.025em; font-weight: 800; }
/* Il contorno segue il colore del testo: resta visibile anche sul nero. */
body.site :focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
body.site img { display: block; max-width: 100%; height: auto; }

/* Sopratitoli: lo stesso segno grafico in tutta la pagina. */
body.site .kicker {
    font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--accento); margin: 0 0 16px; display: flex; align-items: center; gap: 12px;
}
body.site .kicker-scuro { color: var(--ink); }

/* ---------- Intestazione ---------- */
body.site .site-header {
    border-bottom: 1px solid var(--rule-soft);
    background: var(--paper);
    position: sticky; top: 0; z-index: 60;
}
body.site .site-header .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; min-height: var(--header-height, 84px); flex-wrap: wrap;
}
body.site .brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
body.site .brand-logo {
    height: var(--header-logo-height, 42px); width: auto;
    max-width: min(52vw, 520px); object-fit: contain; object-position: left center;
}
/* Le misure scelte nel pannello valgono per l'intestazione del sito; il logo
   del piè di pagina ha le sue. Su schermo stretto il logo può rimpicciolirsi,
   e non supera comunque la metà della larghezza disponibile. */
body.site .site-header .brand-logo {
    height: var(--header-logo-height, 42px);
    max-width: min(52vw, var(--header-logo-width, 260px));
}
@media (max-width: 760px) {
    body.site .site-header .brand-logo { height: var(--header-logo-height-mobile, var(--header-logo-height, 42px)); }
}
body.site .brand-name {
    font-size: 18px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1.1;
}
body.site .brand-line { display: block; font-size: 12.5px; font-weight: 400; letter-spacing: .04em; color: var(--ink-3); margin-top: 3px; }

/* Le voci stanno al centro della pagina, il pulsante in evidenza a destra.
   L'intestazione è una griglia a tre colonne uguali ai lati: il centro è il
   centro della pagina, qualunque sia la larghezza del logo o del pulsante. */
body.site .site-nav { display: flex; align-items: center; gap: 30px; flex: 1 1 auto; }
body.site .nav-voci { display: flex; align-items: center; justify-content: center; gap: 8px 38px; flex: 1 1 auto; flex-wrap: wrap; }
body.site .nav-azioni { display: flex; align-items: center; gap: 12px; flex: none; margin-left: auto; }
body.site .site-nav a {
    color: var(--ink); text-decoration: none; font-size: 15.5px; font-weight: 600;
    padding: 8px 0; border-bottom: 2px solid transparent;
}
body.site .site-nav a:hover { border-bottom-color: var(--ink); }
body.site .site-nav a.is-active { border-bottom-color: var(--accento); font-weight: 700; }
body.site .site-nav a.is-button.is-active { background: var(--accento-scuro); border-color: var(--accento-scuro); }
/* Voce in evidenza: pulsante arancio pieno (es. B2B). */
body.site .site-nav a.is-button {
    background: var(--accento); color: #fff; border: 1px solid var(--accento); border-bottom-width: 1px;
    padding: 12px 24px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
body.site .site-nav a.is-button:hover { background: var(--accento-scuro); border-color: var(--accento-scuro); color: #fff; }
@media (min-width: 761px) {
    body.site .site-header .wrap {
        display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: 32px; flex-wrap: nowrap;
    }
    body.site .site-header .brand { grid-column: 1; justify-self: start; min-width: 0; max-width: 100%; }
    body.site .site-header .brand-logo { max-width: min(100%, var(--header-logo-width, 260px)); }
    body.site .site-nav { display: contents; }
    body.site .nav-voci { grid-column: 2; justify-content: center; }
    body.site .nav-azioni { grid-column: 3; justify-self: end; margin-left: 0; }
}

body.site .nav-toggle {
    display: none; background: var(--paper); border: 1px solid var(--rule); color: var(--ink);
    font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 11px 16px; cursor: pointer;
}

/* ---------- Pulsanti ---------- */
body.site .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 0;
    padding: 15px 28px; font-size: 13.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    font-family: inherit; text-decoration: none; cursor: pointer;
    transition: background .14s, color .14s, border-color .14s;
}
body.site .btn:hover { background: #000; border-color: #000; color: #fff; }
body.site .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
body.site .btn-ghost:hover { background: var(--ink); color: #fff; }
body.site .btn-light { background: #fff; color: var(--ink); border-color: #fff; }
body.site .btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
body.site .btn-block { width: 100%; }
body.site .btn-accento { background: var(--accento); border-color: var(--accento); color: #fff; }
body.site .btn-accento:hover { background: var(--accento-scuro); border-color: var(--accento-scuro); color: #fff; }
body.site .btn-contorno-chiaro { background: transparent; border-color: rgba(255, 255, 255, .85); color: #fff; }
body.site .btn-contorno-chiaro:hover { background: #fff; border-color: #fff; color: var(--ink); }
body.site .btn .freccia { font-size: 1.15em; line-height: 1; }
body.site .btn:disabled, body.site .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }/* Collegamento con freccia {
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
    font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}

/* ---------- Apertura ---------- */
body.site .hero { border-bottom: 1px solid var(--rule); position: relative; background: var(--ink); }
body.site .hero-track { position: relative; }
body.site .hero-slide {
    position: relative; min-height: min(82vh, 760px); display: flex; align-items: flex-end;
    color: #fff; overflow: hidden;
}
body.site .hero-slide[hidden] { display: none; }
body.site .hero-slide .hero-media { position: absolute; inset: 0; }
body.site .hero-slide .hero-media img { width: 100%; height: 100%; object-fit: cover; }
body.site .hero-slide .hero-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 9, .28) 0%, rgba(6, 7, 9, .58) 55%, rgba(6, 7, 9, .86) 100%);
}
body.site .hero-body { position: relative; padding: 90px 0 64px; max-width: 46rem; }
body.site .hero .kicker { color: rgba(255, 255, 255, .82); }
body.site .hero .kicker::before { background: #fff; }
body.site .hero h1, body.site .hero h2 {
    font-size: clamp(38px, 6vw, 76px); line-height: 1.02; margin: 0 0 22px; color: #fff;
}
body.site .hero p { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255, 255, 255, .86); margin: 0 0 32px; max-width: 44ch; }

body.site .hero-controls {
    position: relative; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 0 0 30px; color: #fff;
}
body.site .hero-dots { display: flex; gap: 10px; }
body.site .hero-dots button {
    width: 34px; height: 23px; border: 0; padding: 10px 0; background: rgba(255, 255, 255, .34);
    cursor: pointer; border-radius: 0; background-clip: content-box;
}
body.site .hero-dots button[aria-current="true"] { background: #fff; background-clip: content-box; }
body.site .hero-arrows { display: flex; gap: 0; }
body.site .hero-arrows button {
    width: 52px; height: 52px; border: 1px solid rgba(255, 255, 255, .45); background: transparent;
    color: #fff; font-size: 18px; cursor: pointer; border-radius: 0;
}
body.site .hero-arrows button + button { border-left: 0; }
body.site .hero-arrows button:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Struttura delle sezioni ---------- */
body.site .section { padding: 96px 0; border-bottom: 1px solid var(--rule-soft); }
body.site .section-dark { background: var(--ink); color: #fff; border-bottom-color: var(--ink); }
body.site .section-dark .kicker { color: rgba(255, 255, 255, .7); }
body.site .section-dark .kicker::before { background: #fff; }
body.site .section-dark h2, body.site .section-dark h3 { color: #fff; }
body.site .section-dark p { color: rgba(255, 255, 255, .78); }
body.site .section-tight { padding: 64px 0; }
body.site .section h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.06; margin: 0 0 24px; }
body.site .section .lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.65; margin: 0 0 24px; max-width: 62ch; }
body.site .prose { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
body.site .prose p { margin: 0 0 16px; }
body.site .prose p:last-child { margin-bottom: 0; }
body.site .prose ul, body.site .prose ol { margin: 0 0 16px; padding-left: 22px; }
body.site .prose li { margin-bottom: 8px; }
body.site .prose h2 { font-size: 26px; margin: 34px 0 14px; }
body.site .prose h3 { font-size: 20px; margin: 28px 0 12px; }
body.site .prose h2:first-child, body.site .prose h3:first-child { margin-top: 0; }

/* Due colonne testo + immagine */
body.site .split {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px; align-items: center;
}
body.site .split-media img { width: 100%; }
body.site .split.is-reverse .split-media { order: -1; }

/* Fotografie in bianco e nero: scelta facoltativa, spenta di serie.
   Riguarda solo le fotografie, mai i loghi né le icone. */
body.site.photos-mono .split-media img,
body.site.photos-mono .hero-media img,
body.site.photos-mono .page-head-media img,
body.site.photos-mono .article-media img,
body.site.photos-mono .news-card-media img,
body.site.photos-mono .gallery-grid img,
body.site.photos-mono .block-figure img,
body.site.photos-mono .figure img { filter: grayscale(1) contrast(1.04); }

/* ---------- Numeri ---------- */
body.site .numbers-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
body.site .number-cell {
    border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 40px 32px; min-height: 180px; display: flex; flex-direction: column; justify-content: center;
}
body.site .number-cell .n { font-size: clamp(40px, 5vw, 62px); font-weight: 700; line-height: 1; letter-spacing: .01em; }
body.site .number-cell .t { margin-top: 14px; font-size: 14.5px; color: var(--ink-2); }
body.site .section-dark .numbers-grid { border-color: rgba(255, 255, 255, .28); }
body.site .section-dark .number-cell { border-color: rgba(255, 255, 255, .28); }
body.site .section-dark .number-cell .t { color: rgba(255, 255, 255, .74); }

/* ---------- Valori e servizi ---------- */
body.site .cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
body.site .card-cell {
    border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 40px 34px 44px;
}
body.site .cards-numbered .card-cell { counter-increment: none; }
body.site .card-cell .idx {
    font-size: 12.5px; font-weight: 700; letter-spacing: .16em; color: var(--ink-3); display: block; margin-bottom: 22px;
}
/* Le icone diventano monocromatiche qualunque sia il file caricato. */
/* Le icone hanno un accento di colore su fondo trasparente: il riquadro scuro
   le rende leggibili senza spegnerle. */
body.site .card-cell .icon {
    width: 58px; height: 58px; margin-bottom: 22px; padding: 8px;
    background: var(--ink); object-fit: contain;
}
body.site .section-dark .card-cell .icon { background: transparent; padding: 0; width: 42px; height: 42px; }
body.site .card-cell h3 { font-size: 21px; margin: 0 0 12px; }
body.site .card-cell p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

/* ---------- Marchi ---------- */
body.site .brands-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
body.site .brand-cell {
    border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    min-height: 150px; display: grid; place-items: center; padding: 28px;
    text-decoration: none; color: inherit; transition: background .16s;
}
body.site .brand-cell:hover { background: var(--paper-2); }
body.site .brand-cell img { max-height: 52px; max-width: 140px; width: auto; }
body.site .brand-cell:hover img { opacity: 1; }
/* Su fondo nero la cella diventa bianca: qualunque logo resta leggibile,
   compresi quelli scuri o a colori. */
body.site .section-dark .brand-cell { background: #fff; }
body.site .brand-cell .brand-fallback { font-size: 16px; font-weight: 700; letter-spacing: .06em; text-align: center; }

/* ---------- Citazione ---------- */
body.site .quote { padding: 96px 0; background: var(--ink); color: #fff; }
body.site .quote blockquote {
    margin: 0; font-size: clamp(24px, 3.4vw, 44px); line-height: 1.18; letter-spacing: -.03em;
    font-weight: 700; max-width: 24ch;
}
body.site .quote cite {
    display: block; margin-top: 26px; font-style: normal; font-size: 13px;
    letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .7);
}

/* ---------- Contatti ---------- */
body.site .contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
body.site .contact-list { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--rule); }
body.site .contact-list li { border-bottom: 1px solid var(--rule-soft); padding: 20px 0; }
body.site .contact-list .k {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px;
}
body.site .contact-list .v { font-size: 18px; }
body.site .contact-list a { text-decoration: none; border-bottom: 1px solid var(--rule-soft); }
body.site .contact-list a:hover { border-bottom-color: var(--ink); }

/* ---------- Moduli ---------- */
body.site .form-box { border: 1px solid var(--rule); padding: 40px; }
body.site .field { margin-bottom: 22px; }
body.site .field:last-child { margin-bottom: 0; }
body.site label:not(.choice):not(.check) {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; margin-bottom: 9px; color: var(--ink);
}
body.site input[type="text"], body.site input[type="email"], body.site input[type="tel"],
body.site input[type="url"], body.site select, body.site textarea {
    width: 100%; padding: 14px 16px; font-family: inherit; font-size: 16px; color: var(--ink);
    background: var(--paper); border: 1px solid var(--rule-soft); border-radius: 0;
    -webkit-appearance: none; appearance: none;
}
body.site select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d0f13' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
body.site textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
body.site input:focus, body.site select:focus, body.site textarea:focus {
    outline: 2px solid var(--ink); outline-offset: -2px; border-color: var(--ink);
}
body.site input.has-error, body.site select.has-error, body.site textarea.has-error { border-color: var(--ink); border-width: 2px; }
body.site .error-text { font-size: 13.5px; font-weight: 600; margin: 8px 0 0; color: var(--ink); }
body.site .hint { font-size: 13.5px; color: var(--ink-3); margin: 8px 0 0; }
body.site .check {
    display: flex; gap: 12px; align-items: flex-start; text-transform: none; letter-spacing: 0;
    font-size: 14.5px; font-weight: 400; color: var(--ink-2); line-height: 1.55; cursor: pointer;
}
body.site .check input[type="checkbox"] {
    width: 22px; height: 22px; margin: 0; flex: 0 0 22px; accent-color: var(--ink); cursor: pointer;
}
/* Formula dei consensi del modulo di contatto: una casella per consenso. */
body.site .consensi { border: 0; margin: 0; padding: 0; min-width: 0; display: grid; gap: 14px; }
body.site .consensi legend {
    padding: 0; margin: 0 0 14px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink);
}
body.site .consensi .hint { margin: 0; }
body.site .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
body.site .form-grid .full { grid-column: 1 / -1; }

/* Avvisi */
body.site .alert {
    border: 1px solid var(--rule); border-left-width: 5px; padding: 16px 18px 16px 48px;
    font-size: 15px; margin-bottom: 22px; position: relative; background: var(--paper);
}
body.site .alert::before {
    position: absolute; left: 17px; top: 16px; width: 18px; height: 18px; line-height: 18px;
    text-align: center; font-weight: 700; font-size: 12px; border: 1px solid var(--ink);
}
body.site .alert-success::before { content: "✓"; background: var(--ink); color: #fff; }
body.site .alert-error::before { content: "×"; background: var(--ink); color: #fff; }
body.site .alert-warning::before { content: "!"; }
body.site .alert-info::before { content: "i"; }

body.site .result-box { text-align: center; padding: 40px 24px; }
body.site .result-box .mark {
    width: 58px; height: 58px; margin: 0 auto 22px; display: grid; place-items: center;
    background: var(--ink); color: #fff; font-size: 26px;
}
body.site .result-box h3 { font-size: 24px; margin: 0 0 12px; }
body.site .result-box p { color: var(--ink-2); margin: 0 auto 22px; max-width: 44ch; }

/* ---------- Pagine testuali ---------- */
body.site .page-head { padding: 72px 0 40px; border-bottom: 1px solid var(--rule); }
body.site .page-head h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin: 0; }
body.site .crumbs {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none;
    margin: 0; padding: 26px 0 0; font-size: 13px; letter-spacing: .06em; color: var(--ink-3);
}
body.site .crumbs a { color: var(--ink-3); text-decoration: none; }
body.site .crumbs a:hover { color: var(--ink); }
body.site .crumbs li::after { content: "/"; margin-left: 8px; color: var(--rule-soft); }
body.site .crumbs li:last-child::after { content: ""; }

/* ---------- Piè di pagina ---------- */
/* Chiaro, in una riga: marchio e motto, navigazione al centro, recapiti a
   destra. Sotto, la riga legale. */
body.site .site-footer {
    background: var(--paper); color: var(--ink-2); padding: 44px 0 26px;
    border-top: 1px solid var(--rule-soft);
}
body.site .footer-top {
    display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--rule-soft);
    align-items: center;
}
/* Ogni colonna guarda verso il proprio lato: la prima a sinistra, la seconda
   al centro, la terza a destra. Tutto quello che sta dentro segue. */
body.site .footer-col-start { text-align: left; }
body.site .footer-col-center { text-align: center; }
body.site .footer-col-end { text-align: right; }
body.site .footer-col-start { display: flex; align-items: center; gap: 22px; }
body.site .footer-brand { display: inline-flex; flex: none; }
body.site .site-footer .brand-logo { height: 40px; max-width: 200px; }
body.site .site-footer .brand-name { color: var(--ink); }
body.site .site-footer p { margin: 0; font-size: 14.5px; max-width: 32ch; line-height: 1.5; }
/* I titoli delle colonne restano per chi usa un lettore di schermo. */
body.site .footer-title {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
body.site .footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; font-size: 14.5px; }
body.site .footer-list a { color: var(--ink); text-decoration: none; }
body.site .footer-list a:hover { text-decoration: underline; }
body.site .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; }
body.site .footer-nav a { font-size: 15.5px; font-weight: 600; }
body.site .footer-social { list-style: none; margin: 12px 0 0; padding: 0; display: flex; justify-content: flex-end; gap: 16px; }
body.site .footer-social a { color: var(--ink); display: inline-flex; padding: 4px; }
body.site .footer-social a:hover { color: var(--accento); }
body.site .footer-bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 12px 30px; padding-top: 22px; font-size: 13.5px; color: var(--ink-3);
}
body.site .footer-bottom a,
body.site .footer-bottom .link-button { color: var(--ink-2); text-decoration: none; }
body.site .footer-bottom a:hover { color: var(--ink); text-decoration: underline; }
/* È un elenco di collegamenti: si legge come tale anche a chi usa uno
   screen reader, pur restando una riga sola. */
body.site .footer-legal-links {
    display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: flex-end;
    list-style: none; margin: 0; padding: 0;
}

/* ---------- Adattamenti ---------- */
@media (max-width: 1000px) {
    body.site .split { grid-template-columns: 1fr; gap: 40px; }
    body.site .split.is-reverse .split-media { order: 0; }
    body.site .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    body.site .footer-top { grid-template-columns: minmax(0, 1fr); gap: 26px; justify-items: center; }
    body.site .footer-col-start { flex-direction: column; text-align: center; gap: 14px; }
    body.site .footer-col-end { text-align: center; }
    body.site .footer-social { justify-content: center; }
    body.site .footer-bottom { flex-direction: column; text-align: center; }
    body.site .footer-legal-links { justify-content: center; }
}
@media (max-width: 760px) {
    body.site { font-size: 16px; }
    body.site .wrap { padding: 0 20px; }
    body.site .site-header .wrap { min-height: 68px; row-gap: 0; flex-wrap: nowrap; }
    /* Larghezza fissa: passando da «Menu» a «Chiudi» il pulsante non si
       allarga e il marchio accanto non si sposta. */
    body.site .nav-toggle { display: block; flex: none; min-width: 100px; text-align: center; }
    /* Il menu si apre sopra la pagina, appeso sotto l'intestazione e largo
       quanto lo schermo. Non sta nella riga del marchio: se ci stesse, aprendolo
       marchio e pulsante salterebbero in alto e la pagina verrebbe spinta giù,
       e con l'intestazione fissa il menu aperto resterebbe a coprire un terzo
       dello schermo mentre si scorre. Appeso sotto l'intestazione, il menu
       copre il suo filetto: ne ridisegna uno nello stesso punto, e un altro
       in fondo per staccarsi dalla pagina. */
    body.site .site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--paper);
        border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
        margin: 0; padding: 4px 20px 16px;
    }
    body.site .site-nav.is-open {
        display: flex;
        max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px);
        overflow-y: auto; overscroll-behavior: contain;
    }
    body.site .site-nav a {
        padding: 16px 2px; border-bottom: 1px solid var(--rule-soft);
        display: flex; align-items: center; justify-content: space-between;
    }
    body.site .nav-voci, body.site .nav-azioni {
        display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    }
    body.site .nav-voci a:last-child { border-bottom: 1px solid var(--rule-soft); }
    body.site .nav-azioni a:last-child { border-bottom: 0; }

    /* La voce in evidenza resta un pulsante, ma con lo stesso passo delle
       altre: prima era un blocco nero che spezzava l'elenco. */
    body.site .site-nav a.is-button {
        justify-content: center; text-align: center; margin: 12px 0 6px;
        padding: 15px 20px; border: 1px solid var(--accento); border-bottom-width: 1px;
    }

    /* La pagina in cui ci si trova si riconosce anche qui. */
    body.site .site-nav a.is-active {
        font-weight: 700; border-bottom-color: var(--rule-soft);
    }
    body.site .site-nav a.is-active::after {
        content: "\2022"; color: var(--ink); font-size: 15px; line-height: 1;
    }
    body.site .site-nav a.is-button.is-active::after { content: none; }
    body.site .hero-slide { min-height: 72vh; }
    body.site .hero-body { padding: 64px 0 44px; }
    body.site .section { padding: 64px 0; }
    body.site .form-box { padding: 26px 20px; }
    body.site .form-grid { grid-template-columns: 1fr; }
    body.site .footer-top p { margin-left: auto; margin-right: auto; }
    body.site .card-cell, body.site .number-cell { padding: 30px 22px; }
}

/* ===========================================================================
   AREA LAVORO, NOVITÀ, PAGINE A BLOCCHI, CONSENSO
   Stessa grammatica del resto del sito: filetti da 1px, angoli vivi,
   il nero pieno come unico accento.
   =========================================================================== */

/* ---------- Pulsanti piccoli ---------- */
body.site .btn-sm { padding: 10px 20px; font-size: 12.5px; }

/* ---------- Testata di pagina ---------- */
body.site .page-head-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
body.site .page-head-hero.has-media { min-height: min(52vh, 520px); display: flex; align-items: flex-end; }
body.site .page-head-hero .page-head-media { position: absolute; inset: 0; }
body.site .page-head-hero .page-head-media img { width: 100%; height: 100%; object-fit: cover; }
body.site .page-head-hero .page-head-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 9, .3) 0%, rgba(6, 7, 9, .62) 60%, rgba(6, 7, 9, .88) 100%);
}
body.site .page-head-hero .wrap { position: relative; }
body.site .page-head-hero .page-head-body { padding: 74px 0 56px; max-width: 46rem; }
body.site .page-head-hero .page-head-body h1 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; margin: 0 0 18px; }
body.site .page-head-hero .page-head-body p { color: rgba(255, 255, 255, .86); font-size: 17.5px; margin: 0 0 28px; max-width: 44ch; }
body.site .page-head-hero .page-head-body .kicker { color: rgba(255, 255, 255, .82); }
body.site .page-head-hero .page-head-body .kicker::before { background: #fff; }
body.site .page-head-plain {
    padding: 66px 0 54px; background: var(--ink); color: #fff; border-bottom: 0;
}
body.site .page-head-plain .kicker { color: rgba(255, 255, 255, .82); }
body.site .page-head-plain .kicker::before { background: #fff; }
body.site .page-head-plain h1 { font-size: clamp(32px, 4.2vw, 54px); line-height: 1.06; margin: 0 0 18px; }

/* ---------- Intestazioni di sezione ---------- */
body.site .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; margin-bottom: 34px;
}
body.site .section-head h2 { margin: 0; }
body.site .section-lead { color: var(--ink-2); font-size: 17px; max-width: 62ch; margin: 0 0 34px; }
body.site .section-dark .section-lead { color: rgba(255, 255, 255, .78); }
body.site .block-head { margin-bottom: 30px; }
body.site .block-head h2 { margin: 0; }
body.site .section-title { padding-bottom: 0; border-bottom: 0; }
body.site .block-rule { border: 0; border-top: 1px solid var(--rule-soft); margin: 0; }

/* ---------- Briciole ---------- */
body.site .crumbs {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    font-size: 13px; letter-spacing: .04em; margin: 0 0 26px; color: var(--ink-3);
}
body.site .section-dark .crumbs, body.site .section-dark .crumbs a { color: rgba(255, 255, 255, .7); }
body.site .crumbs a { color: inherit; }

/* ---------- Filtri ---------- */
body.site .filters { border: 1px solid var(--rule); padding: 22px; margin-bottom: 30px; }
body.site .filters-row {
    display: grid; gap: 18px;
    grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(140px, 1fr)) auto;
    align-items: end;
}
body.site .filters .field { margin: 0; }
body.site .filters label {
    display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
/* «background» in forma breve cancellava la freccia degli elenchi a discesa,
   che restavano indistinguibili da un campo di testo: qui si tocca solo il
   colore, e alla freccia si lascia il suo spazio. */
body.site .filters input, body.site .filters select {
    width: 100%; border: 1px solid var(--rule); border-radius: 0; padding: 12px 14px;
    font: inherit; font-size: 15px; background-color: var(--paper); color: var(--ink);
}
body.site .filters select { padding-right: 40px; }
body.site .filters .field-actions { display: flex; gap: 10px; align-items: stretch; }
body.site .filters .field-actions .btn {
    padding-top: 0; padding-bottom: 0; min-height: 48px; align-self: end;
}

/* ---------- Elenco delle offerte ---------- */
body.site .list-count { font-size: 14px; color: var(--ink-3); margin: 0 0 18px; }
body.site .list-more { margin: 30px 0 0; }
body.site .job-list { border-top: 1px solid var(--rule); }
body.site .job-row {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 26px 4px; border-bottom: 1px solid var(--rule-soft);
    text-decoration: none; color: var(--ink);
}
body.site .job-row:hover { background: var(--paper-2); }
body.site .job-row-main { display: block; }
body.site .job-row-title {
    display: block; font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px;
}
body.site .job-row-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; color: var(--ink-3); }
body.site .job-row-meta span { position: relative; }
body.site .job-row-action { font-size: 20px; flex: 0 0 auto; }
body.site .tag-new {
    display: inline-block; vertical-align: middle; margin-left: 10px; padding: 3px 9px;
    background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
}
body.site .job-row.is-dark { border-bottom-color: rgba(255, 255, 255, .22); color: #fff; }
body.site .job-row.is-dark:hover { background: rgba(255, 255, 255, .07); }
body.site .job-row.is-dark .job-row-meta { color: rgba(255, 255, 255, .72); }
body.site .job-row.is-dark .tag-new { background: #fff; color: var(--ink); }
body.site .section-dark .job-list { border-top-color: rgba(255, 255, 255, .3); }

/* ---------- Dettaglio dell'offerta ---------- */
body.site .job-facts { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0; }
body.site .job-facts li {
    padding: 16px 26px 16px 0; margin-right: 26px; border-right: 1px solid rgba(255, 255, 255, .25);
}
body.site .job-facts li:last-child { border-right: 0; margin-right: 0; }
body.site .job-facts .k {
    display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 6px;
}
body.site .job-facts .v { font-size: 16px; }
body.site .job-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: start; }
body.site .job-body h2 { font-size: 25px; margin: 40px 0 16px; }
body.site .job-body h2:first-child { margin-top: 0; }
body.site .job-alt { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--rule-soft); font-size: 15.5px; }
body.site .job-form {
    border: 1px solid var(--rule); padding: 34px; position: sticky;
    top: calc(var(--header-height, 84px) + 20px);
}
body.site .job-form h2 { font-size: 23px; margin: 0 0 8px; }
body.site .job-form .hint { color: var(--ink-3); font-size: 14px; margin: 0 0 24px; }
body.site .job-form .field { margin-bottom: 20px; }
/* Le etichette dei campi, ma non i riquadri di scelta dell'insegna, che sono
   anch'essi <label> e devono restare centrati. */
body.site .job-form label:not(.choice):not(.check),
body.site .form-box label:not(.choice):not(.check),
body.site .field-label {
    display: block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px;
}
body.site .job-form input[type="text"], body.site .job-form input[type="email"],
body.site .job-form input[type="tel"], body.site .job-form select, body.site .job-form textarea {
    width: 100%; border: 1px solid var(--rule); border-radius: 0; padding: 13px 14px;
    font: inherit; font-size: 15.5px; background-color: var(--paper); color: var(--ink);
}
body.site .job-form select { padding-right: 40px; }
body.site .job-form textarea { resize: vertical; }
body.site .job-form .check { display: flex; gap: 12px; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 14.5px; color: var(--ink-2); }
body.site .job-form .check input { margin-top: 3px; }
body.site .job-form .error-text, body.site .form-box .error-text { color: var(--ink); font-size: 13.5px; margin: 8px 0 0; font-weight: 700; }
body.site .job-form .has-error, body.site .form-box .has-error { border-width: 2px; }

/* ---------- Campo file ---------- */
body.site .file-field { border: 1px dashed var(--rule); padding: 22px; text-align: center; }
body.site .file-field.has-error { border-style: solid; border-width: 2px; }
body.site .file-field.is-dragging { border-style: solid; background: var(--paper-2); }
body.site .file-label { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
body.site .file-hint { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; }


/* Elenco dei file allegati: una riga per file, con il pulsante per toglierlo
   quando ci si accorge di aver preso quello sbagliato. */
body.site .file-list { list-style: none; margin: 12px 0 0; padding: 0; }
body.site .file-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border: 1px solid var(--rule-soft); margin-bottom: 8px;
    font-size: 14px;
}
body.site .file-list li:last-child { margin-bottom: 0; }
body.site .file-list-name { flex: 1 1 auto; min-width: 0; word-break: break-word; }
body.site .file-list-size { color: var(--ink-3); font-size: 13px; white-space: nowrap; }
body.site .file-list-remove {
    background: none; border: 1px solid var(--rule); color: var(--ink);
    font: inherit; font-size: 13px; padding: 6px 12px; cursor: pointer; border-radius: 0;
    min-height: 34px; white-space: nowrap;
}
body.site .file-list-remove:hover { background: var(--ink); color: #fff; border-color: var(--ink); }body.site .file-field input[type="file"] { width: 100%; font: inherit; font-size: 14px; }

/* Il pulsante «Scegli file» e le caselle di spunta sono disegnati dal
   sistema operativo: senza queste regole arrivano azzurri e con gli angoli
   arrotondati, fuori dalla grammatica del sito. */
body.site input[type="checkbox"], body.site input[type="radio"] { accent-color: var(--ink); }
body.site input[type="file"]::file-selector-button {
    font: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; background: var(--paper); color: var(--ink);
    border: 1px solid var(--rule); border-radius: 0; padding: 10px 18px;
    margin-right: 12px; cursor: pointer;
}
body.site input[type="file"]::file-selector-button:hover { background: var(--ink); color: #fff; }

/* I numeri e i pallini degli elenchi seguono il colore del testo. */
/* L'asterisco dei campi obbligatori: discreto, spiegato dalla legenda
   sopra il modulo. */
body.site .richiesto { color: var(--ink-3); font-weight: 700; margin-left: 2px; }

body.site li::marker { color: currentColor; }

/* ---------- Scelta dell'insegna ---------- */
/* I filetti fra le schede sono lo spazio di 1px fra le celle, sul fondo
   grigio: nessun bordo si somma a quello del vicino. Il nome di un'insegna
   va a capo dentro la propria scheda, sotto il logo, invece di finire sul
   segno di scelta della scheda accanto. */
body.site .choice-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
    gap: 1px; background: var(--paper); border: 1px solid var(--rule); overflow: hidden;
}
body.site .choice-grid .choice {
    position: relative; display: grid; grid-template-columns: 18px minmax(0, 1fr);
    align-items: center; gap: 14px; padding: 18px 16px; margin: 0; min-width: 0;
    background: var(--paper); text-align: left; cursor: pointer;
    text-transform: none; letter-spacing: 0;
    box-shadow: 1px 0 0 var(--rule-soft), 0 1px 0 var(--rule-soft);
}
/* Il segno della scelta: un cerchio che si riempie al centro quando la
   scheda e' selezionata, cosi' si capisce che se ne sceglie una sola. */
body.site .choice::before {
    content: ""; width: 18px; height: 18px; border-radius: 50%;
    border: 1px solid var(--rule); background: var(--paper);
}
body.site .choice.is-selected::before {
    background: var(--paper); border-color: var(--ink);
    box-shadow: inset 0 0 0 4px var(--ink);
}
body.site .choice input { position: absolute; opacity: 0; width: 0; height: 0; }
body.site .choice:focus-within { outline: 2px solid var(--ink); outline-offset: -5px; }
body.site .choice-body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-width: 0; }
body.site .choice img { max-height: 30px; max-width: 100%; width: auto; }
/* Scheda chiara: un logo chiaro non si vedrebbe, e prende una targa scura. */
body.site .choice img.is-light { background: var(--ink); padding: 6px 10px; }
body.site .choice-name { font-size: 14px; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
body.site .choice:hover { background: var(--paper-2); }
body.site .choice.is-selected { background: var(--ink); color: #fff; }
/* Scheda selezionata: il fondo diventa nero e le parti si scambiano. */
body.site .choice.is-selected img { background: #fff; padding: 4px; }
body.site .choice.is-selected img.is-light { background: none; padding: 6px 10px; }

/* ---------- Insegne ---------- */
body.site .segment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); border-top: 1px solid rgba(255, 255, 255, .3); border-left: 1px solid rgba(255, 255, 255, .3); }
body.site .segment-cell {
    display: grid; place-items: center; min-height: 128px; padding: 26px;
    border-right: 1px solid rgba(255, 255, 255, .3); border-bottom: 1px solid rgba(255, 255, 255, .3);
    text-decoration: none; color: #fff;
}
body.site .segment-cell:hover { background: rgba(255, 255, 255, .08); }
body.site .segment-cell img { max-height: 44px; max-width: 140px; background: #fff; padding: 8px 12px; }
body.site .segment-cell img.is-light { background: none; padding: 0; }
body.site .segment-name { font-weight: 700; font-size: 16px; text-align: center; }
body.site .segment-head { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 26px; }
/* La targa chiara serve solo a un logo scuro, che sul fondo nero
   sparirebbe. Un logo già chiaro ci va sopra da solo. */
body.site .segment-head-logo { display: grid; place-items: center; background: #fff; padding: 16px 20px; min-width: 140px; }
body.site .segment-head-logo.is-light { background: none; padding: 0; min-width: 0; }
/* Senza la targa il logo non ha più una cornice che lo sostiene:
   sul fondo nero puo' respirare un po' di più. */
body.site .segment-head-logo.is-light img { max-height: 64px; max-width: 230px; }
body.site .segment-head-logo img { max-height: 46px; max-width: 160px; }
body.site .segment-head h1 { margin: 0 0 14px; }
body.site .prose-light, body.site .prose-light p { color: rgba(255, 255, 255, .82); }

/* ---------- Elenco vuoto e paginazione ---------- */
body.site .empty { border: 1px solid var(--rule-soft); padding: 40px; text-align: center; color: var(--ink-2); }
body.site .empty p { margin: 0 0 10px; }
body.site .empty p:last-child { margin: 0; }
body.site .pagination { display: flex; gap: 0; margin-top: 34px; border: 1px solid var(--rule); width: fit-content; }
body.site .pagination a {
    padding: 12px 18px; text-decoration: none; border-right: 1px solid var(--rule-soft); font-size: 14.5px;
}
body.site .pagination a:last-child { border-right: 0; }
body.site .pagination a.is-current { background: var(--ink); color: #fff; }

/* ---------- Novità ---------- */
body.site .news-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0;
    border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
    align-items: start;
}
body.site .news-card { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
/* Alcune novita' hanno la fotografia e altre no: appoggiando il testo in
   basso, data e titolo restano allineati fra le schede della stessa riga. */
body.site .news-card > a {
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
/* Il testo comincia sempre dall'alto: con l'allineamento in fondo, la scheda
   con la fotografia e quelle senza si leggevano su due ritmi diversi. */
body.site .news-card-body { margin-top: 0; }
body.site .news-card > a:hover { background: var(--paper-2); }
body.site .news-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--rule); }
body.site .news-card-media img { width: 100%; height: 100%; object-fit: cover; }
body.site .news-card-body { display: block; padding: 26px; }
body.site .news-card-body .kicker { margin-bottom: 12px; }
body.site .news-card-title { display: block; font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
body.site .news-card-text { display: block; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
body.site .article-media { margin: 0; }
body.site .article-media img { width: 100%; max-height: 620px; object-fit: cover; }
body.site .article-media figcaption { font-size: 13.5px; color: var(--ink-3); padding-top: 12px; }

/* ---------- Blocchi delle pagine ---------- */
body.site .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
body.site .gallery-grid figure { margin: 0; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
body.site .gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
/* Gallerie con un numero di foto che riempie le righe: nessuna foto resta sola. */
body.site .gallery-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.site .gallery-grid-3, body.site .gallery-grid-6, body.site .gallery-grid-9 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.site .gallery-grid-4, body.site .gallery-grid-8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 760px) {
    body.site .gallery-grid-4, body.site .gallery-grid-6, body.site .gallery-grid-8 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.site .gallery-grid-3, body.site .gallery-grid-9 { grid-template-columns: minmax(0, 1fr); }
}
body.site .block-figure { margin: 0; }
body.site .block-figure figcaption { font-size: 13.5px; color: var(--ink-3); padding-top: 12px; }
body.site .card-media { display: block; margin: -34px -30px 22px; border-bottom: 1px solid var(--rule); }
body.site .card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
body.site .cta-box {
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
    border: 1px solid currentColor; padding: 40px;
}
body.site .cta-box h2 { margin: 0 0 10px; }
body.site .cta-box p { margin: 0; color: var(--ink-2); max-width: 56ch; }
body.site .section-dark .cta-box p { color: rgba(255, 255, 255, .8); }
body.site .video-box { position: relative; border: 1px solid var(--rule); aspect-ratio: 16 / 9; background: var(--ink); display: grid; place-items: center; overflow: hidden; }
body.site .video-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
body.site .video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
body.site .video-play {
    position: relative; background: #fff; color: var(--ink); border: 1px solid #fff; border-radius: 0;
    padding: 18px 30px; font: inherit; font-weight: 700; cursor: pointer; text-align: center;
}
body.site .video-note { display: block; font-weight: 400; font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }

/* ---------- Barra dell'anteprima ---------- */
body.site .preview-bar { background: var(--ink); color: #fff; font-size: 14px; padding: 12px 0; }
body.site .preview-bar a { color: #fff; }

/* ---------- Consenso ai cookie ---------- */
body.site .consent {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 20px;
    display: flex; justify-content: center;
}
body.site .consent[hidden] { display: none; }
/* Finche' il banner e' aperto lascia spazio sotto al contenuto, cosi' non
   copre l'ultimo pulsante di un modulo. */
body.site:has(.consent:not([hidden])) main { padding-bottom: 230px; }
@media (max-width: 760px) {
    body.site:has(.consent:not([hidden])) main { padding-bottom: 300px; }
}
body.site .consent-box {
    background: var(--paper); border: 1px solid var(--rule); padding: 26px 28px;
    width: 100%; max-width: 720px; box-shadow: 0 18px 40px rgba(6, 7, 9, .18);
    max-height: calc(100vh - 40px); overflow-y: auto;
}
body.site .consent-box h2 { font-size: 19px; margin: 0 0 10px; }
body.site .consent-box p { margin: 0 0 18px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
body.site .consent-detail { border-top: 1px solid var(--rule-soft); padding-top: 16px; margin-bottom: 18px; }
body.site .consent-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: 14.5px; }
body.site .consent-row strong { display: block; margin-bottom: 4px; }
body.site .consent-note { color: var(--ink-3); font-size: 13.5px; line-height: 1.55; }
body.site .consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
/* Le informative stanno in fila, e vanno a capo insieme quando lo
   schermo si stringe. */
body.site .consent-link {
    margin: 16px 0 0; font-size: 13.5px;
    display: flex; flex-wrap: wrap; gap: 4px 20px;
}
/* «Preferenze cookie» sta in fila con gli altri collegamenti del pie' di
   pagina: deve comportarsi come loro, non distinguersi per la sottolineatura. */
body.site .link-button {
    background: none; border: 0; padding: 0; font: inherit; color: inherit;
    text-decoration: none; text-underline-offset: 3px; cursor: pointer;
}
body.site .link-button:hover { text-decoration: underline; }

/* ---------- Adattamenti ---------- */
@media (max-width: 1000px) {
    body.site .job-layout { grid-template-columns: 1fr; gap: 44px; }
    body.site .job-form { position: static; }
    body.site .filters-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    body.site .page-head-body { padding: 52px 0 40px; }
    body.site .page-head-plain { padding: 46px 0 38px; }
    body.site .filters-row { grid-template-columns: 1fr; }
    body.site .filters { padding: 18px; }
    body.site .job-row { padding: 22px 2px; }
    body.site .job-row-title { font-size: 18.5px; }
    body.site .job-form { padding: 24px 20px; }
    body.site .job-facts li { border-right: 0; padding: 10px 0; margin-right: 0; width: 100%; }
    body.site .cta-box { padding: 28px 22px; }
    body.site .consent { padding: 0; }
    body.site .consent-box { border-left: 0; border-right: 0; border-bottom: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    body.site * { animation: none !important; transition: none !important; }
    body.site html { scroll-behavior: auto; }
}

@media print {
    body.site .site-header, body.site .site-footer, body.site .hero-controls, body.site .form-box { display: none; }
    body.site .section { padding: 20px 0; border: 0; }
}

/* ---------- Torna in cima ----------
   Compare solo dopo che si e' sceso un po', in fondo a destra, e non copre
   mai il banner del consenso. */
body.site .torna-su {
    position: fixed; right: 22px; bottom: 22px; z-index: 55;
    width: 46px; height: 46px; display: none; align-items: center; justify-content: center;
    background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 0;
    font-size: 19px; line-height: 1; cursor: pointer; padding: 0;
}
body.site .torna-su.is-visible { display: inline-flex; }
body.site .torna-su:hover { background: #fff; color: var(--ink); }
body.site .torna-su:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
/* Finche' il banner del consenso e' aperto, il tasto gli sta sopra: i due
   elementi sono fratelli, quindi basta guardare il vicino. */
body.site .consent:not([hidden]) ~ .torna-su { display: none; }
@media (max-width: 760px) {
    body.site .torna-su { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}
@media print { body.site .torna-su { display: none !important; } }

/* ===========================================================================
   SCHERMI PICCOLI
   Su un telefono si tocca con il dito e si legge a mezzo braccio: nessun
   testo sotto i 13px e nessun bersaglio piu' basso di 40px.
   =========================================================================== */
@media (max-width: 900px) {
    /* Collegamenti del pie' di pagina: stanno in colonna, quindi si puo'
       dare loro l'altezza di un dito senza scomporre il disegno. */
    body.site .footer-list a,
    body.site .footer-legal-links a,
    body.site .footer-legal-links .link-button {
        display: inline-block; padding: 9px 0; min-height: 22px;
    }
    body.site .footer-list { gap: 4px; }
    body.site .footer-legal-links { gap: 2px 20px; }
    body.site .footer-list.footer-nav { gap: 2px 28px; }

    /* Briciole di navigazione e collegamenti di servizio. */
    body.site .crumbs a { display: inline-block; padding: 6px 0; }

    /* Collegamento dell'informativa dentro il banner del consenso e voci
       dell'elenco «vai direttamente a» della pagina non trovata. */
    body.site .consent-link a,
    body.site .contact-list .v a { display: inline-block; padding: 9px 0; }

    /* Testo minimo leggibile su schermo piccolo: vale per ogni etichetta,
       comunque sia annidata. */
    body.site .tag-new { font-size: 13px; }
    body.site label:not(.choice):not(.check) { font-size: 13px; }
}

@media (max-width: 760px) {
    body.site .nav-toggle { font-size: 13px; padding: 13px 18px; }
    body.site label:not(.choice):not(.check) { font-size: 13px; }
    body.site .kicker { font-size: 13px; }

    /* I filtri diventano bersagli comodi. */
    body.site .filters input, body.site .filters select { padding: 14px; font-size: 16px; }

    /* Le righe delle offerte e le schede si toccano tutte intere. */
    body.site .job-row { padding: 20px 2px; }
    body.site .news-card > a { padding: 0; }

    /* Il modulo non resta appiccicato in alto quando si scorre. */
    body.site .job-form { position: static; }
}

@media (max-width: 420px) {
    body.site .wrap { padding: 0 16px; }
    /* Le voci del menu restano in colonna con il marchio. */
    body.site .site-nav { padding-left: 16px; padding-right: 16px; }
    body.site .form-box { padding: 24px 16px; }
    body.site .choice-grid { grid-template-columns: 1fr; }
    body.site .hero-body { padding: 52px 0 38px; }
}

/* L'attributo hidden deve valere anche sugli elementi con un display proprio. */
body.site [hidden] { display: none !important; }

/* Visibile solo ai lettori di schermo e ai motori di ricerca. */
.solo-lettori {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Caricamento foto dei dipendenti */
body.site .foto-caricamento .wrap { max-width: 680px; }
body.site .foto-caricamento h1 { margin: 6px 0 14px; }
body.site .foto-caricamento .form-box { margin-top: 26px; }
body.site .foto-caricamento .form-box .field + .field { margin-top: 22px; }
body.site .foto-caricamento .form-box > .hint { margin: 22px 0; }
body.site .foto-esci { margin-top: 18px; text-align: center; }

/* ===========================================================================
   BLOCCHI DELLE PAGINE: stile, recapiti, colonne, domande, spazio
   =========================================================================== */
body.site .section-grey { background: var(--paper-2); }
body.site .section-pad-compact { padding: 56px 0; }
body.site .section-pad-large { padding: 140px 0; }
body.site .section-pad-none { padding: 0; }
body.site .is-centered { text-align: center; }
body.site .is-centered .kicker { justify-content: center; }
body.site .is-centered .section-lead,
body.site .is-centered .prose,
body.site .is-centered .lead { margin-left: auto; margin-right: auto; }
@media (max-width: 760px) {
    body.site .section-pad-large { padding: 88px 0; }
    body.site .section-pad-compact { padding: 40px 0; }
    body.site .solo-desktop { display: none; }
}
@media (min-width: 761px) {
    body.site .solo-mobile { display: none; }
}

/* ---------- Recapiti ---------- */
body.site .recapiti-head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; margin-bottom: 40px; align-items: end; }
body.site .recapiti-head.has-search { grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr); }
body.site .recapiti-head .block-head h2 { margin-bottom: 14px; }
body.site .recapiti-lead { margin: 0; max-width: 60ch; }
body.site .recapiti-cerca label {
    display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
body.site .recapiti-cerca input {
    width: 100%; border: 1px solid var(--rule); border-radius: 0; padding: 14px 16px;
    font: inherit; font-size: 16px; background: var(--paper); color: var(--ink);
}
body.site .recapiti-conta { font-size: 13.5px; color: var(--ink-3); margin: 8px 0 0; min-height: 1.3em; }
body.site .recapiti { display: grid; gap: 1px; background: var(--paper); border: 1px solid var(--rule); overflow: hidden; }
body.site .recapiti-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.site .recapiti-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.site .recapiti-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.site .recapito {
    background: var(--paper); padding: 30px 28px 22px; display: flex; flex-direction: column; min-width: 0;
    box-shadow: 1px 0 0 var(--rule-soft), 0 1px 0 var(--rule-soft);
}
body.site .recapito-zona {
    font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-3); margin: 0 0 10px; line-height: 1.45;
}
body.site .recapito-nome { font-size: 22px; line-height: 1.15; margin: 0 0 18px; }
body.site .recapito-nota { font-size: 14.5px; color: var(--ink-2); margin: -6px 0 16px; line-height: 1.55; }
body.site .recapito-azioni { list-style: none; margin: auto 0 0; padding: 0; border-top: 1px solid var(--rule-soft); }
body.site .recapito-azioni li { border-bottom: 1px solid var(--rule-soft); }
body.site .recapito-azioni li:last-child { border-bottom: 0; }
body.site .recapito-azioni a {
    display: flex; flex-direction: column; gap: 2px; padding: 12px 0;
    text-decoration: none; color: var(--ink); min-width: 0;
}
body.site .recapito-k { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
body.site .recapito-v { font-size: 15.5px; overflow-wrap: anywhere; }
body.site .recapito-azioni a:hover .recapito-v { text-decoration: underline; text-underline-offset: 3px; }
body.site .recapiti-vuoto { border: 1px solid var(--rule-soft); background: var(--paper); padding: 28px; text-align: center; color: var(--ink-2); margin: 16px 0 0; }
body.site .section-dark .recapiti { background: var(--ink); border-color: rgba(255, 255, 255, .5); }
body.site .section-dark .recapito { background: var(--ink); box-shadow: 1px 0 0 rgba(255, 255, 255, .22), 0 1px 0 rgba(255, 255, 255, .22); }
body.site .section-dark .recapito-azioni a { color: #fff; }
body.site .section-dark .recapito-k, body.site .section-dark .recapito-zona { color: rgba(255, 255, 255, .66); }
body.site .section-dark .recapito-azioni, body.site .section-dark .recapito-azioni li { border-color: rgba(255, 255, 255, .22); }
@media (max-width: 1000px) {
    body.site .recapiti-3, body.site .recapiti-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.site .recapiti-head.has-search { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
    body.site .recapiti-2, body.site .recapiti-3, body.site .recapiti-4 { grid-template-columns: minmax(0, 1fr); }
    body.site .recapito { padding: 24px 20px 16px; }
    body.site .recapito-nome { font-size: 20px; }
}

/* ---------- Colonne di testo ---------- */
body.site .colonne { display: grid; gap: 44px 56px; }
body.site .colonne-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.site .colonne-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.site .colonna { border-top: 1px solid var(--rule); padding-top: 24px; min-width: 0; }
body.site .colonna h3 { font-size: 22px; margin: 0 0 14px; }
body.site .section-dark .colonna { border-top-color: rgba(255, 255, 255, .5); }
body.site .section-dark .colonna .prose { color: rgba(255, 255, 255, .78); }
@media (max-width: 900px) { body.site .colonne-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { body.site .colonne-2, body.site .colonne-3 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Domande frequenti ---------- */
body.site .faq { border-top: 1px solid var(--rule); text-align: left; }
body.site .faq-voce { border-bottom: 1px solid var(--rule-soft); }
body.site .faq-voce summary {
    list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 20px; padding: 22px 0; font-size: 19px; font-weight: 700; letter-spacing: -.01em; min-height: 44px;
}
body.site .faq-voce summary::-webkit-details-marker { display: none; }
body.site .faq-voce summary::after { content: "+"; font-weight: 400; font-size: 26px; line-height: 1; flex: 0 0 auto; }
body.site .faq-voce[open] summary::after { content: "\2212"; }
body.site .faq-risposta { padding: 0 0 24px; color: var(--ink-2); line-height: 1.7; }
body.site .faq-risposta p { margin: 0; }
body.site .section-dark .faq { border-top-color: #fff; }
body.site .section-dark .faq-voce { border-bottom-color: rgba(255, 255, 255, .28); }
body.site .section-dark .faq-risposta { color: rgba(255, 255, 255, .78); }

/* ---------- Spazio ---------- */
body.site .block-spazio-piccolo { height: 32px; }
body.site .block-spazio-medio { height: 72px; }
body.site .block-spazio-grande { height: 128px; }

/* ---------- Anteprima dell'editor ---------- */
/* Dentro l'editor i blocchi si evidenziano al passaggio e restano marcati
   quando sono aperti; quelli nascosti o riservati a un solo schermo si
   vedono attenuati, per non perderli di vista. */
body.site.in-editor .blocco-editor { position: relative; cursor: pointer; }
body.site.in-editor .blocco-editor::after {
    content: ""; position: absolute; inset: 0; z-index: 40; pointer-events: none;
    transition: box-shadow .12s;
}
body.site.in-editor .blocco-editor.is-hover::after { box-shadow: inset 0 0 0 2px #0d0f13, inset 0 0 0 3px #fff; }
body.site.in-editor .blocco-editor.is-selected::after { box-shadow: inset 0 0 0 3px #0d0f13, inset 0 0 0 5px #fff; }
body.site.in-editor .blocco-editor::before {
    content: attr(data-editor-nome); position: absolute; top: 0; left: 0; z-index: 41;
    background: #0d0f13; color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 10px; opacity: 0; pointer-events: none; transition: opacity .12s;
}
body.site.in-editor .blocco-editor.is-hover::before,
body.site.in-editor .blocco-editor.is-selected::before { opacity: 1; }
body.site.in-editor .blocco-editor.is-nascosto > * { opacity: .38; }
body.site.in-editor .blocco-editor.is-nascosto::before { opacity: 1; background: #6c737f; }
body.site.in-editor .solo-desktop, body.site.in-editor .solo-mobile { display: block; }
@media (max-width: 760px) { body.site.in-editor .solo-desktop > * { opacity: .38; } }
@media (min-width: 761px) { body.site.in-editor .solo-mobile > * { opacity: .38; } }
body.site .blocco-vuoto {
    margin: 28px 0; border: 1px dashed var(--ink-3); background: var(--paper-2);
    padding: 34px; text-align: center; color: var(--ink-2); font-size: 15px;
}

/* ===========================================================================
   NUOVA GRAFICA: APERTURA, MARCHI IN STRISCIA, PRESENTAZIONE, VALORI,
   FASCIA COLORATA, POSIZIONI IN SCHEDE, CONTATTI IN FASCIA
   Le misure a tutta larghezza allineano il testo alla colonna del sito:
   il margine è quello che resta ai lati dei 1280px, più il solito respiro.
   =========================================================================== */
body.site { --margine-colonna: max(28px, calc((100vw - 1280px) / 2 + 28px)); }

/* Sopratitoli sul nero: l'arancio chiaro, leggibile. */
body.site .section-dark .kicker,
body.site .page-head-hero .kicker,
body.site .page-head-plain .kicker,
body.site .apertura .kicker,
body.site .presentazione-testo .kicker { color: var(--accento-chiaro); }
body.site .section-dark .kicker.kicker-scuro { color: #fff; }

body.site .icona { flex: none; }

/* ---------- Apertura ---------- */
body.site .apertura { position: relative; background: var(--notte); color: #fff; overflow: hidden; }
body.site .apertura-track { position: relative; }
body.site .apertura-slide {
    position: relative; display: flex; align-items: center;
    min-height: min(80vh, 700px);
}
body.site .apertura-slide[hidden] { display: none; }
body.site .apertura-media { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; }
body.site .apertura-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
/* La fotografia sfuma nel nero verso il testo. */
body.site .apertura-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--notte) 0%, rgba(11, 11, 12, .72) 22%, rgba(11, 11, 12, .12) 58%, rgba(11, 11, 12, 0) 100%);
}
body.site .apertura-slide .wrap { position: relative; z-index: 2; }
body.site .apertura-body { max-width: 36rem; padding: 88px 0 150px; }
body.site .apertura-titolo {
    font-size: clamp(40px, 5.4vw, 70px); line-height: 1.02; letter-spacing: -.03em;
    font-weight: 800; margin: 0 0 22px; color: #fff;
}
body.site .apertura-testo { font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.6; color: rgba(255, 255, 255, .86); margin: 0 0 34px; max-width: 42ch; }
body.site .apertura-azioni { display: flex; flex-wrap: wrap; gap: 14px; }
body.site .apertura-piede { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding-bottom: 34px; }
body.site .apertura-piede .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
body.site .apertura-motto {
    margin: 0; max-width: 24ch; font-size: 12.5px; font-weight: 700; line-height: 1.8;
    letter-spacing: .22em; text-transform: uppercase; color: #fff;
}
body.site .apertura-motto::before {
    content: ""; display: block; width: 28px; height: 2px; margin-bottom: 14px; background: var(--accento-chiaro);
}
body.site .apertura .hero-controls { padding: 0; }
body.site .apertura-laterale {
    position: absolute; z-index: 3; right: var(--margine-colonna); top: 50%; transform: translateY(-50%);
    width: min-content; margin: 0; font-size: 12px; font-weight: 700; line-height: 2.1;
    letter-spacing: .26em; text-transform: uppercase; color: #fff; text-align: left;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}
body.site .apertura-laterale::after { content: ""; display: block; width: 22px; height: 2px; margin-top: 14px; background: #fff; }
body.site .apertura-slide.senza-foto .apertura-body { max-width: 52rem; }
body.site.photos-mono .apertura-media img,
body.site.photos-mono .presentazione-foto img,
body.site.photos-mono .fascia-foto img { filter: grayscale(1) contrast(1.04); }

/* ---------- Marchi in striscia ---------- */
body.site .striscia-marchi { background: var(--paper); border-bottom: 1px solid var(--rule-soft); }
body.site .striscia-riga { display: flex; align-items: center; gap: 24px 44px; min-height: 108px; padding-top: 18px; padding-bottom: 18px; }
body.site .striscia-etichetta {
    flex: none; margin: 0; font-size: 12.5px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--ink);
}
body.site .striscia-loghi {
    list-style: none; margin: 0; padding: 0; flex: 1 1 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-evenly; gap: 20px 48px;
}
body.site .striscia-loghi li { display: flex; align-items: center; }
body.site .striscia-loghi a { display: inline-flex; padding: 6px; }
body.site .striscia-loghi img { max-height: 46px; max-width: 132px; width: auto; transition: opacity .15s; }
body.site .striscia-loghi a:hover img { opacity: .7; }
body.site .striscia-nome { font-weight: 800; font-size: 18px; letter-spacing: .01em; }
body.site .striscia-chiusura {
    flex: none; margin: 0; display: flex; align-items: center; gap: 14px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2);
}
body.site .striscia-chiusura::after { content: ""; width: 28px; height: 2px; background: var(--accento); }

/* ---------- Presentazione con numeri ---------- */
body.site .presentazione {
    display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    min-height: 480px; border-bottom: 1px solid var(--rule-soft);
}
body.site .presentazione.senza-foto, body.site .presentazione.senza-numeri { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
body.site .presentazione.senza-foto.senza-numeri { grid-template-columns: minmax(0, 1fr); }
body.site .presentazione-testo {
    background: var(--notte); color: #fff;
    padding: 64px clamp(28px, 4vw, 56px) 64px var(--margine-colonna);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
body.site .presentazione-testo .block-head { margin-bottom: 20px; }
body.site .presentazione-testo h2 { font-size: clamp(30px, 3vw, 42px); line-height: 1.06; color: #fff; }
body.site .presentazione-testo .prose { color: rgba(255, 255, 255, .8); font-size: 16px; }
body.site .presentazione-testo .btn { margin-top: 30px; }
body.site .presentazione-foto { position: relative; margin: 0; overflow: hidden; min-height: 320px; background: #1c1c1e; }
body.site .presentazione-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
body.site .presentazione-foto::after,
body.site .fascia-foto::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .55) 100%);
}
body.site .scritta-foto {
    position: absolute; z-index: 1; left: clamp(22px, 3vw, 40px); right: clamp(22px, 3vw, 40px); bottom: clamp(22px, 3vw, 36px);
    margin: 0; max-width: 20ch; color: #fff; font-size: clamp(19px, 1.9vw, 25px); font-weight: 700;
    font-style: italic; line-height: 1.22; letter-spacing: -.01em; text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
body.site .scritta-maiuscola { font-style: normal; text-transform: uppercase; letter-spacing: .18em; font-size: clamp(16px, 1.6vw, 21px); line-height: 1.5; }
body.site .scritta-maiuscola::after { content: ""; display: block; width: 26px; height: 2px; margin-top: 14px; background: var(--accento-chiaro); }
/* Il riquadro dei numeri non prende il margine della colonna: sugli schermi
   larghi lo stringerebbe proprio quando c'è più spazio. */
body.site .presentazione-numeri {
    background: var(--paper-2); display: flex; flex-direction: column; justify-content: center;
    padding: 56px clamp(28px, 4vw, 64px); container-type: inline-size;
}
body.site .presentazione-numeri .kicker { margin-bottom: 26px; font-size: 12.5px; }
body.site .numeri-quadro { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; width: 100%; max-width: 520px; }
body.site .numeri-cella { padding: 24px 22px 24px 0; border-bottom: 1px solid #d5d5d7; min-width: 0; }
body.site .numeri-cella:nth-child(2n) { padding-left: 26px; padding-right: 0; border-left: 1px solid #d5d5d7; }
body.site .numeri-cella:nth-last-child(-n+2):nth-child(2n+1),
body.site .numeri-cella:nth-last-child(1) { border-bottom: 0; }
body.site .numeri-cella .n {
    display: block; margin: 0; font-size: clamp(30px, 3.2vw, 50px); font-weight: 800;
    line-height: 1; letter-spacing: -.035em; color: var(--ink); white-space: nowrap;
}
/* La cifra si misura sulla larghezza vera del riquadro: «1968» sta sempre
   dentro la sua cella, lontano dal filetto. */
@supports (font-size: 1cqi) {
    body.site .numeri-cella .n { font-size: clamp(28px, 12.5cqi, 54px); }
}
body.site .numeri-cella .t { margin: 10px 0 0; font-size: 15px; color: var(--ink-2); line-height: 1.35; overflow-wrap: break-word; hyphens: auto; }

/* ---------- Schede con introduzione (valori) ---------- */
body.site .valori-griglia {
    display: grid; grid-template-columns: minmax(220px, .95fr) minmax(0, 3fr); gap: 44px; align-items: start;
}
body.site .valori-griglia.senza-schede { grid-template-columns: minmax(0, 1fr); }
body.site .valori-intro .block-head { margin-bottom: 18px; }
body.site .valori-intro h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.06; }
body.site .valori-testo { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
body.site .valori-schede { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.site .valori-1 { grid-template-columns: minmax(0, 1fr); }
body.site .valori-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.site .valori-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.site .valore { background: var(--paper-2); padding: 30px 26px 34px; min-width: 0; }
body.site .section-grey .valore { background: var(--paper); }
body.site .section-dark .valore { background: rgba(255, 255, 255, .06); }
body.site .valore-icona { width: 50px; height: 60px; object-fit: contain; object-position: left center; margin: 0 0 20px; }
body.site .valore-numero { display: block; margin: 0 0 18px; font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--accento); }
body.site .section-dark .valore-numero { color: var(--accento-chiaro); }
body.site .valore h3 { font-size: 21px; line-height: 1.2; margin: 0 0 10px; }
body.site .valore p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }
body.site .section-dark .valore p, body.site .section-dark .valori-testo { color: rgba(255, 255, 255, .78); }

/* ---------- Fotografia e fascia colorata ---------- */
body.site .fascia { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); min-height: 400px; }
body.site .fascia.senza-foto { grid-template-columns: minmax(0, 1fr); }
body.site .fascia.is-reverse .fascia-foto { order: 2; }
body.site .fascia-foto { position: relative; margin: 0; overflow: hidden; min-height: 320px; background: #1c1c1e; }
body.site .fascia-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
body.site .fascia-corpo {
    display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #fff;
    padding: 60px var(--margine-colonna) 60px clamp(28px, 4.5vw, 68px);
}
body.site .fascia.is-reverse .fascia-corpo { padding: 60px clamp(28px, 4.5vw, 68px) 60px var(--margine-colonna); }
body.site .fascia-verde .fascia-corpo { background: var(--verde-scuro); }
body.site .fascia-nero .fascia-corpo { background: var(--notte); }
body.site .fascia-accento .fascia-corpo { background: var(--accento); }
body.site .fascia-testo { max-width: 36rem; }
body.site .fascia .kicker { color: rgba(255, 255, 255, .8); }
body.site .fascia-nero .kicker { color: var(--accento-chiaro); }
body.site .fascia-testo .block-head { margin-bottom: 18px; }
body.site .fascia-testo h2 { font-size: clamp(28px, 2.9vw, 40px); line-height: 1.08; color: #fff; }
body.site .fascia-testo .prose { color: rgba(255, 255, 255, .84); font-size: 16px; }
body.site .fascia-testo .btn { margin-top: 28px; }
body.site .fascia-lato { flex: none; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
body.site .fascia-simbolo .icona { width: 46px; height: 46px; color: #8fd0a4; }
body.site .fascia-parole {
    list-style: none; margin: 0; padding: 0; font-size: 12px; font-weight: 700; line-height: 2.1;
    letter-spacing: .24em; text-transform: uppercase;
}
body.site .fascia-parole::after { content: ""; display: block; width: 22px; height: 2px; margin-top: 12px; background: #fff; }

/* ---------- Posizioni aperte in schede ---------- */
body.site .offerte-griglia {
    display: grid; grid-template-columns: minmax(220px, .95fr) minmax(0, 3fr); gap: 44px; align-items: start;
}
body.site .offerte-intro .block-head { margin-bottom: 16px; }
body.site .offerte-intro h2 { font-size: clamp(30px, 3vw, 42px); line-height: 1.06; }
body.site .offerte-testo { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
body.site .offerte-colonna { min-width: 0; }
body.site .offerte-tutte { margin: 0 0 14px; text-align: right; }
body.site .link-freccia {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; text-decoration: none;
    font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accento);
}
body.site .link-freccia:hover { color: var(--accento-scuro); text-decoration: underline; }
body.site .section-dark .link-freccia { color: var(--accento-chiaro); }
body.site .offerte-schede { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
body.site .job-card {
    display: flex; flex-direction: column; min-width: 0; background: var(--paper);
    border: 1px solid var(--rule-soft); padding: 24px 22px 22px; color: var(--ink);
}
body.site .job-card-insegna {
    margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}
body.site .job-card-titolo { margin: 0 0 12px; font-size: 19px; line-height: 1.25; letter-spacing: -.01em; }
body.site .job-card-meta {
    list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px;
    font-size: 14px; color: var(--ink-2);
}
body.site .job-card-meta li { display: inline-flex; align-items: center; gap: 6px; }
body.site .job-card-testo { margin: 0 0 20px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
body.site .job-card-cta { margin-top: auto; align-self: flex-end; min-height: 42px; }
body.site .section-dark .job-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .2); color: #fff; }
body.site .section-dark .job-card-meta, body.site .section-dark .job-card-testo { color: rgba(255, 255, 255, .75); }

/* ---------- Contatti in fascia ---------- */
body.site .section-contatti { background: var(--notte); }
body.site .contatti-fascia {
    display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 56px; align-items: start;
}
body.site .contatti-intro .block-head { margin-bottom: 16px; }
body.site .contatti-intro h2 { font-size: clamp(30px, 3.2vw, 44px); }
body.site .section-dark .contatti-testo { margin: 0 0 28px; color: rgba(255, 255, 255, .8); font-size: 16.5px; max-width: 40ch; }
body.site .contatti-recapiti {
    list-style: none; margin: 0; padding: 26px 0 0; display: grid; gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .2); font-size: 16.5px;
}
body.site .contatti-recapiti li { display: flex; align-items: flex-start; gap: 14px; color: #fff; }
body.site .contatti-recapiti .icona { color: var(--accento-chiaro); margin-top: 3px; }
body.site .contatti-recapiti a { color: #fff; text-decoration: none; overflow-wrap: anywhere; }
body.site .contatti-recapiti a:hover { text-decoration: underline; }
body.site .section-contatti .form-box { background: var(--paper); color: var(--ink); border: 0; }
body.site .section-contatti .form-box p { color: var(--ink-3); }
body.site .section-contatti .form-box h3 { color: var(--ink); }
body.site .section-contatti .form-box .check span, body.site .section-contatti .result-box p { color: var(--ink-2); }
body.site .section-contatti .form-box button[type="submit"] { background: var(--accento); border-color: var(--accento); }
body.site .section-contatti .form-box button[type="submit"]:hover { background: var(--accento-scuro); border-color: var(--accento-scuro); }

/* ---------- Adattamenti della nuova grafica ---------- */
@media (max-width: 1100px) {
    body.site .valori-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.site .apertura-laterale { display: none; }
}
/* Sotto i 1180px tre riquadri affiancati non respirano: il testo prende tutta
   la riga, fotografia e numeri stanno sotto, uno accanto all'altro. */
@media (max-width: 1180px) {
    body.site .presentazione { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    body.site .presentazione-testo { grid-column: 1 / -1; padding-right: var(--margine-colonna); }
    body.site .presentazione-testo .prose { max-width: 72ch; }
    body.site .presentazione.senza-foto .presentazione-testo,
    body.site .presentazione.senza-numeri .presentazione-testo { grid-column: auto; }
}
/* La striscia dei marchi in colonna: etichetta, loghi su una riga, chiusura. */
@media (max-width: 1000px) {
    body.site .striscia-riga { flex-direction: column; gap: 18px; padding-top: 28px; padding-bottom: 28px; }
    body.site .striscia-loghi { width: 100%; justify-content: center; gap: 16px 40px; }
}
@media (max-width: 900px) {
    /* Su schermo da toccare: testi di almeno 13px, bersagli di almeno 40px. */
    body.site .apertura-motto, body.site .job-card-insegna, body.site .striscia-etichetta,
    body.site .striscia-chiusura, body.site .link-freccia, body.site .fascia-parole { font-size: 13px; }
    body.site .hero-dots button { height: 40px; padding: 18px 0; }
    body.site .contatti-recapiti a { display: inline-block; padding: 9px 0; }
    body.site .contatti-recapiti li { align-items: center; }
    body.site .contatti-recapiti .icona { margin-top: 0; }
}
@media (max-width: 1000px) {
    body.site { --margine-colonna: 28px; }
    body.site .valori-griglia, body.site .offerte-griglia { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    body.site .valori-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    body.site .fascia { grid-template-columns: minmax(0, 1fr); }
    body.site .fascia.is-reverse .fascia-foto { order: 0; }
    body.site .fascia-corpo, body.site .fascia.is-reverse .fascia-corpo { padding: 52px 28px; }
    body.site .contatti-fascia { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    body.site .offerte-tutte { text-align: left; }
}
@media (max-width: 760px) {
    body.site { --margine-colonna: 20px; }
    body.site .apertura-slide { display: block; min-height: 0; }
    body.site .apertura-media { position: relative; width: 100%; height: 300px; }
    body.site .apertura-media::after { background: linear-gradient(180deg, rgba(11, 11, 12, 0) 45%, var(--notte) 100%); }
    body.site .apertura-body { padding: 8px 0 128px; }
    body.site .apertura-slide.senza-foto .apertura-body { padding-top: 56px; }
    body.site .apertura-azioni .btn { flex: 1 1 100%; }
    body.site .apertura-piede { padding-bottom: 26px; }
    body.site .apertura-piede .wrap { align-items: center; }
    body.site .apertura-motto { max-width: 18ch; }
}
@media (max-width: 360px) {
    body.site .striscia-loghi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    body.site .apertura .hero-arrows button { width: 46px; height: 46px; }
    body.site .striscia-riga { flex-direction: column; gap: 16px; padding-top: 26px; padding-bottom: 26px; }
    /* Righe piene: i loghi in colonne uguali, mai uno solo sulla riga sotto. */
    body.site .striscia-loghi {
        display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px 12px; justify-items: center;
    }
    body.site .striscia-loghi img { max-height: 34px; max-width: 100%; }
    body.site .presentazione { grid-template-columns: minmax(0, 1fr) !important; }
    body.site .presentazione-testo { grid-column: auto; padding: 52px 20px; }
    body.site .presentazione-foto { min-height: 280px; }
    body.site .presentazione-numeri { padding: 40px 20px; }
    body.site .numeri-cella { padding: 20px 14px 20px 0; }
    body.site .numeri-cella:nth-child(2n) { padding-left: 18px; }
    body.site .valori-schede, body.site .valori-3, body.site .valori-4 { grid-template-columns: minmax(0, 1fr); }
    body.site .fascia-foto { min-height: 260px; }
    body.site .fascia-corpo, body.site .fascia.is-reverse .fascia-corpo { flex-direction: column; align-items: flex-start; padding: 44px 20px; gap: 28px; }
    body.site .fascia-lato { flex-direction: row; align-items: center; }
    body.site .job-card-cta { align-self: stretch; }
    body.site .section-contatti .form-box { padding: 26px 20px; }
}
