/* Sudivino — Piazza Sedile, Corato
   Palette: nero e bianco, dal logo reale del cliente — niente oro/giallo.
   Fondo quasi nero, testo bianco caldo, accenti in avorio/pietra chiara.
   Font: Fraunces (titoli, serif con carattere) + Inter (corpo). */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #0a0b0e;
  --bg-soft: #121319;
  --bg-card: #171820;
  --line: #cfc9ba;
  --accent: #f3efe4;
  --text: #f4ecd9;
  --text-dim: #aca698;
  --border: rgba(226, 221, 208, 0.16);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--line);
  margin-bottom: 14px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section p.body {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 8px;
}
.section p.body + p.body {
  margin-top: 16px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--line));
  color: #111111;
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  border-color: rgba(244, 236, 217, 0.35);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--line);
  color: var(--accent);
}
.btn-whatsapp {
  background: #1fae5a;
  color: #fff;
}
.btn-whatsapp:hover {
  filter: brightness(1.08);
}
.btn-block {
  width: 100%;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(to bottom, rgba(10, 11, 14, 0.92), rgba(10, 11, 14, 0));
  backdrop-filter: blur(2px);
}
.topbar.is-scrolled {
  background: rgba(10, 11, 14, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
}
.logo-main img {
  height: 72px;
  width: 72px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar a.call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
}
.topbar a.call:hover {
  color: var(--accent);
  border-color: var(--line);
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}
.nav-toggle:hover {
  border-color: var(--line);
  color: var(--accent);
}

/* ---------- Nav dropdown ---------- */
.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 39;
  display: flex;
  flex-direction: column;
  background: rgba(10, 11, 14, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px 28px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
}
.nav-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-panel a {
  font-family: var(--serif);
  font-size: 1.4rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.nav-panel a:hover {
  color: var(--accent);
}
.nav-panel a:last-child {
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 64px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 6, 8, 0.62) 0%, rgba(6, 6, 8, 0.4) 34%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(226, 221, 208, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.2) 0%, rgba(9, 10, 13, 0.3) 45%, rgba(6, 6, 8, 0.66) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, rgba(244, 236, 217, 0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(6, 6, 8, 0.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  color: var(--text);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 6px 28px rgba(0, 0, 0, 0.55);
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}
.hero .subtitle {
  margin-top: 22px;
  font-size: 1.15rem;
  color: rgba(230, 224, 210, 0.95);
  max-width: 480px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 4px 18px rgba(0, 0, 0, 0.5);
}
.hero .subtitle strong {
  color: var(--text);
  font-weight: 600;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-ctas .btn-outline {
  background: rgba(6, 6, 8, 0.35);
  backdrop-filter: blur(6px);
  border-color: rgba(244, 236, 217, 0.45);
}
.hero-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: rgba(230, 224, 210, 0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 3px 14px rgba(0, 0, 0, 0.5);
}
@media (max-width: 520px) {
  /* lascia spazio ai due bottoni fissi (telefono/WhatsApp) in basso a destra,
     altrimenti l'ultima riga ci finisce sotto */
  .hero-note {
    max-width: calc(100% - 74px);
  }
}
.hero-note .dot {
  color: var(--line);
  margin: 0 8px;
}
.hero-note .rating-inline {
  color: var(--text);
  font-weight: 600;
}
.hero-note .rating-inline .stars {
  color: var(--line);
  letter-spacing: 1px;
}

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  max-width: 680px;
  margin-top: 26px;
  line-height: 1.5;
}
.manifesto p.body {
  max-width: 640px;
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.manifesto p.body + p.body {
  margin-top: 14px;
}

/* ---------- Timeline ---------- */
.timeline {
  margin-top: 20px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 52px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-time {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  padding-top: 2px;
}
.timeline-rail {
  position: relative;
  background: var(--border);
}
.timeline-item:last-child .timeline-rail {
  background: linear-gradient(var(--border), transparent);
}
.timeline-rail::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 4px rgba(226, 221, 208, 0.18);
}
.timeline-text {
  padding-top: 2px;
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
}
.timeline-text strong {
  color: var(--text);
}
@media (max-width: 620px) {
  .timeline-item {
    grid-template-columns: 66px 1px 1fr;
    gap: 18px;
  }
  .timeline-time {
    font-size: 1.15rem;
  }
}

/* ---------- Bancone ---------- */
.bancone {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bancone-intro {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 14px;
}
.bancone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 44px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.bancone-card {
  background: var(--bg-soft);
  padding: 34px 30px;
}
.bancone-card .icon {
  font-size: 1.8rem;
}
.bancone-card h3 {
  font-size: 1.2rem;
  margin-top: 14px;
}
.bancone-card p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.bancone-closing {
  margin-top: 28px;
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}
@media (max-width: 640px) {
  .bancone-grid {
    grid-template-columns: 1fr;
  }
}
.bancone-menu {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.bancone-menu-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: none;
  font: inherit;
}
.bancone-menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bancone-menu-zoom {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(6, 6, 8, 0.85), transparent);
}
.bancone-menu-copy h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-top: 6px;
}
.bancone-menu-copy p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.98rem;
}
@media (max-width: 520px) {
  .bancone-menu {
    grid-template-columns: 96px 1fr;
    gap: 16px;
    padding: 16px;
  }
  .bancone-menu-zoom {
    font-size: 0.62rem;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(6, 6, 8, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(6, 6, 8, 0.6);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- Il posto ---------- */
.posto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.posto-photo {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.posto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posto-photo .placeholder-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 32px;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(226, 221, 208, 0.28), transparent 70%),
    linear-gradient(160deg, #191a22 0%, #0c0d11 100%);
}
.posto-text p.body {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 8px;
}
.posto-text p.body + p.body {
  margin-top: 16px;
}
.posto-cta {
  margin-top: 26px;
}
@media (max-width: 780px) {
  .posto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .posto-photo {
    aspect-ratio: 16 / 10;
    order: -1;
  }
}

/* ---------- Eventi ---------- */
.eventi {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eventi .section-head p {
  max-width: 560px;
}
.eventi-ctas {
  margin-top: 30px;
}

/* ---------- Evento speciale ---------- */
.speciale {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.speciale .section-head p {
  max-width: 620px;
}
.speciale-banner {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 40px;
}
.speciale-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speciale-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0) 35%, rgba(6, 6, 8, 0.88) 100%);
}
.speciale-banner-overlay .prestige-badge {
  background: rgba(6, 6, 8, 0.5);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
}
.speciale-banner-overlay h2 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
@media (max-width: 600px) {
  .speciale-banner {
    aspect-ratio: 4 / 5;
  }
}
.speciale-ctas {
  margin-top: 40px;
}

/* ---------- Musica dal vivo / dj ---------- */
.musica .section-head p {
  max-width: 560px;
}
.musica-ctas {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Evento privato ---------- */
.evento-privato {
  position: relative;
}
.evento-card {
  border: 1px solid rgba(226, 221, 208, 0.35);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  background: radial-gradient(ellipse 100% 100% at 0% 0%, rgba(226, 221, 208, 0.1), transparent 60%), var(--bg-card);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.evento-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}
.evento-card p.body {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 520px;
}
.evento-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.evento-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text);
}
.evento-list .mark {
  color: var(--line);
  flex-shrink: 0;
}
.evento-cta-wrap {
  text-align: center;
}
.evento-cta-wrap .btn {
  padding: 18px 30px;
  font-size: 1.02rem;
}
.evento-cta-wrap .evento-email {
  margin-top: 12px;
}
.evento-cta-wrap .hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
@media (max-width: 780px) {
  .evento-card {
    grid-template-columns: 1fr;
  }
}

/* ---------- Persone ---------- */
.persone-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.persone-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #191a22, #0c0d11);
}
.persone-text p.body {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 14px;
}
@media (max-width: 780px) {
  .persone-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Recensioni ---------- */
.recensioni {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.recensioni .section-head {
  max-width: 640px;
  margin: 0 auto 32px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  font-family: var(--serif);
}
.rating-badge .stars {
  color: var(--line);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.rating-badge .num {
  font-size: 1.5rem;
  font-weight: 700;
}
.rating-badge .count {
  font-family: var(--sans);
  color: var(--text-dim);
  font-size: 0.92rem;
}
.recensioni-cta {
  margin-top: 34px;
}
.reviews-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .stars {
  color: var(--line);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.review-card .quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}
.review-card .attribution {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.review-card .attribution strong {
  color: var(--text);
  font-weight: 600;
}
.review-card .badge-lg {
  font-size: 0.7rem;
  padding: 2px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
@media (max-width: 780px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Orari / mappa ---------- */
.dove {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.dove-address {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.hours-list {
  border-top: 1px solid var(--border);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.hours-row .day {
  color: var(--text-dim);
}
.hours-row .time {
  font-weight: 600;
}
.hours-row.tbd .time {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.88rem;
  font-style: italic;
}
.dove-phone {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3.4;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
/* usato solo nel bundle demo/artifact, dove l'iframe Google Maps non può caricare */
.map-fallback-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(160deg, #191a22, #0c0d11);
}
.map-fallback-inner .placeholder-label {
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.dove-cta {
  margin-top: 18px;
}
@media (max-width: 780px) {
  .dove {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 120px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand .logo img {
  height: 56px;
  width: 56px;
}
.footer-brand p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer-bottom a {
  color: var(--text-dim);
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Floating WhatsApp button ---------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.fab:active {
  transform: scale(0.94);
}
.fab svg {
  width: 22px;
  height: 22px;
}
.fab-whatsapp {
  background: #1fae5a;
  color: #fff;
}

/* ---------- Subpage hero band (Chi siamo / Eventi) ---------- */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 56px;
  overflow: hidden;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 6, 8, 0.62) 0%, rgba(6, 6, 8, 0.4) 34%, transparent 60%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.2) 0%, rgba(9, 10, 13, 0.3) 45%, rgba(6, 6, 8, 0.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero-content .eyebrow {
  color: var(--accent);
}
.page-hero-content h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  color: var(--text);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 6px 28px rgba(0, 0, 0, 0.55);
  margin-top: 10px;
}
.page-hero-content p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: rgba(230, 224, 210, 0.95);
  max-width: 540px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 4px 18px rgba(0, 0, 0, 0.5);
}
.hero-hashtag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  border: 1px solid rgba(244, 236, 217, 0.35);
  border-radius: 999px;
  background: rgba(6, 6, 8, 0.45);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ---------- Mantra spensieratezza ---------- */
.manifesto-tag-section {
  text-align: center;
}
.manifesto-tag-lede {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.manifesto-tag-hashtag {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.2vw, 2.5rem);
  color: var(--accent);
  margin: 14px 0 22px;
  letter-spacing: -0.01em;
}
.manifesto-tag-body {
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.cta-final-hashtag {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---------- Container width variants + section variant ---------- */
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Split block (testo + foto, alternabile) ---------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-block + .split-block {
  margin-top: 64px;
}
.section-head + .split-block {
  margin-top: 40px;
}
.split-block h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.split-block.reverse .split-photo {
  order: -1;
}
.split-photo {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-photo.split-photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.split-photo.split-photo-duo img {
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.split-text p.body {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 8px;
}
.split-text p.body + p.body {
  margin-top: 16px;
}
@media (max-width: 780px) {
  .split-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-block .split-photo {
    order: -1;
    aspect-ratio: 16 / 10;
  }
  .split-block .split-photo.split-photo-duo {
    aspect-ratio: auto;
  }
}

/* ---------- Pull quote ---------- */
.pull-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--accent);
}
.pull-quote-wrap {
  margin-top: 56px;
}
.pull-quote span {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---------- Prestige badge (evento speciale) ---------- */
.prestige-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(244, 236, 217, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 18px;
}

.cta-final {
  text-align: center;
}
.cta-final-action {
  margin-top: 28px;
}

/* ---------- Sub-nav teaser links (index -> subpages) ---------- */
.teaser-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.teaser-link:hover {
  color: var(--text);
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--accent);
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.legal .todo {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--accent);
  font-size: 0.9rem;
  margin: 14px 0;
}
.legal a.back {
  color: var(--accent);
  font-size: 0.9rem;
}
