/* ─── Limousine Langa — Main Stylesheet ─────────────────────────────────── */

:root {
  --gold: #c4a96b;
  --gold-light: #dfc894;
  --bg: #080705;
  --bg2: #0f0d0a;
  --cream: #f0ebe0;
  --cream-dim: #b8b0a0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.4s;
  background: linear-gradient(to bottom, rgba(8,7,5,0.88) 0%, rgba(8,7,5,0.4) 60%, transparent 100%);
}
nav.scrolled {
  background: rgba(8,7,5,0.95);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(196,169,107,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span {
  display: block;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--cream-dim);
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 30px; list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }

/* ─── LANG SWITCHER ─── */
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
}
.lang-btn {
  background: none; border: none;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 300;
  padding: 3px 0;
  transition: color 0.3s;
  line-height: 1;
}
.lang-btn.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.lang-btn:hover { color: var(--gold); }
.lang-sep {
  color: rgba(184,176,160,0.3);
  font-size: 0.65rem;
  line-height: 1;
}
.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}
.nav-cta:hover { background: var(--gold-light); }

/* ─── HERO ─── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,7,5,0.25) 0%,
    rgba(8,7,5,0.1) 35%,
    rgba(8,7,5,0.55) 70%,
    rgba(8,7,5,0.98) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 80px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: 16px 38px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(196,169,107,0.5);
  color: var(--gold);
  padding: 15px 38px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll span {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ─── SHARED SECTION ATOMS ─── */
.gold-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── MANIFESTO ─── */
#manifesto {
  padding: 140px 60px 200px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  overflow: visible;
}
.manifesto-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 30px;
}
.manifesto-text h2 em { font-style: italic; color: var(--gold); }
.manifesto-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 20px;
}
.manifesto-text p strong { color: var(--cream); font-weight: 400; }
.manifesto-img {
  position: relative;
  height: 560px;
  overflow: visible;
}
.manifesto-img-main {
  position: absolute;
  top: 0; left: -40px; right: 40px; bottom: 0;
  background-image: url('uploads/langhe-degustazione.jpg?v=1');
  background-size: cover; background-position: center 30%;
}
.manifesto-img-overlay {
  position: absolute; bottom: -80px; right: -20px;
  width: 55%; height: 45%;
  background-image: url('uploads/langhe-finestrino.jpg?v=1');
  background-size: cover; background-position: center 30%;
  border: 4px solid var(--bg);
  box-shadow: -8px 8px 40px rgba(0,0,0,0.4);
}
.manifesto-stats {
  display: flex; gap: 50px; margin-top: 48px;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}

/* ─── PERCORSI ─── */
#percorsi {
  padding: 120px 60px;
  background: var(--bg2);
}
.percorsi-header { margin-bottom: 80px; }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.tour-card {
  position: relative;
  height: 580px;
  overflow: hidden;
  cursor: pointer;
}
.tour-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tour-card:hover .tour-bg { transform: scale(1.08); }
.tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,5,0) 30%, rgba(8,7,5,0.92) 100%);
  transition: background 0.5s;
}
.tour-card:hover .tour-overlay {
  background: linear-gradient(180deg, rgba(8,7,5,0.2) 0%, rgba(8,7,5,0.95) 100%);
}
.tour-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
}
.tour-num {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.tour-title {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 14px;
}
.tour-desc {
  font-size: 0.9rem; font-weight: 300;
  color: var(--cream-dim); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.tour-card:hover .tour-desc { max-height: 120px; opacity: 1; }
.tour-details {
  display: flex; gap: 24px; margin-top: 20px;
  opacity: 0; transition: opacity 0.4s 0.1s;
}
.tour-card:hover .tour-details { opacity: 1; }
.tour-detail {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-light);
}
.tour-tag {
  position: absolute; top: 28px; right: 28px;
  background: rgba(196,169,107,0.15);
  border: 1px solid rgba(196,169,107,0.4);
  color: var(--gold);
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 7px 14px;
}

/* ─── ROUTE ─── */
#route {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.route-header { margin-bottom: 80px; }
.route-stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.route-stops::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.route-stop {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.stop-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  margin-bottom: 24px;
  transition: background 0.3s;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
}
.route-stop:hover .stop-dot { background: var(--gold); color: var(--bg); }
.stop-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.stop-info {
  font-size: 0.8rem; color: var(--cream-dim);
  line-height: 1.6;
}

/* ─── FLOTTA ─── */
#flotta {
  padding: 120px 0;
  background: var(--bg2);
  overflow: hidden;
}
.flotta-header { padding: 0 60px; margin-bottom: 80px; }
.cars-track {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}
.cars-track::-webkit-scrollbar { display: none; }
.car-card {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,169,107,0.12);
  transition: border-color 0.4s;
}
.car-card:hover { border-color: rgba(196,169,107,0.5); }
.car-img {
  height: 260px;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
  position: relative;
  overflow: hidden;
}
.car-card:hover .car-img { transform: scale(1.05); }
.car-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,7,5,0.8) 100%);
}
.car-body { padding: 28px 30px 36px; }
.car-class {
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.car-name {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 14px;
}
.car-desc {
  font-size: 0.88rem; color: var(--cream-dim);
  line-height: 1.7; margin-bottom: 24px;
}
.car-specs {
  display: flex; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(196,169,107,0.15);
  padding-top: 20px;
}
.car-spec {
  font-size: 0.7rem; color: var(--cream-dim);
  letter-spacing: 0.08em;
}
.car-spec strong {
  display: block; color: var(--cream); font-weight: 400;
  margin-bottom: 2px; font-size: 0.85rem;
}

/* ─── EXPERIENCE ─── */
#esperienza {
  padding: 160px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 80px;
}
.exp-item {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.exp-item.tall { height: 808px; grid-row: span 2; }
.exp-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.exp-item:hover .exp-bg { transform: scale(1.05); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,5,0.1) 30%, rgba(8,7,5,0.88) 100%);
}
.exp-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 38px;
}
.exp-icon {
  font-family: var(--serif);
  font-size: 2.4rem; color: var(--gold);
  margin-bottom: 12px; line-height: 1;
}
.exp-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300;
  margin-bottom: 10px;
}
.exp-desc {
  font-size: 0.88rem; color: var(--cream-dim);
  line-height: 1.7;
}

/* ─── QUOTE ─── */
#quote {
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#quote::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('uploads/langhe-cartina.jpg?v=1');
  background-size: cover; background-position: center 30%;
  opacity: 0.2;
}
#quote::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(8,7,5,0.9) 100%);
}
.quote-inner { position: relative; z-index: 1; }
.quote-mark {
  font-family: var(--serif);
  font-size: 8rem; color: var(--gold);
  opacity: 0.3; line-height: 0.5;
  margin-bottom: 30px;
  display: block;
}
blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--cream);
}
.quote-author {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}

/* ─── PRENOTA / CONTATTI ─── */
#prenota {
  padding: 120px 60px;
  background: var(--bg2);
}
.prenota-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.prenota-info h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.prenota-info h2 em { font-style: italic; color: var(--gold); }
.prenota-info p {
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.8; margin-bottom: 48px;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(196,169,107,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-label {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem; color: var(--cream);
  font-family: var(--serif);
}
.contact-value a {
  color: var(--cream); text-decoration: none;
  transition: color 0.3s;
}
.contact-value a:hover { color: var(--gold); }

/* ─── FORM ─── */
.form-row { margin-bottom: 2px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.form-field {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,169,107,0.12);
  width: 100%;
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-field::placeholder { color: rgba(184,176,160,0.45); }
.form-field:focus { border-color: var(--gold); background: rgba(196,169,107,0.04); }
select.form-field option { background: #1a1610; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
  margin-top: 2px;
}
.form-submit:hover:not(:disabled) { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── FORM STATE PANELS ─── */
.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(196,169,107,0.3);
}
.form-success.show,
.form-error.show { display: block; }
.form-success .state-icon,
.form-error .state-icon {
  font-family: var(--serif);
  font-size: 3rem; color: var(--gold); margin-bottom: 16px;
}
.form-success h3,
.form-error h3 {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 300; margin-bottom: 12px;
}
.form-success p,
.form-error p { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.7; }
.form-error { border-color: rgba(196,169,107,0.2); }

/* ─── HONEYPOT ─── */
.hp-field { display: none !important; }

/* ─── FOOTER ─── */
footer {
  padding: 60px;
  border-top: 1px solid rgba(196,169,107,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.footer-sub {
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--cream-dim);
}
.footer-copy {
  font-size: 0.7rem; color: rgba(184,176,160,0.4);
  letter-spacing: 0.08em;
}
.footer-legal {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 0.08em;
  border-top: 1px solid rgba(196,169,107,0.08);
  padding-top: 20px; margin-top: -10px;
}
.footer-legal a {
  color: rgba(184,176,160,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal .footer-dot { color: rgba(184,176,160,0.25); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  #manifesto { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px 160px; overflow: visible; }
  .manifesto-img { height: 380px; overflow: visible; }
  .manifesto-img-main { left: 0; right: 0; }
  .manifesto-img-overlay { width: 65%; height: 48%; bottom: -80px; right: -10px; left: auto; }
  .tours-grid { grid-template-columns: 1fr; }
  .tour-card { height: 380px; }
  .route-stops { grid-template-columns: repeat(2, 1fr); }
  .route-stops::before { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-item.tall { height: 400px; grid-row: span 1; }
  .exp-item { height: 320px; }
  .prenota-inner { grid-template-columns: 1fr; gap: 60px; }
  #percorsi, #route, #esperienza, #prenota { padding: 80px 24px; }
  .hero-content { padding: 0 24px 80px; max-width: 100%; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero-scroll { right: 24px; }
  .flotta-header { padding: 0 24px; }
  .cars-track { padding: 0 24px; }
  .section-title { font-size: clamp(2rem, 6vw, 3.2rem); }
  .manifesto-text h2 { font-size: clamp(2rem, 6vw, 3rem); }
  .manifesto-stats { gap: 28px; flex-wrap: wrap; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .route-stops { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 16px 20px; }
  .stat-num { font-size: 2.2rem; }
  .prenota-inner { padding: 0; }
  .cars-track { gap: 16px; }
  .car-card { flex: 0 0 300px; }
  blockquote { font-size: clamp(1.3rem, 5vw, 2rem); }
  #percorsi { padding: 60px 20px; }
  #route { padding: 60px 20px; }
  #esperienza { padding: 60px 20px; }
  #prenota { padding: 60px 20px; }
  footer { padding: 32px 20px; }
  .hero-content { padding: 0 20px 80px; }
  .lang-btn { font-size: 0.58rem; }
}

/* ─── WHATSAPP FAB + BARRA AZIONI MOBILE ─────────────────────────────────── */
.wa-fab {
  position: fixed; right: 22px; bottom: 92px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

.mobile-cta-bar { display: none; }

@media (max-width: 760px) {
  .wa-fab { display: none; }
  .mobile-cta-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    display: flex;
    background: rgba(8,7,5,0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(196,169,107,0.25);
  }
  .mobile-cta-bar a {
    flex: 1; text-align: center; padding: 15px 0;
    font-family: var(--sans); font-size: 0.72rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; color: var(--cream);
  }
  .mobile-cta-bar a:first-child {
    border-right: 1px solid rgba(196,169,107,0.25);
    color: var(--gold);
  }
  .mobile-cta-bar a:last-child { background: #25d366; color: #fff; }
  body { padding-bottom: 52px; }
}

/* ─── MANIFESTO LEAD (SEO intro) ─────────────────────────────────────────── */
.manifesto-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.manifesto-lead strong { color: var(--gold-light); font-weight: 400; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
#faq { padding: 120px 60px; max-width: 900px; margin: 0 auto; scroll-margin-top: 80px; }
#esperienza { scroll-margin-top: 80px; }
.faq-header { margin-bottom: 56px; }
.faq-list { border-top: 1px solid rgba(196,169,107,0.2); }
.faq-item {
  border-bottom: 1px solid rgba(196,169,107,0.2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-answer { padding: 0 0 26px; }
.faq-answer p {
  color: var(--cream-dim);
  line-height: 1.8;
  font-size: 0.98rem;
}
.faq-answer strong { color: var(--gold-light); font-weight: 400; }

/* ─── SUBPAGES (servizi / località) ──────────────────────────────────────── */
.subpage-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 70px;
  background-size: cover;
  background-position: center;
}
.subpage-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.35) 60%, rgba(8,7,5,0.55) 100%);
}
.subpage-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.subpage-hero .section-eyebrow { color: var(--gold); }
.subpage-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--cream);
  margin: 10px 0 18px;
}
.subpage-hero h1 em { color: var(--gold); font-style: italic; }
.subpage-hero p { color: var(--cream-dim); font-size: 1.05rem; line-height: 1.7; max-width: 640px; }

.subpage-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 90px 60px;
}
.subpage-body h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--cream);
  margin: 48px 0 18px;
}
.subpage-body h2:first-child { margin-top: 0; }
.subpage-body h2 em { color: var(--gold); font-style: italic; }
.subpage-body h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 28px 0 8px;
  letter-spacing: 0.02em;
}
.subpage-body p { color: var(--cream-dim); line-height: 1.85; margin-bottom: 16px; }
.subpage-body ul { color: var(--cream-dim); line-height: 1.85; margin: 0 0 16px 22px; }
.subpage-body li { margin-bottom: 8px; }
.subpage-body strong { color: var(--cream); font-weight: 400; }
.subpage-body a { color: var(--gold); }

.subpage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 40px;
}
.subpage-gallery div {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.sub-cta {
  text-align: center;
  padding: 90px 60px 110px;
  border-top: 1px solid rgba(196,169,107,0.2);
  max-width: 820px;
  margin: 0 auto;
}
.sub-cta h2 { font-family: var(--serif); font-weight: 300; font-size: 2rem; color: var(--cream); margin-bottom: 14px; }
.sub-cta h2 em { color: var(--gold); font-style: italic; }
.sub-cta p { color: var(--cream-dim); margin-bottom: 30px; }
.sub-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── TOUR CARD → link alle pagine servizio ─────────────────────────────── */
.tour-card { cursor: pointer; }
.tour-stretch {
  position: absolute;
  inset: 0;
  z-index: 6;
  text-indent: -9999px;
  overflow: hidden;
}

/* ─── SERVICES LIST (dentro la sezione "Servizi" / #route) ───────────────── */
.route-services {
  max-width: 760px;
  margin: 68px auto 0;
  text-align: center;
}
.route-services-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 26px;
}
.route-services ul {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  column-gap: 64px;
  row-gap: 4px;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
/* linea dorata verticale al centro */
.route-services ul::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
}
.route-services li:nth-child(-n+4) { text-align: right; padding-right: 8px; }
.route-services li:nth-child(n+5)  { text-align: left;  padding-left: 8px; }
.route-services li a {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  padding: 9px 0;
  transition: color 0.3s, letter-spacing 0.3s;
}
.route-services li a:hover {
  color: var(--gold);
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  #faq { padding: 80px 20px; }
  .faq-item summary { font-size: 1.1rem; }
  .subpage-hero { padding: 0 20px 48px; min-height: 56vh; }
  .subpage-body { padding: 56px 20px; }
  .subpage-gallery { grid-template-columns: 1fr 1fr; padding: 0 20px 30px; }
  .sub-cta { padding: 60px 20px 90px; }
  .route-services { margin-top: 48px; }
  /* mobile: colonna singola, niente divisore */
  .route-services ul {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: 1fr;
    row-gap: 2px;
  }
  .route-services ul::before { display: none; }
  .route-services li:nth-child(-n+4),
  .route-services li:nth-child(n+5) { text-align: center; padding: 0; }
  .route-services li a { font-size: 1.16rem; padding: 11px 0; }
}
