/* ═══════════════════════════════════════════════════════════════
   BELLAVISTA SAN TEODORO — Esperienze Stylesheet
   Design: Maritime Luxury — Navy · Gold · White · Cream
   Self-contained: no dependency on /assets/css/style.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:        #0B1728;
  --navy-mid:    #0F2040;
  --navy-soft:   #152848;
  --blue-deep:   #053468;
  --blue:        #0B5EA8;
  --azure:       #3A8CC5;
  --azure-light: #7BBFE0;
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-dark:   #9E7C30;
  --gold-pale:   #F0E4BE;
  --white:       #FFFFFF;
  --ivory:       #FAFAF6;
  --cream:       #F4EDE1;
  --pearl:       #EDE5D6;
  --text-dark:   #1B2240;
  --text-mid:    #4E5470;
  --text-light:  rgba(255,255,255,0.92);
  --text-muted:  rgba(255,255,255,0.58);
  --black:       #080C14;
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.22);
  --shadow-navy: 0 20px 60px rgba(11,23,40,0.35);
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --transition:  0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; user-drag: none; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.15;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--gold-dark); }
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.8rem auto 1.4rem;
  border-radius: 2px;
}
.dark-section .section-title { color: var(--white); }
.dark-section .section-title span { color: var(--gold); }
.dark-section .section-sub { color: var(--text-muted); }

/* ── Layout helpers ──────────────────────────────────────────── */
section { padding: 5.5rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0.6rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(11,23,40,0.97);
  backdrop-filter: blur(24px);
  padding: 0.4rem 2.5rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 700; color: var(--gold);
  white-space: nowrap;
}
.nav-logo-img { height: 90px; width: auto; display: block; object-fit: contain; }
.nav-links {
  display: flex; list-style: none;
  gap: 1.8rem; align-items: center;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-exp-active {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px; padding: 0.28rem 1rem 0.3rem;
}
.nav-links a.nav-exp-active::after { display: none; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.btn-back-site {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); padding: 0.48rem 1.4rem;
  border-radius: 30px; border: none;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.28);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 0.3rem;
}
.btn-back-site:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--gold);
  border-radius: 2px; transition: all var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(11,23,40,0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.6rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem; color: var(--text-light);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mob-exp-link { color: var(--gold) !important; }
.mob-back-link { font-size: 1.2rem !important; color: var(--gold-light) !important; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--gold);
  font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ════════════════════════════════════════════════════════════════
   HERO PRINCIPALE (index)
   Stack z-index: bg(0) → overlay(1) → body(2) → wave(1, bottom)
════════════════════════════════════════════════════════════════ */
.hero-main {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  /* spazio sopra per navbar fissa (logo 90px + padding) */
  padding: 110px 1.5rem 100px;
}

/* Immagine di sfondo */
.hero-main__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04); /* leggero zoom per evitare bordi bianchi */
}

/* Overlay scuro sfumato */
.hero-main__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8,18,36,0.60) 0%,
      rgba(8,18,36,0.52) 42%,
      rgba(8,18,36,0.68) 78%,
      rgba(8,18,36,0.92) 100%);
}

/* Contenuto centrato — SOPRA overlay e onda */
.hero-main__body {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  width: 100%;
}

/* Badge pill */
.hero-main__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 0.42rem 1.4rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeInDown 0.9s ease 0.15s both;
}

/* Titolo principale */
.hero-main__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  background: linear-gradient(155deg, #ffffff 15%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Sottotitolo inline del titolo */
.hero-main__title-sm {
  display: block;
  font-size: 0.48em;
  letter-spacing: 0.04em;
  -webkit-text-fill-color: var(--gold-light);
  color: var(--gold-light);
  margin-top: 0.3em;
  font-style: italic;
}

/* Lead text */
.hero-main__sub {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 0.8rem;
  line-height: 1.65;
  animation: fadeInUp 0.9s ease 0.5s both;
}

/* Divisore con gemma */
.hero-main__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.8rem auto 2rem;
  color: var(--gold);
  animation: fadeInUp 0.9s ease 0.65s both;
}
.hero-main__rule::before,
.hero-main__rule::after {
  content: '';
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7));
}
.hero-main__rule::after {
  background: linear-gradient(90deg, rgba(201,168,76,0.7), transparent);
}

/* CTA button */
.hero-main__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  padding: 1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.9s ease 0.82s both;
}
.hero-main__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(201,168,76,0.65);
  color: var(--black);
}

/* Onda di transizione — dietro il contenuto */
.hero-main__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;           /* sotto il contenuto (z-index 3) */
  line-height: 0;
  pointer-events: none;
}
.hero-main__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ════════════════════════════════════════════════════════════════
   HERO CATEGORIE (pagine singole) — rimangono le classi vecchie
════════════════════════════════════════════════════════════════ */
.exp-hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
  padding: 108px 1.5rem 80px;
}
.exp-hero--cat { height: 62vh; min-height: 420px; }

.exp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.exp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(5,15,30,0.5) 0%,
    rgba(5,15,30,0.25) 45%,
    rgba(5,15,30,0.8) 100%);
}
.exp-hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 900px; width: 100%;
}
.exp-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 0.4rem 1.3rem;
  border-radius: 30px; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeInDown 0.8s ease 0.1s both;
}
.exp-hero-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  background: linear-gradient(150deg, var(--white) 20%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.8rem;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.exp-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.exp-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  z-index: 2; line-height: 0; pointer-events: none;
}
.exp-hero-wave svg { display: block; width: 100%; }

/* ════════════════════════════════════════════════════════════════
   ECOMMERCE CARD GRID — Full Width
════════════════════════════════════════════════════════════════ */
.exp-catalog-section { background: var(--ivory); }
.exp-catalog-section .container { padding-bottom: 0; }

/* Full-width grid (no max-width container) */
.exp-grid-fw {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
  margin-top: 2.5rem;
}

/* Keep old .exp-grid for any fallback */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.exp-card {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  box-shadow: 0 8px 36px rgba(11,23,40,0.14);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
/* Card nella griglia full-width: angoli zero, proporzione orizzontale */
.exp-grid-fw .exp-card {
  border-radius: 0;
  border: none;
  aspect-ratio: 4/3;
  box-shadow: none;
}
.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(11,23,40,0.28), 0 0 0 1px rgba(201,168,76,0.28);
}

.exp-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.72s ease;
  display: block;
}
.exp-card:hover .exp-card-img { transform: scale(1.09); }

.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,18,36,0.04) 0%,
    rgba(8,18,36,0.18) 35%,
    rgba(8,18,36,0.68) 68%,
    rgba(8,18,36,0.93) 100%);
  transition: background var(--transition);
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(180deg,
    rgba(8,18,36,0.08) 0%,
    rgba(8,18,36,0.28) 35%,
    rgba(8,18,36,0.76) 68%,
    rgba(8,18,36,0.97) 100%);
}

.exp-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem 1.8rem;
  display: flex; flex-direction: column;
  gap: 0;
}
.exp-card-badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.32);
  color: var(--gold-light);
  padding: 0.22rem 0.8rem; border-radius: 20px;
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; align-self: flex-start;
  margin-bottom: 0.65rem;
  font-family: 'Inter', sans-serif;
}
.exp-card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; letter-spacing: 0.03em;
  line-height: 1.1; margin-bottom: 0.55rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.exp-card-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.72);
  line-height: 1.6; margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.exp-card:hover .exp-card-desc { opacity: 1; transform: translateY(0); }

.exp-card-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); padding: 0.6rem 1.5rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(201,168,76,0.32);
  transition: all var(--transition);
  transform: translateY(3px); opacity: 0.92;
}
.exp-card:hover .exp-card-btn {
  transform: translateY(0); opacity: 1;
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
}

/* ════════════════════════════════════════════════════════════════
   PARTNER SECTION
════════════════════════════════════════════════════════════════ */
.partner-section { background: var(--navy-mid); }
.partner-header { text-align: center; margin-bottom: 3.5rem; }
.exp-badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-dark); padding: 0.35rem 1rem;
  border-radius: 20px; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.2rem; font-family: 'Inter', sans-serif;
}
.partner-intro {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: start;
}
.partner-text {}
.partner-desc {
  color: rgba(255,255,255,0.78); font-size: 1rem;
  line-height: 1.85; margin-bottom: 1.2rem;
}
.partner-link {
  color: var(--gold-light); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.25s;
}
.partner-link:hover { color: var(--gold); }
.partner-dest-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin: 2rem 0 1rem;
}
.partner-destinations {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
}
.dest-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-light); padding: 0.32rem 0.9rem;
  border-radius: 30px; font-size: 0.8rem;
  letter-spacing: 0.05em; font-family: 'Inter', sans-serif;
  opacity: 0; transform: scale(0.9) translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s;
}
.dest-badge.visible { opacity: 1; transform: scale(1) translateY(0); }
.dest-badge:hover { background: rgba(201,168,76,0.15); }

/* Services */
.partner-services {}
.services-heading {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem; margin-bottom: 2rem;
}
.service-tag {
  display: flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.55rem 0.9rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.service-tag:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.22);
  color: var(--gold-light);
}
.svc-icon { font-size: 1rem; flex-shrink: 0; }
.partner-why {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  color: rgba(255,255,255,0.72); font-size: 0.88rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   WHATSAPP STRIP
════════════════════════════════════════════════════════════════ */
.wa-strip {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-mid));
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 1.8rem 0;
}
.wa-strip-inner {
  display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap; justify-content: space-between;
}
.wa-strip-text {
  display: flex; align-items: center; gap: 1.2rem;
}
.wa-strip-icon { font-size: 2rem; flex-shrink: 0; }
.wa-strip-text strong {
  display: block; color: var(--white);
  font-size: 1rem; margin-bottom: 0.2rem;
}
.wa-strip-text p { color: var(--text-muted); font-size: 0.88rem; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #fff;
  padding: 0.8rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em;
  transition: all var(--transition); flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   INDIVIDUAL PAGE — INTRO
════════════════════════════════════════════════════════════════ */
.exp-intro-section { background: var(--cream); padding: 4rem 0 5rem; }
.exp-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-mid);
  margin-bottom: 3rem; font-family: 'Inter', sans-serif;
}
.exp-breadcrumb a { color: var(--gold-dark); transition: color 0.25s; }
.exp-breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: var(--text-mid); opacity: 0.5; }

.exp-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.exp-intro-text {}
.exp-intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.exp-intro-desc {
  color: var(--text-mid); font-size: 1.02rem;
  line-height: 1.9; margin-bottom: 2rem;
}
.btn-wa-sm {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--gold-dark);
  border: 1.5px solid rgba(158,124,48,0.4);
  padding: 0.62rem 1.5rem; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-wa-sm:hover {
  background: var(--gold-dark); color: var(--white);
  border-color: var(--gold-dark); transform: translateY(-2px);
}

.exp-intro-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(11,23,40,0.18);
}
.exp-intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.exp-intro-img-wrap:hover img { transform: scale(1.04); }
.exp-intro-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,23,40,0.28) 100%);
}

/* ════════════════════════════════════════════════════════════════
   WIDGET SECTION
════════════════════════════════════════════════════════════════ */
.widget-section { background: var(--ivory); }
.widget-wrap {
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,23,40,0.09);
  border: 1px solid rgba(201,168,76,0.12);
}
.widget-inner {
  padding: 0.5rem;
  min-height: 400px;
}
/* Regiondo brand-color hints (CSS custom props cascade into shadow DOM when supported) */
product-catalog-widget {
  --primary-color:           #C9A84C;
  --primary-color-dark:      #9E7C30;
  --button-background-color: #C9A84C;
  --button-text-color:       #080C14;
  --accent-color:            #C9A84C;
  display: block; width: 100%;
}

/* ════════════════════════════════════════════════════════════════
   RELATED CARDS
════════════════════════════════════════════════════════════════ */
.related-section { background: var(--navy); padding: 5rem 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.related-card {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 2/3; cursor: pointer;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
}
.related-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.related-card:hover .related-card-img { transform: scale(1.08); }
.related-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,36,0.08) 0%, rgba(8,18,36,0.82) 100%);
}
.related-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 0.9rem; text-align: center;
}
.related-card-badge {
  display: block; font-size: 0.6rem;
  color: var(--gold-light); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  opacity: 0; transition: opacity 0.3s;
}
.related-card:hover .related-card-badge { opacity: 1; }
.related-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 0.4rem;
}
.related-card-cta {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.62rem; color: var(--gold-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.related-card:hover .related-card-cta { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
#footer { background: #060A14; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-inner { padding: 4rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-grid-exp {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand .footer-logo-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18rem; font-weight: 700; color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-logo-img-s { width: 38px; height: 38px; object-fit: contain; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-phone-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.9rem; color: var(--text-muted); font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-phone-link:hover { color: var(--gold); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom-bar { padding: 0; }
.fbot-inner { padding: 1.5rem 0 2rem; }
.fbot-line-wrap {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.fbot-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
}
.fbot-diamond { font-size: 0.7rem; color: rgba(201,168,76,0.45); flex-shrink: 0; }
.fbot-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-credits { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.footer-credits a { color: var(--text-muted); transition: color var(--transition); }
.footer-credits a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waveDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wave-anim use:nth-child(1) { animation: waveDrift 12s linear infinite; }
.wave-anim use:nth-child(2) { animation: waveDrift 18s linear infinite reverse; }
.wave-anim use:nth-child(3) { animation: waveDrift 9s  linear infinite; }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.26s; }
.reveal-delay-3 { transition-delay: 0.40s; }

/* Hero title sub-line */
.hero-title-sub {
  display: block;
  font-size: 0.52em;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  margin-top: 0.15em;
  -webkit-text-fill-color: var(--gold-light);
}

/* ════════════════════════════════════════════════════════════════
   CONTACTS SECTION
════════════════════════════════════════════════════════════════ */
.contacts-section { background: var(--navy-soft); padding: 5rem 0; }
.contacts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.25);
  border-color: rgba(201,168,76,0.3);
}
.contact-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: rgba(255,255,255,0.75); font-size: 0.92rem;
  line-height: 1.5; margin-bottom: 0.9rem;
  transition: color 0.25s;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact-item:hover { color: var(--gold-light); }
.contact-wa { color: #25D366 !important; }
.contact-wa svg { color: #25D366 !important; }
.contact-wa:hover { color: #1ebe5c !important; }
.contact-address span { line-height: 1.6; }
.contact-piva {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  margin-top: 1.2rem; font-family: 'Inter', sans-serif;
}

/* Social links */
.social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.social-link {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.72); font-size: 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.55rem 1rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
  color: var(--gold-light); transform: translateX(3px);
}
.social-link svg { flex-shrink: 0; }
.social-link--xhs:hover { background: rgba(255,65,84,0.1); border-color: rgba(255,65,84,0.3); color: #ff4154; }
.social-link--maps:hover { background: rgba(66,133,244,0.1); border-color: rgba(66,133,244,0.3); color: #7bb3f7; }
.xhs-icon {
  font-size: 0.65rem; font-weight: 800;
  background: #ff4154; color: #fff;
  padding: 0.1rem 0.35rem; border-radius: 4px;
  flex-shrink: 0; letter-spacing: 0;
}

/* Footer social row */
.footer-social-row {
  display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.footer-soc-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-soc-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.footer-soc-btn--wa:hover { background: rgba(37,211,102,0.15); border-color: #25D366; color: #25D366; }

/* Footer 4 columns */
.footer-grid-exp { grid-template-columns: 2fr 1fr 1fr 1fr; }

.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   CONTATTACI BUTTON (navbar + mobile)
════════════════════════════════════════════════════════════════ */
.btn-contattaci {
  background: none;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  padding: 0.3rem 1.1rem 0.32rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-contattaci:hover {
  background: var(--gold);
  color: var(--black);
}

.mob-contattaci-btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  padding: 0.5rem 2.2rem;
  border-radius: 30px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.mob-contattaci-btn:hover { background: rgba(201,168,76,0.1); }

/* ════════════════════════════════════════════════════════════════
   MODALS
════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8,18,36,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.26s ease;
}
.modal-overlay[hidden] { display: none; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 2.6rem 2.4rem 2.2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(8,18,36,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  animation: modalSlideUp 0.32s cubic-bezier(0.22,1,0.36,1);
}
.modal-box--form { max-width: 600px; }

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  background: rgba(11,23,40,0.07);
  border: 1px solid rgba(11,23,40,0.1);
  border-radius: 50%;
  font-size: 0.95rem;
  color: var(--text-mid);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.modal-close:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.modal-icon { font-size: 2.4rem; text-align: center; margin-bottom: 0.8rem; }

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.modal-body-text {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* FAQ link inside gate popup */
.modal-faq-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(158,124,48,0.07);
  border: 1.5px solid rgba(158,124,48,0.3);
  color: var(--gold-dark);
  padding: 0.72rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-bottom: 1.6rem;
}
.modal-faq-link:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}

/* Gate checkbox */
.gate-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  transition: border-color 0.22s;
  user-select: none;
  -webkit-user-select: none;
}
.gate-checkbox-label:hover { border-color: rgba(201,168,76,0.35); }
.gate-checkbox-label input[type="checkbox"] { display: none; }

.gate-checkmark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid rgba(158,124,48,0.4);
  border-radius: 5px;
  background: var(--white);
  position: relative;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.gate-checkbox-label input:checked ~ .gate-checkmark {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.gate-checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid var(--white);
  border-top: none; border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.18s;
}
.gate-checkbox-label input:checked ~ .gate-checkmark::after { opacity: 1; }

/* Gate continue button */
.btn-gate-continue {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.28);
}
.btn-gate-continue:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
  transform: none !important;
}
.btn-gate-continue:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

/* ── Contact form ─────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.req { color: var(--gold-dark); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid rgba(11,23,40,0.14);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(158,124,48,0.12);
}
.form-group input.field-error,
.form-group textarea.field-error { border-color: #c94444; }
.form-group textarea { resize: vertical; min-height: 110px; }

.cf-feedback {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cf-feedback.success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #185c32;
}
.cf-feedback.error-msg {
  background: rgba(201,68,68,0.08);
  border: 1px solid rgba(201,68,68,0.28);
  color: #8b2020;
}

.btn-cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  padding: 0.95rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.28);
  margin-top: 0.2rem;
}
.btn-cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
.btn-cf-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* ════════════════════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--cream); padding: 5.5rem 0; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(158,124,48,0.2);
}
.faq-item:first-child { border-top: 1px solid rgba(158,124,48,0.2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question[aria-expanded="true"] { color: var(--gold-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(158,124,48,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: rotate(45deg);
}
.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--white);
}

.faq-answer {
  padding: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.85;
}
.faq-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.faq-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .exp-grid    { grid-template-columns: repeat(2, 1fr); }
  .exp-grid-fw { grid-template-columns: repeat(2, 1fr); }
  .partner-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid-exp { grid-template-columns: 1fr 1fr !important; }
  .contacts-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  #navbar { padding: 0.9rem 1.4rem; }
  #navbar.scrolled { padding: 0.6rem 1.4rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-back-site { display: none; }

  /* Nuovo hero index su mobile */
  .hero-main { height: 100svh; padding: 90px 1.2rem 90px; }
  .hero-main__title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-main__title-sm { font-size: 0.5em; }
  .hero-main__cta { padding: 0.9rem 2rem; font-size: 0.82rem; }

  /* Hero categorie su mobile */
  .exp-hero--cat  { height: 58vh; }
  .exp-hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }

  .exp-grid    { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .exp-grid-fw { grid-template-columns: 1fr; }
  .exp-grid-fw .exp-card { aspect-ratio: 3/2; }
  .exp-card-desc { opacity: 1; transform: none; }
  .exp-card-btn  { opacity: 1; transform: none; }

  .exp-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .exp-intro-img-wrap { order: -1; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid-exp { grid-template-columns: 1fr !important; }

  .wa-strip-inner { flex-direction: column; text-align: center; }
  .wa-strip-text { flex-direction: column; text-align: center; }

  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid-exp { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .exp-grid { max-width: 100%; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 2rem 1.4rem 1.8rem; }
  .modal-title { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
