/* ============================================================
   FINCONSUMATORI - stile portale
   Palette: arancio scudo #F0722C/#E03A2B, grigio #454B54,
   teal tagline #129E97, fondo #F4F6F8, inchiostro #23282F
   Tipografia: Barlow Condensed (display) + Barlow (testo)
   Firma visiva: taglio diagonale (come la banda dello scudo)
   ============================================================ */

:root {
  --arancio: #F0722C;
  --arancio-scuro: #E03A2B;
  --grigio: #454B54;
  --grigio-medio: #7A828C;
  --teal: #129E97;
  --teal-scuro: #0C7D78;
  --fondo: #F4F6F8;
  --carta: #FFFFFF;
  --inchiostro: #23282F;
  --linea: #DDE2E7;
  --ok: #1E9E5A;
  --errore: #C6382E;
  --grad-scudo: linear-gradient(135deg, #F58A3C 0%, #F0722C 45%, #E03A2B 100%);
  --ombra: 0 10px 30px rgba(35, 40, 47, .10);
  --raggio: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Barlow', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--inchiostro);
  background: var(--carta);
}

img { max-width: 100%; height: auto; }
a { color: var(--teal-scuro); }

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--grigio);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; letter-spacing: .04em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--arancio-scuro);
  margin-bottom: .6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 3px;
  background: var(--grad-scudo);
  transform: skewX(-25deg);
  margin-right: 10px;
  vertical-align: middle;
}

/* ---------------- header ---------------- */
.topbar {
  background: var(--carta);
  border-bottom: 1px solid var(--linea);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.topbar__logo img { display: block; height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--grigio);
}
.nav a:hover { color: var(--arancio-scuro); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--grigio); margin: 5px 0; }

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--carta);
    border-bottom: 1px solid var(--linea);
    box-shadow: var(--ombra);
  }
  .nav.aperto { display: flex; }
  .nav a { padding: 14px 22px; border-top: 1px solid var(--linea); }
  .nav .btn { margin: 14px 22px; text-align: center; }
  .nav__toggle { display: block; }
}

/* ---------------- bottoni ---------------- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: 13px 30px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn--pieno {
  background: var(--grad-scudo);
  color: #fff;
  box-shadow: 0 6px 16px rgba(224, 58, 43, .30);
}
.btn--pieno:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(224, 58, 43, .38); }
.btn--vuoto {
  background: transparent;
  color: var(--grigio);
  border: 2px solid var(--grigio);
}
.btn--vuoto:hover { border-color: var(--arancio-scuro); color: var(--arancio-scuro); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-scuro); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ---------------- hero ---------------- */
.hero {
  background: var(--fondo);
  position: relative;
  overflow: hidden;
}
.hero::after {           /* banda diagonale firma */
  content: "";
  position: absolute;
  top: -12%; right: -14%;
  width: 42%; height: 130%;
  background: var(--grad-scudo);
  transform: skewX(-14deg);
  opacity: .09;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero p.lead { font-size: 1.18rem; color: var(--grigio); margin: 18px 0 28px; max-width: 34em; }
.hero__azioni { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__nota { margin-top: 16px; font-size: .92rem; color: var(--grigio-medio); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 52px; }
}

/* card "controllo" nel hero */
.cardcheck {
  background: var(--carta);
  border-radius: var(--raggio);
  box-shadow: var(--ombra);
  padding: 26px 26px 22px;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #F58A3C, #E03A2B) 1;
  border-image-slice: 1 0 0 0;
}
.cardcheck h3 { margin-bottom: 14px; color: var(--inchiostro); }
.cardcheck ul { list-style: none; }
.cardcheck li {
  padding: 10px 0 10px 34px;
  border-bottom: 1px dashed var(--linea);
  position: relative;
  font-size: .98rem;
}
.cardcheck li:last-child { border-bottom: 0; }
.cardcheck li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 10px;
  background: var(--teal);
  transform: skewX(-25deg);
  border-radius: 2px;
}

/* ---------------- sezioni ---------------- */
.sez { padding: 68px 0; }
.sez--fondo { background: var(--fondo); }
.sez__testa { max-width: 46em; margin-bottom: 40px; }
.sez__testa p { color: var(--grigio); margin-top: 12px; }

/* griglia servizi */
.griglia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.scheda {
  background: var(--carta);
  border: 1px solid var(--linea);
  border-radius: var(--raggio);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .14s ease, box-shadow .14s ease;
}
.scheda:hover { transform: translateY(-4px); box-shadow: var(--ombra); }
.scheda__icona {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--grad-scudo);
  position: relative;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.scheda__icona::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 26px;
  background: rgba(255,255,255,.9);
  transform: translate(-50%,-50%) skewX(-25deg);
  border-radius: 2px;
}
.scheda h3 { margin-bottom: 8px; color: var(--inchiostro); }
.scheda p { font-size: .96rem; color: var(--grigio); flex: 1; }
.scheda a { margin-top: 14px; font-weight: 600; text-decoration: none; }

/* passi come funziona */
.passi { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; counter-reset: passo; }
.passo { position: relative; padding: 22px 22px 22px 22px; background: var(--carta); border-radius: var(--raggio); border: 1px solid var(--linea); }
.passo::before {
  counter-increment: passo;
  content: counter(passo, decimal-leading-zero);
  display: inline-block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  background: var(--grigio);
  padding: 2px 14px;
  transform: skewX(-12deg);
  border-radius: 4px;
  margin-bottom: 14px;
}
.passo--attivo::before { background: var(--grad-scudo); }
.passo h3 { margin-bottom: 8px; color: var(--inchiostro); }
.passo p { font-size: .95rem; color: var(--grigio); }

/* fascia CTA diagonale */
.fasciacta {
  background: var(--grigio);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}
.fasciacta::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -6%;
  width: 34%;
  background: var(--grad-scudo);
  transform: skewX(-14deg);
  opacity: .92;
}
.fasciacta .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.fasciacta h2 { color: #fff; }
.fasciacta p { color: #E3E6EA; margin-top: 6px; max-width: 36em; }

/* faq */
.faq details {
  background: var(--carta);
  border: 1px solid var(--linea);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0 20px;
}
.faq summary {
  cursor: pointer;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--grigio);
  padding: 16px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--arancio); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 18px; color: var(--grigio); font-size: .97rem; }

/* ---------------- form prenotazione ---------------- */
.formcard {
  background: var(--carta);
  border-radius: var(--raggio);
  box-shadow: var(--ombra);
  padding: 32px 30px;
  max-width: 720px;
}
.formgriglia { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.formgriglia .campo--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .formgriglia { grid-template-columns: 1fr; } }

.campo label {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grigio);
  margin-bottom: 6px;
}
.campo input, .campo select, .campo textarea {
  width: 100%;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 1rem;
  color: var(--inchiostro);
  background: var(--fondo);
  border: 1px solid var(--linea);
  border-radius: 6px;
  padding: 11px 12px;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  border-color: var(--teal);
  background: #fff;
}
.campo--errore input, .campo--errore select { border-color: var(--errore); }
.campo .msg-errore { display: none; color: var(--errore); font-size: .85rem; margin-top: 4px; }
.campo--errore .msg-errore { display: block; }

.consenso { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--grigio); }
.consenso input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

.avviso {
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .95rem;
  margin-bottom: 18px;
  display: none;
}
.avviso--ok { display: block; background: #E7F6EE; color: #14532D; border: 1px solid #B8E4CB; }
.avviso--errore { display: block; background: #FBEAE8; color: #7F1D1D; border: 1px solid #F1C1BC; }

/* honeypot antispam */
.hp-campo { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------------- landing ads ---------------- */
.landing-topbar { border-bottom: 1px solid var(--linea); background: #fff; }
.landing-topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.landing-topbar img { height: 40px; width: auto; display: block; }
.landing-topbar .tel {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--grigio);
  text-decoration: none;
}
.landing-hero { background: var(--fondo); position: relative; overflow: hidden; }
.landing-hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 36%; height: 140%;
  background: var(--grad-scudo);
  transform: skewX(-14deg);
  opacity: .10;
}
.landing-hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 60px;
}
@media (max-width: 900px) { .landing-hero .wrap { grid-template-columns: 1fr; } }
.landing-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
.landing-hero .lead { font-size: 1.12rem; color: var(--grigio); margin: 16px 0 22px; }
.punti { list-style: none; margin-bottom: 8px; }
.punti li { padding: 8px 0 8px 32px; position: relative; color: var(--grigio); }
.punti li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 9px;
  background: var(--teal);
  transform: skewX(-25deg);
  border-radius: 2px;
}
.disclaimer { font-size: .85rem; color: var(--grigio-medio); margin-top: 18px; max-width: 40em; }

/* ---------------- footer ---------------- */
.footer { background: var(--grigio); color: #C9CED4; padding: 46px 0 26px; font-size: .92rem; }
.footer a { color: #E3E6EA; }
.footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; }
@media (max-width: 760px) { .footer .wrap { grid-template-columns: 1fr; } }
.footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer__logo { height: 40px; width: auto; background: #fff; border-radius: 6px; padding: 4px 8px; margin-bottom: 14px; }
.footer__legal { border-top: 1px solid #5A6069; margin-top: 34px; padding-top: 18px; font-size: .85rem; color: #9AA0A8; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }

/* ---------------- pagina grazie ---------------- */
.grazie { text-align: center; padding: 90px 0; }
.grazie__badge {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--grad-scudo);
  position: relative;
}
.grazie__badge::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 44px;
  background: #fff;
  transform: translate(-50%,-50%) skewX(-25deg);
  border-radius: 3px;
}
.grazie p { max-width: 36em; margin: 14px auto 0; color: var(--grigio); }

/* ---------------- admin ---------------- */
.admin-body { background: var(--fondo); min-height: 100vh; }
.admin-top { background: var(--grigio); color: #fff; }
.admin-top .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 60px; }
.admin-top a { color: #fff; text-decoration: none; font-family: 'Barlow Condensed', Arial, sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-left: 18px; }
.admin-top a:hover { color: #F5A46B; }
.admin-main { padding: 34px 0 60px; }
.tabellawrap { overflow-x: auto; background: #fff; border-radius: var(--raggio); box-shadow: var(--ombra); }
table.leads { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.leads th {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  text-align: left;
  background: var(--fondo);
  color: var(--grigio);
  padding: 12px 14px;
  border-bottom: 2px solid var(--linea);
  white-space: nowrap;
}
table.leads td { padding: 11px 14px; border-bottom: 1px solid var(--linea); vertical-align: top; }
table.leads tr:hover td { background: #FBF6F2; }
.badge {
  display: inline-block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.badge--nuovo { background: #FDEBDD; color: #9A3D12; }
.badge--contattato { background: #E4F1FA; color: #1D5B8C; }
.badge--appuntamento { background: #E9F8F0; color: #166B41; }
.badge--pratica { background: #EFEAFB; color: #4C348F; }
.badge--chiuso_ok { background: #DFF5E7; color: #14532D; }
.badge--chiuso_ko { background: #F2F3F5; color: #5A6069; }
.filtri { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; align-items: flex-end; }
.filtri .campo { min-width: 170px; }
.logincard { max-width: 400px; margin: 90px auto; }
.statgriglia { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 26px; }
.stat { background: #fff; border-radius: var(--raggio); box-shadow: var(--ombra); padding: 18px 20px; }
.stat b { display: block; font-family: 'Barlow Condensed', Arial, sans-serif; font-size: 2rem; color: var(--arancio-scuro); line-height: 1.1; }
.stat span { font-size: .85rem; color: var(--grigio-medio); text-transform: uppercase; letter-spacing: .05em; }

/* ---------------- CMP / banner cookie ---------------- */
.cmp {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cmp__card {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  background: var(--carta);
  border: 1px solid var(--linea);
  border-radius: var(--raggio);
  box-shadow: 0 16px 44px rgba(35, 40, 47, .22);
  max-width: 680px;
  width: 100%;
  padding: 22px 24px 20px 30px;
}
.cmp__banda {
  position: absolute;
  left: -6px; top: -10%;
  width: 12px; height: 120%;
  background: var(--grad-scudo);
  transform: skewX(-8deg);
}
.cmp__titolo {
  font-size: 1.2rem;
  color: var(--inchiostro);
  margin-bottom: 6px;
}
.cmp__testo { font-size: .93rem; color: var(--grigio); margin-bottom: 14px; }
.cmp__testo a { color: var(--teal-scuro); }
.cmp__scelte { margin-bottom: 14px; border-top: 1px dashed var(--linea); padding-top: 12px; }
.cmp__voce {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--grigio);
  padding: 6px 0;
  cursor: pointer;
}
.cmp__voce input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.cmp__azioni { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cmp__azioni .btn { padding: 10px 22px; font-size: 1rem; }
.cmp__link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: .92rem;
  color: var(--grigio-medio);
  text-decoration: underline;
  padding: 6px 4px;
}
.cmp__link:hover { color: var(--arancio-scuro); }
@media (max-width: 560px) {
  .cmp { padding: 10px; }
  .cmp__azioni .btn { flex: 1 1 100%; text-align: center; }
}

/* ---------------- funnel prenotazione a slot ---------------- */
.booking__passi {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.booking__passo {
  flex: 1;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--grigio-medio);
  background: var(--fondo);
  padding: 8px 6px;
  text-align: center;
  transform: skewX(-12deg);
  border-radius: 4px;
}
.booking__passo--attivo { background: var(--grad-scudo); color: #fff; }
.booking__nota { font-size: .86rem; color: var(--grigio-medio); margin-top: 12px; }
.booking__pillole { display: flex; gap: 10px; flex-wrap: wrap; }
.pillola { cursor: pointer; }
.pillola input { position: absolute; opacity: 0; }
.pillola span {
  display: inline-block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--grigio);
  border: 2px solid var(--linea);
  border-radius: 6px;
  padding: 9px 20px;
}
.pillola input:checked + span {
  border-color: var(--arancio);
  color: var(--arancio-scuro);
  background: #FDF0E7;
}
.pillola input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }

.calendario { background: var(--fondo); border-radius: var(--raggio); padding: 16px; }
.calendario__testa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.calendario__testa strong {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--grigio);
}
.calendario__nav {
  background: #fff;
  border: 1px solid var(--linea);
  border-radius: 6px;
  width: 36px; height: 36px;
  font-size: 1.3rem;
  color: var(--grigio);
  cursor: pointer;
}
.calendario__nav:disabled { opacity: .35; cursor: default; }
.calendario__griglia {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendario__griglia--intestazioni {
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--grigio-medio);
  text-align: center;
}
.calendario__cella {
  aspect-ratio: 1;
  min-height: 34px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.calendario__cella--vuota { visibility: hidden; }
.calendario__cella--piena { color: #B6BCC4; }
.calendario__cella--libera {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal-scuro);
  font-weight: 600;
  cursor: pointer;
}
.calendario__cella--libera:hover { background: #E6F5F4; }
.calendario__cella--scelta {
  background: var(--grad-scudo) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.booking__slots { margin-top: 16px; }
.booking__slots-titolo {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .95rem;
  color: var(--grigio);
  margin-bottom: 10px;
}
.booking__slots-lista { display: flex; flex-wrap: wrap; gap: 8px; }
.slotchip {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--teal-scuro);
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
}
.slotchip:hover { background: #E6F5F4; }
.slotchip--scelto { background: var(--grad-scudo); border-color: transparent; color: #fff; }
.booking__azioni { display: flex; gap: 12px; margin-top: 18px; }
.booking__azioni .btn { flex: 1; }
.booking__riepilogo {
  background: #FDF0E7;
  border: 1px solid #F5C09A;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .98rem;
  color: var(--inchiostro);
  margin-bottom: 16px;
}
.booking__riepilogo span { color: var(--grigio); font-size: .9rem; }

/* ---------------- claim evidenziato ---------------- */
.claimbox {
  position: relative;
  background: #FDF0E7;
  border: 1px solid #F5C09A;
  border-radius: 8px;
  padding: 14px 18px 14px 26px;
  font-size: .97rem;
  color: var(--inchiostro);
  margin: 0 0 18px;
  overflow: hidden;
}
.claimbox::before {
  content: "";
  position: absolute;
  left: -4px; top: -10%;
  width: 10px; height: 120%;
  background: var(--grad-scudo);
  transform: skewX(-8deg);
}
.claimbox strong { color: var(--arancio-scuro); }

/* ---------------- guide / articoli SEO ---------------- */
.articolo { max-width: 800px; }
.articolo .briciole {
  font-size: .85rem;
  color: var(--grigio-medio);
  margin-bottom: 14px;
}
.articolo .briciole a { color: var(--grigio-medio); }
.articolo h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 8px; }
.articolo .metariga {
  font-size: .85rem;
  color: var(--grigio-medio);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linea);
}
.articolo h2 {
  font-size: 1.5rem;
  margin: 34px 0 12px;
}
.articolo h3 { margin: 24px 0 8px; color: var(--inchiostro); }
.articolo p { margin-bottom: 14px; color: #33383F; }
.articolo ul, .articolo ol { margin: 0 0 16px 22px; color: #33383F; }
.articolo li { margin-bottom: 8px; }
.articolo table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: .95rem; }
.articolo th {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: left;
  background: var(--fondo);
  padding: 10px 12px;
  border: 1px solid var(--linea);
}
.articolo td { padding: 10px 12px; border: 1px solid var(--linea); vertical-align: top; }
.guida-cta {
  position: relative;
  overflow: hidden;
  background: var(--grigio);
  color: #E3E6EA;
  border-radius: var(--raggio);
  padding: 30px 32px;
  margin: 40px 0 10px;
}
.guida-cta__banda {
  position: absolute;
  top: -20%; right: -8%;
  width: 30%; height: 140%;
  background: var(--grad-scudo);
  transform: skewX(-14deg);
  opacity: .85;
}
.guida-cta h3, .guida-cta p, .guida-cta a { position: relative; }
.guida-cta h3 { color: #fff; margin-bottom: 8px; }
.guida-cta p { font-size: .95rem; margin-bottom: 16px; max-width: 34em; }
.guida-cta__nota { font-size: .8rem !important; color: #AEB4BC; margin-top: 12px; }
.guide-griglia { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.guide-griglia .scheda h3 { font-size: 1.15rem; }
.correlate { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--linea); }
.correlate h3 { margin-bottom: 10px; }
.correlate ul { list-style: none; margin: 0; }
.correlate li { padding: 6px 0 6px 26px; position: relative; }
.correlate li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 8px;
  background: var(--arancio);
  transform: skewX(-25deg);
  border-radius: 2px;
}
