/* =============================================================
   NOLEGGIA-LO — Main Stylesheet
   Vanilla CSS, no build step required.
   Palette: bianco + nero + giallo acido (swoosh del furgone).
   Font: Space Grotesk (titoli) · Inter (testo) · Sansita (logo).
   Organised by: Variables → Reset → Base → Components
   ============================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
--------------------------------------------------------------- */
:root {
  /* Neutrals */
  --ink:        #0D0D0D;   /* nero — sezioni scure e testo principale */
  --ink-2:      #161616;   /* nero leggermente più chiaro */
  --white:      #ffffff;
  --light:      #F6F7F2;   /* off-white con lievissima tinta calda */
  --muted:      #6B7280;
  --gray-body:  #3A3A3A;

  /* Giallo acido (dallo swoosh del logo sul furgone) */
  --acid:        #C7DB1E;
  --acid-bright: #DCF23C;
  --acid-deep:   #A0B50C;

  /* Alias semantici (retro-compatibilità con le classi esistenti) */
  --navy:       var(--ink);
  --navy-deep:  #060606;
  --orange:     var(--acid);

  --line: rgba(0, 0, 0, 0.08);

  /* Spacing scale (multiples of 4px) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-7:  1.75rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-14: 3.5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border radii */
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card:  0 10px 30px -15px rgba(13, 13, 13, 0.22);
  --shadow-hero:  0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-map:   0 10px 30px -15px rgba(13, 13, 13, 0.28);
  --shadow-acid:  0 8px 24px -8px rgba(199, 219, 30, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

/* ---------------------------------------------------------------
   3. LAYOUT UTILITIES
--------------------------------------------------------------- */
.nl-container {
  max-width: 80rem; /* 1280px */
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 640px) {
  .nl-container {
    padding-inline: var(--sp-8);
  }
}

.nl-section-header {
  max-width: 48rem;
}

/* ---------------------------------------------------------------
   4. ANIMATIONS
--------------------------------------------------------------- */
@keyframes nl-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% { opacity: 1; }
  50%  { opacity: 0.35; }
}

/* Hero: immagine che fluttua */
@keyframes nl-float {
  0%,
  100% { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
}

/* Hero: glow che respira */
@keyframes nl-pulse-glow {
  0%,
  100% { opacity: 0.55; }
  50%  { opacity: 1; }
}

/* Hero: blob luminoso che deriva */
@keyframes nl-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28%, 22%) scale(1.25); }
}

/* Striscia scorrevole */
@keyframes nl-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sottolineatura accento che si espande */
@keyframes nl-underline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.nl-fade-up {
  opacity: 0;
}

.nl-fade-up.in-view {
  animation: nl-fade-up 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

/* Stagger consecutive fade-up siblings */
.nl-cards       .nl-fade-up:nth-child(2),
.nl-van-grid    .nl-fade-up:nth-child(2),
.nl-tariffa-grid .nl-fade-up:nth-child(2),
.nl-perche-grid .nl-fade-up:nth-child(2) { animation-delay: 0.08s; }
.nl-cards       .nl-fade-up:nth-child(3),
.nl-van-grid    .nl-fade-up:nth-child(3),
.nl-perche-grid .nl-fade-up:nth-child(3) { animation-delay: 0.16s; }
.nl-van-grid    .nl-fade-up:nth-child(4),
.nl-perche-grid .nl-fade-up:nth-child(4) { animation-delay: 0.24s; }

/* ---------------------------------------------------------------
   5. SHARED BUTTON
--------------------------------------------------------------- */
.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border-radius: var(--radius-full);
  font-family: "Space Grotesk", inherit;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.2s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
  padding: 0.625rem var(--sp-4);
}

@media (min-width: 640px) {
  .nl-btn { padding: 0.625rem var(--sp-5); }
}

.nl-btn:hover { transform: translateY(-2px); }
.nl-btn:active { transform: translateY(0); }

.nl-btn--lg {
  padding: 0.875rem var(--sp-6);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .nl-btn--lg { font-size: 1rem; }
}

.nl-btn--lg:hover { transform: translateY(-3px); }

/* Giallo acido pieno (testo nero per contrasto) */
.nl-btn--orange {
  background-color: var(--acid);
  color: var(--ink);
  box-shadow: var(--shadow-acid);
}

.nl-btn--orange:hover {
  background-color: var(--acid-bright);
  box-shadow: 0 12px 30px -8px rgba(199, 219, 30, 0.7);
}

/* Outline chiaro (su sfondo scuro) */
.nl-btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.nl-btn--outline-white:hover {
  background-color: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  filter: none;
}

/* Outline scuro (su sfondo chiaro) */
.nl-btn--outline-navy {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.nl-btn--outline-navy:hover {
  background-color: var(--ink);
  color: var(--white);
  filter: none;
}

/* ---------------------------------------------------------------
   6. SHARED TYPOGRAPHY
--------------------------------------------------------------- */
.nl-section-label {
  display: inline-block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--acid);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
}

.nl-section-title {
  margin-top: var(--sp-4);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink);
}

@media (min-width: 640px) {
  .nl-section-title { font-size: 3rem; }
}

.nl-section-title--light {
  color: var(--white);
}

/* ---------------------------------------------------------------
   7. LOGO
--------------------------------------------------------------- */
.nl-logo {
  font-family: "Sansita", system-ui, sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.01em;
  display: inline-block;
  transform: scaleX(1.12);
  transform-origin: left center;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .nl-logo { font-size: 2rem; }
}

.nl-logo--footer {
  font-size: 1.875rem;
  color: var(--white);
}

.nl-logo__dash {
  color: var(--acid);
  font-style: normal;
  font-weight: 900;
}

.nl-nav__logo-link {
  display: inline-flex;
  align-items: center;
}

/* ---------------------------------------------------------------
   8. NAVBAR
--------------------------------------------------------------- */
.nl-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.nl-nav.nl-nav-scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 24px -14px rgba(13, 13, 13, 0.18);
}

.nl-nav__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--sp-5);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

@media (min-width: 640px) {
  .nl-nav__inner { padding-inline: var(--sp-8); }
}

.nl-nav__links {
  display: none;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 768px) {
  .nl-nav__links { display: flex; }
}

.nl-nav__links a {
  position: relative;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-body);
  transition: color 0.2s;
}

.nl-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nl-nav__links a:hover {
  color: var(--ink);
}

.nl-nav__links a:hover::after {
  transform: scaleX(1);
}

/* Responsive CTA label */
.nl-btn__label-long { display: none; }
.nl-btn__label-short { display: inline; }

@media (min-width: 640px) {
  .nl-btn__label-long  { display: inline; }
  .nl-btn__label-short { display: none; }
}

/* ---------------------------------------------------------------
   9. HERO
--------------------------------------------------------------- */
.nl-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--white);
  overflow: hidden;
}

.nl-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 12%, rgba(199, 219, 30, 0.22), transparent 60%),
    radial-gradient(720px 520px at 95% 105%, rgba(199, 219, 30, 0.13), transparent 62%),
    linear-gradient(120deg, transparent 56%, rgba(199, 219, 30, 0.09) 66%, transparent 80%),
    linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
  pointer-events: none;
}

.nl-hero__bg::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  top: -12%;
  left: -8%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(199, 219, 30, 0.18), transparent 70%);
  animation: nl-drift 16s ease-in-out infinite alternate;
}

.nl-hero__grid {
  position: relative;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--sp-5);
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .nl-hero__grid { padding-inline: var(--sp-8); }
}

@media (min-width: 1024px) {
  .nl-hero__grid { grid-template-columns: 1fr 1fr; }
}

.nl-hero__text {
  max-width: 36rem;
}

/* Badge */
.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border-radius: var(--radius-full);
  border: 1px solid rgba(199, 219, 30, 0.6);
  background: rgba(199, 219, 30, 0.14);
  padding: var(--sp-1) var(--sp-3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.nl-badge__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--acid);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}

/* Heading */
.nl-hero h1 {
  margin-top: var(--sp-6);
  color: var(--ink);
  font-size: 2.75rem;
  font-weight: 700;
}

@media (min-width: 640px) { .nl-hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .nl-hero h1 { font-size: 4.75rem; } }

.nl-hero h1 .accent {
  position: relative;
  color: var(--ink);
  white-space: nowrap;
  z-index: 0;
}

/* Evidenziatore acido "a pennarello" dietro la parola chiave */
.nl-hero h1 .accent::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.06em;
  height: 0.42em;
  background: var(--acid);
  border-radius: 3px;
  z-index: -1;
  transform-origin: left;
  animation: nl-underline 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s both;
}

.nl-hero__desc {
  margin-top: var(--sp-6);
  font-size: 1rem;
  color: var(--gray-body);
  max-width: 36rem;
}

@media (min-width: 640px) {
  .nl-hero__desc { font-size: 1.125rem; }
}

.nl-hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Image card */
.nl-hero__img-wrap {
  position: relative;
}

.nl-hero__img-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(closest-side, rgba(199, 219, 30, 0.28), transparent 70%);
  pointer-events: none;
  animation: nl-pulse-glow 5s ease-in-out infinite;
}

.nl-hero__img-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--sp-4);
  box-shadow: 0 24px 48px -20px rgba(13, 13, 13, 0.3);
  border: 1px solid var(--line);
  animation: nl-float 6s ease-in-out infinite;
}

@media (min-width: 640px) {
  .nl-hero__img-card { padding: var(--sp-6); }
}

.nl-hero__img-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------------------------------------------------------------
   10. CHI SIAMO
--------------------------------------------------------------- */
.nl-chi-siamo {
  padding-block: var(--sp-24);
  background-color: var(--light);
}

@media (min-width: 640px) {
  .nl-chi-siamo { padding-block: var(--sp-32); }
}

.nl-chi-siamo__body {
  margin-top: var(--sp-6);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-body);
}

@media (min-width: 640px) {
  .nl-chi-siamo__body { font-size: 1.125rem; }
}

/* Feature cards */
.nl-cards {
  margin-top: var(--sp-14);
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .nl-cards { grid-template-columns: repeat(3, 1fr); }
}

.nl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.nl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(13, 13, 13, 0.28);
  border-color: var(--acid);
}

.nl-card__icon { font-size: 1.875rem; }

.nl-card__title {
  margin-top: var(--sp-4);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.nl-card__desc {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   11. FLOTTA
--------------------------------------------------------------- */
.nl-flotta {
  padding-block: var(--sp-24);
  background: var(--white);
}

@media (min-width: 640px) {
  .nl-flotta { padding-block: var(--sp-32); }
}

/* Galleria fotografica (masonry con CSS columns per gestire foto
   orizzontali e verticali insieme) */
.nl-gallery {
  margin-top: var(--sp-14);
  column-count: 1;
  column-gap: 1.25rem;
}

@media (min-width: 640px)  { .nl-gallery { column-count: 2; } }
@media (min-width: 1024px) { .nl-gallery { column-count: 3; } }

.nl-gallery__item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.nl-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(13, 13, 13, 0.32);
  border-color: var(--acid);
}

.nl-gallery__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nl-gallery__item:hover .nl-gallery__img {
  transform: scale(1.06);
}

.nl-gallery__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.8));
}

.nl-gallery__caption::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.5rem;
  border-radius: 2px;
  background: var(--acid);
  vertical-align: middle;
}

.nl-flotta__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}

.nl-flotta__note {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 42rem;
}

/* ---------------------------------------------------------------
   11b. TARIFFE
--------------------------------------------------------------- */
.nl-tariffe {
  padding-block: var(--sp-24);
  background: var(--light);
}

@media (min-width: 640px) {
  .nl-tariffe { padding-block: var(--sp-32); }
}

.nl-tariffa-grid {
  margin-top: var(--sp-14);
  display: grid;
  gap: 1.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .nl-tariffa-grid { grid-template-columns: repeat(2, 1fr); }
}

.nl-tariffa-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: var(--sp-8);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.nl-tariffa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(13, 13, 13, 0.28);
}

/* Card in evidenza: nera, il prezzo giallo acido esplode */
.nl-tariffa-card--evidenza {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 18px 44px -16px rgba(13, 13, 13, 0.55);
}

.nl-tariffa-card__periodo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.nl-tariffa-card__prezzo {
  margin-top: var(--sp-3);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.nl-tariffa-card__dettaglio {
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--muted);
}

.nl-tariffa-card__cta {
  margin-top: var(--sp-6);
}

.nl-tariffa-card--evidenza .nl-tariffa-card__periodo { color: var(--white); }
.nl-tariffa-card--evidenza .nl-tariffa-card__prezzo  { color: var(--acid); }
.nl-tariffa-card--evidenza .nl-tariffa-card__dettaglio { color: rgba(255, 255, 255, 0.7); }

.nl-tariffe__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   12. STRISCIA SCORREVOLE (MARQUEE)
--------------------------------------------------------------- */
.nl-stripe {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-block: 0.9rem;
  border-block: 1px solid rgba(199, 219, 30, 0.25);
}

.nl-marquee {
  display: flex;
  width: 100%;
}

.nl-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  white-space: nowrap;
  will-change: transform;
  animation: nl-marquee 26s linear infinite;
}

.nl-stripe:hover .nl-marquee__track {
  animation-play-state: paused;
}

.nl-marquee__word {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nl-marquee__sep {
  color: var(--acid);
  font-size: 0.9rem;
}

/* ---------------------------------------------------------------
   13. PERCHÉ NOI
--------------------------------------------------------------- */
.nl-perche {
  padding-block: var(--sp-24);
  background-color: var(--ink);
}

@media (min-width: 640px) {
  .nl-perche { padding-block: var(--sp-32); }
}

.nl-perche-grid {
  margin-top: var(--sp-14);
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 640px) {
  .nl-perche-grid { grid-template-columns: repeat(2, 1fr); }
}

.nl-perche-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.nl-perche-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(199, 219, 30, 0.5);
  transform: translateY(-3px);
}

.nl-perche-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--acid);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.nl-perche-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.nl-perche-item__desc {
  margin-top: var(--sp-1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------------------------------------
   14. CONTATTI
--------------------------------------------------------------- */
.nl-contatti {
  padding-block: var(--sp-24);
  background-color: var(--light);
}

@media (min-width: 640px) {
  .nl-contatti { padding-block: var(--sp-32); }
}

.nl-contatti__inner {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: var(--sp-5);
  text-align: center;
}

@media (min-width: 640px) {
  .nl-contatti__inner { padding-inline: var(--sp-8); }
}

.nl-phone-link {
  display: block;
  margin-top: var(--sp-10);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .nl-phone-link { font-size: 4.25rem; }
}

.nl-phone-link:hover { color: var(--acid-deep); }

.nl-contatti__sub {
  margin-top: var(--sp-4);
  font-size: 1rem;
  color: var(--muted);
}

.nl-contatti__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.nl-contatti__address {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.nl-map-wrap {
  margin-top: var(--sp-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-map);
}

.nl-map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ---------------------------------------------------------------
   15. FOOTER
--------------------------------------------------------------- */
.nl-footer {
  background-color: var(--navy-deep);
  color: var(--white);
}

.nl-footer__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--sp-5);
  padding-block: 3.5rem;
}

@media (min-width: 640px) {
  .nl-footer__inner { padding-inline: var(--sp-8); }
}

.nl-footer__grid {
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .nl-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.nl-footer__tagline {
  margin-top: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.nl-footer__col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.nl-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.nl-footer__col-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nl-footer__col-links a:hover { color: var(--acid); }

.nl-footer__col-text {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.nl-footer__bottom {
  margin-top: 2.5rem;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
}

/* ---------------------------------------------------------------
   15b. PAGINA 404
--------------------------------------------------------------- */
.nl-404 {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--ink);
  overflow: hidden;
}

.nl-404__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 480px at 20% 25%, rgba(199, 219, 30, 0.16), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #060606 100%);
}

.nl-404__inner {
  position: relative;
  max-width: 44rem;
  margin-inline: auto;
  padding: 8rem var(--sp-5) 4rem;
  text-align: center;
}

.nl-404__title {
  margin-top: var(--sp-5);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .nl-404__title { font-size: 3.5rem; }
}

.nl-404__title .accent { color: var(--acid); }

.nl-404__desc {
  margin-top: var(--sp-6);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
}

.nl-404__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

/* ---------------------------------------------------------------
   16. ACCESSIBILITÀ — riduci il movimento
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .nl-fade-up { opacity: 1 !important; }
}
