/* ============================================================
   Prestige Mobility — Quiet Luxury NCC
   Notturno cinematico · Cormorant Garamond + Inter Tight
   Responsive: desktop / tablet / mobile
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --ink:        oklch(0.94 0.012 75);
  --ink-dim:    oklch(0.89 0.012 75);
  --ink-faint:  oklch(0.82 0.012 75);
  --bg:         oklch(0.21 0.010 62);
  --bg-raise:   oklch(0.26 0.010 62);
  --bg-soft:    oklch(0.30 0.010 62);
  --line:       oklch(0.44 0.010 62);
  --line-soft:  oklch(0.35 0.010 62);
  --brass:      oklch(0.72 0.08 75);
  --brass-dim:  oklch(0.58 0.07 75);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --px: 48px;   /* horizontal page padding — overridden per breakpoint */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--brass); font-weight: 300; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.lede {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.52;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 32em;
  text-wrap: pretty;
}

.body {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--ink-dim);
  max-width: 38em;
  text-wrap: pretty;
}

/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: linear-gradient(to bottom, oklch(0.21 0.010 62 / 0.94), transparent);
  backdrop-filter: blur(8px);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-brand em { font-style: italic; color: var(--brass); }

.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--brass); }

.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.lang-switch { display: inline-flex; gap: 4px; align-items: center; }
.lang-switch button { padding: 4px 6px; color: var(--ink-faint); transition: color .15s; }
.lang-switch button.active { color: var(--ink); }
.lang-switch span { color: var(--line); }

.nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--brass); color: var(--brass); }

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--bg);
  padding: 100px 32px 48px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s;
}
.nav-drawer a:first-child { border-top: 1px solid var(--line-soft); }
.nav-drawer a:hover { color: var(--brass); }
.nav-drawer .drawer-cta {
  margin-top: 40px;
  padding: 18px 24px;
  background: var(--brass);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.nav-drawer .drawer-lang {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.nav-drawer .drawer-lang button { padding: 6px; transition: color .2s; }
.nav-drawer .drawer-lang button.active { color: var(--ink); }

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 860px;
  padding: 140px var(--px) 64px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 72px;
  overflow: hidden;
}
.hero-frame {
  position: absolute;
  inset: 96px var(--px) 40px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--brass-dim);
}
.hero-frame::before { top:-4px; left:-4px; border-right:0; border-bottom:0; }
.hero-frame::after  { bottom:-4px; right:-4px; border-left:0; border-top:0; }

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
}
.hero-left h1 {
  font-size: clamp(56px, 8vw, 130px);
  margin: 20px 0 36px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-meta b { color: var(--ink); font-weight: 400; }
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ════════════════════════════════════
   BOOKING BAR
   ════════════════════════════════════ */
.booking {
  background: oklch(0.24 0.010 62);
  border: 1px solid oklch(0.30 0.010 62);
  border-top: 2px solid var(--brass);
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.9fr 0.7fr 1.2fr auto;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.4);
}
.booking-field {
  padding: 22px 26px 18px;
  border-right: 1px solid oklch(0.26 0.010 62);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  transition: background .2s;
}
.booking-field:hover,
.booking-field:focus-within { background: oklch(0.19 0.010 62); }
.booking-field:first-child  { padding-left: 32px; }
.booking-field:nth-child(5) { border-right: 0; }

.booking-field label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 5px;
}
.booking-field label::before {
  content: "";
  width: 3px; height: 3px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
}
.booking-field input {
  background: none;
  border: 0;
  outline: 0;
  color: oklch(0.93 0.012 75);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  padding: 0;
  width: 100%;
  -webkit-appearance: none;
}
.booking-field input::placeholder {
  color: oklch(0.50 0.010 70);
  font-style: italic;
  font-size: 15.5px;
}
.booking-field input[type="date"],
.booking-field input[type="time"] {
  color-scheme: dark;
  font-family: var(--serif);
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(.55) sepia(.25) hue-rotate(5deg);
  cursor: pointer;
  opacity: .7;
}
.booking-submit {
  padding: 0 32px;
  background: var(--brass);
  color: oklch(0.21 0.010 62);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
}
.booking-submit:hover { background: oklch(0.93 0.012 75); }
.booking-submit .arrow { transition: transform .2s; }
.booking-submit:hover .arrow { transform: translateX(3px); }

/* ════════════════════════════════════
   SECTIONS SHARED
   ════════════════════════════════════ */
.section {
  padding: 112px var(--px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
  max-width: 1280px;
  margin: 0 auto 72px;
  align-items: end;
}
.section-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
}
.section-head h2 em { color: var(--brass); font-style: italic; }
.section-head .body { margin: 0; max-width: 44em; }

.container { max-width: 1280px; margin: 0 auto; }

/* ════════════════════════════════════
   SERVICES
   ════════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  padding: 44px 36px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
}
.service:nth-child(3n)      { border-right: 0; }
.service:nth-last-child(-n+3) { border-bottom: 0; }
.service:hover { background: oklch(0.26 0.010 62); }
.service-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}
.service h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.service h3 em { color: var(--brass); font-style: italic; }
.service p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--ink-dim);
}

/* ════════════════════════════════════
   FLEET
   ════════════════════════════════════ */
/* Split layout: due colonne separate (immagine | pannello testo) */
.fleet {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

/* ── Colonna sinistra: spazio visivo / foto ── */
.fleet-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  aspect-ratio: 16/10;                 /* fallback usato solo SENZA foto */
  background:
    repeating-linear-gradient(45deg,
      oklch(0.26 0.010 62) 0, oklch(0.26 0.010 62) 16px,
      oklch(0.37 0.010 62) 16px, oklch(0.37 0.010 62) 32px);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.fleet-placeholder-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 6px 10px;
}
/* Con foto reale: riempie l'intera cella di griglia, centrata e in cover.
   Niente aspect-ratio qui: l'altezza è data dalla colonna testo, così
   l'immagine NON deborda mai sopra il testo (fix regressione overlap). */
.fleet-image.has-photo {
  aspect-ratio: auto;
  height: 100%;
  min-height: 520px;
  padding: 0;
  border-right: 1px solid var(--line-soft);
  background-size: contain !important;   /* l'auto resta sempre intera e si rimpicciolisce */
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: var(--bg);
}
.fleet-image.has-photo::before { display: none; }

/* ── Colonna destra: pannello scuro solido con tutti i testi ── */
.fleet-details {
  background: var(--bg-raise);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
  overflow: hidden;
}

/* ── Welcome Pack VIP (servizio di punta) ── */
.welcome-pack {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--brass);
  padding: 32px 34px;
  min-width: 0;
}
.welcome-pack-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.welcome-pack-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.welcome-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.welcome-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}
.welcome-list li:first-child { border-top: 0; }
.welcome-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 22px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}

/* ── Servizi Esclusivi di Bordo · Comfort di Classe ── */
.fleet-comfort {
  min-width: 0;
}
.fleet-comfort-title {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.comfort-item {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.ci-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.ci-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  text-wrap: pretty;
}

/* ════════════════════════════════════
   CHI SIAMO / DRIVER
   ════════════════════════════════════ */
.driver {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.driver-portrait {
  aspect-ratio: 3/4;
  background:
    repeating-linear-gradient(45deg,
      oklch(0.26 0.010 62) 0, oklch(0.26 0.010 62) 14px,
      oklch(0.37 0.010 62) 14px, oklch(0.37 0.010 62) 28px);
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.driver-portrait span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 6px 10px;
  position: relative;
}
/* Con foto reale del team: riempie il riquadro, ritaglio elegante (ritratto) */
.driver-portrait.has-photo {
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--bg);
}
.driver-copy { display: flex; flex-direction: column; gap: 36px; }
.driver-quote {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.25;
  font-style: italic;
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.01em;
}
.driver-quote::before { content: "«"; color: var(--brass); margin-right: 6px; }
.driver-quote::after  { content: "»"; color: var(--brass); margin-left: 4px; }
.driver-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.driver-stat .big {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--brass);
}
.driver-stat .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

/* ════════════════════════════════════
   PROCESS
   ════════════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
}
.step {
  padding: 44px 36px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.step:last-child { border-right: 0; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--brass);
}
.step-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 0.9;
  color: var(--ink-faint);
  font-style: italic;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
}
.step p {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.82;
}

/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.testimonial {
  padding: 52px 44px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 340px;
}
.testimonial:last-child { border-right: 0; }
.testimonial-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.62;
  font-style: italic;
  margin: 0;
  color: oklch(0.90 0.012 75);
}
.testimonial-quote::before {
  content: "\201C";
  color: var(--brass);
  margin-right: 2px;
  font-size: 30px;
  line-height: 0;
  vertical-align: -6px;
}
.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-author .name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.testimonial-author .role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ════════════════════════════════════
   GOOGLE REVIEWS WIDGET
   ════════════════════════════════════ */
.reviews-widget-wrap {
  border: 1px dashed var(--line);
  padding: 56px 40px;
  background: oklch(0.26 0.010 62);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.stars-row { display: flex; gap: 8px; }
.widget-hint {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: oklch(0.62 0.010 70);
  text-transform: uppercase;
  max-width: 480px;
  line-height: 1.8;
  margin: 0;
}

/* ════════════════════════════════════
   BUSINESS / ACCOUNT AZIENDALE
   ════════════════════════════════════ */
.business {
  background: oklch(0.26 0.010 62);
  padding: 88px var(--px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.business-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.business-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 20px 0 28px;
}
.business-left h2 em { color: var(--brass); font-style: italic; }
.business-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
}
.business-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
}
.business-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.business-list li span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  flex-shrink: 0;
}
.business-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.business-cta:hover { background: var(--brass); color: var(--bg); }

/* ════════════════════════════════════
   FAQ
   ════════════════════════════════════ */
.faq { max-width: 960px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.faq-q .plus {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--brass);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin .4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 14px;
}
.faq-a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--ink-dim);
  max-width: 48em;
}

/* ════════════════════════════════════
   CONTACT
   ════════════════════════════════════ */
.contact {
  padding: 112px var(--px);
  border-top: 1px solid var(--line-soft);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 20px 0 36px;
}
.contact-left h2 em { color: var(--brass); font-style: italic; }
.contact-channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.channel {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.channel .k {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.channel .v {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  word-break: break-word;
}
.channel .v a { color: var(--brass); transition: opacity .2s; }
.channel .v a:hover { opacity: .75; }

.contact-form {
  background: oklch(0.26 0.010 62);
  border: 1px solid var(--line-soft);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-form input,
.contact-form textarea {
  background: none; border: 0; outline: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  padding: 0;
  resize: none;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
  font-size: 16px;
}
.contact-submit {
  align-self: flex-start;
  padding: 14px 28px;
  background: var(--brass);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .2s;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.contact-submit:hover { background: var(--ink); }
.contact-submit:disabled { opacity: .6; cursor: default; }

/* T&C consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0 0;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brass);
  cursor: pointer;
}
.form-consent label {
  font-size: 12px;
  color: oklch(0.62 0.012 75);
  line-height: 1.65;
  cursor: pointer;
  font-family: var(--sans);
}
.form-consent a { color: var(--brass); text-decoration: underline; cursor: pointer; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
  padding: 56px var(--px);
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
}
.footer-brand em { color: var(--brass); font-style: italic; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
  margin-top: 8px;
  max-width: 26em;
}
/* ── Footer · Social (minimal · tipografico · simmetrico) ── */
.footer-social {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  max-width: 26em;
}
.footer-social-title {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.footer-social-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color .2s;
}
.footer-social-links a:hover { color: var(--brass); }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
  font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  padding: 5px 0;
  transition: color .2s;
  cursor: pointer;
}
.footer-col li:hover { color: var(--brass); }
.footer-col li a { color: inherit; }
.footer-bottom {
  max-width: 1280px;
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: oklch(0.24 0.010 62);
  border-top: 1px solid oklch(0.37 0.010 62);
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: oklch(0.82 0.012 75);
  line-height: 1.65;
  max-width: 680px;
}
.cookie-banner a { color: var(--brass); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  padding: 10px 22px;
  background: var(--brass);
  color: oklch(0.21 0.010 62);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: oklch(0.93 0.012 75); }
.cookie-btn-decline {
  padding: 10px 18px;
  background: none;
  border: 1px solid oklch(0.42 0.010 62);
  color: oklch(0.82 0.012 75);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover { border-color: var(--brass); color: oklch(0.87 0.012 75); }

/* ════════════════════════════════════
   TERMS MODAL
   ════════════════════════════════════ */
.terms-overlay {
  position: fixed; inset: 0;
  z-index: 600;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.terms-modal {
  background: oklch(0.26 0.010 62);
  border: 1px solid oklch(0.30 0.010 62);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.terms-modal-head {
  padding: 24px 32px;
  border-bottom: 1px solid oklch(0.26 0.010 62);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.terms-modal-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  margin: 0;
}
.terms-modal-close {
  font-size: 20px;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
  padding: 4px 8px;
  line-height: 1;
}
.terms-modal-close:hover { color: var(--brass); }
.terms-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
}
.terms-modal-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--brass);
  margin: 24px 0 6px;
}
.terms-modal-body h4:first-child { margin-top: 0; }
.terms-modal-body p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-dim);
  margin: 0 0 10px;
}

/* ════════════════════════════════════
   WHATSAPP FAB
   ════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ════════════════════════════════════
   TWEAKS PANEL
   ════════════════════════════════════ */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 256px;
  background: oklch(0.16 0.008 60);
  border: 1px solid var(--line);
  padding: 16px;
  z-index: 300;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.tweaks-panel.on { display: flex; }
.tweaks-panel h6 { margin: 0; font-size: 13px; color: var(--brass); letter-spacing: 0.22em; }
.tweak-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-row button {
  flex: 1;
  padding: 7px 8px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .15s;
}
.tweak-row button.active { border-color: var(--brass); color: var(--brass); }
.tweak-row button:hover  { color: var(--ink); }


/* ════════════════════════════════════════════════════════════
   TABLET  ≤ 1024px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --px: 32px; }

  /* Nav: hide centre links, show hamburger */
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-right  { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 120px var(--px) 56px; gap: 56px; }
  .hero-frame { inset: 72px var(--px) 32px; }
  .hero-top { grid-template-columns: 1fr; gap: 36px; padding-top: 24px; }
  .hero-left h1 { font-size: clamp(52px, 8vw, 96px); margin: 16px 0 28px; }
  .hero-meta { gap: 24px; }
  .lede { font-size: 20px; }

  /* Booking: 2 cols stacked */
  .booking {
    grid-template-columns: 1fr 1fr;
  }
  .booking-field {
    border-bottom: 1px solid oklch(0.26 0.010 62);
    padding: 18px 20px 14px;
  }
  .booking-field:nth-child(1),
  .booking-field:nth-child(3),
  .booking-field:nth-child(5) { border-right: 1px solid oklch(0.26 0.010 62); }
  .booking-field:nth-child(2),
  .booking-field:nth-child(4) { border-right: 0; }
  .booking-field:nth-child(5) { border-right: 1px solid oklch(0.26 0.010 62); border-bottom: 0; }
  /* 5th field spans: reset to avoid orphan */
  .booking-field:nth-child(5) { border-bottom: 0; }
  .booking-submit {
    grid-column: 1 / -1;
    min-width: 0;
    padding: 18px;
    border-top: 1px solid oklch(0.26 0.010 62);
  }

  /* Sections */
  .section { padding: 88px var(--px); }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 36px;
    margin-bottom: 48px;
  }
  .section-head h2 { font-size: clamp(32px, 5.5vw, 56px); }

  /* Services: 2 cols */
  .services { grid-template-columns: 1fr 1fr; }
  .service:nth-child(3n) { border-right: 1px solid var(--line-soft); }
  .service:nth-child(2n) { border-right: 0; }
  .service:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
  .service:nth-last-child(-n+2) { border-bottom: 0; }

  /* Fleet: stack verticale — foto sopra, pannello testo sotto */
  .fleet { grid-template-columns: 1fr; }
  .fleet-image { border-right: 0; border-bottom: 1px solid var(--line-soft); aspect-ratio: 16/9; }
  .fleet-image.has-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    background-size: contain !important;
    background-position: center center !important;
  }
  .fleet-details { padding: 40px var(--px); gap: 32px; }
  .comfort-grid { grid-template-columns: 1fr 1fr; }

  /* Driver / Chi siamo: stack */
  .driver { grid-template-columns: 1fr; gap: 40px; }
  .driver-portrait { aspect-ratio: 16/9; }
  .driver-quote { font-size: 28px; }
  .driver-stats { gap: 24px; }
  .driver-stat .big { font-size: 44px; }

  /* Process: 2 cols */
  .process { grid-template-columns: 1fr 1fr; }
  .step {
    border-bottom: 1px solid var(--line-soft);
    min-height: auto;
    padding: 36px 28px;
  }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
  .step-num { font-size: 56px; }

  /* Testimonials: 1 col */
  .testimonials { grid-template-columns: 1fr; }
  .testimonial {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 36px 0;
    min-height: auto;
  }
  .testimonial:last-child { border-bottom: 0; }

  /* Business */
  .business { padding: 72px var(--px); }
  .business-inner { grid-template-columns: 1fr; gap: 48px; }
  .business-left h2 { font-size: clamp(32px, 5.5vw, 52px); }
  .business-list li { font-size: 18px; }

  /* FAQ */
  .faq-q { font-size: 20px; }

  /* Contact */
  .contact { padding: 88px var(--px); }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-left h2 { font-size: clamp(44px, 7vw, 72px); }
  .channel .v { font-size: 19px; }

  /* Footer */
  .footer { padding: 48px var(--px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ════════════════════════════════════════════════════════════
   MOBILE  ≤ 640px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --px: 20px; }
  html, body { font-size: 14px; }

  /* Nav */
  .nav { padding: 16px var(--px); }
  .nav-brand { font-size: 17px; }

  /* Hero */
  .hero { padding: 100px var(--px) 48px; gap: 40px; }
  .hero-frame { display: none; }
  .hero-left h1 { font-size: clamp(44px, 12vw, 72px); margin: 12px 0 24px; }
  .hero-meta { gap: 16px; font-size: 13px; }
  .hero-meta > div { flex: 1 1 40%; }
  .lede { font-size: 18px; line-height: 1.5; }

  /* Booking: single column */
  .booking { grid-template-columns: 1fr; }
  .booking-field {
    padding: 16px var(--px) 14px;
    border-right: 0 !important;
    border-bottom: 1px solid oklch(0.26 0.010 62);
  }
  .booking-field:first-child { padding-left: var(--px); }
  .booking-field:last-of-type { border-bottom: 0; }
  .booking-field input { font-size: 17px; }
  .booking-field input::placeholder { font-size: 14px; }
  .booking-submit {
    grid-column: 1;
    padding: 18px var(--px);
    font-size: 12px;
    letter-spacing: 0.20em;
  }

  /* Sections */
  .section { padding: 64px var(--px); }
  .section-head { gap: 16px; padding-bottom: 28px; margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(28px, 9vw, 44px); }

  /* Services: single column */
  .services { grid-template-columns: 1fr; }
  .service {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    padding: 32px 0;
    min-height: auto;
  }
  .service:last-child { border-bottom: 0 !important; }
  .service h3 { font-size: 26px; }

  /* Fleet */
  .fleet-image { aspect-ratio: 16/10; }
  .fleet-image.has-photo {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: contain !important;
    background-position: center center !important;
  }
  .fleet-details { padding: 32px var(--px); gap: 28px; }
  .welcome-pack { padding: 24px 22px; }
  .welcome-pack-title { font-size: 26px; }
  .welcome-list li { font-size: 17px; padding-left: 28px; }
  .comfort-grid { grid-template-columns: 1fr; gap: 22px; }
  .ci-title { font-size: 19px; }

  /* Chi siamo */
  .driver-portrait { aspect-ratio: 4/3; }
  .driver-quote { font-size: 22px; }
  .driver-stats { grid-template-columns: 1fr; gap: 20px; }
  .driver-stat .big { font-size: 40px; }

  /* Process: single column */
  .process { grid-template-columns: 1fr; }
  .step {
    padding: 28px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-soft);
  }
  .step:last-child { border-bottom: 0; }
  .step-num { font-size: 48px; }
  .step h4 { font-size: 19px; }

  /* Testimonials already single col */
  .testimonial { padding: 32px 0; }
  .testimonial-quote { font-size: 17px; }

  /* Business */
  .business { padding: 56px var(--px); }
  .business-list li { font-size: 16px; padding: 14px 0; }
  .business-list li span { font-size: 12px; }
  .business-cta { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-q { font-size: 17px; gap: 12px; }
  .faq-item { padding: 20px 0; }

  /* Contact */
  .contact { padding: 64px var(--px); }
  .contact-left h2 { font-size: clamp(40px, 12vw, 60px); }
  .channel { grid-template-columns: 90px 1fr; gap: 12px; padding: 14px 0; }
  .channel .k { font-size: 12px; }
  .channel .v { font-size: 17px; }
  .contact-form { padding: 24px var(--px); }
  .contact-form input,
  .contact-form textarea { font-size: 17px; }
  .contact-submit { align-self: stretch; text-align: center; }

  /* Footer */
  .footer { padding: 40px var(--px); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > div:first-child { grid-column: 1; }
  .footer-brand { font-size: 22px; }
  .footer-social { max-width: none; }
  .footer-bottom { font-size: 12px; }

  /* Cookie */
  .cookie-banner { padding: 16px var(--px); flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-decline { flex: 1; text-align: center; }

  /* Terms modal */
  .terms-overlay { padding: 12px; align-items: flex-end; }
  .terms-modal { max-height: 90vh; border-radius: 0; }
  .terms-modal-head { padding: 18px 20px; }
  .terms-modal-body { padding: 18px 20px; }

  /* WhatsApp FAB: move up if cookie banner visible */
  .whatsapp-fab { bottom: 90px; right: 20px; width: 50px; height: 50px; }

  /* Reviews widget */
  .reviews-widget-wrap { padding: 36px 20px; }
}

/* ════════════════════════════════════════════════════════════
   VERY SMALL  ≤ 390px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-left h1 { font-size: 40px; }
  .section-head h2 { font-size: 26px; }
  .driver-stats { grid-template-columns: 1fr 1fr; }
}

