/* ─────────────────────────────────────────────────────────
   VILLA LUZI · SITE.CSS
   Design system condiviso. Unica fonte di stile per tutte
   le pagine nuove. Le due pagine bloccate (landing ristorante
   /il-segreto e campagna /esperienze/aperitivi-erba) NON
   linkano questo foglio — mantengono i loro stili inline.
   ─────────────────────────────────────────────────────────
   PALETTE · BASE PANNA chiara, con CORALLO come colore di
   azione/contrasto. Ottanio/oro restano accenti. NAVBAR e
   FOOTER restano scuri (ottanio/verde-notte): sono il "chrome".
   Anche le fasce immersive (hero, info, faq, closing,
   editorial-feature, media-band, cta-split, offset-panel,
   site-footer, wow-atmos) restano su fondo scuro con testo
   avorio/whisper. Tutto il resto del contenuto vive su panna
   con testo inchiostro e link corallo.
   ─────────────────────────────────────────────────────────
   NOMI DA RIFATTORIZZARE GLOBALMENTE (cerca/sostituisci):
   - "Il Segreto"  → nome ristorante (in revisione lato cliente).
     Lo slug della route /il-segreto NON va rinominato senza
     istruzione esplicita.
   ───────────────────────────────────────────────────────── */

:root {
  --ottanio: #0E3B3E;
  --ottanio-deep: #0a2d2f;
  --verde-notte: #081E20;
  /* Oro ritarato: champagne rose-gold, più caldo — sta in palette col
     corallo/rosa. Resta accento del "chrome" (navbar/footer) e delle
     emphasi in corsivo; CTA primaria = corallo. */
  --oro: #C9A079;
  --oro-soft: #b8935f;
  --oro-bright: #d8b486;
  --avorio: #F4ECDC;
  --avorio-warm: #ece2cf;
  --rosa-rame: #D49785;
  --inchiostro: #1A1A1A;
  /* base panna chiara */
  --panna: #F3ECDF;
  --panna-warm: #EAE0CE;
  --panna-deep: #E2D6C0;
  --ink-soft: rgba(26, 26, 26, 0.66);
  --ink-faint: rgba(26, 26, 26, 0.14);
  /* glassmorphism (panna traslucida) */
  --glass-bg: rgba(243, 236, 223, 0.62);
  --glass-edge: rgba(255, 255, 255, 0.55);
  --glass-solid: rgba(243, 236, 223, 0.95);
  --whisper: rgba(244, 236, 220, 0.65);
  --whisper-soft: rgba(244, 236, 220, 0.4);
  --whisper-faint: rgba(244, 236, 220, 0.15);

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --maxw-wide: 1400px;

  --pad-section: 140px 32px;
  --pad-section-tight: 100px 20px;

  --topbar-h: 88px;
  --topbar-h-scrolled: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

body {
  background: var(--panna);
  color: var(--inchiostro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--corallo); color: var(--panna); }

/* Microtype safety */
.micro {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
}

/* ─── Grain overlay globale ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ─── Tipografia utility ─── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--oro);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-eyebrow .line {
  width: 30px;
  height: 1px;
  background: var(--corallo-soft);   /* corpo: hairline corallo, non oro */
}
.section-eyebrow.center { justify-content: center; width: 100%; }

.eyebrow-block {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

/* Display / serif */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--inchiostro);
}
.display em { font-style: italic; color: var(--oro); font-weight: 400; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--inchiostro);
  line-height: 1.1;
}
h1 em, h2 em, h3 em, h4 em { font-style: italic; color: var(--oro); font-weight: 400; }

.italic-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

/* ─── Layout containers ─── */
.container { max-width: var(--maxw); margin: 0 auto; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; }
.container-wide { max-width: var(--maxw-wide); margin: 0 auto; }

section { position: relative; padding: var(--pad-section); }

.section-divider-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oro-soft), transparent);
}

/* ═══════════════════════════════════════════════════════════
   TOPBAR · navigazione globale a 4 voci + Offerte + CTA
   Le voci restano nell'HTML statico (per i crawler); il menu
   mobile è gestito da JS, ma i link sono sempre nel sorgente.
   ═══════════════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(8,30,32,0.85) 0%, rgba(8,30,32,0) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: padding 0.4s ease, background 0.4s ease;
}
.topbar.scrolled {
  padding: 12px 32px;
  background: rgba(8,30,32,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.topbar-mark:hover { opacity: 0.85; }
.topbar-mark img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  transition: height 0.4s ease;
}
.topbar.scrolled .topbar-mark img { height: 44px; }

/* Desktop nav */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.topbar-item { position: relative; display: flex; align-items: center; }
.topbar-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--avorio);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s ease;
}
.topbar-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--oro);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.topbar-link:hover { color: var(--oro); }
.topbar-link:hover::after { transform: scaleX(1); }
.topbar-link[aria-current="page"],
.topbar-link.is-section { color: var(--oro); }
.topbar-link[aria-current="page"]::after,
.topbar-link.is-section::after { transform: scaleX(1); }

/* Caret per le voci con dropdown */
.topbar-caret {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.topbar-item.has-menu:hover .topbar-caret,
.topbar-item.has-menu:focus-within .topbar-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown desktop (pura CSS: hover + focus-within) */
.topbar-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 212px;
  margin-top: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(8, 30, 32, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--whisper-soft);
  border-radius: 4px;
  box-shadow: 0 26px 60px -22px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 120;
}
/* ponte invisibile fra link e menu: evita la perdita di hover sul gap */
.topbar-menu::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
}
.topbar-item.has-menu:hover .topbar-menu,
.topbar-item.has-menu:focus-within .topbar-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
.topbar-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--avorio);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.topbar-menu a:hover,
.topbar-menu a:focus-visible {
  background: rgba(201, 168, 106, 0.12);
  color: var(--oro);
}
.topbar-menu a[aria-current="page"],
.topbar-menu a.is-section { color: var(--oro); }

.topbar-actions { display: flex; align-items: center; gap: 14px; }

.topbar-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--avorio);
  border: 1px solid var(--whisper-soft);
  border-radius: 50%;
  transition: all 0.4s ease;
  text-decoration: none;
}
.topbar-ig svg { width: 16px; height: 16px; }
.topbar-ig:hover { background: var(--avorio); color: var(--ottanio); border-color: var(--avorio); }

.topbar-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ottanio);
  text-decoration: none;
  padding: 11px 22px;
  background: var(--oro);
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.topbar-cta:hover { background: var(--avorio); transform: translateY(-1px); }

/* Hamburger button (mobile) */
.topbar-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--whisper-soft);
  border-radius: 50%;
  background: transparent;
  color: var(--avorio);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}
.topbar-burger:hover { border-color: var(--oro); color: var(--oro); }
.topbar-burger svg { width: 18px; height: 18px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8,30,32,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: 96px 32px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--whisper-soft);
  color: var(--avorio);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  color: var(--avorio);
  text-decoration: none;
  letter-spacing: -0.005em;
  font-weight: 400;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 1px solid var(--whisper-faint);
}
.mobile-nav-link em { font-style: italic; color: var(--oro); }
.mobile-nav-link[aria-current="page"],
.mobile-nav-link.is-section { color: var(--oro); font-style: italic; }

/* Sotto-voci del drawer mobile */
.mobile-nav-sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 12px 0 2px;
}
.mobile-nav-sub a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--whisper);
  text-decoration: none;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.25s ease;
}
.mobile-nav-sub a:hover,
.mobile-nav-sub a:focus-visible { color: var(--oro); }
.mobile-nav-sub a[aria-current="page"],
.mobile-nav-sub a.is-section { color: var(--oro); }
.mobile-nav-cta {
  margin-top: 36px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--oro);
  color: var(--ottanio);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
}
.mobile-nav-cta svg { width: 14px; height: 14px; }
.mobile-nav-meta {
  margin-top: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--whisper);
  line-height: 1.6;
}
.mobile-nav-meta a {
  color: var(--avorio);
  text-decoration: none;
  border-bottom: 1px solid var(--whisper-soft);
}

body.nav-open { overflow: hidden; }

/* Navbar: rispetta prefers-reduced-motion (niente animazioni di caret/menu/drawer) */
@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar-mark img,
  .topbar-caret,
  .topbar-menu,
  .topbar-link::after,
  .mobile-nav,
  .topbar-cta,
  .topbar-ig { transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   HERO · pattern condiviso per pillar e sotto-pagine
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 100px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(14,59,62,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,106,0.06) 0%, transparent 50%),
    var(--verde-notte);
  overflow: hidden;
}

.hero--compact {
  min-height: 72vh;
  min-height: 72svh;
  padding: 160px 32px 80px;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(4,18,20,0.7) 60%, var(--verde-notte) 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.98) brightness(0.72);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,30,32,0.42) 0%, rgba(8,30,32,0.16) 40%, rgba(8,30,32,0.32) 72%, rgba(8,30,32,0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--oro); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--avorio);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--oro);
  display: block;
  font-size: 0.82em;
  margin-top: 0.05em;
}

.hero-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--oro), transparent);
  margin: 40px auto 28px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 300;
  color: var(--whisper);
  letter-spacing: 0.02em;
  margin: 0 auto 8px;
  max-width: 720px;
}

.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
  margin-top: 24px;
  margin-bottom: 40px;
}
.hero-meta .sep { color: var(--whisper-soft); margin: 0 12px; }

.hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Apertura answer-ready (lead) ─── */
.lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--inchiostro);
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto;
}
.lead p { margin-bottom: 1em; }
.lead p:last-child { margin-bottom: 0; }
.lead strong {
  font-style: normal;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: var(--oro);
}

/* ─── Prose / body editoriale ─── */
.prose {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--inchiostro);
}
.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--corallo-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--corallo-soft);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.prose a:hover { color: var(--corallo); border-bottom-color: var(--corallo); }
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 2em 0 0.6em;
}
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 1.6em 0 0.4em;
}
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  border-left: 2px solid var(--oro);
  padding: 0 0 0 24px;
  margin: 1.6em 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  background: var(--corallo);
  color: var(--inchiostro);   /* AA: panna su corallo = 2.5 (fail); inchiostro = 5.9 */
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--corallo-deep);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  color: var(--inchiostro);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 100px;
  border: 1px solid var(--ink-faint);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-ghost:hover { border-color: var(--corallo); color: var(--corallo); }
.btn-ghost svg { width: 16px; height: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--corallo-deep);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease, color 0.3s ease;
}
.link-arrow:hover { gap: 14px; color: var(--avorio); }
.link-arrow svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 110px 32px 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.breadcrumb a:hover { color: var(--corallo-deep); border-bottom-color: var(--corallo-deep); }
.breadcrumb li + li::before {
  content: '·';
  margin-right: 8px;
  color: var(--ink-faint);
}
.breadcrumb li[aria-current="page"] { color: var(--inchiostro); }

/* ═══════════════════════════════════════════════════════════
   INFO-GRID / INFO-CELL · griglie dense informative
   ═══════════════════════════════════════════════════════════ */
.info { background: var(--verde-notte); padding: var(--pad-section); }

.info-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.info-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,236,220,0.08);
  margin-top: 48px;
  border-top: 1px solid rgba(244,236,220,0.08);
  border-bottom: 1px solid rgba(244,236,220,0.08);
}
.info-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .info-grid, .info-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .info-grid, .info-grid.cols-2, .info-grid.cols-4 { grid-template-columns: 1fr; } }

.info-cell {
  background: var(--verde-notte);
  padding: 40px 32px;
  transition: background 0.4s ease;
  position: relative;
}
.info-cell::after {
  content: '';
  position: absolute;
  top: 40px; left: 32px;
  width: 24px; height: 1px;
  background: var(--oro);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
}
.info-cell:hover { background: var(--ottanio-deep); }
.info-cell:hover::after { opacity: 1; width: 32px; }
.info-cell .label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 14px;
}
.info-cell h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--avorio);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.info-cell p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--whisper);
  font-weight: 300;
}
.info-cell a:not(.btn):not(.btn-ghost) {
  color: var(--avorio);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.info-cell a:hover:not(.btn):not(.btn-ghost) { color: var(--oro); border-color: var(--oro); }

/* ═══════════════════════════════════════════════════════════
   FEATURE-CARD · griglia 4 unità (HOME) e link card riusabili
   ═══════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--inchiostro);
  border: 1px solid var(--ink-faint);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(26,26,26,0.025);
  transition: border-color 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover { border-color: var(--corallo-soft); transform: translateY(-4px); }

.feature-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panna-warm);
}
.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .feature-card-media img { transform: scale(1.05); }
.feature-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,30,32,0.6) 100%);
}
.feature-card-media .photo-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 236, 220, 0.15);
  pointer-events: none;
  z-index: 2;
}
.feature-card-eyebrow {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 500;
}
.feature-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.feature-card-title em { font-style: italic; color: var(--oro); }
.feature-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.feature-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 500;
  margin-top: 4px;
  transition: gap 0.3s ease;
}
.feature-card:hover .feature-card-arrow { gap: 12px; }
.feature-card-arrow svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   TILE-GRID · griglia compatta 3 colonne (sub-pages)
   ═══════════════════════════════════════════════════════════ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 980px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tile-grid { grid-template-columns: 1fr; } }
/* Variante "tutte in una riga" (home): 4 colonne, collassano sul piccolo */
.tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .tile-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tile-grid.cols-4 { grid-template-columns: 1fr; } }

.tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--inchiostro);
  background: rgba(26,26,26,0.03);
  border: 1px solid var(--ink-faint);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tile:hover { border-color: var(--corallo-soft); transform: translateY(-3px); }
.tile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--panna-warm);
  overflow: hidden;
}
.tile-media img,
.tile-media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tile:hover .tile-media img,
.tile:hover .tile-media video { transform: scale(1.04); }
.tile-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.tile-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oro);
}
.tile-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.tile-title em { font-style: italic; color: var(--oro); }
.tile-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SPLIT · sezione 2 colonne immagine + testo
   ═══════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
}

.split-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,106,0.15);
}
.split-media img { width: 100%; height: auto; display: block; filter: saturate(0.95) contrast(1.02); }
.split-media .photo-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(244,236,220,0.18);
  pointer-events: none;
}

.split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.split-title em { font-style: italic; color: var(--oro); }
.split-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.split-body p { margin-bottom: 1em; }
.split-body .accent {
  color: var(--inchiostro);
  font-style: normal;
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════════════════════════
   FAQ · stile editoriale, tutto visibile (no accordion)
   I crawler non cliccano: ogni Q+A è in chiaro.
   ═══════════════════════════════════════════════════════════ */
.faq {
  background: var(--ottanio-deep);
  padding: var(--pad-section);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oro-soft), transparent);
}
.faq-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--whisper-faint);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--avorio);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.faq-item h3 em { font-style: italic; color: var(--oro); }
.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--whisper);
}
.faq-item p + p { margin-top: 0.8em; }

/* ═══════════════════════════════════════════════════════════
   CLOSING SCENE · chiusura editoriale ricorrente
   ═══════════════════════════════════════════════════════════ */
.closing {
  background: var(--verde-notte);
  padding: 140px 32px 80px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(244, 236, 220, 0.05);
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, var(--oro), transparent);
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  color: var(--oro);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 28px;
}
.closing-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--whisper);
  margin-bottom: 20px;
}
.closing-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro-soft);
}
.closing-ctas {
  margin-top: 40px;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER GLOBALE
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--verde-notte);
  padding: 100px 32px 40px;
  border-top: 1px solid rgba(244,236,220,0.06);
  color: var(--whisper);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--whisper-faint);
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--avorio);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-col a:hover { border-bottom-color: var(--oro); color: var(--oro); }

.footer-brand-mark {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand-mark img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.footer-brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--whisper);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 280px;
}
.footer-brand-address {
  font-size: 13px;
  line-height: 1.7;
  color: var(--whisper);
}
.footer-brand-address a { color: var(--avorio); }

.footer-newsletter {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-newsletter p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--whisper);
}
.footer-newsletter form {
  display: flex;
  gap: 8px;
  border: 1px solid var(--whisper-soft);
  border-radius: 100px;
  padding: 4px 4px 4px 16px;
  background: rgba(244,236,220,0.03);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--avorio);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  min-width: 0;
}
.footer-newsletter input::placeholder { color: var(--whisper-soft); }
.footer-newsletter button {
  background: var(--oro);
  color: var(--ottanio);
  border: none;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover { background: var(--avorio); }

.footer-social {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 9px 16px;
  border: 1px solid var(--whisper-soft) !important;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--whisper-soft) !important;
}
.footer-social svg { width: 14px; height: 14px; }
.footer-social:hover { background: var(--avorio); color: var(--ottanio) !important; border-color: var(--avorio) !important; }

.footer-cert {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--whisper);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-legal,
.footer-vat-line {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whisper-soft);
}
.footer-legal a {
  color: var(--whisper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-legal a:hover { color: var(--avorio); border-bottom-color: var(--avorio); }

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE CTA · sempre "Prenota ora"
   ═══════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--oro);
  color: var(--ottanio);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  box-shadow:
    0 16px 40px -8px rgba(201, 168, 106, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); }
.sticky-cta svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   REVEAL · scroll animation
   ═══════════════════════════════════════════════════════════ */
.reveal {
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Nascondi (per poi rivelare) SOLO con JS attivo: a JS spento il
   contenuto resta visibile — progressive enhancement, vedi header. */
.has-js .reveal {
  opacity: 0;
  transform: translateY(40px);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
/* Range intermedio: nav orizzontale ancora visibile ma con spazio limitato.
   Nascondiamo l'icona IG e stringiamo la nav così la CTA resta su una riga
   fino al passaggio al drawer (≤980px). */
@media (max-width: 1120px) {
  .topbar-ig { display: none; }
  .topbar-nav { gap: 16px; }
  .topbar-link { letter-spacing: 0.12em; }
}

@media (max-width: 980px) {
  .topbar-nav { display: none; }
  .topbar-burger { display: inline-flex; }
  .topbar-ig { display: none; }
  section { padding: var(--pad-section-tight); }
  .info, .faq { padding: var(--pad-section-tight); }
  .closing { padding: 100px 20px 60px; }
}

@media (max-width: 768px) {
  .sticky-cta { display: inline-flex; }
  .topbar { padding: 14px 20px; }
  .topbar.scrolled { padding: 10px 20px; }
  .topbar-mark img { height: 42px; }
  .topbar.scrolled .topbar-mark img { height: 36px; }
  .topbar-cta { padding: 9px 16px; font-size: 10px; letter-spacing: 0.14em; }
  .hero { padding: 110px 20px 90px; }
  .hero-ctas { flex-direction: column; gap: 14px; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; padding: 16px 28px; }
  .hero-meta .sep { display: block; height: 1px; width: 20px; background: var(--whisper-soft); margin: 8px auto; }
  .hero-meta { line-height: 2; }
}

@media (max-width: 480px) {
  .topbar-mark img { height: 36px; }
  .topbar.scrolled .topbar-mark img { height: 32px; }
  .topbar-cta { padding: 8px 14px; font-size: 10px; letter-spacing: 0.10em; }
  .mobile-nav-link { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   PHOTO-FRAME · inner border per immagini
   ═══════════════════════════════════════════════════════════ */
.photo-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 236, 220, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   FORM · stile coerente per contatti / lead Typeform-like
   ═══════════════════════════════════════════════════════════ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(26,26,26,0.03);
  border: 1px solid var(--ink-faint);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--inchiostro);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-soft); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--corallo);
  background: rgba(26,26,26,0.05);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ═══════════════════════════════════════════════════════════
   NOTICE · placeholder per TODO / integrazioni in attesa
   ═══════════════════════════════════════════════════════════ */
.notice-placeholder {
  border: 1px dashed var(--ink-faint);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  background: rgba(26,26,26,0.02);
}
.notice-placeholder strong {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   ████  LIBRERIA BLOCCHI ESTESA (v2) ████
   Catalogo di sezioni media-first per dare ritmo e varietà.
   Classi NUOVE e isolate: non sovrascrivono nulla di usato
   dalle pagine bloccate (che non linkano questo foglio).
   Tutte degradano senza JS; il motion è dietro
   prefers-reduced-motion (vedi site.js + blocco finale).
   ═══════════════════════════════════════════════════════════ */
:root {
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.35s;
  --dur-mid: 0.6s;
  --frame-inset: 14px;
}

/* full-bleed helper: rompe il container e va a tutta larghezza */
.bleed { width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* cornice oro condivisa dai media dei nuovi blocchi */
.frame-gold {
  position: absolute;
  inset: var(--frame-inset);
  border: 1px solid rgba(244, 236, 220, 0.18);
  pointer-events: none;
  z-index: 2;
}

/* ─── REVEAL a STAGGER (figli con cadenza) ─── */
.reveal-group > * {
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
.has-js .reveal-group > * {
  opacity: 0;
  transform: translateY(34px);
}
.reveal-group.visible > * { opacity: 1; transform: none; }

/* ───────────────────────────────────────────────
   3.1 · EDITORIAL-FEATURE — figura full-bleed + pannello asimmetrico
   ─────────────────────────────────────────────── */
.editorial-feature {
  position: relative;
  min-height: 86vh;
  display: flex;
  padding: 0;
  overflow: hidden;
  background: var(--verde-notte);
}
.editorial-feature-media { position: absolute; inset: 0; z-index: 0; }
.editorial-feature-media img,
.editorial-feature-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) brightness(0.62);
}
.editorial-feature::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, rgba(8,30,32,0.86) 0%, rgba(8,30,32,0.45) 42%, rgba(8,30,32,0.15) 70%, transparent 100%);
}
.editorial-feature--right::after {
  background: linear-gradient(255deg, rgba(8,30,32,0.86) 0%, rgba(8,30,32,0.45) 42%, rgba(8,30,32,0.12) 72%, transparent 100%);
}
.editorial-feature-panel {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  max-width: 560px;
  margin: 0 auto auto 0;
  padding: clamp(64px, 9vw, 130px) clamp(28px, 6vw, 96px) clamp(56px, 8vw, 110px);
}
.editorial-feature--right .editorial-feature-panel { margin: 0 0 auto auto; align-self: flex-start; text-align: right; }
.editorial-feature--bottom .editorial-feature-panel { align-self: flex-end; }
.editorial-feature-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--oro); margin-bottom: 18px;
}
.editorial-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 400; line-height: 1.04; letter-spacing: -0.015em;
  color: var(--avorio); margin-bottom: 22px;
}
.editorial-feature-title em { font-style: italic; color: var(--oro); }
.editorial-feature-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; color: var(--avorio-warm);
  margin-bottom: 28px; max-width: 46ch; margin-left: 0;
}
.editorial-feature--right .editorial-feature-text { margin-left: auto; }
@media (max-width: 760px) {
  .editorial-feature { min-height: 72vh; }
  .editorial-feature--right .editorial-feature-panel { text-align: left; }
  .editorial-feature::after { background: linear-gradient(0deg, rgba(8,30,32,0.92) 0%, rgba(8,30,32,0.5) 45%, rgba(8,30,32,0.2) 100%); }
}

/* ───────────────────────────────────────────────
   3.2 · GALLERY-MOSAIC — griglia irregolare
   ─────────────────────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.gallery-mosaic figure {
  position: relative; margin: 0; overflow: hidden; border-radius: 4px;
  background: var(--panna-warm);
}
.gallery-mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease-lux), filter 0.6s ease;
  filter: saturate(0.95);
}
.gallery-mosaic figure:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-mosaic figure::after {
  content: ''; position: absolute; inset: 10px; border: 1px solid rgba(244,236,220,0.14);
  pointer-events: none; opacity: 0; transition: opacity 0.5s ease;
}
.gallery-mosaic figure:hover::after { opacity: 1; }
.gallery-mosaic .g-wide { grid-column: span 2; }
.gallery-mosaic .g-tall { grid-row: span 2; }
.gallery-mosaic .g-big  { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 18px 14px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px;
  color: var(--avorio);
  background: linear-gradient(0deg, rgba(8,30,32,0.8) 0%, transparent 100%);
  opacity: 0; transform: translateY(8px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-mosaic figure:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-mosaic .g-big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}

/* ───────────────────────────────────────────────
   3.3 · MEDIA-BAND — fascia immersiva video/foto + testo
   ─────────────────────────────────────────────── */
.media-band {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px; overflow: hidden;
  background: var(--verde-notte);
}
.media-band-bg { position: absolute; inset: 0; z-index: 0; }
.media-band-bg img,
.media-band-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.5);
}
.media-band::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(8,30,32,0.35) 0%, rgba(8,30,32,0.75) 100%);
}
.media-band-inner { position: relative; z-index: 2; max-width: 760px; }
.media-band-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--oro); margin-bottom: 22px;
}
.media-band-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(32px, 5vw, 62px); font-weight: 400; line-height: 1.08;
  color: var(--avorio); margin-bottom: 22px;
}
.media-band-title em { color: var(--oro); }
.media-band-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); color: var(--avorio-warm); line-height: 1.55;
  margin: 0 auto 30px; max-width: 60ch;
}

/* ───────────────────────────────────────────────
   3.4 · STAT-STRIP — striscia di numeri/credenziali (+counter)
   ─────────────────────────────────────────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}
.stat-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  text-align: center; padding: 46px 24px; position: relative;
}
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 28px; bottom: 28px;
  width: 1px; background: var(--ink-faint);
}
.stat-num {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1; color: var(--oro);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.stat-num .suffix, .stat-num .prefix { color: var(--inchiostro); font-size: 0.5em; font-style: italic; }
.stat-label {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 760px) {
  .stat-strip, .stat-strip.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::before, .stat:nth-child(4)::before { content: none; }
  .stat { padding: 34px 16px; }
}

/* ───────────────────────────────────────────────
   3.5 · TIMELINE-STEPS — percorso a tappe (sempre visibile)
   ─────────────────────────────────────────────── */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--oro-soft) 12%, var(--oro-soft) 88%, transparent);
}
.timeline-step {
  position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 30px;
  padding-bottom: 44px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--oro); color: var(--oro);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px;
  background: var(--ottanio); position: relative; z-index: 1;
}
.timeline-body { padding-top: 6px; }
.timeline-body h3 {
  font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 400; color: var(--inchiostro); margin-bottom: 10px;
}
.timeline-body h3 em { font-style: italic; color: var(--oro); }
.timeline-body p {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px;
  line-height: 1.75; color: var(--ink-soft);
}
.timeline-step-media {
  margin-top: 16px; border-radius: 4px; overflow: hidden; position: relative;
  max-width: 360px; aspect-ratio: 16/10;
}
.timeline-step-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
  .timeline-step { grid-template-columns: 44px 1fr; gap: 20px; }
  .timeline::before { left: 21px; }
  .timeline-num { width: 44px; height: 44px; font-size: 16px; }
}

/* ───────────────────────────────────────────────
   3.6 · QUOTE-FEATURE — citazione ampia + ritratto
   ─────────────────────────────────────────────── */
.quote-feature {
  display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.quote-feature.no-portrait { grid-template-columns: 1fr; text-align: center; max-width: 880px; }
.quote-portrait { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; }
.quote-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.quote-body { position: relative; }
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 120px; line-height: 0.6;
  color: var(--oro); opacity: 0.35; display: block; margin-bottom: 8px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px); line-height: 1.35; color: var(--inchiostro);
  font-weight: 300; margin-bottom: 26px;
}
.quote-text em { color: var(--oro); }
.quote-cite {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--corallo-deep);
}
.quote-cite span { display: block; color: var(--ink-soft); letter-spacing: 0.12em; margin-top: 6px; text-transform: none; font-size: 13px; }
@media (max-width: 700px) {
  .quote-feature { grid-template-columns: 1fr; gap: 32px; }
  .quote-portrait { max-width: 220px; aspect-ratio: 3/4; }
}

/* ───────────────────────────────────────────────
   3.7 · CARD-OFFSET — narrazione a zig-zag con media grande sovrapposto
   ─────────────────────────────────────────────── */
.offset-row {
  display: grid; grid-template-columns: 1.25fr 0.9fr; align-items: center;
  max-width: var(--maxw); margin: 0 auto 36px; position: relative;
}
.offset-row:last-child { margin-bottom: 0; }
.offset-media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/2;
  box-shadow: 0 40px 80px -34px rgba(0,0,0,0.65); }
.offset-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-lux); }
.offset-row:hover .offset-media img { transform: scale(1.04); }
.offset-panel {
  position: relative; z-index: 3;
  background: rgba(10,45,47,0.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--whisper-faint);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  margin-left: -64px;
}
.offset-row:nth-child(even) { grid-template-columns: 0.9fr 1.25fr; }
.offset-row:nth-child(even) .offset-media { order: 2; }
.offset-row:nth-child(even) .offset-panel { order: 1; margin-left: 0; margin-right: -64px; }
.offset-eyebrow { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--oro); margin-bottom: 14px; }
.offset-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; line-height: 1.1; color: var(--avorio); margin-bottom: 16px; }
.offset-title em { font-style: italic; color: var(--oro); }
.offset-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; line-height: 1.55; color: var(--whisper); margin-bottom: 20px; }
@media (max-width: 820px) {
  .offset-row, .offset-row:nth-child(even) { grid-template-columns: 1fr; }
  .offset-media, .offset-row:nth-child(even) .offset-media { order: 0; }
  .offset-panel, .offset-row:nth-child(even) .offset-panel { order: 0; margin: -40px 18px 0; }
}

/* ───────────────────────────────────────────────
   3.8 · PILLARS — 3 colonne icona/numero + claim
   ─────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: var(--maxw); margin: 0 auto; }
.pillar { text-align: center; padding: 0 8px; }
.pillar-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  border: 1px solid var(--oro-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--oro);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.2vw, 28px); font-weight: 400; color: var(--inchiostro); margin-bottom: 12px; }
.pillar h3 em { font-style: italic; color: var(--oro); }
.pillar p { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; gap: 40px; max-width: 420px; } }

/* ───────────────────────────────────────────────
   3.9 · CTA-SPLIT-IMAGE — chiusura ricca metà immagine / metà invito
   ─────────────────────────────────────────────── */
.cta-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; padding: 0;
  border-top: 1px solid rgba(244,236,220,0.05);
}
.cta-split-media { position: relative; overflow: hidden; min-height: 320px; }
.cta-split-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(0.78); }
.cta-split-panel {
  background: var(--verde-notte);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(56px, 7vw, 110px) clamp(28px, 6vw, 92px); text-align: left;
}
.cta-split-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(36px, 4.5vw, 64px); font-weight: 400; line-height: 1.05; color: var(--oro); margin-bottom: 22px; }
.cta-split-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(19px, 2vw, 24px); color: var(--whisper); margin-bottom: 32px; line-height: 1.5; }
.cta-split-ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-media { min-height: 260px; order: -1; }
}

/* ───────────────────────────────────────────────
   3.10 · MARQUEE-STRIP / PULL-GALLERY — nastro orizzontale
   ─────────────────────────────────────────────── */
.marquee { position: relative; overflow: hidden; padding: 0; --marquee-dur: 48s; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee-scroll var(--marquee-dur) linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee figure { margin: 0; flex: 0 0 auto; width: clamp(220px, 26vw, 360px); aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; position: relative; background: var(--panna-warm); }
.marquee figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* pull-gallery: variante scroll-snap (touch-first, sempre usabile senza JS) */
.pull-gallery { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 32px 18px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.pull-gallery figure { margin: 0; flex: 0 0 auto; width: clamp(240px, 30vw, 380px); aspect-ratio: 3/2; scroll-snap-align: center; overflow: hidden; border-radius: 4px; position: relative; }
.pull-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ─── intestazione di sezione riusabile (per i nuovi blocchi) ─── */
.block-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.block-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.2vw, 52px); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 14px; }
.block-head h2 em { font-style: italic; color: var(--oro); }
.block-head p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-soft); }

/* Link di testo del contenuto senza classe: colore brand (oro), mai il blu
   di default del browser. Scoping a `main section` per NON toccare breadcrumb,
   .btn/.btn-ghost, .tile, .link-arrow (che hanno classi proprie). */
main section a:not([class]) {
  color: var(--corallo-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--corallo-soft);
  transition: color 0.3s ease, border-color 0.3s ease;
}
main section a:not([class]):hover { color: var(--corallo); border-bottom-color: var(--corallo); }

/* link inline dentro i blocchi su FASCE SCURE (restano oro→avorio) */
.editorial-feature-text a, .media-band-text a, .offset-text a, .cta-split-sub a {
  color: var(--oro); text-decoration: none;
  border-bottom: 1px solid var(--oro-soft);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.editorial-feature-text a:hover, .media-band-text a:hover, .offset-text a:hover, .cta-split-sub a:hover {
  color: var(--avorio); border-bottom-color: var(--avorio);
}
/* link inline dentro i blocchi su PANNA (corallo come azione) */
.timeline-body a, .pillar p a, .quote-text a {
  color: var(--corallo-deep); text-decoration: none;
  border-bottom: 1px solid var(--corallo-soft);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.timeline-body a:hover, .pillar p a:hover, .quote-text a:hover {
  color: var(--corallo); border-bottom-color: var(--corallo);
}

/* ─── REGOLA SCOPED CRITICA ──────────────────────────────────
   Su PANNA il default di .btn-ghost/.link-arrow è scuro (inchiostro/
   corallo): DENTRO le fasce scure devono tornare chiari (avorio/oro)
   per restare leggibili. (.btn corallo va bene anche su scuro.) */
.hero .btn-ghost, .closing .btn-ghost, .media-band .btn-ghost,
.cta-split .btn-ghost, .editorial-feature .btn-ghost, .offset-panel .btn-ghost {
  color: var(--avorio);
  border-color: var(--whisper-soft);
}
.hero .btn-ghost:hover, .closing .btn-ghost:hover, .media-band .btn-ghost:hover,
.cta-split .btn-ghost:hover, .editorial-feature .btn-ghost:hover, .offset-panel .btn-ghost:hover {
  color: var(--oro);
  border-color: var(--oro);
}
.hero .link-arrow, .closing .link-arrow, .media-band .link-arrow,
.cta-split .link-arrow, .editorial-feature .link-arrow, .offset-panel .link-arrow {
  color: var(--oro);
}

/* ═══════════════════════════════════════════════════════════
   MOTION · rispetto di prefers-reduced-motion per i nuovi blocchi
   (counter/parallax/marquee gestiti anche in JS, ma qui annulliamo
    ogni animazione CSS quando l'utente preferisce ridurre il moto)
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; transform: none !important; }
  .gallery-mosaic img, .offset-media img, .feature-card-media img, .tile-media img, .tile-media video { transition: none !important; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════════
   "WOW" DESIGN LAYER · lo stile della home portato su TUTTE le pagine
   non bloccate (le bloccate non caricano questo foglio). Accento
   corallo, card di cristallo + tilt 3D, aurora, polvere, stat-strip
   cristallo. NON include l'hero-scroll (resta in home.css/home.js).
   La home ha le sue versioni più specifiche in home.css (vincono);
   site.js evita di duplicare aurora/polvere/tilt sulla home.
   ════════════════════════════════════════════════════════════════ */
:root {
  --corallo: #EA7275;
  --corallo-deep: #d85f62;
  --corallo-soft: rgba(234, 114, 117, 0.55);
  --corallo-faint: rgba(234, 114, 117, 0.16);
  --corallo-glow: rgba(234, 114, 117, 0.22);
  /* Cristallo su PANNA: il vetro avorio sparirebbe sul chiaro,
     quindi il cristallo diventa una velatura d'inchiostro + lume bianco. */
  --crystal: rgba(26, 26, 26, 0.035);
  --crystal-strong: rgba(255, 255, 255, 0.55);
  --crystal-edge: rgba(26, 26, 26, 0.12);
  --ease-wow: cubic-bezier(0.19, 1, 0.22, 1);
}

/* aurora che respira + polvere (iniettate da site.js come .wow-atmos) */
.wow-atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.wow-atmos::before {
  content: ''; position: absolute; inset: -25%;
  background:
    radial-gradient(38% 48% at 16% 20%, rgba(201, 168, 106, 0.14), transparent 62%),
    radial-gradient(34% 42% at 84% 26%, var(--corallo-glow), transparent 60%),
    radial-gradient(46% 46% at 62% 82%, rgba(234, 114, 117, 0.08), transparent 66%),
    radial-gradient(60% 60% at 40% 100%, rgba(14, 59, 62, 0.06), transparent 72%);
  filter: blur(30px) saturate(1.05);
  animation: wow-aurora 32s ease-in-out infinite alternate;
}
@keyframes wow-aurora { 0% { transform: translate3d(-2%, -1%, 0) scale(1.02); } 100% { transform: translate3d(2.5%, 2%, 0) scale(1.09); } }
.wow-dust { position: absolute; inset: 0; width: 100%; height: 100%; }
/* contenuto sopra l'atmosfera (la home gestisce il proprio z-index) */
body:not(.home) main { position: relative; z-index: 1; }

/* accento corallo: punto negli occhielli, hover dei link, bagliore CTA */
.section-eyebrow .eyebrow::before {
  content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--corallo); margin-right: 10px; vertical-align: middle; box-shadow: 0 0 8px var(--corallo-soft);
}
main section a:not([class]):hover { color: var(--corallo); border-bottom-color: var(--corallo-soft); }
.link-arrow:hover { color: var(--corallo); }
.btn { transition: background 0.4s ease, color 0.4s ease, box-shadow 0.5s ease, transform 0.4s var(--ease-wow); }
.btn:hover { box-shadow: 0 0 0 1px var(--corallo-soft), 0 16px 40px -18px var(--corallo-glow); }

/* ════════════════════════════════════════════════════════════════
   LEAD FORM — richiesta contatti per EVENTI e MATRIMONI (corpo panna).
   Pattern zero-backend (assets/js/lead-form.js). Il ristorante resta su
   WhatsApp. Primaria = corallo; campi su bianco tenue, focus corallo.
   ════════════════════════════════════════════════════════════════ */
.lead-section { padding: 120px 24px; background: var(--panna); }
.lead-section .container-narrow { max-width: 760px; margin: 0 auto; }
.lead-intro {
  text-align: center; max-width: 560px; margin: 14px auto 40px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.24rem; font-style: italic; line-height: 1.5; color: var(--ink-soft);
}
.lead-form { display: block; }
.lead-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px;
}
.lead-field { display: flex; flex-direction: column; gap: 7px; }
.lead-field--full { margin-top: 16px; }
.lead-field label {
  font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--inchiostro);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--ink-faint); border-radius: 12px;
  padding: 13px 14px; width: 100%;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lead-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none; border-color: var(--corallo); background: #fff;
  box-shadow: 0 0 0 3px var(--corallo-faint);
}
.lead-consent {
  display: flex; align-items: flex-start; gap: 11px; margin: 22px 0 6px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
}
.lead-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--corallo); }
.lead-consent a { color: var(--corallo-deep); }
/* honeypot anti-spam: fuori schermo, non focusabile da tastiera */
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-submit { margin-top: 20px; }
.lead-status {
  margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 14px; min-height: 1.2em;
}
.lead-status.is-error { color: var(--corallo-deep); }
.lead-status.is-ok {
  color: var(--ottanio); font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.18rem;
}
.lead-fallback {
  margin-top: 18px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-soft);
}
.lead-fallback a { color: var(--corallo-deep); }
@media (max-width: 600px) {
  .lead-section { padding: 84px 18px; }
  .lead-grid { grid-template-columns: 1fr; }
}

/* CARD DI CRISTALLO · tutte le .tile (tilt 3D: vars --rx/--ry/--mx/--my da site.js) */
.tile-grid { perspective: 1300px; }
.tile {
  position: relative;
  background: linear-gradient(165deg, var(--crystal-strong) 0%, rgba(255, 255, 255, 0.30) 100%);
  border: 1px solid var(--crystal-edge);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.5s var(--ease-wow), box-shadow 0.6s ease, border-color 0.6s ease;
  box-shadow: 0 24px 60px -44px rgba(26, 26, 26, 0.30);
}
.tile:hover {
  border-color: var(--corallo-soft);
  box-shadow: 0 50px 110px -44px rgba(26, 26, 26, 0.38), 0 0 0 1px var(--corallo-faint), 0 0 60px -20px var(--corallo-glow);
}
.tile::after {
  content: ''; position: absolute; inset: 0; z-index: 5; pointer-events: none; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), var(--corallo-faint), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.tile:hover::after { opacity: 1; }
.tile .photo-frame { transition: inset 0.6s var(--ease-wow), border-color 0.6s ease; }
.tile:hover .photo-frame { border-color: var(--corallo-soft); }

/* STAT-STRIP cristallo + corallo */
.stat-strip {
  background: linear-gradient(160deg, var(--crystal-strong), var(--crystal));
  border: 1px solid var(--crystal-edge); border-top: 1px solid var(--corallo-soft);
  border-radius: 8px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow: hidden;
}
.stat { transition: background 0.5s ease; }
.stat:hover { background: rgba(234, 114, 117, 0.05); }

@media (prefers-reduced-motion: reduce) {
  .wow-atmos::before { animation: none !important; }
  .wow-dust { display: none; }
  .tile { transform: none !important; }
}
