/* ═══════════════════════════════════════════════════════
   MOMENTO LUNGOTEVERE — Design System v3
   "Riflessi sul Tevere" · il locale illuminato specchiato nel fiume di notte
   Doppia temperatura: profondità teal-fiume + glow ambra caldo
   0 dipendenze esterne · font self-hosted
   ═══════════════════════════════════════════════════════ */

/* ── FONT SELF-HOSTED (woff2 subset latino) ── */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/bricolage.woff2') format('woff2');
  font-weight: 400 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/hanken.woff2') format('woff2');
  font-weight: 300 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces 144';
  src: url('/fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 340 520; font-style: italic; font-display: swap;
}

:root {
  /* ── PALETTE: acqua di fiume notturna + luce calda ── */
  --ink:      #0B1A1B;   /* notte sul fiume — fondo scuro primario */
  --ink-2:    #0E2422;   /* leggermente più chiaro */
  --tide:     #123E39;   /* teal profondo — superfici scure / card */
  --reed:     #355E52;   /* verde muschio — linee, bordi, dettagli */
  --glow:     #F0A93C;   /* ambra calda — ACCENTO primario (CTA, parole chiave) */
  --glow-2:   #FFC773;   /* ambra chiara — gradienti, hover */
  --ember:    #D2622B;   /* brace — accento secondario caldo */
  --ember-deep:#A8481E;  /* brace scura */
  --mist:     #ECEAE0;   /* carta fredda — fondo chiaro (NON crema calda) */
  --shell:    #F6F4EC;   /* carta chiara — card su chiaro */

  /* ── testo ── */
  --on-dark:        #ECEAE0;
  --on-dark-soft:   rgba(236, 234, 224, 0.74);
  --on-dark-faint:  rgba(236, 234, 224, 0.50);
  --on-light:       #0B1A1B;
  --on-light-soft:  rgba(11, 26, 27, 0.72);
  --on-light-faint: rgba(11, 26, 27, 0.48);
  --line-dark:  rgba(236, 234, 224, 0.14);
  --line-light: rgba(11, 26, 27, 0.12);

  /* ── tipografia ── */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent:  'Fraunces 144', Georgia, 'Times New Roman', serif;
  /* alias retro-compatibili per le pagine non ancora migrate */
  --font-serif: var(--font-accent);

  /* ── layout ── */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-lg: 28px;

  --ease:    cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out:cubic-bezier(0.16, 1, 0.3, 1);
  --bounce:  cubic-bezier(0.34, 1.4, 0.64, 1);

  /* ── ALIAS legacy → nuova palette (così le pagine interne non si rompono) ── */
  --night: var(--ink);
  --deep-palm: var(--tide);
  --cream: var(--mist);
  --cream-pure: var(--shell);
  --gold: var(--glow);
  --gold-soft: var(--glow-2);
  --magenta: var(--ember);
  --magenta-deep: var(--ember-deep);
  --sunset: var(--ember);
  --peach: #F3D7AE;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--on-light);
  font-size: 16px; line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: normal; }

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

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

/* skip link a11y */
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 10000;
  background: var(--glow); color: var(--ink);
  padding: 12px 20px; border-radius: 0 0 10px 10px;
  font-family: var(--font-display); font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ── grana acqua: micro-texture appena percettibile ── */
.grain::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' seed='7' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════
   TIPOGRAFIA condivisa
   ═══════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--glow);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1.5px; background: var(--glow); opacity: 0.8;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.2vw, 60px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.025em;
  color: inherit;
}
.section-title em {
  font-family: var(--font-accent); font-style: italic; font-weight: 420;
  letter-spacing: -0.01em;
}
.section-lead {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.6;
  max-width: 58ch; margin-top: 18px;
  color: var(--on-light-soft);
}

/* ═══════════════════════════════════════════════════════
   BOTTONI
   ═══════════════════════════════════════════════════════ */
.btn-primary, .btn-ghost, .btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 26px; border-radius: 999px;
  transition: transform 0.35s var(--bounce), background 0.25s var(--ease), color 0.25s, box-shadow 0.3s;
  cursor: pointer; line-height: 1; white-space: nowrap;
}
.btn-primary {
  background: var(--glow); color: var(--ink);
  box-shadow: 0 8px 30px -8px rgba(240, 169, 60, 0.6);
}
.btn-primary:hover { transform: translateY(-3px); background: var(--glow-2); box-shadow: 0 14px 40px -10px rgba(240, 169, 60, 0.7); }
.btn-gold { background: var(--glow); color: var(--ink); }
.btn-gold:hover { transform: translateY(-3px); background: var(--glow-2); }
.btn-ghost {
  background: transparent; color: var(--on-dark);
  border: 1.5px solid var(--line-dark);
}
.btn-ghost:hover { border-color: var(--glow); color: var(--glow); transform: translateY(-3px); }
.btn-wa:hover { border-color: #25D366; color: #25D366; }
/* su fondo chiaro */
.section[data-tone="light"] .btn-ghost,
.page-hero .btn-ghost { color: var(--ink); border-color: var(--line-light); }
.section[data-tone="light"] .btn-ghost:hover { color: var(--ember); border-color: var(--ember); }

/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee {
  background: var(--ink); color: var(--on-dark);
  padding: 11px 0; overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex; gap: 0;
  animation: scroll 42s linear infinite;
  width: max-content; white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display); font-weight: 500;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 18px; padding: 0 9px;
  color: var(--on-dark-soft);
}
.marquee-item em {
  font-family: var(--font-accent); font-style: italic; font-weight: 420;
  color: var(--glow); text-transform: none; font-size: 16px; letter-spacing: 0;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 26, 27, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 13px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 13px; color: var(--on-dark); }
.logo-img { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--on-dark);
}
.logo-name em { font-family: var(--font-accent); font-style: italic; color: var(--glow); font-weight: 420; }
.logo-tag {
  font-family: var(--font-display); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-dark-faint); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--on-dark-soft); padding: 9px 15px; border-radius: 999px;
  transition: color 0.2s, background 0.2s; position: relative;
}
.nav-link:hover { color: var(--on-dark); }
.nav-link.is-active { color: var(--glow); }
.nav-cta {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  background: var(--glow); color: var(--ink);
  padding: 11px 22px; border-radius: 999px;
  transition: transform 0.3s var(--bounce), background 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--glow-2); }

.hamb { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamb span { width: 24px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.hamb.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamb.is-open span:nth-child(2) { opacity: 0; }
.hamb.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
  padding: 8px var(--gutter) 24px;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 2px; }
.nav-mobile a {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: 18px;
  color: var(--on-dark); padding: 14px 4px; border-bottom: 1px solid var(--line-dark);
}
.nav-mobile-cta { color: var(--glow) !important; }

/* ═══════════════════════════════════════════════════════
   SEZIONI — sistema a fasce alternate (scuro fiume / carta)
   ═══════════════════════════════════════════════════════ */
.section { padding: clamp(64px, 9vw, 120px) var(--gutter); position: relative; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
/* toni */
.section[data-tone="ink"]   { background: var(--ink);  color: var(--on-dark); }
.section[data-tone="tide"]  { background: var(--tide); color: var(--on-dark); }
.section[data-tone="light"] { background: var(--mist); color: var(--on-light); }
.section[data-tone="shell"] { background: var(--shell);color: var(--on-light); }
.section[data-tone="ink"] .section-lead,
.section[data-tone="tide"] .section-lead { color: var(--on-dark-soft); }

/* ═══════════════════════════════════════════════════════
   HERO — firma "linea d'acqua" (riflesso del titolo + glow)
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, var(--ink-2) 0%, var(--ink) 55%, #081413 100%);
  color: var(--on-dark);
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(120px, 16vw, 200px);
  min-height: 88vh; display: flex; align-items: center;
}
/* aura calda — le luci del locale */
.hero-aura {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(50% 40% at 50% 18%, rgba(240, 169, 60, 0.20) 0%, transparent 70%),
    radial-gradient(40% 30% at 78% 30%, rgba(210, 98, 43, 0.14) 0%, transparent 70%);
}
/* increspature di luce sull'acqua, in basso */
.hero-water {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(240,169,60,0.05) 60px 61px, transparent 61px 140px),
    linear-gradient(180deg, transparent 0%, rgba(18, 62, 57, 0.55) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
          mask-image: linear-gradient(180deg, transparent, #000 60%);
  animation: water 9s ease-in-out infinite alternate;
}
@keyframes water { from { transform: translateX(0); } to { transform: translateX(-40px); } }

.hero-wrap { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero-loc {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--on-dark-soft); margin-bottom: 26px;
}
.hero-loc svg { width: 15px; height: 15px; color: var(--glow); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--glow);
  border: 1px solid rgba(240, 169, 60, 0.35); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 28px; white-space: nowrap;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 0 0 rgba(240,169,60,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(240,169,60,0.55);} 70%{ box-shadow:0 0 0 11px rgba(240,169,60,0);} 100%{ box-shadow:0 0 0 0 rgba(240,169,60,0);} }

.hero-headline { position: relative; display: inline-block; max-width: none; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 7.4vw, 100px); line-height: 0.98;
  letter-spacing: -0.035em; color: var(--on-dark);
}
.hero-title span, .hero-reflect span { display: block; white-space: nowrap; }
.hero-title em { font-family: var(--font-accent); font-style: italic; font-weight: 460; color: var(--glow); letter-spacing: -0.01em; }
/* IL RIFLESSO — firma del progetto */
.hero-reflect {
  position: absolute; left: 0; right: 0; top: 100%;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 7.4vw, 100px); line-height: 0.98; letter-spacing: -0.035em;
  color: var(--glow); opacity: 0.20;
  transform: scaleY(-1); transform-origin: top;
  filter: blur(1.2px); pointer-events: none; user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 62%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 62%);
  animation: ripple 7s ease-in-out infinite;
}
.hero-reflect em { font-family: var(--font-accent); font-style: italic; font-weight: 460; }
@keyframes ripple {
  0%, 100% { transform: scaleY(-1) skewX(0deg) translateY(0); }
  50%      { transform: scaleY(-1) skewX(-1.4deg) translateY(3px); }
}

.hero-sub { position: relative; z-index: 2; font-size: clamp(16px, 2vw, 20px); line-height: 1.55; color: var(--on-dark-soft); max-width: 48ch; margin: 30px 0 0; }
.hero-ctas { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

/* card "stasera live" flottante nell'hero */
.hero-live {
  position: absolute; right: var(--gutter); bottom: clamp(40px, 9vw, 96px); z-index: 3;
  display: flex; align-items: center; gap: 16px;
  background: rgba(18, 62, 57, 0.72); backdrop-filter: blur(12px);
  border: 1px solid rgba(240,169,60,0.25); border-radius: var(--radius);
  padding: 16px 20px; max-width: 320px;
}
.hero-live-img {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--glow), var(--ember));
  display: grid; place-items: center;
  font-family: var(--font-accent); font-style: italic; font-size: 28px; color: var(--ink);
}
.hero-live-label { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--glow); }
.hero-live-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--on-dark); margin: 2px 0; }
.hero-live-time { font-size: 12.5px; color: var(--on-dark-soft); }

/* ═══════════════════════════════════════════════════════
   INTRO / MANIFESTO
   ═══════════════════════════════════════════════════════ */
.intro-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.intro-text p { font-size: clamp(17px, 1.9vw, 20px); line-height: 1.7; color: var(--on-light-soft); margin-top: 18px; }
.intro-text p em { font-family: var(--font-accent); font-style: italic; color: var(--ember); }
.big-quote { font-family: var(--font-accent); font-style: italic; font-size: 120px; line-height: 0.5; color: var(--glow); opacity: 0.35; height: 40px; }
.intro-visual { position: relative; }
.intro-visual-frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 40px 80px -30px rgba(11,26,27,0.5); }
.intro-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-visual-sticker {
  position: absolute; top: -22px; right: -14px; z-index: 3;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--glow); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.15;
  transform: rotate(-9deg); box-shadow: 0 14px 30px -10px rgba(240,169,60,0.6);
}

/* ═══════════════════════════════════════════════════════
   ESPERIENZE — card immagine
   ═══════════════════════════════════════════════════════ */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.exp-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--on-dark); isolation: isolate;
  transition: transform 0.4s var(--ease-out);
}
.exp-card:hover { transform: translateY(-6px); }
.exp-card-img { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; transition: transform 0.6s var(--ease-out); }
.exp-card:hover .exp-card-img { transform: scale(1.06); }
.exp-card-content { padding: 28px; }
.exp-card .eyebrow { color: var(--glow-2); margin-bottom: 8px; }
.exp-card h3 { font-family: var(--font-display); font-size: 27px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.exp-card p { font-size: 14.5px; color: var(--on-dark-soft); }
.exp-card-arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--glow); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (pagine interne)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--page-hero-bg, linear-gradient(135deg, var(--tide), var(--ink)));
  background-size: cover; background-position: center;
  color: var(--on-dark);
  padding: clamp(96px, 14vw, 150px) var(--gutter) clamp(56px, 8vw, 90px);
}
.page-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,26,27,0.45), rgba(11,26,27,0.78)); z-index:0; }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6.5vw, 78px); line-height: 1.0; letter-spacing: -0.03em; }
.page-hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 460; color: var(--glow); }
.page-hero-lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: var(--on-dark-soft); max-width: 54ch; margin-top: 22px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--on-dark-soft); margin-bottom: 26px; font-family: var(--font-display); font-weight: 500; }
.breadcrumb a { color: var(--on-dark-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--glow); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb [aria-current] { color: var(--glow); }

/* ═══════════════════════════════════════════════════════
   MENU (pagina menù)
   ═══════════════════════════════════════════════════════ */
.menu-items { display: flex; flex-direction: column; }
.menu-item { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.menu-item-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); }
.menu-item-desc { font-size: 14.5px; color: var(--on-light-soft); margin-top: 4px; line-height: 1.5; }
.menu-item-price { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ember); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════
   EVENT ROW (programma)
   ═══════════════════════════════════════════════════════ */
.event-row { transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA (footer)
   ═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative; overflow: hidden;
  background: radial-gradient(100% 120% at 50% 0%, var(--tide) 0%, var(--ink) 70%);
  color: var(--on-dark); text-align: center;
  padding: clamp(72px, 11vw, 130px) var(--gutter);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 50% 0%, rgba(240,169,60,0.18), transparent 70%);
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta-eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--glow); margin-bottom: 16px; }
.final-cta-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); font-weight: 700; line-height: 1.0; letter-spacing: -0.03em; }
.final-cta-title em { font-family: var(--font-accent); font-style: italic; font-weight: 460; color: var(--glow); }
.final-cta-text { font-size: 18px; color: var(--on-dark-soft); margin: 22px auto 36px; max-width: 46ch; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: var(--on-dark-soft); padding: clamp(56px, 8vw, 90px) var(--gutter) 32px; border-top: 1px solid var(--line-dark); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-img { width: 48px; height: 48px; object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--on-dark); letter-spacing: -0.03em; }
.footer-logo-text em { font-family: var(--font-accent); font-style: italic; color: var(--glow); font-weight: 420; }
.footer-tagline { font-size: 14.5px; line-height: 1.6; max-width: 34ch; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--on-dark-soft); transition: all 0.25s var(--ease); }
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--glow); color: var(--glow); transform: translateY(-2px); }
.footer-title { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 18px; }
.footer-list { display: flex; flex-direction: column; gap: 11px; }
.footer-list a { font-size: 14.5px; color: var(--on-dark-soft); transition: color 0.2s; }
.footer-list a:hover { color: var(--glow); }
.footer-contact { font-size: 14px; line-height: 1.55; color: var(--on-dark-soft); }
.footer-contact strong { display: block; color: var(--on-dark); font-weight: 600; margin: 16px 0 4px; font-size: 12px; letter-spacing: 0.04em; }
.footer-contact strong:first-child { margin-top: 0; }
.footer-contact a:hover { color: var(--glow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: 13px; color: var(--on-dark-faint); }
.footer-bottom-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-credit-sep { opacity: 0.4; }
.footer-credit a { color: var(--on-dark-soft); }
.footer-credit a:hover { color: var(--glow); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--on-dark-faint); transition: color 0.2s; }
.footer-legal a:hover { color: var(--glow); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--bounce), opacity 0.3s;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float.wa-hidden { opacity: 0; transform: translateY(80px); pointer-events: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamb { display: flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-live { position: static; margin-top: 40px; max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 80vh; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-reflect, .hero-water { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   COMPONENTI PAGINE INTERNE
   ═══════════════════════════════════════════════════════ */
.prose-narrow { max-width: 860px; }
.prose-narrow p { font-size: clamp(17px, 1.9vw, 20px); line-height: 1.72; color: var(--on-light-soft); margin-bottom: 18px; }
.prose-narrow p em { font-family: var(--font-accent); font-style: italic; color: var(--ember); }
.section[data-tone="ink"] .prose-narrow p,
.section[data-tone="tide"] .prose-narrow p { color: var(--on-dark-soft); }
.section[data-tone="ink"] .prose-narrow p em,
.section[data-tone="tide"] .prose-narrow p em { color: var(--glow); }

/* griglia feature/card generica */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 16px; margin-top: 44px; }
.feat-card { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line-dark); background: rgba(18,62,57,0.4); }
.section[data-tone="light"] .feat-card, .section[data-tone="shell"] .feat-card { border-color: var(--line-light); background: var(--shell); }
.feat-card .k { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--glow); }
.feat-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; margin: 12px 0 8px; }
.feat-card p { font-size: 14.5px; line-height: 1.6; color: var(--on-dark-soft); }
.section[data-tone="light"] .feat-card p, .section[data-tone="shell"] .feat-card p { color: var(--on-light-soft); }
.section[data-tone="light"] .feat-card h3, .section[data-tone="shell"] .feat-card h3 { color: var(--ink); }

/* drink card (dopocena) — nome in corsivo Fraunces */
.drink-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line-dark); background: rgba(240,169,60,0.04); }
.drink-card .k { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--glow); }
.drink-card h3 { font-family: var(--font-accent); font-style: italic; font-weight: 460; font-size: 25px; color: var(--on-dark); margin: 12px 0; line-height: 1.1; }
.drink-card p { font-size: 14px; line-height: 1.6; color: var(--on-dark-soft); }

/* timeline "ora per ora" — sequenza reale, numerazione giustificata */
.steps { display: flex; flex-direction: column; gap: 4px; margin-top: 44px; }
.step { display: grid; grid-template-columns: 110px 1fr; gap: 28px; align-items: start; padding: 24px 0; border-bottom: 1px dashed var(--line-light); }
.section[data-tone="ink"] .step, .section[data-tone="tide"] .step { border-color: var(--line-dark); }
.step-time { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ember); letter-spacing: -0.02em; }
.section[data-tone="ink"] .step-time, .section[data-tone="tide"] .step-time { color: var(--glow); }
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: inherit; margin-bottom: 6px; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--on-light-soft); }
.section[data-tone="ink"] .step p, .section[data-tone="tide"] .step p { color: var(--on-dark-soft); }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.contact-card { display: block; padding: 30px 26px; border-radius: var(--radius-lg); text-align: center; transition: transform 0.3s var(--bounce); }
.contact-card:hover { transform: translateY(-4px); }
.contact-card svg.big { width: 38px; height: 38px; margin: 0 auto 14px; display: block; }
.contact-card .k { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; }
.contact-card .t { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.contact-card .s { font-size: 13px; opacity: 0.85; margin-top: 6px; word-break: break-word; }
.cc-wa { background: #25D366; color: #fff; }
.cc-call { background: var(--ink); color: var(--on-dark); }
.cc-call .k, .cc-call svg.big { color: var(--glow); }
.cc-mail { background: var(--glow); color: var(--ink); }

/* form prenotazione */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.bk-form { display: flex; flex-direction: column; gap: 14px; }
.bk-field, .bk-row > * { width: 100%; padding: 15px 18px; border: 1px solid var(--line-light); border-radius: 12px; font-family: var(--font-body); font-size: 16px; background: #fff; color: var(--ink); transition: border-color 0.2s; }
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-field:focus, .bk-row > *:focus { outline: none; border-color: var(--ember); }
textarea.bk-field { resize: vertical; min-height: 104px; }
.bk-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: var(--on-light-soft); margin-top: 2px; }
.bk-privacy input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--ember); }
.bk-privacy a { color: var(--ember); text-decoration: underline; text-underline-offset: 2px; }

/* where / mappa leggera (no iframe) */
.where-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.map-card {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(240,169,60,0.25);
  background:
    radial-gradient(60% 50% at 30% 40%, rgba(240,169,60,0.12), transparent 70%),
    repeating-linear-gradient(135deg, rgba(53,94,82,0.18) 0 2px, transparent 2px 22px),
    linear-gradient(160deg, var(--tide), var(--ink));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 32px;
}
.map-card .pin { width: 54px; height: 54px; color: var(--glow); }
.map-card .addr { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--on-dark); }
.map-river { position: absolute; left: 0; right: 0; bottom: 0; height: 30%; background: linear-gradient(180deg, transparent, rgba(11,26,27,0.7)); }

/* contatti rapidi (icona + testo) su scuro */
.where-info { display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.where-line { display: flex; gap: 14px; align-items: flex-start; }
.where-line svg { width: 20px; height: 20px; color: var(--glow); flex-shrink: 0; margin-top: 3px; }
.where-line strong { display: block; color: var(--on-dark); margin-bottom: 3px; }
.where-line span { color: var(--on-dark-soft); font-size: 15px; line-height: 1.5; }

/* documenti legali */
.legal { max-width: 820px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--on-light-soft); }
.legal h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 600; color: var(--ink); margin: 40px 0 16px; letter-spacing: -0.01em; }
.legal ul { padding-left: 22px; margin: 14px 0; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--ember); text-decoration: underline; text-underline-offset: 2px; }
.legal-updated { font-size: 13px; color: var(--on-light-faint); margin-bottom: 36px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 28px 0; }
.legal-table th { background: var(--ink); color: var(--on-dark); padding: 12px; text-align: left; font-family: var(--font-display); font-weight: 600; }
.legal-table td { padding: 12px; border-bottom: 1px solid var(--line-light); }
.legal-table code { background: rgba(11,26,27,0.06); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.note-box { background: rgba(240,169,60,0.1); border-left: 4px solid var(--glow); padding: 18px 22px; border-radius: 8px; margin-top: 36px; font-size: 15px; line-height: 1.6; color: var(--on-light-soft); }

@media (max-width: 820px) {
  .where-grid, .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 84px 1fr; gap: 18px; }
}
@media (max-width: 480px) {
  .bk-row { grid-template-columns: 1fr; }
}
