/* ==========================================================================
   Minelli PETS — SuperZoo 2026 Landing
   Mobile-first. Breakpoints: 640 (tablet) · 1024 (laptop) · 1440 (desktop)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --sz-red: #E10722;
  --sz-red-dark: #B0141A;
  --sz-blue: #213560;
  --sz-yellow: #F4B400;
  --sz-violet: #6D28D9;

  /* Neutrals */
  --sz-ink: #222221;
  --sz-ink-deep: #0D0B09;
  --sz-grey: #E1E1E1;
  --sz-line: #ECE8E2;
  --sz-line-warm: #E4DFD7;
  --sz-line-dark: #2E2A25;
  --sz-muted: #9A938A;
  --sz-muted-light: #B7B0A6;
  --sz-body: #4A453E;
  --sz-on-dark: #E7E3DC;
  --sz-white: #FFFFFF;

  /* Type */
  --sz-font: 'Bai Jamjuree', system-ui, -apple-system, sans-serif;

  /* Layout */
  --sz-container: 1280px;
  --sz-gutter: 20px;
  --sz-header-h: 64px;
  --sz-radius: 18px;
  --sz-radius-lg: 22px;
  --sz-pill: 100px;

  /* Fluid type — scala col viewport, niente salti tra breakpoint */
  --sz-h1: clamp(2.25rem, 1.2rem + 4.6vw, 4.125rem);   /* 36 → 66px */
  --sz-h2: clamp(1.875rem, 1.15rem + 3.2vw, 2.875rem); /* 30 → 46px */
  --sz-h2-lg: clamp(2rem, 1.1rem + 4vw, 3.25rem);      /* 32 → 52px */
  --sz-h3: clamp(1.25rem, 1.1rem + 0.5vw, 1.4375rem);  /* 20 → 23px */
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sz-font);
  color: var(--sz-ink);
  background: var(--sz-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--sz-red); text-decoration: none; }
a:hover { color: var(--sz-red-dark); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--sz-red); color: var(--sz-white); }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }

/* Accessibilità: focus sempre visibile, tranne per il mouse */
:focus-visible {
  outline: 3px solid var(--sz-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.sz-container {
  width: 100%;
  max-width: var(--sz-container);
  margin-inline: auto;
  padding-inline: var(--sz-gutter);
}

.sz-section { padding-block: 56px; }

.sz-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sz-ink);
  margin-bottom: 14px;
}

/* Visibile solo agli screen reader */
.sz-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;
}

.sz-skip-link {
  position: absolute;
  top: -100px;
  left: var(--sz-gutter);
  z-index: 100;
  background: var(--sz-ink);
  color: var(--sz-white);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  transition: top 0.15s ease;
}
.sz-skip-link:focus { top: 0; color: var(--sz-white); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--sz-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.sz-btn--primary {
  background: var(--sz-red);
  color: var(--sz-white);
  border-color: var(--sz-red);
}
.sz-btn--primary:hover {
  background: var(--sz-white);
  color: var(--sz-blue);
  border-color: var(--sz-blue);
}

.sz-btn--blue {
  background: var(--sz-blue);
  color: var(--sz-white);
  border-color: var(--sz-blue);
}
.sz-btn--blue:hover {
  background: var(--sz-white);
  color: var(--sz-blue);
}

.sz-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sz-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.sz-btn--ghost:hover {
  background: var(--sz-white);
  color: var(--sz-blue);
  border-color: var(--sz-white);
}

.sz-btn--white {
  background: var(--sz-white);
  color: var(--sz-blue);
  border-color: var(--sz-white);
}
.sz-btn--white:hover {
  background: transparent;
  color: var(--sz-white);
  border-color: var(--sz-white);
}

.sz-btn--lg { font-size: 1.0625rem; padding: 17px 30px; }

/* --------------------------------------------------------------------------
   5. Header + navigazione
   -------------------------------------------------------------------------- */
.sz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sz-line);
}

.sz-header__inner {
  position: relative;              /* ancora la tendina, che è in position:absolute */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--sz-header-h);
}

/* Il logo è 8.5:1: a un'altezza fissa diventa larghissimo e sfonda l'header
   sui telefoni. Lo si dimensiona in larghezza, lasciando fare all'altezza. */
.sz-header__logo { display: flex; align-items: center; min-width: 0; }
.sz-header__logo img { width: min(150px, 34vw); height: auto; }

.sz-header__actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* La CTA resta visibile a ogni risoluzione, anche a menu chiuso */
.sz-header .sz-btn { font-size: 0.78125rem; padding: 10px 12px; }

/* --- Hamburger ---------------------------------------------------------- */
.sz-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;   /* 44px = target touch minimo raccomandato */
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.sz-burger:hover { background: var(--sz-line); }

.sz-burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sz-ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

/* Aperto: le barre diventano una X */
.sz-burger[aria-expanded="true"] .sz-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sz-burger[aria-expanded="true"] .sz-burger__bar:nth-child(2) {
  opacity: 0;
}
.sz-burger[aria-expanded="true"] .sz-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Tendina sotto l'header (mobile + tablet) ---------------------------
   Ancorata sotto la riga dell'header: si apre in sovrapposizione, senza
   spostare la pagina — l'header è sticky, spingere il contenuto farebbe
   saltare la vista quando il menu si apre a pagina già scrollata. */
.sz-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  grid-template-rows: 0fr;                 /* chiusa: altezza 0, animabile */
  background: var(--sz-white);
  border-bottom: 1px solid var(--sz-line);
  box-shadow: 0 14px 24px rgba(13, 11, 9, 0.1);
  transition: grid-template-rows 0.26s ease;
}
.sz-nav[data-open="true"] { grid-template-rows: 1fr; }

/* overflow:hidden nasconde i link, ma li lascia focusabili da tastiera e
   leggibili dagli screen reader: serve visibility per toglierli davvero.
   Il delay tiene i link visibili durante i 0.26s di chiusura. */
.sz-nav__inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s 0.26s;
}
.sz-nav[data-open="true"] .sz-nav__inner {
  visibility: visible;
  transition-delay: 0s;
}

.sz-nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 8px var(--sz-gutter) 16px;
}

.sz-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sz-body);
  border-bottom: 1px solid var(--sz-line);
}
.sz-nav__link:hover { color: var(--sz-red); }
.sz-nav__list li:last-child .sz-nav__link { border-bottom: 0; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.sz-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 480px;
  background: var(--sz-ink-deep) url("img/hero-booth.jpg") center / cover no-repeat;
}

/* Velo scuro: senza, il testo bianco non è leggibile sulla foto */
.sz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 12, 10, 0.78) 0%,
    rgba(15, 12, 10, 0.62) 100%
  );
}

.sz-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 40px 48px;
}

.sz-hero__h1 {
  color: var(--sz-white);
  font-size: var(--sz-h1);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 15ch;
}
.sz-hero__h1 span { color: var(--sz-red); }

.sz-hero__lead {
  color: var(--sz-white);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
  line-height: 1.55;
  max-width: 52ch;
  margin-top: 20px;
}
.sz-hero__lead strong { font-weight: 700; }
.sz-hero__lead em { font-style: italic; }

.sz-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.sz-hero__cta .sz-btn { flex: 1 1 auto; }

.sz-hero__note {
  color: var(--sz-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 20px;
}

/* Badge "SuperZoo 2026 · Aug 12–14" */
.sz-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--sz-red);
  color: var(--sz-white);
  padding: 8px 15px;
  border-radius: var(--sz-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sz-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sz-yellow);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.28);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Event band
   -------------------------------------------------------------------------- */
.sz-band { background: var(--sz-ink); color: var(--sz-white); }

.sz-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-block: 28px;
}

.sz-band__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 2px solid var(--sz-red);
  padding-left: 16px;
}
.sz-band__item--venue { border-left-color: var(--sz-violet); }
.sz-band__item--booth { border-left-color: var(--sz-yellow); }

.sz-band__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sz-muted);
}
.sz-band__value {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   8. Why book
   -------------------------------------------------------------------------- */
.sz-why { background: var(--sz-white); }

.sz-why__head {
  text-align: center;
  max-width: 44ch;
  margin: 0 auto 40px;
}
.sz-why__head h2 { font-size: var(--sz-h2); color: var(--sz-blue); }

.sz-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sz-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--sz-line);
  border-radius: var(--sz-radius);
  background: var(--sz-grey);
  color: var(--sz-ink);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.sz-card:hover {
  border-color: var(--sz-ink);
  color: var(--sz-ink);
  transform: translateY(-2px);
}

.sz-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sz-blue);
  color: var(--sz-white);
  flex-shrink: 0;
}
.sz-card__icon--red { background: var(--sz-red); }
.sz-card__icon--ink { background: var(--sz-ink); }
.sz-card__icon--yellow { background: var(--sz-yellow); color: var(--sz-ink); }

.sz-card h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
.sz-card p { font-size: 0.9375rem; line-height: 1.55; }

/* --- Stat bar ------------------------------------------------------------ */
.sz-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  padding: 32px 28px;
  background: var(--sz-ink);
  border-radius: var(--sz-radius-lg);
  color: var(--sz-white);
}

.sz-stats__item { text-align: center; }
.sz-stats__item + .sz-stats__item {
  border-top: 1px solid var(--sz-line-dark);
  padding-top: 16px;
}

.sz-stats__value {
  font-size: clamp(2.25rem, 2rem + 1vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sz-stats__value span { color: var(--sz-red); }
.sz-stats__item:nth-child(2) .sz-stats__value span { color: var(--sz-violet); }
.sz-stats__item:nth-child(3) .sz-stats__value span { color: var(--sz-yellow); }

.sz-stats__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sz-muted-light);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   9. How it works
   -------------------------------------------------------------------------- */
.sz-process { background: var(--sz-grey); }

.sz-process__head { max-width: 52ch; margin-bottom: 40px; }
.sz-process__head h2 { font-size: var(--sz-h2); color: var(--sz-blue); }
.sz-process__head p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  margin-top: 18px;
}

.sz-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;                    /* il gap fa da riga divisoria */
  background: var(--sz-line-warm);
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
}

.sz-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--sz-white);
  padding: 30px 26px;
}
.sz-step--last { background: var(--sz-ink); color: var(--sz-white); }
.sz-step--last p { color: #C4BEB4; }

.sz-step__num {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sz-red);
}
.sz-step--last .sz-step__num { color: var(--sz-yellow); }

.sz-step h3 { font-size: 1.375rem; letter-spacing: -0.015em; }
.sz-step p { font-size: 0.9375rem; line-height: 1.55; }

/* --------------------------------------------------------------------------
   10. New products
   -------------------------------------------------------------------------- */
.sz-products { background: var(--sz-white); }

.sz-products__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.sz-products__head h2 { font-size: var(--sz-h2); color: var(--sz-blue); }
.sz-products__head-intro { max-width: 48ch; }
.sz-products__head p {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 34ch;
}

.sz-product {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
  padding: 30px 26px;
  border-radius: var(--sz-radius);
  overflow: hidden;
  background: var(--sz-ink);
  color: var(--sz-white);
}
.sz-product--blue { background: var(--sz-blue); }
.sz-product--light {
  background: var(--sz-grey);
  color: var(--sz-ink);
  border: 1px solid var(--sz-line-warm);
}

/* Numerone decorativo in filigrana */
.sz-product__ghost {
  position: absolute;
  top: -24px;
  right: -6px;
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
}
.sz-product--light .sz-product__ghost { color: rgba(22, 19, 15, 0.06); }

.sz-product__body { position: relative; z-index: 1; }
.sz-product h3 { font-size: var(--sz-h3); letter-spacing: -0.015em; line-height: 1.1; }

.sz-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sz-red);
  color: var(--sz-white);
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--sz-pill);
}
.sz-tag--translucent { background: rgba(255, 255, 255, 0.16); }
.sz-tag--ink { background: var(--sz-ink); }

.sz-product__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sz-muted-light);
}
.sz-product--blue .sz-product__meta { color: rgba(255, 255, 255, 0.82); }
.sz-product--light .sz-product__meta { color: var(--sz-ink); }
.sz-product__meta svg { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   11. Live grooming show
   -------------------------------------------------------------------------- */
.sz-show {
  position: relative;
  overflow: hidden;
  background: var(--sz-blue);
  color: var(--sz-white);
}

.sz-show__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.sz-show h2 {
  font-size: var(--sz-h2-lg);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.sz-show__lead {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  max-width: 46ch;
}

.sz-badge--translucent {
  background: rgba(255, 255, 255, 0.14);
  color: var(--sz-white);
  padding: 7px 14px;
}
.sz-badge--translucent .sz-badge__dot { box-shadow: none; }

.sz-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sz-schedule__slot {
  flex: 1 1 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
}
.sz-schedule__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sz-yellow);
}
.sz-schedule__time {
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.sz-schedule__note {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.sz-show .sz-btn { margin-top: 28px; }

.sz-show__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  order: -1;                    /* su mobile la foto va sopra il testo */
}
.sz-show__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   12. Booking
   -------------------------------------------------------------------------- */
.sz-book { background: var(--sz-ink); color: var(--sz-white); }
.sz-book .sz-container { max-width: 1080px; }

.sz-book__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.sz-book__eyebrow { color: var(--sz-red); }
.sz-book h2 { font-size: var(--sz-h2); line-height: 1.02; letter-spacing: -0.03em; }
.sz-book__lead {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--sz-on-dark);
  margin-top: 20px;
}

.sz-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
  font-size: 0.96875rem;
  font-weight: 600;
  color: var(--sz-on-dark);
}
.sz-perks li { display: flex; align-items: center; gap: 12px; }
.sz-perks__check { color: var(--sz-red); flex-shrink: 0; }

/* Contenitore del calendario HubSpot */
.sz-book__embed {
  background: var(--sz-white);
  border: 1px solid var(--sz-line-dark);
  border-radius: var(--sz-radius-lg);
  padding: 12px;
  min-height: 660px;
  overflow: hidden;
}
.meetings-iframe-container { min-height: 632px; }
.meetings-iframe-container iframe { width: 100% !important; border: 0; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.sz-footer {
  background: var(--sz-ink-deep);
  color: #8C857B;
  padding-block: 44px;
}

.sz-footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.sz-footer__logo img { height: 24px; width: auto; }
.sz-footer p { font-size: 0.875rem; }
.sz-footer__cta { color: var(--sz-white); font-weight: 700; font-size: 0.90625rem; }
.sz-footer__cta:hover { color: var(--sz-yellow); }

/* ==========================================================================
   BREAKPOINT — Tablet (≥ 640px)
   ========================================================================== */
@media (min-width: 640px) {
  :root { --sz-gutter: 28px; --sz-header-h: 68px; }

  .sz-section { padding-block: 72px; }

  .sz-hero { min-height: 560px; }
  .sz-hero__content { padding-block: 56px 64px; }
  .sz-hero__cta .sz-btn { flex: 0 0 auto; }

  .sz-band__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: 34px; }

  .sz-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .sz-stats { grid-template-columns: repeat(3, 1fr); padding: 36px 40px; }
  .sz-stats__item + .sz-stats__item { border-top: 0; padding-top: 0; }
  .sz-stats__item:nth-child(2) {
    border-left: 1px solid var(--sz-line-dark);
    border-right: 1px solid var(--sz-line-dark);
  }

  .sz-steps { grid-template-columns: repeat(2, 1fr); }

  .sz-products__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }

  .sz-cards--products { grid-template-columns: repeat(2, 1fr); }

  .sz-footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   BREAKPOINT — Laptop (≥ 1024px)
   Qui l'hamburger sparisce e torna il menu orizzontale.
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --sz-gutter: 32px; --sz-header-h: 72px; }

  .sz-section { padding-block: 96px; }

  /* Nav: da tendina a barra orizzontale */
  .sz-burger { display: none; }

  /* Da tendina sospesa a elemento in fila tra logo e CTA */
  .sz-nav {
    position: static;
    display: block;
    grid-template-rows: none;
    background: none;
    border-bottom: 0;
    box-shadow: none;
    transition: none;
  }
  .sz-nav__inner { overflow: visible; visibility: visible; transition: none; }
  .sz-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 0;
  }
  .sz-nav__link {
    padding: 0;
    font-size: 0.96875rem;
    border-bottom: 0;
  }

  .sz-header__inner { gap: 32px; }
  .sz-header__logo img { /*height: 26px;*/ }
  .sz-header .sz-btn { font-size: 0.90625rem; padding: 11px 20px; }

  .sz-hero { min-height: 640px; }
  .sz-hero__content { padding-block: 64px 72px; }
  /* Su schermi larghi il velo va in orizzontale: lascia respirare la foto a destra */
  .sz-hero::after {
    background: linear-gradient(
      90deg,
      rgba(15, 12, 10, 0.78) 0%,
      rgba(15, 12, 10, 0.60) 52%,
      rgba(15, 12, 10, 0.15) 80%
    );
  }
  .sz-hero__cta { gap: 14px; margin-top: 38px; }

  .sz-why__head { margin-bottom: 56px; }
  .sz-cards { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .sz-cards--products { grid-template-columns: repeat(3, 1fr); }
  .sz-card { padding: 30px 26px; }

  .sz-stats { margin-top: 56px; gap: 24px; }

  .sz-process__head { margin-bottom: 56px; }
  .sz-steps { grid-template-columns: repeat(4, 1fr); }
  .sz-step { padding: 34px 28px; min-height: 250px; }

  .sz-products__head { margin-bottom: 52px; }
  .sz-product { min-height: 280px; padding: 34px 30px; }

  .sz-show__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .sz-show__media { order: 0; }         /* torna a destra del testo */
  .sz-schedule { gap: 14px; margin-top: 34px; }
  .sz-schedule__slot { flex: 0 0 auto; min-width: 120px; padding: 18px 24px; }

  .sz-book__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .sz-book__embed { padding: 16px; }

  .sz-footer { padding-block: 52px; }
}

/* ==========================================================================
   BREAKPOINT — Desktop (≥ 1440px)
   ========================================================================== */
@media (min-width: 1440px) {
  .sz-hero { min-height: 680px; }
  .sz-hero__content { padding-block: 72px 80px; }
}
