/* ==========================================================================
   Martini Autodemolizioni — foglio di stile unico (v2)
   Registro: servizio su strada. Antracite blu + giallo segnale,
   tipografia condensata Big Shoulders Display + Mulish.
   Mobile-first: media query in min-width (640 / 900 / 1080px).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Token
   -------------------------------------------------------------------------- */
:root {
  /* Scuri: navy #0a2154 */
  --night:   oklch(0.27 0.09 263.02);
  --night-2: oklch(0.25 0.1 264.42);
  --night-3: oklch(0.43 0.115 265);

  /* Chiari: carta tinta verso il giallo del marchio */
  --paper:   oklch(0.975 0.006 95);
  --paper-2: oklch(0.945 0.009 95);
  --white:   oklch(0.995 0.002 95);

  /* Testo */
  --ink:      oklch(0.30 0.10 266);
  --ink-2:    oklch(0.42 0.055 266);
  --ink-soft: oklch(0.53 0.04 266);
  --line:     oklch(0.90 0.008 95);
  --line-2:   oklch(0.83 0.012 95);

  /* Accento: giallo segnale */
  --signal:      oklch(0.855 0.165 92);
  --signal-warm: oklch(0.80 0.16 80);
  --signal-ink:  oklch(0.50 0.115 72);   /* giallo leggibile su carta */

  /* Tipografia */
  --display: "Big Shoulders Display", "Oswald", "Arial Narrow", sans-serif;
  --text: "Mulish", "Helvetica Neue", Helvetica, sans-serif;

  /* Spazio: scala 4pt */
  --space-2xs: 4px;  --space-xs: 8px;   --space-sm: 12px;
  --space-md: 16px;  --space-lg: 24px;  --space-xl: 32px;
  --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 96px;

  --container: 1220px;
  --radius: 2px;
  --ease: cubic-bezier(0.17, 0.84, 0.44, 1);
  --t-fast: 140ms var(--ease);
  --t-base: 300ms var(--ease);
}

/* --------------------------------------------------------------------------
   2. Reset e basi
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--signal-ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--ink); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  margin: 0 0 var(--space-md);
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
h3 { font-weight: 700; line-height: 1.05; }

/* Scala ampia: il condensato regge misure grandi */
h1 { font-size: clamp(2.5rem, 6.6vw, 4.7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }

p { margin: 0 0 var(--space-md); max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.62; color: var(--ink-2); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: var(--space-md); top: var(--space-md); z-index: 300;
  padding: var(--space-sm) var(--space-lg);
  background: var(--signal); color: var(--ink);
}
:focus-visible { outline: 3px solid var(--signal-warm); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   3. Struttura
   -------------------------------------------------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--space-lg);
}
@media (min-width: 900px) { .container { padding-inline: var(--space-xl); } }

.section { padding-block: clamp(var(--space-3xl), 8.5vw, 7rem); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--night { background: var(--night); color: oklch(0.88 0.03 266); }
.section--night h2, .section--night h3 { color: var(--white); }

/* Marcatore: nastro diagonale giallo, richiamo al carro attrezzi */
.stripe {
  display: block; width: 76px; height: 7px; margin-bottom: var(--space-md);
  background: repeating-linear-gradient(115deg,
    var(--signal) 0 8px, oklch(0.275 0.115 265) 8px 15px);
}
.stripe--light {
  background: repeating-linear-gradient(115deg,
    var(--signal) 0 8px, oklch(0.995 0.002 95) 8px 15px);
}

.eyebrow {
  display: block; margin-bottom: var(--space-sm);
  font-family: var(--text); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--signal-ink);
}
.eyebrow--light { color: var(--signal); }

.head { max-width: 42ch; margin-bottom: var(--space-2xl); }
.head .lead { max-width: 58ch; }
.head--wide { max-width: 54ch; }

/* --------------------------------------------------------------------------
   4. Pulsanti
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  min-height: 54px; padding: var(--space-sm) var(--space-xl);
  border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--text); font-size: 0.98rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer;
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), transform var(--t-fast);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); color: var(--signal); }

.btn--dark { background: var(--night); color: var(--white); border-color: var(--night); }
.btn--dark:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }

.btn--outline-light { background: transparent; color: var(--white); border-color: oklch(1 0 0 / 0.45); }
.btn--outline-light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-xl); }
.btn-row--tight { margin-top: var(--space-lg); }

/* --------------------------------------------------------------------------
   5. Striscia di servizio in cima (avviso + recapiti)
   -------------------------------------------------------------------------- */
.utility { background: var(--night); color: oklch(0.9 0.025 266); font-size: 0.82rem; }
.utility__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: var(--space-xs) var(--space-lg);
  padding-block: var(--space-sm); align-items: center;
}
.utility p { margin: 0; max-width: none; line-height: 1.5; color: var(--signal); font-weight: 700; }
.utility p strong { color: var(--white); }
.utility__facts { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-lg); }
.utility__facts span { white-space: nowrap; color: oklch(0.9 0.025 266); }
.utility__facts a { color: var(--white); font-weight: 700; }
.utility__facts a:hover { color: var(--signal); }

/* --------------------------------------------------------------------------
   6. Navigazione fissa
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.995 0.002 95 / 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); min-height: 74px; }
@media (min-width: 900px) { .nav { min-height: 88px; } }

.brand { display: flex; align-items: center; gap: var(--space-sm); }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  background: var(--night); color: var(--signal);
  font-family: var(--display); font-size: 1.5rem; font-weight: 800; line-height: 1;
  border-radius: var(--radius);
}
.brand__lines { display: grid; gap: 1px; }
.brand__name {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  line-height: 0.9; text-transform: uppercase; color: var(--ink);
}
.brand__kicker {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--ink-soft);
}
.brand:hover .brand__name { color: var(--signal-ink); }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: grid; align-content: center; gap: 5px;
  width: 50px; height: 50px; padding-inline: 11px;
  background: var(--night); border-radius: var(--radius); cursor: pointer;
}
.nav-burger span { height: 2px; background: var(--signal); transition: transform var(--t-base), opacity var(--t-fast); }

.nav-menu {
  display: none; position: absolute; inset-inline: 0; top: 100%;
  flex-direction: column; padding: var(--space-sm) var(--space-lg) var(--space-lg);
  background: var(--white); border-bottom: 3px solid var(--signal);
}
.nav-toggle:checked ~ .nav-menu { display: flex; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu a {
  padding-block: var(--space-sm);
  font-family: var(--display); font-size: 1.22rem; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--signal-ink); }
.nav-menu .btn { margin-top: var(--space-md); border-bottom: 0; font-family: var(--text); font-size: 0.95rem; }

@media (min-width: 900px) {
  .nav-burger { display: none; }
  .nav-menu {
    display: flex !important; position: static; flex-direction: row; align-items: center;
    gap: var(--space-xl); padding: 0; background: none; border: 0;
  }
  .nav-menu a { position: relative; padding-block: var(--space-2xs); border-bottom: 0; font-size: 1.18rem; }
  .nav-menu a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 3px; background: var(--signal);
    transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
  }
  .nav-menu a:not(.btn):hover::after, .nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-menu .btn { margin-top: 0; margin-left: var(--space-xs); min-height: 48px; }
}

/* Avviso categoria: solo autoveicoli */
.notice { background: var(--night); border-bottom: 3px solid var(--signal); }
.notice__inner { display: grid; gap: var(--space-sm); padding-block: var(--space-md); }
@media (min-width: 900px) {
  .notice__inner { grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: center; }
}
.notice__tag {
  justify-self: start;
  padding: var(--space-2xs) var(--space-md);
  background: var(--signal); color: var(--ink);
  font-family: var(--display); font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.2; border-radius: var(--radius);
}
.notice p {
  margin: 0; max-width: none;
  font-size: 1rem; font-weight: 700; line-height: 1.5; color: var(--white);
}

/* Avviso truffe: fascia sotto l'hero */
.warn-band { background: oklch(0.965 0.055 95); border-block: 2px solid var(--signal); }
.warn-band__inner { display: grid; gap: var(--space-sm); padding-block: var(--space-lg); }
@media (min-width: 900px) {
  .warn-band__inner { grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: center; }
}
.warn-band .stripe { margin-bottom: 0; }
.warn-band p {
  margin: 0; max-width: none;
  font-size: 0.92rem; font-weight: 700; line-height: 1.55;
  color: oklch(0.34 0.075 72);
}
.warn-band strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   7. Hero fotografico a pieno schermo
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--night); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      oklch(0.275 0.115 265 / 0.96) 0%,
      oklch(0.275 0.115 265 / 0.9) 32%,
      oklch(0.275 0.115 265 / 0.58) 62%,
      oklch(0.275 0.115 265 / 0.24) 100%),
    linear-gradient(to top, oklch(0.275 0.115 265 / 0.55) 0%, transparent 55%);
}
.hero__inner {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 84svh;
  padding-block: clamp(var(--space-3xl), 12vw, 7.5rem) clamp(var(--space-2xl), 6vw, 4.5rem);
}
.hero h1 { color: var(--white); max-width: 19ch; margin-bottom: var(--space-lg); }
.hero__lead { color: oklch(0.93 0.025 266); max-width: 50ch; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }

/* Striscia caratteristiche a cavallo dell'hero */
.hero-strip { background: var(--night-2); border-top: 3px solid var(--signal); }
.hero-strip__inner { display: grid; }
@media (min-width: 900px) { .hero-strip__inner { grid-template-columns: repeat(3, 1fr); } }
.hero-strip__item {
  display: grid; gap: var(--space-2xs);
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--night-3);
}
@media (min-width: 900px) {
  .hero-strip__item { padding: var(--space-xl) var(--space-lg) var(--space-xl) 0; border-bottom: 0; }
  .hero-strip__item + .hero-strip__item { padding-left: var(--space-xl); border-left: 1px solid var(--night-3); }
}
.hero-strip__item dt {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  text-transform: uppercase; color: var(--signal); line-height: 1;
}
.hero-strip__item dd { margin: 0; font-size: 0.97rem; color: oklch(0.89 0.03 266); }

/* Hero compatto per le pagine interne */
.page-hero { position: relative; background: var(--night); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right,
    oklch(0.275 0.115 265 / 0.96) 0%,
    oklch(0.275 0.115 265 / 0.88) 35%,
    oklch(0.275 0.115 265 / 0.55) 68%,
    oklch(0.275 0.115 265 / 0.28) 100%);
}
.page-hero__inner { position: relative; padding-block: clamp(var(--space-3xl), 10vw, 7rem); }
.page-hero h1 { color: var(--white); max-width: 23ch; }
.page-hero .lead { color: oklch(0.93 0.025 266); max-width: 56ch; }

/* --------------------------------------------------------------------------
   8. Servizi: blocchi numerati, non schede
   -------------------------------------------------------------------------- */
.svcs { display: grid; gap: 0; }
@media (min-width: 640px) { .svcs { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-2xl); } }
@media (min-width: 1080px) { .svcs { grid-template-columns: repeat(3, 1fr); } }

.svc {
  display: grid; gap: var(--space-xs);
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 2px solid var(--line-2);
  transition: border-color var(--t-base);
}
.svc:hover { border-color: var(--signal); }
.svc__icon {
  display: block; color: var(--signal-ink);
  transition: color var(--t-base), transform var(--t-base);
}
.svc__icon svg { width: 34px; height: 34px; display: block; }
.svc:hover .svc__icon { color: var(--ink); transform: translateY(-2px); }
.svc p { font-size: 1rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   9. Tre passi
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--space-xl); counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-2xl); } }
.step { display: grid; gap: var(--space-xs); }
.step__num {
  display: grid; place-items: center;
  width: 58px; height: 58px; margin-bottom: var(--space-sm);
  background: var(--signal); color: var(--ink);
  font-family: var(--display); font-size: 1.9rem; font-weight: 800; line-height: 1;
  border-radius: var(--radius);
}
.section--night .step p { color: oklch(0.88 0.03 266); }

/* --------------------------------------------------------------------------
   10. Testo + foto
   -------------------------------------------------------------------------- */
.duo, .pair { display: grid; gap: var(--space-2xl); align-items: stretch; }
@media (min-width: 1080px) {
  .duo { grid-template-columns: 0.94fr 1.06fr; gap: clamp(var(--space-2xl), 5vw, 5rem); }
  .pair { grid-template-columns: 1.04fr 0.96fr; gap: clamp(var(--space-2xl), 5vw, 5rem); }
  .duo--flip > .duo__media { order: -1; }
  .duo--start { align-items: start; }
}
/* la colonna immagine si allunga fino all'altezza del testo accanto */
.duo__media, .pair__media { display: grid; grid-template-rows: 1fr auto; gap: var(--space-sm); margin: 0; }
.pair .head { margin-bottom: 0; }
.pair + .svcs, .pair + .steps { margin-top: var(--space-2xl); }
.duo figcaption, .pair figcaption { font-size: 0.85rem; color: var(--ink-soft); }
.section--night figcaption { color: oklch(0.85 0.03 266); }

/* Riquadro foto con cornice a nastro negli angoli */
.shot {
  position: relative; overflow: hidden;
  height: 100%; min-height: 260px;
  background: var(--night); border-radius: var(--radius);
}
@media (min-width: 1080px) { .shot { min-height: 340px; } }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, var(--signal) 0 8px, transparent 8px 15px) no-repeat left top / 104px 9px,
    repeating-linear-gradient(115deg, var(--signal) 0 8px, transparent 8px 15px) no-repeat left top / 9px 104px,
    repeating-linear-gradient(115deg, var(--signal) 0 8px, transparent 8px 15px) no-repeat right bottom / 104px 9px,
    repeating-linear-gradient(115deg, var(--signal) 0 8px, transparent 8px 15px) no-repeat right bottom / 9px 104px;
}

/* Coppia di foto verticali, affiancate e della stessa altezza */
.stack { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); align-items: stretch; }
.stack figure { margin: 0; display: grid; }
.stack .shot { aspect-ratio: 3 / 4; height: 100%; min-height: 0; }

/* Fascia fotografica con citazione */
.band { position: relative; background: var(--night); overflow: hidden; }
.band img { width: 100%; height: clamp(320px, 46vw, 560px); object-fit: cover; opacity: 0.38; }
.band__quote { position: absolute; inset: 0; display: flex; align-items: center; }
.band__quote blockquote {
  margin: 0; max-width: 24ch;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 0.96; color: var(--white);
}
.band__quote cite {
  display: block; margin-top: var(--space-md);
  font-family: var(--text); font-style: normal; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal);
}

/* --------------------------------------------------------------------------
   11. Numeri chiave su fondo giallo
   -------------------------------------------------------------------------- */
.figures { background: var(--signal); color: var(--ink); }
.figures__inner { display: grid; gap: var(--space-xl); padding-block: clamp(var(--space-2xl), 5vw, 4rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .figures__inner { grid-template-columns: repeat(4, 1fr); gap: var(--space-2xl); } }
.figures dt {
  font-family: var(--display); font-weight: 800; line-height: 0.9;
  font-size: clamp(2.8rem, 6vw, 4.4rem); color: var(--ink);
}
.figures dd {
  margin: var(--space-xs) 0 0; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.38 0.08 72);
}

/* --------------------------------------------------------------------------
   12. Marchi, documenti, blocchi apribili
   -------------------------------------------------------------------------- */
/* Banda dei marchi a scorrimento, a piena larghezza */
.marquee {
  overflow: hidden; background: var(--night);
  border-block: 2px solid var(--signal);
  padding-block: var(--space-lg);
}
.marquee__track { display: flex; width: max-content; animation: slide 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__row { display: flex; align-items: center; gap: var(--space-lg); padding-right: var(--space-lg); }
.marquee__row li {
  display: flex; align-items: center; gap: var(--space-lg);
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1;
  color: oklch(0.93 0.025 266); white-space: nowrap;
}
.marquee__row li::after {
  content: ""; width: 30px; height: 8px; flex: none;
  background: repeating-linear-gradient(115deg, var(--signal) 0 7px, transparent 7px 13px);
}
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}

.docs { display: grid; gap: var(--space-sm); margin-top: var(--space-lg); }
.docs li {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-sm);
  padding-bottom: var(--space-sm); border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.docs li::before { content: "▸"; color: var(--signal-ink); font-weight: 700; }

.accordion { margin-top: var(--space-lg); border-top: 2px solid var(--line-2); }
.accordion > summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding-block: var(--space-md); cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
}
.accordion > summary::-webkit-details-marker { display: none; }
.accordion > summary:hover { color: var(--signal-ink); }
.accordion > summary::after {
  content: "+"; font-family: var(--text); font-size: 1.6rem; font-weight: 400;
  color: var(--signal-ink); transition: transform var(--t-base);
}
.accordion[open] > summary::after { transform: rotate(45deg); }
.accordion__body { padding-bottom: var(--space-lg); }

/* --------------------------------------------------------------------------
   13. Recensioni
   -------------------------------------------------------------------------- */
.reviews { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: var(--space-2xl); } }
.review { padding-top: var(--space-md); border-top: 2px solid var(--line-2); }
.review blockquote { margin: 0 0 var(--space-md); font-size: 1.05rem; color: var(--ink-2); }
.review figcaption { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.editor-note {
  margin-top: var(--space-xl); padding: var(--space-md) var(--space-lg);
  border: 1px dashed var(--line-2); border-radius: var(--radius);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem; line-height: 1.6; color: var(--ink-soft); background: var(--white);
}

/* --------------------------------------------------------------------------
   14. Chiusura: chiamata in evidenza
   -------------------------------------------------------------------------- */
.cta { background: var(--signal); color: var(--ink); }
.cta__inner {
  display: grid; gap: var(--space-xl); align-items: center;
  padding-block: clamp(var(--space-3xl), 7vw, 5rem);
}
@media (min-width: 900px) { .cta__inner { grid-template-columns: 1fr auto; gap: var(--space-4xl); } }
.cta h2 { color: var(--ink); margin-bottom: var(--space-xs); max-width: 26ch; }
.cta p { color: oklch(0.36 0.075 72); font-weight: 700; margin: 0; }
.cta .btn-row { margin-top: 0; }
.cta__phone {
  display: block;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 0.95; color: var(--ink);
}
.cta__phone:hover { color: var(--night-2); }

/* --------------------------------------------------------------------------
   15. Modulo di contatto
   -------------------------------------------------------------------------- */
.contact { display: grid; gap: var(--space-3xl); }
@media (min-width: 1080px) { .contact { grid-template-columns: 1.12fr 0.88fr; gap: var(--space-4xl); align-items: start; } }

.form {
  display: grid; gap: var(--space-lg);
  padding: var(--space-lg); background: var(--white);
  border: 1px solid var(--line-2); border-top: 4px solid var(--signal);
  border-radius: var(--radius);
}
@media (min-width: 640px) {
  .form { padding: var(--space-xl); grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-lg); }
  .form .field--full, .form .field--consent, .form .form__actions, .form .form__note { grid-column: 1 / -1; }
}
.field { display: grid; gap: var(--space-xs); margin: 0; }
.field label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.field input, .field textarea {
  width: 100%; min-height: 54px; padding: var(--space-sm) var(--space-md);
  font-family: var(--text); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 152px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--ink-soft); }
.field input:focus, .field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--signal-warm); box-shadow: 0 0 0 3px oklch(0.855 0.165 92 / 0.4);
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.66 0.015 258); }

.field--consent { display: flex; align-items: flex-start; gap: var(--space-sm); }
.field--consent input { flex: none; width: 22px; height: 22px; min-height: 22px; margin-top: 3px; accent-color: var(--signal-ink); }
.field--consent label {
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  line-height: 1.55; color: var(--ink-soft);
}
.field--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.form__actions .btn { width: 100%; }
@media (min-width: 640px) { .form__actions .btn { width: auto; } }

.alert {
  padding: var(--space-md) var(--space-lg); margin-bottom: var(--space-xl);
  border: 1px solid; border-radius: var(--radius); font-size: 1rem; max-width: 68ch;
}
.alert--ok { background: oklch(0.96 0.03 150); border-color: oklch(0.84 0.06 150); color: oklch(0.38 0.08 150); }
.alert--ko { background: oklch(0.96 0.03 27); border-color: oklch(0.85 0.07 27); color: oklch(0.42 0.13 27); }

/* Recapiti su pannello scuro */
.info { display: grid; gap: var(--space-lg); padding: var(--space-xl); background: var(--night); border-radius: var(--radius); }
.info__item { padding-top: var(--space-md); border-top: 1px solid var(--night-3); }
.info__item:first-child { padding-top: 0; border-top: 0; }
.info__item h3 {
  font-family: var(--text); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal);
  margin-bottom: var(--space-xs);
}
.info__item p { font-size: 1.12rem; font-weight: 700; color: var(--white); margin: 0; }
.info__item a { color: var(--white); }
.info__item a:hover { color: var(--signal); }
.hours { display: grid; gap: var(--space-xs); }
.hours div { display: flex; justify-content: space-between; gap: var(--space-md); font-size: 1rem; color: var(--ink); }
.hours span:last-child { color: var(--ink-soft); text-align: right; }
.info .hours div { color: var(--white); font-weight: 700; }
.info .hours span:last-child { color: oklch(0.89 0.03 266); font-weight: 400; }

.map { margin-top: var(--space-md); border-radius: var(--radius); overflow: hidden; }
.map iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(0.3); }

/* --------------------------------------------------------------------------
   16. Piè di pagina
   -------------------------------------------------------------------------- */
.site-footer { background: var(--night); color: oklch(0.88 0.03 266); font-size: 0.98rem; }
.site-footer a { color: oklch(0.94 0.02 266); }
.site-footer a:hover { color: var(--signal); }
.site-footer .brand__name { color: var(--white); }
.site-footer .brand__kicker { color: oklch(0.85 0.03 266); }
.site-footer .brand__mark { background: var(--signal); color: var(--ink); }
.site-footer .hours div { color: oklch(0.96 0.015 266); font-weight: 700; }
.site-footer .hours span:last-child { color: oklch(0.88 0.03 266); font-weight: 400; }

.footer-grid { display: grid; gap: var(--space-2xl); padding-block: clamp(var(--space-3xl), 6vw, 5rem); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-xl); } }

.site-footer h2 {
  font-family: var(--text); color: var(--signal);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.footer-about { margin-top: var(--space-md); max-width: 34ch; color: oklch(0.87 0.03 266); }
.footer-links { display: grid; gap: var(--space-xs); }

.social { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-lg); }
.social a {
  padding: var(--space-2xs) var(--space-md);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--night-3); border-radius: var(--radius);
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.social a:hover { border-color: var(--signal); background: var(--signal); color: var(--ink); }

.footer-warn {
  padding-block: var(--space-md); border-top: 1px solid var(--night-3);
  font-size: 0.82rem; line-height: 1.6; color: var(--signal);
}
.footer-warn p { max-width: none; margin: 0; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-xs) var(--space-lg);
  padding-block: var(--space-lg); border-top: 1px solid var(--night-3);
  font-size: 0.84rem; color: oklch(0.85 0.03 266);
}
.footer-bottom p { margin: 0; max-width: none; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--space-xs) var(--space-lg); }

/* --------------------------------------------------------------------------
   17. Ingresso in scena
   -------------------------------------------------------------------------- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero__inner > * { animation: rise 760ms var(--ease) both; }
.hero__inner > *:nth-child(2) { animation-delay: 70ms; }
.hero__inner > *:nth-child(3) { animation-delay: 140ms; }
.hero__inner > *:nth-child(4) { animation-delay: 210ms; }

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