/* ============================================
   TucCiPiaci — Landing styles
   Brand palette:
     Verde   Pantone 377 C  #7F9C40   (+ 50% tint #BFCDA0)
     Arancio Pantone 1375 C #F2A23A   (+ 50% tint #F9D19D)
   ============================================ */

:root {
  --green: #7F9C40;
  --green-dark: #6A8534;
  --green-soft: #BFCDA0;
  --green-bg: #EEF1E1;

  --orange: #F2A23A;
  --orange-dark: #D88820;
  --orange-soft: #F9D19D;

  --ink: #1B1B14;
  --ink-soft: #4B4B40;
  --paper: #FBF8F1;
  --paper-warm: #F4EFE2;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(27, 27, 20, .06);
  --shadow:    0 12px 32px -12px rgba(27, 27, 20, .18);
  --shadow-lg: 0 30px 60px -20px rgba(27, 27, 20, .25);

  --container: 1140px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Logo image (assets/logo.png) — usata ovunque
   al posto della scritta script. Sostituibile
   con un PNG/SVG pulito senza cambiare HTML.
   ============================================ */
.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.logo-img--nav     { width: clamp(64px, 6vw, 86px); }
.logo-img--hero    { width: clamp(200px, 28vw, 340px); margin: 0 auto; }
.logo-img--vending { width: clamp(86px, 10vw, 116px); margin: 0 auto; }
.logo-img--phone   { width: clamp(96px, 12vw, 132px); margin: 0 auto; }
.logo-img--tray    { width: clamp(64px, 8vw, 88px); margin: 0 auto; }
.logo-img--footer  { width: clamp(56px, 6vw, 76px); }
.logo-img--banco   { width: clamp(80px, 10vw, 104px); margin: 0 auto; }

html, body { overflow-x: hidden; }

/* ============================================
   Header / nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(251, 248, 241, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(27, 27, 20, .06);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav { display: flex; align-items: center; }
.nav-list {
  display: flex; gap: 28px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-list a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--orange);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

@media (max-width: 980px) {
  .two-col__text { max-width: none; }
  .two-col__visual {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }
  .two-col__visual > * { min-width: 0; }
  .venue-mockups {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .vending-wrap,
  .vending,
  .counter-wrap {
    width: min(100%, 340px);
    max-width: 340px;
  }
  .vending { transform: none; }
  .counter { transform: none; }
  .trays-scroll .tray { flex-basis: 180px; }
  .phone {
    width: min(86vw, 240px);
    height: auto;
    aspect-ratio: 240 / 480;
  }
  .online-bottom { margin-top: 32px; }

  /* Ultima sezione: banner scorrevoli in orizzontale su piccoli schermi */
  .locations--timeline {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .locations--timeline::-webkit-scrollbar { display: none; }
  .locations--timeline > .loc {
    flex: 0 0 62%;
    max-width: 220px;
    width: auto;
    scroll-snap-align: center;
  }
  .locations--timeline > .loc-connector { display: none; }

  .hero-bg .blob {
    opacity: .25;
    filter: blur(30px);
  }
  .blob--green { width: 220px; height: 220px; top: -90px; right: -70px; }
  .blob--orange { width: 180px; height: 180px; bottom: -70px; left: -50px; }
  .blob--green-soft { width: 140px; height: 140px; right: 4%; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(127, 156, 64, .8);
}
.btn--primary:hover { background: var(--green-dark); }

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

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .35);
}
.btn--white:hover { background: var(--paper-warm); }

/* ============================================
   Eyebrows / typography helpers
   ============================================ */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.eyebrow--green  { color: var(--green-dark); }
.eyebrow--orange { color: var(--orange-dark); }
.eyebrow--on-dark { color: rgba(255,255,255,.85); }

.section-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title--on-dark { color: var(--white); }

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.lead--on-dark { color: rgba(255,255,255,.9); }
.small { font-size: 14px; color: var(--ink-soft); }
.small--on-dark { color: rgba(255,255,255,.75); }
.small--on-dark a { color: var(--orange-soft); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 96px;
  background:
    radial-gradient(circle at 20% 10%, rgba(242,162,58,.08), transparent 40%),
    radial-gradient(circle at 80% 0%,  rgba(127,156,64,.10), transparent 50%),
    var(--paper);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
}
.blob--green { width: 360px; height: 360px; background: var(--green-soft); top: -120px; right: -80px; }
.blob--orange { width: 280px; height: 280px; background: var(--orange-soft); bottom: -80px; left: -60px; }
.blob--green-soft { width: 200px; height: 200px; background: var(--green-soft); bottom: 30%; right: 10%; opacity: .35; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 20px;
}

/* Logo display nell'hero (img wrapper) */
.logo-display {
  margin: 10px 0 22px;
  display: flex;
  justify-content: center;
}

.hero-tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 620px;
}
.hero-tagline em {
  font-style: italic;
  color: var(--orange-dark);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.scroll-hint {
  display: inline-block;
  width: 22px; height: 36px;
  border: 2px solid var(--green);
  border-radius: 14px;
  position: relative;
  opacity: .7;
  transition: opacity .2s;
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--green);
  transform: translateX(-50%);
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  60%  { transform: translate(-50%, 12px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ============================================
   Section base
   ============================================ */
.section { padding: 96px 0; }
.section--soft { background: var(--paper-warm); }
.section--dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(242,162,58,.18), transparent 40%),
    var(--green);
  color: var(--white);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-sub { font-size: 17px; color: var(--ink-soft); margin: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col__text { max-width: 560px; }

/* Contatti: le card luogo prendono più larghezza orizzontale */
#contatti .two-col { grid-template-columns: 1fr 1.6fr; }

/* Macchinetta: la colonna visual ospita vending + banco affiancati */
#macchinetta .two-col { grid-template-columns: 1fr 1.6fr; }
/* Il visual della macchinetta non è la griglia decorativa di "chi siamo" */
#macchinetta .two-col__visual { display: block; grid-template-columns: none; }

/* Values list (chi siamo) */
.values {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green  { background: var(--green); }
.dot--orange { background: var(--orange); }

/* Decorative visual cards (chi siamo) */
.two-col__visual {
  display: grid;
  place-items: center;
  position: relative;
}

/* ---- Frutta orbitante (Chi siamo) ---- */
.fruit-orbit {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.fruit-orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--green-soft), var(--orange-soft) 90%);
  opacity: .45;
  filter: blur(6px);
}
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  margin-top: calc(var(--r) * -1);
  margin-left: calc(var(--r) * -1);
  border-radius: 50%;
  border: 1.5px dashed rgba(127, 156, 64, .22);
  animation: orbitSpin var(--dur) linear infinite;
}
.orbit--1 { --r: 150px; --dur: 34s; }
.orbit--2 { --r: 96px;  --dur: 26s; }
.orbit--3 { --r: 52px;  --dur: 46s; }

.fruit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: rotate(var(--a)) translateY(calc(var(--r) * -1));
}
.fruit__g {
  position: absolute;
  top: 50%; left: 50%;
  font-size: 36px;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(27,27,20,.18));
  animation: fruitUpright var(--dur) linear infinite;
}
.orbit--3 .fruit__g { font-size: 30px; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes fruitUpright {
  from { transform: translate(-50%, -50%) rotate(calc(var(--a) * -1)); }
  to   { transform: translate(-50%, -50%) rotate(calc(var(--a) * -1 - 360deg)); }
}

/* ============================================
   Cards grid (cosa offriamo)
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  margin: 18px 0 10px;
  color: var(--ink);
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 30px;
}
.card-icon--green  { background: var(--green-soft); }
.card-icon--orange { background: var(--orange-soft); }

/* ============================================
   Online section (iMENSA + coming soon)
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242,162,58, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0    rgba(242,162,58, .7); }
  70%  { box-shadow: 0 0 0 12px rgba(242,162,58, 0);  }
  100% { box-shadow: 0 0 0 0    rgba(242,162,58, 0);  }
}

/* Online head (centrato sopra phone + carosello) */
.online-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.online-head .pill { margin-top: 22px; }

/* Riga inferiore: trays-scroll (sinistra) + phone mockup (destra) */
.online-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  margin-top: 44px;
}

/* Phone mockup — placeholder dell'app in arrivo */
.online-phone {
  display: grid;
  place-items: center;
}
.phone {
  width: 240px;
  height: 480px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255,255,255,.06);
  transform: rotate(-4deg);
  transition: transform .4s var(--ease);
}
.phone:hover { transform: rotate(0); }
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 0 0 12px 12px;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.phone-app {
  padding: 44px 18px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.phone-app__brand {
  text-align: center;
  margin-bottom: 24px;
}
.phone-app__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-app__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.phone-app__item span:first-child { font-size: 22px; }
.phone-app__bar {
  flex: 1; height: 8px;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  border-radius: 4px;
}
.phone-app__cta {
  margin-top: 14px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

/* Carosello orizzontale delle 7 linee TucCi Piaci */
.trays-scroll {
  margin: 0;
  padding: 8px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(255,255,255,.35) transparent;
  scrollbar-width: thin;
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.trays-scroll::-webkit-scrollbar { height: 6px; }
.trays-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
  border-radius: 3px;
}
.trays-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.3);
  border-radius: 3px;
}
.trays-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.5); }

.trays-scroll__track {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}
.trays-scroll .tray {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
/* mini variant: header più compatto (no sub/fresco labels) */
.tray--mini .tray__head { min-height: 140px; padding-top: 18px; }
.tray--mini .tray__brand { margin-top: 4px; }

.trays-scroll__hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin: 16px 0 0;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ============================================
   Caroselli orizzontali con frecce (riutilizzabile)
   ============================================ */
.hscroll { position: relative; min-width: 0; }
.hscroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(27,27,20,.08);
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  padding: 0 0 3px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}
.hscroll--active .hscroll-arrow { display: flex; }
.hscroll-arrow:hover { background: var(--paper-warm); }
.hscroll-arrow:active { transform: translateY(-50%) scale(.94); }
.hscroll-arrow.is-hidden { opacity: 0; pointer-events: none; }
.hscroll-arrow--prev { left: 2px; }
.hscroll-arrow--next { right: 2px; }

/* ============================================
   Piatti pronti TucCi Piaci — vassoietti
   ricostruiscono il packaging firmato next.forma:
   header colorato a scacchi + logo + categoria
   ============================================ */
.tray {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tray:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Header colorato con pattern a scacchi (signature TucCi Piaci) */
.tray__head {
  position: relative;
  padding: 14px 14px 22px;
  text-align: center;
  color: var(--white);
  background-color: var(--c);
  background-image: repeating-conic-gradient(
    var(--c) 0% 25%,
    var(--c-dark) 0% 50%
  );
  background-size: 28px 28px;
  min-height: 170px;
}

/* "piatti pronti da gustare" piccolo, italic */
.tray__sub {
  position: absolute;
  top: 10px; left: 12px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.1;
  text-align: left;
  color: var(--white);
  opacity: .95;
  background: rgba(255,255,255,.18);
  padding: 4px 6px;
  border-radius: 4px;
  max-width: 60%;
}

/* "prodotto fresco" verticale a destra */
.tray__fresco {
  position: absolute;
  top: 10px; right: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: right;
  color: var(--white);
  background: rgba(0,0,0,.15);
  padding: 4px 6px;
  border-radius: 4px;
}

/* Brand mark al centro (TucCi Piaci su sfondo bianco "stamp") */
.tray__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  padding: 10px 16px 12px;
  border-radius: 8px;
  margin: 28px auto 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transform: rotate(-2deg);
}
/* Categoria (Caldo, Veggy, ecc.) sotto al brand */
.tray__cat {
  display: inline-block;
  font-family: "Pacifico", cursive;
  font-size: 18px;
  color: var(--white);
  background: var(--c-dark);
  padding: 3px 16px;
  border-radius: 999px;
  line-height: 1.3;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

/* Corpo bianco con emoji + descrizione */
.tray__body {
  padding: 18px 14px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.tray__emoji {
  font-size: 38px;
  margin-bottom: 10px;
  line-height: 1;
}
.tray__desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================================
   Vending machine (digital twin del dashboard
   operatore: rows × cols di "spire" con
   coordinate R{r}C{c} e stock per cella)
   ============================================ */
.vending-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vending-twin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #16160f;
  color: rgba(255,255,255,.7);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
}
.vending-twin-badge__live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(127,156,64,.8);
  animation: blink 1.6s ease-in-out infinite;
}
.vending-twin-badge__id  { color: var(--orange); }
.vending-twin-badge__sep { color: rgba(255,255,255,.3); }
.vending-twin-badge__label { color: rgba(255,255,255,.85); }

.vending {
  width: 260px;
  flex-shrink: 0;
  margin: 0 auto;
  background: linear-gradient(180deg, #2c2c22 0%, #16160f 100%);
  border-radius: 24px;
  padding: 18px 16px 22px;
  box-shadow:
    var(--shadow-lg),
    inset 0 2px 0 rgba(255,255,255,.06),
    inset 0 -2px 0 rgba(0,0,0,.5);
  position: relative;
  transform: perspective(900px) rotateY(-4deg);
  transition: transform .5s var(--ease);
}
.vending:hover { transform: perspective(900px) rotateY(0); }

/* Strip di accento brand sui lati */
.vending::before,
.vending::after {
  content: '';
  position: absolute;
  top: 18px; bottom: 70px;
  width: 4px;
  border-radius: 4px;
  opacity: .85;
}
.vending::before { left: 4px;  background: var(--green); }
.vending::after  { right: 4px; background: var(--orange); }

/* Testata con logo */
.vending__top {
  background: var(--paper);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  margin-bottom: 12px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}
/* Vetro con griglia di spire */
.vending__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.4)),
    #0a0a07;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 12px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.6);
}
.slot {
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.slot::after {
  /* Riflesso vetro */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
/* Etichette stile digital twin: coordinata R{r}C{c} + stock */
.slot::before {
  content: attr(data-pos);
  position: absolute;
  top: 2px; left: 3px;
  font-size: 6px;
  line-height: 1;
  color: rgba(255,255,255,.5);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: .04em;
  z-index: 2;
  pointer-events: none;
}
.slot__emoji {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.slot__stock {
  position: absolute;
  bottom: 2px; right: 3px;
  font-size: 7px;
  line-height: 1;
  color: var(--green);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}
.slot__stock--zero { color: #d05050; }

.slot--empty {
  background: rgba(0,0,0,.4);
  border-style: dashed;
}
.slot--highlight {
  animation: slotPulse 2.5s var(--ease) infinite;
}
@keyframes slotPulse {
  0%, 100% {
    box-shadow: inset 0 0 0 0 rgba(242,162,58,0);
    border-color: rgba(255,255,255,.06);
  }
  50% {
    box-shadow: inset 0 0 14px rgba(242,162,58,.55);
    border-color: var(--orange);
  }
}

/* Display + vano di consegna */
.vending__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vending__display {
  flex: 1;
  background: #000;
  color: var(--green);
  font-family: "DM Sans", monospace;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.8);
}
.vending__display-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(127,156,64,.8);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}
.vending__slot-out {
  width: 70px;
  height: 26px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.4));
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.6);
}

/* ============================================
   Venue mockups: vending + banco affiancati
   ============================================ */
.venue-mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

/* ---- Foto reale del banco "La Forgia" con dissolvenza sui bordi ---- */
.banco-photo {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 400px;
}
.banco-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  /* Dissolvenza morbida su tutti i bordi */
  -webkit-mask-image: radial-gradient(120% 120% at 50% 50%, #000 62%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 50% 50%, #000 62%, transparent 100%);
}

/* Bottone CTA sotto macchinetta + banco */
.macchinetta-cta {
  margin-top: 28px;
  text-align: center;
}

/* ---- Banco "La Forgia": mockup in stile digital twin (legacy, non più usato) ---- */
.counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 360px;
}
.counter {
  width: 100%;
  background: linear-gradient(180deg, #2c2c22 0%, #16160f 100%);
  border-radius: 18px;
  box-shadow:
    var(--shadow-lg),
    inset 0 2px 0 rgba(255,255,255,.06),
    inset 0 -2px 0 rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateY(4deg);
  transition: transform .5s var(--ease);
}
.counter:hover { transform: perspective(900px) rotateY(0); }
/* Strisce accento brand ai lati (come la macchinetta) */
.counter::before,
.counter::after {
  content: '';
  position: absolute;
  top: 16px; bottom: 58px;
  width: 4px;
  border-radius: 4px;
  opacity: .85;
  z-index: 3;
}
.counter::before { left: 5px;  background: var(--green); }
.counter::after  { right: 5px; background: var(--orange); }

.counter__stage { padding: 20px 20px 0; }

/* Monitor gestionali dietro al banco */
.counter__screens {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}
.cscreen {
  width: 82px;
  height: 56px;
  background: #05100b;
  border-radius: 5px;
  border: 1px solid rgba(120, 220, 170, .3);
  box-shadow: 0 0 14px rgba(127, 156, 64, .4), inset 0 0 8px rgba(0,0,0,.8);
  padding: 8px;
}
.cscreen__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%; height: 100%;
}
.cscreen__bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--green-soft), var(--green));
  border-radius: 1px;
  transform-origin: bottom;
  animation: barPulse 2.6s ease-in-out infinite;
}
.cscreen__bars i:nth-child(1) { height: 55%; animation-delay: 0s; }
.cscreen__bars i:nth-child(2) { height: 80%; animation-delay: .2s; }
.cscreen__bars i:nth-child(3) { height: 40%; animation-delay: .4s; }
.cscreen__bars i:nth-child(4) { height: 95%; animation-delay: .6s; }
.cscreen__bars i:nth-child(5) { height: 62%; animation-delay: .8s; }
.cscreen__bars i:nth-child(6) { height: 78%; animation-delay: 1s; }
.cscreen--profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 9px;
}
.cscreen__avatar {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 6px rgba(127,156,64,.6);
}
.cscreen__line {
  height: 3px; width: 78%;
  background: rgba(190, 205, 160, .5);
  border-radius: 2px;
}
.cscreen__line--short { width: 46%; }

/* Vetrina in vetro con vassoi */
.counter__case {
  position: relative;
  margin: 0 8px;
  height: 88px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(180,220,235,.14), rgba(120,150,165,.05));
  border: 1px solid rgba(160, 220, 240, .28);
  border-bottom: 0;
  box-shadow: inset 0 0 20px rgba(120, 200, 230, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.counter__trays {
  display: flex;
  gap: 12px;
  font-size: 24px;
}
.counter__trays span {
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.35));
}
.counter__reflection {
  position: absolute;
  top: 0; left: -40%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg);
  animation: glassSweep 5.5s ease-in-out infinite;
}

/* Base cabinet con logo "La Forgia" */
.counter__base {
  background: linear-gradient(180deg, #3a3a30, #22221a);
  padding: 16px 20px;
  text-align: right;
  border-top: 1px solid rgba(0,0,0,.45);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.5);
}
.counter__label {
  color: rgba(251, 248, 241, .82);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(.7); opacity: .8; }
  50%      { transform: scaleY(1);  opacity: 1; }
}
@keyframes glassSweep {
  0%   { left: -40%; }
  55%  { left: 120%; }
  100% { left: 120%; }
}

/* Banco LUM: stand con tendina + vetrina vassoi + base */
.banco {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 12px 24px rgba(27,27,20,.15));
}
.banco__awning {
  width: 100%;
  background:
    repeating-linear-gradient(90deg,
      var(--orange) 0 18px,
      var(--orange-dark) 18px 36px);
  padding: 14px 12px 18px;
  border-radius: 14px 14px 0 0;
  text-align: center;
  position: relative;
}
.banco__awning::after {
  /* Bordo scalloped sotto la tendina */
  content: '';
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  height: 12px;
  background-image:
    radial-gradient(circle at 9px 0, var(--orange-dark) 9px, transparent 9px);
  background-size: 18px 12px;
  background-repeat: repeat-x;
}
.banco__awning .logo-img {
  background: var(--paper);
  width: clamp(86px, 10vw, 110px);
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.banco__display {
  width: 100%;
  background: linear-gradient(180deg,
    rgba(220, 230, 240, .25),
    rgba(220, 230, 240, .55));
  border: 2px solid rgba(27,27,20,.12);
  border-top: 0;
  padding: 20px 12px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  position: relative;
}
.banco__display::before {
  /* Riflesso vetro */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,.5) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255,255,255,.15) 100%);
  pointer-events: none;
}
.banco__tray {
  height: 48px;
  border-radius: 3px;
  box-shadow:
    inset 0 -3px 0 rgba(0,0,0,.18),
    inset 0 3px 0 rgba(255,255,255,.25);
}
.banco__base {
  width: 110%;
  background:
    linear-gradient(180deg, #8B6F47 0%, #5C4A2E 100%);
  padding: 10px 0;
  border-radius: 0 0 6px 6px;
  text-align: center;
  margin-top: -2px;
  border-top: 2px solid rgba(0,0,0,.2);
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}
.banco__base-tag {
  color: var(--paper);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ============================================
   Contact section
   ============================================ */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  font-size: 16px;
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  padding-top: 4px;
}
.contact-list a { color: var(--green-dark); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; }
.contact-list a:hover { border-bottom-color: var(--orange); }

/* Due luoghi: laboratorio (Laterza) → negozio (Gioia del Colle) */
.locations {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
/* Variante a 3 card con connettori tratteggiati nei gap */
.locations--three {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* Le 3 card: testi allineati alla stessa altezza, link al fondo */
.locations--three .loc {
  justify-content: flex-start;
  padding: 26px 18px;
  gap: 8px;
}
.locations--three .loc__link {
  margin-top: auto;
}

/* Variante timeline a 5 nodi (full width) */
.locations--timeline {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.locations--timeline .loc {
  justify-content: flex-start;
  padding: 24px 14px;
  gap: 6px;
}
.locations--timeline .loc__city { font-size: 19px; line-height: 1.15; }
.locations--timeline .loc__link { margin-top: auto; }
.locations--timeline .loc-connector { width: 32px; }

/* Layout sezione contatti full-width */
.contatti-head { margin: 0 auto 48px; max-width: 720px; }
.contatti-map { width: 100%; }
.contatti-social {
  margin: 36px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}
.contatti-social a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
}
.contatti-social a:hover { color: var(--orange-dark); }

/* Connettore tra le card: linea tratteggiata + pallino arancio */
.loc-connector {
  position: relative;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-connector__line {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 6px, transparent 6px 12px);
  transform: translateY(-50%);
}
.loc-connector__dot {
  position: relative;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--paper);
}
.loc {
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  min-height: 240px;
  justify-content: center;
}
.loc--shop {
  background:
    radial-gradient(circle at 30% 30%, var(--green-soft) 0%, transparent 55%),
    var(--paper-warm);
}
.loc--lab {
  background:
    radial-gradient(circle at 70% 70%, var(--orange-soft) 0%, transparent 55%),
    var(--paper-warm);
}
.loc--lum {
  background:
    radial-gradient(circle at 50% 30%, #d6e0f5 0%, transparent 55%),
    var(--paper-warm);
}
.loc--lum .loc__link { background: #4a6fa5; }
.loc--lum .loc__link:hover { background: #3a5985; }

/* Nodo "Nuova apertura": tratteggiato + badge */
.loc--new {
  background:
    radial-gradient(circle at 50% 30%, var(--orange-soft) 0%, transparent 60%),
    var(--paper-warm);
  border: 2px dashed var(--orange);
  overflow: visible;
}
.loc--new .loc__pin { opacity: .85; }
.loc__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

.loc__pin { font-size: 40px; margin-bottom: 4px; }
.loc__label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0;
}
.loc__city {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  color: var(--ink);
}
.loc__addr {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.loc__link {
  margin-top: auto;
  text-decoration: none;
  background: var(--green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.loc--lab .loc__link { background: var(--orange-dark); }
.loc__link:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer__brand { display: inline-flex; align-items: baseline; }
.site-footer__brand .logo-img--footer {
  filter: brightness(0) invert(1) opacity(.7);
}
.site-footer__copy { font-size: 14px; opacity: .7; }
.site-footer__socials { display: flex; gap: 18px; }
.site-footer__socials a {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  opacity: .8;
  transition: opacity .2s, color .2s;
}
.site-footer__socials a:hover { opacity: 1; color: var(--orange); }

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .online-bottom { grid-template-columns: 1fr; gap: 32px; }
  .online-phone { order: -1; }
  #macchinetta .two-col,
  #contatti .two-col { grid-template-columns: minmax(0, 1fr); }

  /* Ultima sezione: banner scorrevoli in orizzontale (specificità alta per vincere sul base) */
  .locations.locations--timeline {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .locations.locations--timeline::-webkit-scrollbar { display: none; }
  .locations--timeline > .loc {
    flex: 0 0 62%;
    max-width: 220px;
    width: auto;
    scroll-snap-align: start;
  }
  .locations--timeline > .loc-connector { display: none; }
}

@media (max-width: 720px) {
  .site-header { padding: 12px 18px; }
  .brand { font-size: 22px; }
  .logo-img--nav { width: 62px; }
  .logo-img--hero { width: min(72vw, 260px); }
  .logo-img--vending { width: 86px; }
  .logo-img--phone { width: 94px; }
  .logo-img--tray { width: 68px; }
  .logo-img--footer { width: 54px; }
  .logo-img--banco { width: 80px; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
    border-bottom: 1px solid rgba(27, 27, 20, .06);
  }
  .nav.is-open .nav-list {
    max-height: 420px;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(27, 27, 20, .05);
  }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 32px 16px 64px; }
  .section { padding: 64px 0; }

  /* Cosa offriamo: card scorrevoli in orizzontale su piccoli schermi */
  .cards {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .cards::-webkit-scrollbar { display: none; }
  .cards > .card {
    flex: 0 0 80%;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .two-col > * { min-width: 0; }
  .two-col__text { width: 100%; max-width: none; min-width: 0; }
  .two-col__visual {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }
  .venue-mockups {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .venue-mockups > * { min-width: 0; }
  .vending-wrap,
  .vending,
  .counter-wrap { width: min(100%, 320px); }
  .vending { transform: none; }
  .counter { transform: none; }
  .phone {
    width: min(86vw, 240px);
    height: auto;
    aspect-ratio: 240 / 480;
  }
  .trays-scroll .tray { flex-basis: 180px; }
  .hero-bg .blob { opacity: .25; filter: blur(30px); }
  .blob--green { width: 220px; height: 220px; top: -90px; right: -70px; }
  .blob--orange { width: 180px; height: 180px; bottom: -70px; left: -50px; }
  .blob--green-soft { width: 140px; height: 140px; right: 4%; }
  .visual-card--1 { grid-row: span 1; aspect-ratio: 1.2 / 1; flex-direction: row; font-size: 44px; }

  .contact-list li { grid-template-columns: 1fr; gap: 4px; }

  .locations,
  .locations--three { grid-template-columns: 1fr; gap: 14px; }
  .loc-connector { display: none; }

  .site-footer__row { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding-left: 12px; padding-right: 12px; }
  .hero-inner { padding-top: 24px; }
  .hero-ctas { gap: 10px; margin-bottom: 44px; }
  .btn { width: 100%; max-width: 320px; }
  .trays-scroll { mask-image: none; -webkit-mask-image: none; }
  .trays-scroll .tray { flex-basis: 160px; }
  .card { padding: 26px 20px; }
  .section-title { font-size: clamp(24px, 8vw, 34px); }
  .lead { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
