/* Iron Wolf ADS — Mobile redesign tokens */

/* I font stanno in src/fonts.css e sono serviti dal nostro dominio.
   Qui c'era un @import a fonts.googleapis.com: mandava l'IP di ogni
   visitatore a Google prima del consenso cookie. Il file fonts.css lo
   genera _fetch-fonts.ps1 — non si modifica a mano.
   Va caricato PRIMA di questo, sia in dev che in dist: ci pensa il build. */

:root {
  /* Brand */
  --orange:        #E8521E;
  --orange-50:     #FFF1EC;
  --orange-100:    #FFD9C8;
  --orange-300:    #FF8A63;
  --orange-500:    #E8521E;
  --orange-700:    #9E2F08;
  --green:         #2B3A1C;
  --green-50:      #F0F3EC;
  --green-100:     #D4DEC9;
  --green-400:     #4F7038;
  --green-600:     #2B3A1C;
  --green-700:     #1F2A14;
  --green-800:     #141C0D;
  --bg:            #FAFAF7;
  --surface:       #F0EDE6;
  --text:          #1C1C18;
  --text-muted:    #5A5A50;
  --line:          #E0DDD4;

  /* Dynamic accent — swapped by tweak */
  --accent:        var(--orange);
  --accent-50:     var(--orange-50);
  --accent-100:    var(--orange-100);
  --accent-700:    var(--orange-700);
  --hero-bg:       var(--green);
  --hero-fg:       #FAFAF7;

  /* Type */
  --f-display:     'Barlow Condensed', sans-serif;
  --f-heading:     'Barlow', sans-serif;
  --f-body:        'Inter', sans-serif;
  --f-mono:        'JetBrains Mono', monospace;
}

[data-accent="green"] {
  --accent:      var(--green);
  --accent-50:   var(--green-50);
  --accent-100:  var(--green-100);
  --accent-700:  var(--green-700);
  --hero-bg:     #1C1C18;
  --hero-fg:     #FAFAF7;
}

* { box-sizing: border-box; }

/* Accent per testo piccolo su sfondo CHIARO (contrasto WCAG-safe) */
:root                 { --accent-strong: var(--orange-700); }
[data-accent="green"] { --accent-strong: var(--green-700); }

/* Accent per SUPERFICI che portano testo bianco piccolo (bottoni, banda
   marquee). L'accent pieno con il bianco sopra dà 3.71:1, sotto la soglia
   AA di 4.5:1; scurito all'82% dà 5.24:1. Stesso trattamento già usato dal
   banner CTA, quindi il sito resta cromaticamente coerente. */
:root                 { --accent-btn: color-mix(in srgb, var(--orange) 82%, black); }
[data-accent="green"] { --accent-btn: color-mix(in srgb, var(--green) 82%, black); }

/* Rosso per i messaggi di errore del form. Non è un colore di brand: deve
   distinguersi a colpo d'occhio dall'arancione di conferma, altrimenti
   "inviato" ed "errore" si somigliano troppo per accorgersene di sfuggita.
   Su fondo bianco dà 6.5:1, sopra la soglia AA. Il primo tentativo usava
   --orange-300 e stava a 2.32:1, praticamente illeggibile. */
:root { --error: #B3261E; }

/* Focus da tastiera visibile (prima mancava del tutto) */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.iw-svc-card:focus-visible,
.iw-step:focus-visible { outline-offset: -2px; }

/* Rispetta prefers-reduced-motion.
   NB: è questa regola che ferma la banda marquee sui telefoni con
   "Riduci movimento" attivo (iOS: Impostazioni > Accessibilità >
   Movimento). Non è un bug: è il comportamento voluto, e spiega perché
   la stessa pagina scorre su un telefono e non sull'altro. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* La banda va lasciata FERMA AL PUNTO DI PARTENZA. Con la sola regola
     qui sopra l'animazione finisce all'istante e resta a translateX(-50%),
     cioè congelata a metà scorrimento, spesso su una parola tagliata. */
  .iw-slash-track {
    animation: none !important;
    transform: none !important;
  }
}

.iw-app {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100%;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.iw-app a { color: inherit; text-decoration: none; }

/* ============ Top app bar ============ */
.iw-topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.iw-topbar.dark {
  background: rgba(28,28,24,0.85);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.08);
}
.iw-logo {
  display: flex; align-items: center;
  cursor: pointer;
}
.iw-logo-full-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}


.iw-burger {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  border: none;
  position: relative;
}
.iw-burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.iw-burger span:nth-child(1) { top: 14px; }
.iw-burger span:nth-child(2) { top: 20px; }
.iw-burger span:nth-child(3) { top: 26px; }
.iw-burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.iw-burger.open span:nth-child(2) { opacity: 0; }
.iw-burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============ Slide-in mobile menu ============ */
.iw-menu-overlay {
  position: fixed; inset: 0; z-index: 40;
  pointer-events: none;
  /* visibility:hidden toglie il drawer chiuso dall'ordine di tabulazione e
     dall'albero di accessibilità. Prima restava "visibile" fuori schermo:
     6 comandi invisibili finivano sotto Tab, anche su desktop dove il
     burger è nascosto. Il delay tiene l'animazione di chiusura. */
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}
.iw-menu-overlay.open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.iw-menu-overlay .iw-menu-scrim {
  position: absolute; inset: 0;
  background: rgba(28,28,24,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.iw-menu-overlay.open .iw-menu-scrim { opacity: 1; }
.iw-menu {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 88%;
  background: var(--surface);
  color: var(--text);
  padding: 32px 28px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.iw-menu-overlay.open .iw-menu { transform: translateX(0); }
.iw-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.iw-menu-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(28,28,24,0.10);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
}
.iw-menu-item:hover { color: var(--accent); }
.iw-menu-item.active { color: var(--accent); }
.iw-menu-item .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}
.iw-menu-cta {
  margin-top: 32px;
  padding: 18px 24px;
  /* NB: resta l'accent pieno. Il testo qui NON è bianco: essendo un <a>,
     `.iw-app a { color: inherit }` ha specificità maggiore e fa ereditare
     var(--text). Scuro su accent pieno = 4.60:1 (conforme AA); scurire il
     fondo lo porterebbe a 3.27:1. Il `color:#fff` che c'era prima era una
     dichiarazione morta, sostituita da quella reale qui sotto. */
  background: var(--accent);
  color: var(--text);
  border-radius: 12px;
  font-family: var(--f-heading);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.iw-menu-foot {
  margin-top: auto;
  padding-top: 32px;
  font-size: 11px;
  font-family: var(--f-mono);
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
/* Email e social del drawer: ora sono link veri, restano visivamente
   identici al testo che c'era prima ma diventano toccabili (≥24px). */
.iw-menu-foot-link {
  display: inline-block;
  padding: 6px 0;
  min-height: 24px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(28,28,24,0.18);
}
.iw-menu-foot-link:hover { color: var(--accent-strong); border-bottom-color: var(--accent-strong); }
.iw-menu-foot-social { display: inline-flex; align-items: center; gap: 4px; }

/* ============ Hero ============ */
.iw-hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-fg);
  overflow: hidden;
  padding: 28px 20px 36px;
}
.iw-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 22px;
}
.iw-hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.iw-hero-headline {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}
.iw-hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.iw-hero-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  /* 44ch e non 28: a 28 caratteri su telefono il paragrafo si fermava a
     ~240px dentro una colonna da 320 e sembrava rientrato rispetto a tutti
     gli altri testi del sito, che vanno a piena colonna. A 44ch il limite
     non entra in gioco sui telefoni (la colonna è più stretta) e continua
     a tenere la misura di lettura sui formati intermedi. */
  max-width: 44ch;
  margin-bottom: 28px;
}
.iw-hero-photo {
  position: relative;
  width: 100%;
  /* La foto e' quadrata (1300x1300): dichiararlo qui tiene il posto occupato
     prima che l'immagine arrivi. Senza, il contenitore parte alto 23px e
     scatta a 335 quando la foto atterra, buttando in basso tutto il resto
     mentre la persona sta gia' leggendo. In locale non si vede perche' la
     foto arriva in 46ms; in 4G arriva dopo il JS e il salto c'e' davvero.
     La versione desktop questa riga ce l'aveva gia' (vedi il blocco 880px). */
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
}
.iw-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.iw-hero-photo .iw-ph { border-radius: 16px; height: 100%; }
.iw-hero-photo .iw-photo-corner {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.iw-hero-photo::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 4px;
  background: var(--accent);
}
.iw-hero-photo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 4px; height: 60%;
  background: var(--accent);
}

.iw-hero-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.iw-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.iw-hero-stat .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 6px;
}
.iw-hero-stat .lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Diagonal accent strip */
.iw-slash {
  height: 36px;
  background: var(--accent-btn);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.iw-slash-track {
  display: flex;
  white-space: nowrap;
  gap: 32px;
  animation: iw-marquee 24s linear infinite;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.iw-slash-track span { display: inline-flex; align-items: center; gap: 32px; }
.iw-slash-track .star {
  display: inline-block; width: 10px; height: 10px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes iw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Buttons ============ */
.iw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
  /* Serve da quando .iw-btn si usa anche su un <a> (il "Chiamaci" della Home,
     che e' un link tel:): senza, il browser ci mette la sottolineatura. */
  text-decoration: none;
}
.iw-btn:hover { transform: translateY(-1px); }
.iw-btn:active { transform: translateY(0); }

/* Bottone spento durante l'invio del form: deve essere evidente che sta
   lavorando, altrimenti si clicca una seconda volta pensando sia bloccato. */
.iw-btn:disabled,
.iw-btn:disabled:hover {
  opacity: 0.55;
  cursor: progress;
  transform: none;
}

.iw-btn-primary { background: var(--accent-btn); color: #fff; }
.iw-btn-primary:hover { background: var(--accent-700); }

.iw-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.iw-btn-ghost:hover { background: rgba(255,255,255,0.15); }

.iw-btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}
.iw-btn-outline:hover { background: var(--text); color: #fff; }

.iw-btn-arrow {
  width: 56px;
  padding: 14px 0;
  flex-shrink: 0;
}

.iw-btn-block { width: 100%; }

/* ============ Section ============ */
.iw-section {
  padding: 56px 20px;
  position: relative;
}
.iw-section.surface { background: var(--surface); }
.iw-section.dark { background: var(--green); color: #fff; }

.iw-section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 18px;
}
.iw-section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent-strong);
}

.iw-section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.iw-section-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.iw-section-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.iw-section.dark .iw-section-lead { color: rgba(255,255,255,0.72); }

/* ============ Placeholder image ============ */
.iw-ph {
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface),
      var(--surface) 12px,
      #E5E2DA 12px,
      #E5E2DA 24px
    );
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
}
.iw-ph.has-img { overflow: hidden; }
.iw-ph.has-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.iw-ph.dark {
  background:
    repeating-linear-gradient(
      135deg,
      #2C2A28,
      #2C2A28 12px,
      #353230 12px,
      #353230 24px
    );
  color: rgba(255,255,255,0.7);
}
.iw-ph-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(250,250,247,0.85);
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 80%;
  backdrop-filter: blur(4px);
}
.iw-ph.dark .iw-ph-label {
  background: rgba(28,28,24,0.7);
  color: rgba(255,255,255,0.85);
}

/* ============ Service cards ============ */
.iw-svc-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.iw-svc-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  min-height: 132px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .2s, background-color .3s, color .3s;
}
.iw-svc-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.iw-svc-card:hover { background: var(--green); border-color: var(--green); }
.iw-svc-card:hover::before { transform: scaleX(1); }
.iw-svc-num {
  position: absolute;
  right: 10px; top: -6px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  z-index: -1;
  transition: -webkit-text-stroke-color .3s, color .3s;
}
.iw-svc-card:hover .iw-svc-num { -webkit-text-stroke-color: rgba(255,255,255,0.28); }
.iw-svc-body { align-self: start; }
.iw-svc-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 8px 0;
  transition: color .3s;
}
.iw-svc-body p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 30ch;
  text-align: left;
  hyphens: none;
  transition: color .3s;
}
.iw-svc-card:hover .iw-svc-body h3 { color: #fff; }
.iw-svc-card:hover .iw-svc-body p { color: rgba(255,255,255,0.72); }
.iw-svc-arrow {
  align-self: end;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: background-color .25s, border-color .25s, color .25s, transform .25s;
}
.iw-svc-card:hover .iw-svc-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(3px);
}

/* Featured service card (with image) */
.iw-svc-feat {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.iw-svc-feat .ph { aspect-ratio: 16/10; }
.iw-svc-feat-body {
  padding: 24px 20px 28px;
  position: relative;
}
.iw-svc-feat-tag {
  position: absolute;
  top: -14px; left: 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 6px;
}
.iw-svc-feat h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}
.iw-svc-feat p {
  margin: 0 0 18px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ============ Stats band ============ */
.iw-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.iw-stat {
  background: var(--bg);
  padding: 24px 18px;
  position: relative;
}
.iw-stat .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.iw-stat .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============ Team cards ============ */
.iw-team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.iw-team-card .photo {
  aspect-ratio: 4/5;
  position: relative;
}
.iw-team-card .photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 6px;
  background: var(--accent);
}
.iw-team-card .body { padding: 22px 20px 26px; }
.iw-team-card .role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.iw-team-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}
.iw-team-card .bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.iw-team-creds {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.iw-team-cred {
  font-family: var(--f-mono);
  font-size: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ============ Testimonials ============ */
.iw-testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px 24px;
  position: relative;
}
.iw-testi::before {
  content: '"';
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
}
.iw-testi-quote {
  font-family: var(--f-heading);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 20px 0;
  letter-spacing: -0.005em;
}
.iw-testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.iw-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.iw-testi-name {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.iw-testi-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.iw-testi-rail {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -20px;
  padding: 26px 20px 8px;
  scrollbar-width: none;
}
.iw-testi-rail::-webkit-scrollbar { display: none; }
.iw-testi-rail > .iw-testi {
  min-width: 86%;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ============ Calendar / disponibilità ============ */
.iw-cal {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.iw-cal-head {
  padding: 22px 22px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.iw-cal-head h3 {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.iw-cal-head .month {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}
.iw-cal-slot {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.iw-cal-date {
  text-align: center;
}
.iw-cal-date .d {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
}
.iw-cal-date .m {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.iw-cal-body .lbl {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}
.iw-cal-body .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.iw-cal-pill {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 9px;
  border-radius: 100px;
}
.iw-cal-pill.free {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.iw-cal-pill.full {
  background: rgba(232,82,30,0.18);
  color: var(--accent);
  border: 1px solid rgba(232,82,30,0.4);
}

/* ============ FAQ ============ */
.iw-faq-item {
  border-bottom: 1px solid var(--line);
}
.iw-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--text);
}
.iw-faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--accent-strong);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s, background 0.2s;
}
.iw-faq-item.open .iw-faq-toggle {
  background: var(--accent-btn);
  color: #fff;
  transform: rotate(45deg);
}
.iw-faq-a {
  max-height: 0;
  overflow: hidden;
  /* visibility:hidden toglie la risposta chiusa anche dall'albero di
     accessibilità: prima max-height:0 la ritagliava solo visivamente e gli
     screen reader leggevano comunque tutte le risposte di fila. */
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s, visibility 0s linear 0.3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.iw-faq-item.open .iw-faq-a {
  max-height: 400px;
  padding: 0 0 22px 0;
  visibility: visible;
  transition-delay: 0s;
}

/* ============ Footer ============ */
.iw-footer {
  background: var(--surface);
  color: var(--text);
  padding: 48px 20px 90px;
}
.iw-lockup {
  display: block;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.iw-footer h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px 0;
  font-weight: 500;
}
.iw-footer-nav, .iw-footer-info, .iw-footer-follow {
  margin-bottom: 28px;
}
.iw-footer-nav-list, .iw-footer-info-list {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
/* gap ridotto per compensare il padding aggiunto ai link qui sotto:
   l'altezza complessiva della lista resta praticamente invariata */
.iw-footer-nav-list { gap: 2px; }
.iw-footer-nav-list a {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  /* target ≥24px (WCAG 2.2 SC 2.5.8): prima erano alti 19px */
  display: inline-block;
  padding: 6px 0;
  min-height: 24px;
}
.iw-footer-nav-list a:hover { color: var(--accent); }
.iw-footer-info-list li {
  font-size: 13px;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 8px;
}
.iw-footer-info-list .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 3px;
}
.iw-footer-social {
  display: flex; gap: 10px;
}
.iw-footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(28,28,24,0.04);
  display: grid; place-items: center;
  color: var(--text);
  border: 1px solid rgba(28,28,24,0.10);
}
.iw-footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.iw-footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
}
.iw-footer-policy a, .iw-form-note a {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  cursor: pointer;
}
/* Target dei link policy (WCAG 2.2 SC 2.5.8).
   Quando il badge iubenda NON si carica valgono queste regole: 24px pieni.
   Quando si carica, iubenda riscrive il link con stile proprio (height:25px
   inline + padding suo) e vince: l'altezza resa è ~22px. In quel caso il
   criterio è comunque soddisfatto per ECCEZIONE DI SPAZIATURA, garantita dal
   gap qui sotto: nessun altro target cade entro i 24px dal centro di questi. */
.iw-footer-policy a {
  display: inline-block;
  padding: 5px 0;
  min-height: 24px;
}
.iw-footer-policy { gap: 12px 18px; }
.iw-footer-policy a:hover, .iw-form-note a:hover { color: var(--accent); }
.iw-footer-legal {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-top: 22px;
  border-top: 1px solid rgba(28,28,24,0.08);
  line-height: 1.6;
}
.iw-footer-copy { color: var(--text-muted); }
.iw-footer-copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  text-underline-offset: 2px;
}
.iw-footer-copy a:hover { color: var(--accent); }

/* ============ Risultati gare ============ */
.iw-results-counter {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin: 18px 0 0;
}
.iw-results-filter { margin-bottom: 22px; }
.iw-results-count {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-height: 14px;
}
.iw-results-year {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 30px 0 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--text);
}
.iw-results-year .n {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.iw-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
/* Mobile: data e piazzamento sulla stessa riga, il testo sotto a tutta
   larghezza. Mettere il badge di fianco al titolo lo strozzava a 3 righe. */
.iw-result-date {
  grid-column: 1; grid-row: 1;
  align-self: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.iw-result-main { grid-column: 1 / -1; grid-row: 2; min-width: 0; }
.iw-result-main h3 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 5px 0;
}
.iw-result-binomio {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
}
.iw-result-dog { color: var(--accent-strong); }
.iw-result-breed { font-weight: 400; color: var(--text-muted); }
.iw-result-disc {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.iw-result-meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 3px;
}
.iw-result-badge {
  grid-column: 2; grid-row: 1;
  align-self: center;
  justify-self: end;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 13px;
}
.iw-result-badge.podium {
  background: var(--accent-btn);
  border-color: transparent;
  color: #fff;
}
.iw-results-teaser { margin-bottom: 26px; }
/* nella fascia Home l'ultima riga non ha bisogno del filetto di chiusura */
.iw-results-teaser .iw-result:last-child { border-bottom: none; padding-bottom: 4px; }

@media (min-width: 880px) {
  .iw-results-year { font-size: 38px; margin-top: 40px; }
  .iw-result {
    grid-template-columns: 108px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    padding: 22px 0;
  }
  .iw-result-date  { grid-column: 1; grid-row: 1; }
  .iw-result-main  { grid-column: 2; grid-row: 1; }
  .iw-result-badge { grid-column: 3; grid-row: 1; align-self: center; }
  .iw-result-main h3 { font-size: 19px; }
}

/* ============ Misc ============ */
.iw-hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

.iw-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  background: var(--accent-50);
  color: var(--accent-700);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ Page transitions ============ */
.iw-page {
  animation: iw-fade 0.35s ease;
}
@keyframes iw-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ Forms ============
   Rifatto da capo. Prima: scheda a spigoli vivi (raggio 3px) con etichette in
   maiuscoletto monospazio da 10px e campi grigi. Stonava con il resto del sito,
   che usa raggi morbidi ovunque (bottoni 12, card servizio 14, mappa 16), e le
   etichette erano piu' un fregio grafico che una cosa da leggere.

   Il corpo dei campi e' 16px per un motivo pratico, non estetico: sotto i 16px
   iOS ingrandisce la pagina appena tocchi un campo, e non la rimpicciolisce
   piu' da solo. Con i 15px di prima il form "saltava" a ogni tocco. */
.iw-form {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 18px 20px;
  text-align: left;
  box-shadow:
    0 1px 2px rgba(28, 28, 24, 0.04),
    0 18px 40px -26px rgba(28, 28, 24, 0.35);
}
.iw-form-grid { display: grid; gap: 0; }
.iw-field { margin-bottom: 18px; }
.iw-field-wide { grid-column: 1 / -1; }
.iw-field label,
.iw-field .iw-field-lbl {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 8px;
}
.iw-field .k {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  color: var(--accent-strong);
}
.iw-field em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--text-muted);
}
.iw-field input, .iw-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  padding: 13px 15px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color .18s, background-color .18s, box-shadow .18s;
}
.iw-field input::placeholder, .iw-field textarea::placeholder { color: color-mix(in oklch, var(--text-muted) 90%, transparent); }
/* Stato di errore SOLO dopo interazione utente */
.iw-field input:user-invalid, .iw-field textarea:user-invalid {
  border-color: var(--error);
  background: #FFF6F5;
}
/* L'anello attorno al campo attivo si vede anche con il dito sopra lo schermo,
   il solo cambio di colore del bordo no. */
.iw-field input:focus, .iw-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.iw-field input:user-invalid:focus, .iw-field textarea:user-invalid:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--error) 18%, transparent);
}
.iw-field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }

.iw-chip-set { display: flex; flex-wrap: wrap; gap: 9px; }
.iw-chip {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  padding: 10px 16px 10px 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0;
  color: var(--text);
  transition: background-color .18s, border-color .18s, color .18s;
}
/* Il pallino c'e' sempre, acceso o spento: dice che la voce si puo' scegliere,
   e cambiando stato non sposta di un pixel le voci accanto. Una spunta che
   compare e sparisce farebbe ballare tutta la riga a ogni tocco. */
.iw-chip::before {
  content: '';
  flex: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--text-muted) 50%, transparent);
  transition: border-color .18s, box-shadow .18s, background-color .18s;
}
.iw-chip:hover { border-color: var(--accent); background: var(--accent-50); }
.iw-chip.is-on {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.iw-chip.is-on:hover { background: var(--green-700); border-color: var(--green-700); }
.iw-chip.is-on::before {
  border-color: #fff;
  background: #fff;
  box-shadow: inset 0 0 0 3.5px var(--green);
}
.iw-chip.is-on:hover::before { box-shadow: inset 0 0 0 3.5px var(--green-700); }

.iw-form-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.iw-form-note {
  margin: 0;
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  text-align: left;
}
.iw-form-foot .iw-btn { width: 100%; }

/* Riscontro dopo l'invio. Prima era una riga di testo monospazio da 11px sotto
   al bottone: passava inosservata proprio nel momento in cui conta di piu'. */
.iw-form-live:empty { display: none; }
.iw-form-live { margin-top: 14px; }
.iw-alert {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid;
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.55;
}
.iw-alert svg { flex: none; margin-top: 2px; }
.iw-alert a { color: inherit; }
.iw-alert-err {
  background: #FDF4F3;
  border-color: color-mix(in srgb, var(--error) 32%, transparent);
  color: var(--error);
}

/* Invio riuscito: al posto del form resta questo. Lasciare la scheda compilata
   con una riga verde sotto e' ambiguo, sembra che debba ancora partire. */
.iw-form-done {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--green-400) 35%, transparent);
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(28, 28, 24, 0.04),
    0 18px 40px -26px rgba(28, 28, 24, 0.35);
  animation: iw-fade 0.35s ease;
}
.iw-form-done:focus { outline: none; }
.iw-form-done-ico {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-400);
  display: grid; place-items: center;
}
.iw-form-done h3 {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.iw-form-done p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
/* I numeri sono link tel:, non testo: al pannello si arriva dal telefono e
   "se hai fretta chiamaci" deve partire con un tocco, non copiando a mano. */
.iw-form-done p a {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
}
.iw-form-done p a:hover { border-bottom-color: var(--accent); }
.iw-form-done .iw-btn { width: 100%; }

/* Service detail page */
.iw-svc-hero {
  background: var(--green);
  color: #fff;
  padding: 28px 20px 36px;
  position: relative;
  overflow: hidden;
}
.iw-svc-hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.iw-svc-meta-pill {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.iw-svc-meta-pill .k {
  color: var(--orange-300);
  font-weight: 600;
}

.iw-bullet {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.iw-bullet:first-child { border-top: none; }
.iw-bullet-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.iw-bullet-body strong {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
}
.iw-bullet-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.iw-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 6px 0;
}
.iw-back:hover { color: var(--accent); }

/* CTA banner */
.iw-cta-banner {
  background: color-mix(in srgb, var(--accent) 82%, black);
  color: #fff;
  padding: 44px 24px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.iw-cta-banner h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}
.iw-cta-banner p {
  margin: 0 0 22px 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  max-width: 30ch;
}
.iw-cta-banner .iw-btn {
  background: var(--text);
  color: #fff;
}
.iw-cta-banner .iw-btn:hover { background: #000; }
.iw-cta-banner-deco {
  position: absolute;
  right: -30px; top: -40px;
  width: 180px; height: 180px;
  border: 30px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

/* Contatti */
.iw-contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.iw-contact-row:first-child { border-top: none; }
.iw-contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-50);
  color: var(--accent);
  display: grid; place-items: center;
}
.iw-contact-row .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.iw-contact-row .val {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
}

/* Numeri e indirizzo mail sono link: da telefono si chiama con un tocco invece
   di ricopiare le cifre a mano. La sottolineatura serve a dire che sono
   toccabili — senza, sembrano testo e nessuno ci prova.
   Il padding allarga il bersaglio sotto al dito: 15px di testo fanno una riga
   alta 20px, troppo poco da centrare in movimento. Con text-underline-offset
   la riga resta attaccata al testo e non scende insieme al padding. */
.iw-contact-row .val a,
.iw-footer-info-list a {
  color: inherit;
  display: inline-block;
  padding: 5px 0;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.iw-contact-row .val a:hover,
.iw-footer-info-list a:hover { text-decoration-color: var(--accent); }

/* La mappa e' un'immagine nostra dentro un link, non piu' un iframe di Google.
   Tutto il riquadro e' toccabile: sul telefono e' molto piu' facile centrare
   un rettangolo che una riga di testo sotto la mappa. */
.iw-map {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: linear-gradient(135deg, #E8E4D8 0%, #D4DEC9 100%);
}
.iw-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* La pastiglia dice dove si va a finire: senza, un'immagine di mappa sembra
   una figura e nessuno prova a toccarla. */
.iw-map-cta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--accent-btn);
  color: #fff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px -8px rgba(28, 28, 24, 0.75);
  transition: background-color .18s, transform .12s ease;
}
.iw-map:hover .iw-map-cta { background: var(--accent-700); transform: translateY(-1px); }
.iw-map:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.iw-map::before { display: none;
  content: '';
  position: absolute;
  top: 30%; left: 20%; right: 30%; bottom: 40%;
  background: rgba(255,255,255,0.4);
  transform: rotate(-12deg);
}
.iw-map::after { display: none;
  content: '';
  position: absolute;
  top: 10%; left: 60%; right: 5%; bottom: 60%;
  background: rgba(255,255,255,0.35);
  transform: rotate(8deg);
}
.iw-map-pin {
  position: absolute;
  top: 48%; left: 52%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.iw-map-pin .dot {
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(28,28,24,0.3);
}
.iw-map-pin .pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: iw-pulse 2s ease-out infinite;
}
@keyframes iw-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(3); opacity: 0; }
}
.iw-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,28,24,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,28,24,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.iw-map-road-1, .iw-map-road-2 {
  position: absolute;
  background: rgba(255,255,255,0.7);
}
.iw-map-road-1 {
  top: 50%; left: 0; right: 0; height: 8px;
  transform: rotate(-2deg);
}
.iw-map-road-2 {
  top: 0; left: 60%; bottom: 0; width: 6px;
  transform: rotate(15deg);
}

/* ============================================================
   RESPONSIVE / DESKTOP LAYER
   Same source as mobile. Base styles = phone; layouts widen
   at ≥880px. Editing the mobile site updates desktop too.
   ============================================================ */

/* Stage wrapper (used by DeviceWrap) */
.iw-stage {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  justify-content: center;
}
.iw-scroll {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  background: #FAFAF7;
  box-shadow: 0 0 0 1px rgba(28,28,24,0.06);
  overflow-x: hidden;
}

/* Desktop inline nav — hidden on mobile (burger handles it) */
.iw-topnav { display: none; }

/* Stack helpers — single column on mobile, grid on desktop */
.iw-bigcard-grid  { display: flex; flex-direction: column; gap: 16px; }
.iw-manifesto-grid { display: flex; flex-direction: column; gap: 24px; }
.iw-contact-grid  { display: flex; flex-direction: column; }
.iw-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  justify-items: center;
}
.iw-value-circle {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12% 14%;
  gap: 6px;
}
.iw-value-circle h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.iw-value-circle p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--text-muted);
  text-align: center;
}
.iw-section .iw-value-circle p { text-align: center; }

@media (min-width: 880px) {
  /* ---- Full-bleed stage ---- */
  .iw-stage { background: #FAFAF7; }
  .iw-scroll { max-width: none; box-shadow: none; }

  /* Centered content inside full-bleed colour bands */
  .iw-topbar,
  .iw-hero,
  .iw-section,
  .iw-svc-hero,
  .iw-footer {
    padding-left: max(56px, calc((100% - 1180px) / 2));
    padding-right: max(56px, calc((100% - 1180px) / 2));
  }

  /* ---- Topbar + desktop nav ---- */
  .iw-topbar { padding-top: 16px; padding-bottom: 16px; }
  .iw-burger { display: none; }
  .iw-logo-full-img { height: 60px; }
  .iw-topnav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .iw-topnav a {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    letter-spacing: -0.005em;
    transition: color 0.15s;
    white-space: nowrap;
  }
  .iw-topnav a:hover,
  .iw-topnav a.active { color: var(--accent-strong); }
  .iw-topnav-cta {
    padding: 11px 18px !important;
    font-size: 13px !important;
    margin-left: 6px;
  }

  /* ---- Hero → due colonne: contenuto a sinistra, foto squadra a destra ---- */
  .iw-hero {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    column-gap: 56px;
    align-items: center;
    align-content: start;
    grid-auto-rows: min-content;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .iw-hero > * { grid-column: 1; max-width: 620px; }
  .iw-hero-eyebrow { margin-bottom: 26px; }
  .iw-hero-headline { font-size: 78px; margin-bottom: 28px; }
  .iw-hero-sub { font-size: 18px; max-width: 46ch; margin-bottom: 30px; }
  .iw-hero-photo {
    grid-column: 2;
    grid-row: 1 / span 99;
    align-self: center;
    aspect-ratio: 1 / 1;
    margin: 0;
    max-width: none;
    min-height: 0;
  }
  .iw-hero-photo .iw-ph { height: 100%; }
  .iw-hero-photo img { height: 100%; object-fit: cover; }
  .iw-hero-cta-row {
    grid-template-columns: max-content max-content;
    justify-content: start;
    gap: 12px;
  }
  .iw-hero-stats { grid-column: 1; margin-top: 38px; }
  .iw-hero-stat .num { font-size: 40px; }

  /* ---- Generic sections ---- */
  .iw-section { padding-top: 88px; padding-bottom: 88px; }
  .iw-section > .iw-section-eyebrow,
  .iw-section > .iw-section-lead,
  .iw-section > p { max-width: 68ch; }
  .iw-section > .iw-section-title { max-width: none; }
  .iw-section-title { font-size: 60px; }
  .iw-section-lead { font-size: 18px; }


  /* Home service rows → 2 columns */
  .iw-svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: start;
  }
  /* Se l'ultima card resta orfana su una riga dispari, centrala invece di
     lasciarla a sinistra con il vuoto a destra (stessa regola già applicata
     alla griglia grande dell'indice Servizi, più sotto) */
  .iw-svc-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;                    /* senza questo il grid item fa shrink-to-fit
                                       e resta più stretto delle altre card */
    max-width: calc(50% - 7px);
    margin-inline: auto;
  }

  /* Numbers band → 4 columns */
  .iw-stats { grid-template-columns: repeat(4, 1fr); }
  .iw-stat { padding: 32px 24px; }
  .iw-stat .num { font-size: 52px; }

  /* Service index big cards → 2 columns */
  .iw-bigcard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: start;
  }
  /* Se l'ultima card resta orfana su una riga dispari, centrala invece di lasciarla a sinistra */
  .iw-bigcard-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;                    /* allinea la card orfana alla larghezza
                                       esatta di una colonna (era shrink-to-fit) */
    max-width: calc(50% - 11px);
    margin-inline: auto;
  }

  /* Manifesto → 2 columns */
  .iw-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 44px;
  }

  /* Values → 5 circles in a row */
  .iw-value-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 12px;
  }
  .iw-value-circle { max-width: 240px; }
  .iw-value-circle h4 { font-size: 22px; }
  .iw-value-circle p { font-size: 12.5px; }

  /* Team cards → horizontal */
  .iw-team-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 940px;
    margin-bottom: 24px;
  }
  .iw-team-card .photo { aspect-ratio: auto; height: 100%; min-height: 380px; }
  .iw-team-card .body { padding: 34px 34px 36px; align-self: center; }
  .iw-team-card h3 { font-size: 40px; }

  /* Contact rows → 2 columns */
  .iw-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 44px;
  }

  /* Programme bullets → 2 columns */
  .iw-bullet-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
  }

  /* Map — centrata. Il link "Apri in Google Maps" sta dentro lo stesso
     contenitore, se no resterebbe da solo all'estrema sinistra, a 200px dal
     bordo della mappa a cui si riferisce. */
  .iw-map-wrap { max-width: 820px; margin-left: auto; margin-right: auto; }
  .iw-map { max-width: 820px; aspect-ratio: 16 / 9; }

  /* Contact form */
  .iw-section form { max-width: 580px; margin-left: auto; margin-right: auto; }

  /* CTA banner — contained + centered */
  .iw-cta-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 56px;
  }
  .iw-cta-banner h3 { font-size: 48px; }
  .iw-cta-banner p { font-size: 16px; max-width: 48ch; }

  /* Inner-page heroes */
  .iw-svc-hero { padding-top: 64px; padding-bottom: 56px; }
  .iw-svc-hero h1 { font-size: 76px; }

  /* Service detail hero → testo (largo) + foto (compatta) */
  .iw-svc-hero--detail {
    display: grid;
    grid-template-columns: 1fr 300px;
    column-gap: 56px;
    align-items: start;
    align-content: start;
    grid-auto-rows: min-content;
  }
  .iw-svc-hero--detail > * { grid-column: 1; max-width: 620px; }
  .iw-svc-hero--detail h1 { font-size: 80px; }
  .iw-svc-detail-photo {
    grid-column: 2 !important;
    grid-row: 1 / span 99;
    align-self: start;
    margin-top: 0 !important;
    aspect-ratio: 4 / 5 !important;
    max-width: none;
  }

  /* ---- Footer → tre colonne di servizio + fascia legale ----
     Senza più logo e claim la prima colonna sarebbe rimasta vuota: le tre
     colonne ora sono Navigazione / Contatti / Seguici, e la riga legale
     tiene le policy a sinistra e i dati societari a destra. */
  .iw-footer {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    column-gap: 56px;
    row-gap: 10px;
    padding-top: 64px;
    padding-bottom: 56px;
    align-items: start;
  }
  .iw-footer-nav    { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .iw-footer-info   { grid-column: 2; grid-row: 1; margin-bottom: 0; }
  .iw-footer-follow { grid-column: 3; grid-row: 1; margin-bottom: 0; }
  .iw-footer-legal {
    grid-column: 1 / -1; grid-row: 2;
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px 56px;
  }
  .iw-footer-legal .iw-footer-policy { margin-bottom: 0; }
  .iw-footer-copy { text-align: right; }
}

/* ============ Interactive step path ============ */
.iw-steps { margin-top: 22px; }
/* Mobile: elenco verticale (il rail orizzontale a scroll è solo da desktop, vedi media query) */
.iw-steps-rail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  margin-bottom: 18px;
}
.iw-steps-rail::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: var(--line);
}
.iw-step {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: none;
  padding: 12px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text-muted);
  transition: color .18s ease;
}
.iw-step-dot {
  position: relative;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.iw-step-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: none;
  transition: color .2s ease;
}
.iw-step:hover .iw-step-dot { border-color: var(--accent); color: var(--accent-strong); }
.iw-step:hover .iw-step-label { color: var(--text); }
.iw-step.is-done .iw-step-dot { border-color: var(--accent); color: var(--accent-strong); }
.iw-step.is-active .iw-step-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.iw-step.is-active .iw-step-dot::after {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent);
}
.iw-step.is-active .iw-step-label { color: var(--text); }

.iw-step-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 20px 20px 18px;
  overflow: hidden;
  isolation: isolate;
  animation: iwStepIn .28s ease both;
}
.iw-step-panel::before {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent);
}
@keyframes iwStepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.iw-step-panel-num {
  position: absolute;
  right: 10px; top: -8px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 92px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  z-index: -1;
  pointer-events: none;
}
.iw-step-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 10px;
}
.iw-step-panel h4 {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 26px;
  line-height: 1.05;
  margin: 0 0 8px;
}
.iw-step-panel p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.iw-step-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.iw-step-prog {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
}
.iw-step-prog span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
  transition: width .3s cubic-bezier(.2,.7,.3,1);
}
.iw-step-next {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .2s ease;
}
.iw-step-next-ico {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: background-color .22s, border-color .22s, color .22s, transform .22s;
}
.iw-step-next:hover { color: var(--text); }
.iw-step-next:hover .iw-step-next-ico {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(3px);
}
@media (min-width: 880px) {
  /* Desktop: torna al rail orizzontale a scroll (il mobile usa l'elenco verticale sopra) */
  .iw-steps-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(104px, 1fr);
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
  }
  .iw-steps-rail::-webkit-scrollbar { display: none; }
  .iw-steps-rail::before { display: none; }
  .iw-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 8px 16px;
  }
  .iw-step::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 39px;
    height: 1px;
    background: var(--line);
    transition: background-color .25s ease;
  }
  .iw-step:first-child::before { left: 23px; }
  .iw-step:last-child::before { right: calc(100% - 23px); }
  .iw-step.is-done::before, .iw-step.is-active::before { background: var(--accent); }
  .iw-step-dot { width: 46px; height: 46px; font-size: 12px; }
  .iw-step-label { font-size: 15px; max-width: 16ch; }
  .iw-step-panel { padding: 30px 32px 26px; }
  .iw-step-panel h4 { font-size: 34px; }
  .iw-step-panel-num { font-size: 132px; right: 18px; top: -14px; }
  .iw-step-panel p { font-size: 16px; max-width: 70ch; }
}

/* Body copy on desktop: left-aligned + misura di lettura cappata (no justify) */
@media (min-width: 880px) {
  .iw-section p, .iw-section-lead, .iw-hero-sub, .iw-svc-hero p, .iw-bullet-body p, .iw-cta-banner p { text-align: left; hyphens: none; max-width: 68ch; }
  .iw-value-circle p { text-align: center; }
  .iw-step-panel p { text-align: left; }
}

/* ---- Sezione "split": titolo a sinistra, testo a destra ----
   Serve per le fasce di solo testo (Home > Chi siamo): a colonna singola il
   paragrafo si ferma a 68ch e la metà destra della fascia resta vuota.
   Soglia a 1100px e non a 880: più stretta di così la colonna di destra
   scende sotto i 45 caratteri per riga e si legge peggio del vuoto. */
@media (min-width: 1100px) {
  .iw-section--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    column-gap: 64px;
    align-items: start;
  }
  .iw-section--split .iw-section-split-head .iw-section-title { margin-bottom: 0; }
  /* allinea la prima riga di testo alla base dell'occhiello */
  .iw-section--split > .iw-section-split-body { padding-top: 4px; }
  /* nella colonna stretta il cap a 68ch non serve più: la colonna è già
     più stretta della misura di lettura */
  .iw-section--split .iw-section-split-body p { max-width: none; }
}

/* Wider desktop — cap the reading width of the whole stage a touch */
@media (min-width: 1500px) {
  .iw-topbar,
  .iw-hero,
  .iw-section,
  .iw-svc-hero,
  .iw-footer {
    padding-left: max(56px, calc((100% - 1280px) / 2));
    padding-right: max(56px, calc((100% - 1280px) / 2));
  }
}

/* Card blurbs must never justify (beats the 880px justify block on source order) */
.iw-svc-card .iw-svc-body p, .iw-svc-card .iw-svc-body h3 { text-align: left; hyphens: none; }

@media (min-width: 880px) {
  /* Scheda centrata, testi della sezione no: titolo, occhiello e riga di
     introduzione restano a sinistra come in tutte le altre sezioni. */
  .iw-section form.iw-form { padding: 34px 34px 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .iw-form-grid { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .iw-field textarea { min-height: 132px; }
  .iw-form-note { text-align: left; }
  .iw-form-foot { flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; }
  .iw-form-foot .iw-btn { width: auto; }
  /* Sta al posto del form: stessa larghezza e stessa centratura, se no a invio
     riuscito la pagina "scatta" di lato. */
  .iw-form-done { max-width: 720px; margin-left: auto; margin-right: auto; padding: 42px 34px; }
  .iw-form-done .iw-btn { width: auto; }
}

/* ============ Card servizio ORIZZONTALE (Servizi index) ============
   Foto compatta a sinistra, testo a destra: la foto resta proporzionata
   alla descrizione e non domina la card. */
.iw-svc-big {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 168px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.iw-svc-big:hover { border-color: var(--accent); transform: translateY(-2px); }
.iw-svc-big-media { position: relative; overflow: hidden; }
.iw-svc-big-media .iw-ph { height: 100%; border-radius: 0; }
.iw-svc-big-media img { height: 100%; object-fit: cover; }
.iw-svc-big-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0) 46%);
  pointer-events: none;
}
.iw-svc-big-num {
  position: absolute; bottom: 4px; right: 8px;
  font-family: var(--f-display); font-weight: 800; font-size: 30px; line-height: 1;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.iw-svc-big-body { padding: 15px 18px; align-self: center; min-width: 0; }
.iw-svc-big-cat {
  display: block; font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: 7px;
}
.iw-svc-big-body h3 {
  font-family: var(--f-display); font-weight: 800; font-size: 23px; line-height: 1;
  margin: 0 0 7px 0; text-transform: uppercase; letter-spacing: -0.02em;
}
.iw-svc-big-body p { margin: 0 0 11px 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }
.iw-svc-big-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 10px; color: var(--accent-strong);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Foto dettaglio servizio: piccola, proporzionata alla descrizione (mobile) */
.iw-svc-detail-photo { max-width: 240px; }

@media (min-width: 880px) {
  .iw-svc-big { grid-template-columns: 178px 1fr; min-height: 196px; }
  .iw-svc-big-body { padding: 22px 28px; }
  .iw-svc-big-body h3 { font-size: 29px; }
  .iw-svc-big-body p { font-size: 13.5px; }
  .iw-svc-big-num { font-size: 38px; }
  .iw-svc-detail-photo { max-width: none; } /* riempie la colonna da 300px */
}
