/* ==========================================================================
   AM CAR — Design tokens
   Rosso logo: #C9222E · Nero: #16171A · Carta: #F0F0EE
   Display: Archivo Black · Corpo: Inter · Dati: IBM Plex Mono
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --red: #C9222E;
  --red-dark: #8E141C;
  --red-deep: #7A1017;
  --black: #16171A;
  --ink: #1B1B1D;
  --paper: #F0F0EE;
  --paper-2: #E7E6E1;
  --white: #FFFFFF;
  --grey: #6B6D72;
  --line: #DCDBD5;

  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1180px;
  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
p{ margin: 0; }
button{ font-family: inherit; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible{
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Eyebrow / rule-flanked label (dal flyer AM CAR) ---------- */
.eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after{
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--red);
}
.eyebrow.left{ justify-content: flex-start; }
.eyebrow.left::after{ display: none; }

/* ---------- Header / Logo ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo-img{
  height: 50px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.logo-img.footer{
  height: 58px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.logo .am{
  background: var(--red);
  color: var(--white);
  padding: 4px 8px 4px 10px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  margin-right: -6px;
}
.logo .car{ color: var(--black); }
.logo-sub{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

nav.main-nav ul{
  display: flex;
  gap: 34px;
}
nav.main-nav a{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after{
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after{ transform: scaleX(1); }
nav.main-nav a.active{ color: var(--red); }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.btn-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.btn-phone svg{ width: 16px; height: 16px; fill: var(--red); }

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-dark); }
.btn-dark{ background: var(--black); color: var(--white); }
.btn-dark:hover{ background: #000; }
.btn-outline{ background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover{ background: var(--black); color: var(--white); }
.btn-outline.on-dark{ border-color: var(--white); color: var(--white); }
.btn-outline.on-dark:hover{ background: var(--white); color: var(--black); }
.btn-sm{ padding: 10px 18px; font-size: 12.5px; }

/* ==========================================================================
   HERO — saracinesca (serranda di magazzino) che si apre a rivelare i mezzi
   ========================================================================== */
.hero{
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 28px 0;
  position: relative;
  z-index: 2;
}
.hero .eyebrow{ justify-content: flex-start; color: var(--red); }
.hero .eyebrow::after{ display:none; }
.hero h1{
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 0.98;
  color: var(--white);
  max-width: 900px;
}
.hero h1 em{
  font-style: normal;
  color: var(--red);
}
.hero .lede{
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  color: #C8C9CC;
}
.hero .cta-row{
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* foto fissa del piazzale sotto l'hero */
.hero-photo-static{
  margin-top: 56px;
  height: 380px;
  overflow: hidden;
  border-top: 1px solid #33353A;
}
.hero-photo-static img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ---------- Barra USP nera con badge rossi tondi (dal flyer) ---------- */
.usp-strip{
  background: var(--black);
  color: var(--white);
  border-top: 1px solid #2A2B2F;
}
.usp-strip .wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 20px;
  border-left: 1px solid #2A2B2F;
}
.usp-item:first-child{ border-left: none; padding-left: 0; }
.usp-badge{
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-badge svg{ width: 22px; height: 22px; fill: var(--white); }
.usp-item h4{ font-family: var(--body); font-size: 14px; font-weight: 800; letter-spacing: 0.01em; }
.usp-item p{ font-size: 13px; color: #B7B8BC; margin-top: 3px; }

/* ---------- Contact strip (info bar scura, come nel flyer) ---------- */
.contact-strip{
  background: #101114;
  color: #D6D7DA;
  font-family: var(--mono);
  font-size: 12.5px;
}
.contact-strip .wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.contact-strip a, .contact-strip span.ci{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px 12px 0;
  margin-right: 22px;
  border-right: 1px solid #2A2B2F;
}
.contact-strip a:last-child, .contact-strip span.ci:last-child{ border-right: none; }
.contact-strip svg{ width: 14px; height: 14px; fill: var(--red); flex: none; }

/* ---------- Sezioni generiche ---------- */
section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); line-height: 1.05; }
.section-head p{ margin-top: 16px; color: var(--grey); font-size: 16px; }
.bg-paper{ background: var(--paper); }
.bg-black{ background: var(--black); color: var(--white); }
.bg-black .grey{ color: #B7B8BC; }

/* ---------- Categorie flotta (piccolo -> grande, come nel lineup del flyer) ---------- */
.fleet-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--line);
}
.fleet-card{
  background: var(--white);
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fleet-card .tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: auto;
}
.fleet-card .fig{
  align-self: center;
  margin: 10px 0 20px;
  transition: transform .35s ease;
}
.fleet-card:hover .fig{ transform: translateY(-6px); }
.fleet-card h3{ font-family: var(--body); font-weight: 800; font-size: 17px; }
.fleet-card p.dim{ font-family: var(--mono); font-size: 12px; color: var(--grey); margin-top: 6px; }
.fleet-card .go{
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fleet-card .go svg{ width: 12px; height: 12px; fill: var(--red); transition: transform .2s ease; }
.fleet-card:hover .go svg{ transform: translateX(4px); }

/* ---------- Manifesto valori (checklist stile bolla di consegna) ---------- */
.manifest{
  border: 1px solid var(--line);
}
.manifest-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--line);
}
.manifest-row:last-child{ border-bottom: none; }
.manifest-num{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.manifest-body{ padding: 22px 26px; }
.manifest-body h4{ font-family: var(--body); font-weight: 800; font-size: 16px; }
.manifest-body p{ color: var(--grey); font-size: 14.5px; margin-top: 6px; }

/* ---------- Griglia due colonne ---------- */
.two-col{ display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse{ grid-template-columns: 1fr 1.1fr; }
.two-col.reverse .col-media{ order: 2; }

/* ---------- Veicolo: illustrazioni SVG generiche a linea ---------- */
.art-panel{
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 320px;
}

/* ---------- Card veicolo catalogo (con serranda hover) ---------- */
.vcard{
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.vcard-media{
  position: relative;
  background: #fff;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vcard-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.vcard-media .shutter-cover{
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, #1E2024 0 20px, #16171A 20px 22px);
  transform: translateY(0);
  transition: transform .5s cubic-bezier(.65,0,.35,1);
  z-index: 3;
}
.vcard:hover .shutter-cover{ transform: translateY(-100%); }
.vcard-badge{
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; z-index: 4;
}
.vcard-body{ padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.vcard-body h3{ font-family: var(--body); font-weight: 800; font-size: 17px; }
.vcard-body .brand{ font-family: var(--mono); font-size: 11.5px; color: var(--grey); margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }
.vspecs{ display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; margin: 16px 0; font-family: var(--mono); font-size: 12px; }
.vspecs div span{ display: block; }
.vspecs .k{ color: var(--grey); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; }
.vspecs .v{ color: var(--ink); font-weight: 600; margin-top: 2px; }
.vcard-foot{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.vprice{ font-family: var(--display); font-size: 20px; color: var(--red); }
.vprice small{ font-family: var(--mono); font-size: 11px; color: var(--grey); font-weight: 500; display:block; margin-top: 2px;}

.catalog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Filtri catalogo ---------- */
.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-chip{
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
}
.filter-chip:hover{ border-color: var(--ink); }
.filter-chip.active{ background: var(--black); color: var(--white); border-color: var(--black); }

/* ---------- Timeline (storia azienda — sequenza reale) ---------- */
.timeline{ position: relative; padding-left: 34px; }
.timeline::before{
  content:"";
  position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.tl-item{ position: relative; padding-bottom: 44px; }
.tl-item:last-child{ padding-bottom: 0; }
.tl-item::before{
  content:"";
  position: absolute; left: -34px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--line);
}
.tl-year{ font-family: var(--mono); color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.tl-item h4{ font-family: var(--body); font-weight: 800; font-size: 17px; margin-top: 6px; }
.tl-item p{ color: var(--grey); font-size: 14.5px; margin-top: 6px; max-width: 520px; }

/* ---------- Statistiche ---------- */
.stat-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #2A2B2F;
}
.stat{
  padding: 30px 24px;
  border-right: 1px solid #2A2B2F;
}
.stat:last-child{ border-right: none; }
.stat .n{ font-family: var(--display); font-size: 40px; color: var(--red); }
.stat .l{ font-family: var(--mono); font-size: 12px; color: #B7B8BC; margin-top: 6px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Persone / team ---------- */
.people-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.person{ border: 1px solid var(--line); }
.person-photo{ height: 220px; background: var(--paper-2); display:flex; align-items:center; justify-content:center; }
.person-body{ padding: 18px 20px 22px; }
.person-body h4{ font-family: var(--body); font-weight: 800; font-size: 16px; }
.person-body .role{ font-family: var(--mono); font-size: 11.5px; color: var(--red); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }

/* ---------- Servizi: percorso tratteggiato (route) ---------- */
.route{ position: relative; }
.route-line{
  position: absolute;
  left: 27px; top: 30px; bottom: 30px;
  border-left: 2px dashed var(--paper-2);
  z-index: 0;
}
.route-stop{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.route-stop:last-child{ border-bottom: none; }
.route-marker{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 15px;
  z-index: 1;
}
.route-stop:hover .route-marker{ background: var(--red); border-color: var(--red); color: var(--white); }
.route-content h4{ font-family: var(--body); font-weight: 800; font-size: 18px; }
.route-content p{ color: var(--grey); margin-top: 8px; font-size: 15px; max-width: 620px; }

/* ---------- CTA banda rossa ---------- */
.cta-band{
  background: var(--red);
  color: var(--white);
  padding: 64px 0;
}
.cta-band .wrap{ display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2{ font-size: clamp(24px,3.4vw,34px); }
.cta-band p{ margin-top: 8px; color: #F6D9DB; }

/* ---------- Form contatti ---------- */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); }
.field input, .field select, .field textarea{
  border: 1px solid var(--line);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 14.5px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--red);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 12.5px; color: var(--grey); margin-top: 4px; }
.form-success{
  display: none;
  background: #F0F7F1; border: 1px solid #BFDFC6; color: #245B33;
  padding: 16px 18px; font-size: 14px; margin-top: 18px;
}
.form-success.show{ display: block; }

/* ---------- Info card (contatti / sede) ---------- */
.info-card{ border: 1px solid var(--line); }
.info-row{
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child{ border-bottom: none; }
.info-row svg{ width: 20px; height: 20px; fill: var(--red); flex: none; margin-top: 2px; }
.info-row h4{ font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.info-row p, .info-row a{ color: var(--grey); font-size: 14.5px; margin-top: 4px; display: block; }
.info-row a:hover{ color: var(--red); }

.map-frame{ height: 260px; background: var(--paper-2); border: 1px solid var(--line); display:flex; align-items:center; justify-content:center; }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--black); color: #B7B8BC; }
.footer-top{ padding: 70px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-top h4{ color: var(--white); font-family: var(--body); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.footer-top p{ font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-top ul li{ margin-bottom: 10px; }
.footer-top ul a{ font-size: 14px; }
.footer-top ul a:hover{ color: var(--white); }
.footer-bottom{
  border-top: 1px solid #2A2B2F;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11.5px;
  color: #7C7D82;
}

/* ---------- Utility ---------- */
.center{ text-align: center; }
.mt-8{ margin-top: 8px; } .mt-16{ margin-top: 16px; } .mt-24{ margin-top: 24px; } .mt-40{ margin-top: 40px; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  font-size: 14px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.wa-float svg{ width: 22px; height: 22px; fill: #fff; flex: none; }
.wa-float .wa-text{ white-space: nowrap; }
@media (max-width: 640px){
  .wa-float .wa-text{ display: none; }
  .wa-float{ padding: 14px; }
}

/* ---------- Filtri: riga marca ---------- */
.filters-row{ margin-bottom: 14px; }
.filters-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
  display: block;
}
.search-row{
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.search-row input[type="search"]{
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 14.5px;
}
.search-row input[type="search"]:focus{ outline: none; border-color: var(--red); }

/* ---------- Card venduto ---------- */
.vcard.is-sold .vcard-media::after{
  content: "VENDUTO";
  position: absolute;
  inset: 0;
  z-index: 6;
  background: rgba(22,23,26,.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .06em;
}
.vcard.is-sold .vprice{ color: var(--grey); text-decoration: line-through; }
.vcard.is-sold .btn{ opacity: .5; pointer-events: none; }
.no-results{
  padding: 60px 20px;
  text-align: center;
  color: var(--grey);
  border: 1px dashed var(--line);
  grid-column: 1 / -1;
}

/* ---------- Admin ---------- */
.admin-gate{
  max-width: 380px;
  margin: 90px auto;
  padding: 40px 34px;
  border: 1px solid var(--line);
  text-align: center;
}
.admin-gate h2{ font-size: 22px; margin-bottom: 8px; }
.admin-gate p{ color: var(--grey); font-size: 14px; margin-bottom: 24px; }
.admin-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.admin-actions{ display: flex; gap: 10px; flex-wrap: wrap; }
.admin-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.admin-table th{
  text-align: left;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 10px 12px;
  border-bottom: 2px solid var(--ink);
}
.admin-table td{
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.admin-table tr.sold-row td{ color: var(--grey); }
.pill{
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--mono);
}
.pill.ok{ background: #EAF5EC; color: #23713A; }
.pill.sold{ background: #F2E7E7; color: #8E141C; }
.row-actions{ display: flex; gap: 8px; }
.row-actions button{
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.row-actions button:hover{ border-color: var(--ink); }
.row-actions button.danger:hover{ border-color: var(--red); color: var(--red); }
.admin-form{
  border: 1px solid var(--line);
  padding: 26px;
  margin-top: 30px;
  display: none;
}
.admin-form.open{ display: block; }
.admin-form h3{ font-size: 18px; margin-bottom: 18px; }
.toast{
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--black);
  color: #fff;
  padding: 14px 20px;
  font-size: 13.5px;
  z-index: 300;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
  pointer-events: none;
}
.toast.show{ opacity: 1; transform: translateY(0); }

/* ---------- Page hero (pagine interne, non Home) ---------- */
.page-hero{
  background: var(--black);
  color: var(--white);
  padding: 64px 0 54px;
}
.page-hero h1{ font-size: clamp(34px, 5vw, 54px); }
.page-hero p{ margin-top: 16px; color: #C8C9CC; max-width: 560px; font-size: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  nav.main-nav{ display: none; }
  .nav-toggle{ display: flex; }
  .usp-strip .wrap, .catalog-grid, .stat-row{ grid-template-columns: repeat(2,1fr); }
  .fleet-grid{ grid-template-columns: repeat(3,1fr); }
  .usp-item:nth-child(3){ border-left: none; }
  .stat:nth-child(3){ border-left: 1px solid #2A2B2F; }
  .two-col, .two-col.reverse{ grid-template-columns: 1fr; }
  .two-col.reverse .col-media{ order: 0; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .people-grid{ grid-template-columns: 1fr 1fr; }
  .contact-strip .wrap{ flex-direction: column; }
  .contact-strip a, .contact-strip span.ci{ border-right: none; border-bottom: 1px solid #2A2B2F; width: 100%; padding: 12px 0; margin-right: 0; }
}
@media (max-width: 640px){
  .usp-strip .wrap, .catalog-grid, .stat-row, .people-grid{ grid-template-columns: 1fr; }
  .fleet-grid{ grid-template-columns: repeat(2,1fr); }
  .usp-item, .stat{ border-left: none !important; padding-left: 0; }
  .footer-top{ grid-template-columns: 1fr; }
  .cta-band .wrap{ flex-direction: column; align-items: flex-start; }
  .manifest-row{ grid-template-columns: 56px 1fr; }
}
