/* =========================================================
   Gioia Festival 2026 — Public site styles
   Mobile-first, brand-driven, "wow" animations
   ========================================================= */

/* Font brand: Helony Regular — metti il file in public/fonts/ (vedi LEGGIMI.txt).
   Finché il file non c'è, si usa il fallback (Jost/Inter) senza errori. */
@font-face {
  font-family: "Helony";
  src: url("/fonts/helony.otf") format("opentype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --navy: #264363;
  --navy-deep: #1b3049;
  --navy-light: #33557a;
  --cream: #F6EFE2;
  --mozzarella: #FBF7EF;
  --gold: #D9A94E;
  --gold-soft: #e6c079;
  --olive: #6E7B4E;
  --white: #FFFFFF;
  --ink: #22303f;

  /* Derived */
  --gold-glow: rgba(217, 169, 78, 0.45);
  --shadow-sm: 0 4px 14px rgba(27, 48, 73, 0.08);
  --shadow-md: 0 12px 30px rgba(27, 48, 73, 0.14);
  --shadow-lg: 0 26px 60px rgba(27, 48, 73, 0.28);

  /* Type */
  --font-display: "Helony", "Jost", "Century Gothic", ui-sans-serif, sans-serif;
  --font-body: "Helony", "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --header-h: 74px;
  --radius: 18px;
  --radius-lg: 26px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; font-weight: 700; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* =========================================================
   INTRO / SPLASH — animazione d'apertura
   ========================================================= */
.intro {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background:
    radial-gradient(70% 70% at 50% 40%, #2c4d73 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, var(--navy-deep));
  opacity: 1; transition: opacity 0.7s var(--ease-soft), visibility 0.7s;
  overflow: hidden;
}
.intro.hide { opacity: 0; visibility: hidden; }
.intro-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }

.intro-mark { position: relative; width: 150px; height: 150px; display: grid; place-items: center; }
.intro-pit {
  width: 118px; height: auto; position: relative; z-index: 2;
  opacity: 0; transform: scale(0.6);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
  animation: introPit 1s var(--ease-out) 0.15s forwards;
}
/* anelli dorati concentrici che si espandono (richiamo del logo) */
.intro-ring {
  position: absolute; top: 50%; left: 50%;
  width: 120px; height: 120px; margin: -60px 0 0 -60px;
  border: 2px solid var(--gold); border-radius: 50%;
  opacity: 0; transform: scale(0.3);
}
.intro-ring:nth-child(1) { animation: introRing 1.8s var(--ease-out) 0.25s infinite; }
.intro-ring:nth-child(2) { animation: introRing 1.8s var(--ease-out) 0.6s infinite; }
.intro-ring:nth-child(3) { animation: introRing 1.8s var(--ease-out) 0.95s infinite; }

.intro-logo {
  width: min(280px, 70vw); height: auto;
  opacity: 0; transform: translateY(14px);
  animation: introLogo 0.9s var(--ease-out) 0.85s forwards;
}
.intro-skip {
  position: absolute; bottom: 30px; left: 0; right: 0; text-align: center;
  color: rgba(246,239,226,0.5); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; animation: introLogo 0.6s ease 1.6s forwards;
}
@keyframes introPit {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes introRing {
  0%   { opacity: 0; transform: scale(0.3); }
  30%  { opacity: 0.8; }
  100% { opacity: 0; transform: scale(1.7); }
}
@keyframes introLogo { to { opacity: 1; transform: translateY(0); } }

/* Blocca lo scroll finché l'intro è visibile */
body.intro-active { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .intro-pit, .intro-logo, .intro-skip { animation: none !important; opacity: 1 !important; transform: none !important; }
  .intro-ring { display: none; }
  .intro { transition: opacity 0.2s linear; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 2000;
  background: var(--gold); color: var(--navy-deep);
  padding: 10px 18px; border-radius: 10px; font-weight: 600;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px;
  z-index: 1500; background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width 0.1s linear;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), backdrop-filter 0.4s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(27, 48, 73, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.nav-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 46px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform 0.4s var(--ease-out);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-2deg); }

.main-nav ul { display: none; }
@media (min-width: 900px) {
  .main-nav ul { display: flex; gap: 34px; align-items: center; }
}
.nav-link {
  position: relative; color: var(--cream); font-weight: 500; font-size: 0.98rem;
  letter-spacing: 0.02em; padding: 6px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--gold);
  border-radius: 2px; transition: width 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--gold-soft); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Social nell'header (solo desktop) */
.nav-social { display: none; }
@media (min-width: 900px) {
  .nav-social { display: flex; align-items: center; gap: 10px; margin-left: 26px; }
}
.nav-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--cream);
  background: rgba(246,239,226,0.08);
  border: 1px solid rgba(246,239,226,0.18);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-social-btn:hover {
  transform: translateY(-2px);
  color: var(--navy-deep); background: var(--gold); border-color: var(--gold);
}
/* Social nel drawer mobile */
.mnav-social { display: flex; gap: 12px; padding: 18px 6px 4px; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 9px; border-radius: 12px;
  transition: background 0.25s;
}
.hamburger span {
  display: block; height: 2.5px; width: 100%; border-radius: 3px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 1150;
  background: rgba(27, 48, 73, 0.98);
  backdrop-filter: blur(14px);
  padding: 14px 22px 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-12px); opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.mobile-nav:not([hidden]) { transform: translateY(0); opacity: 1; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mnav-link {
  display: block; color: var(--cream); font-size: 1.15rem; font-weight: 500;
  padding: 15px 6px; border-bottom: 1px solid rgba(246, 239, 226, 0.12);
  transition: color 0.2s, padding-left 0.25s;
}
.mnav-link:hover { color: var(--gold-soft); padding-left: 14px; }

/* =========================================================
   APP TAB BAR (bottom nav, mobile) — tap target ampi
   ========================================================= */
.tabbar { display: none; }
.tabbar-item[hidden] { display: none !important; }
@media (max-width: 899px) {
  /* Barra di navigazione in fondo: DISATTIVATA.
     L'assistente virtuale si posiziona in basso a destra sopra ogni cosa e
     rendeva impraticabile il pulsante "Altro". Su mobile la navigazione passa
     dall'hamburger in alto, che non ha nulla intorno. */
  .tabbar {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
    background: rgba(20, 34, 52, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(246, 239, 226, 0.14);
    box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.3);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .tabbar-item {
    position: relative;
    flex: 1 1 0; min-width: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; min-height: 60px; padding: 8px 2px;
    color: rgba(246, 239, 226, 0.62); font-size: 0.64rem; font-weight: 600; letter-spacing: 0;
    background: none; border: none; cursor: pointer; font-family: var(--font-body);
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
  }
  .tabbar-item span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .tabbar-ic { width: 24px; height: 24px; display: block; transition: transform 0.25s var(--ease-out); }
  .tabbar-item:hover, .tabbar-item:focus-visible { color: var(--cream); }
  .tabbar-item.active { color: var(--gold-soft); }
  .tabbar-item.active .tabbar-ic { transform: translateY(-2px) scale(1.08); }
  .tabbar-item.active::before {
    content: ""; position: absolute; top: 0; width: 34px; height: 3px; border-radius: 0 0 4px 4px;
    background: var(--gold); box-shadow: 0 0 10px var(--gold-glow);
  }
  /* su mobile si naviga dall'hamburger in alto */
  .hamburger { display: flex !important; }
  .hero-scroll { display: none; }
  /* il menu scende da sotto l'header, non più dal basso */
  .mobile-nav {
    top: var(--header-h); bottom: auto;
    border-radius: 0 0 18px 18px;
    max-height: calc(100svh - var(--header-h) - 20px); overflow-y: auto;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--cream);
  padding: calc(var(--header-h) + 20px) 20px 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-gradient {
  position: absolute; inset: -20%;
  background:
    radial-gradient(60% 60% at 20% 20%, var(--navy-light) 0%, transparent 55%),
    radial-gradient(70% 70% at 85% 75%, #2c4d73 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, var(--navy-deep));
  background-size: 200% 200%;
  animation: gradientShift 18s var(--ease-soft) infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%, 100% 50%, 0% 0%; }
  50%      { background-position: 100% 50%, 0% 50%, 100% 100%; }
}

/* Soft milk/mozzarella blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(30px);
  opacity: 0.5;
  will-change: transform;
}
.blob-1 {
  width: 46vw; height: 46vw; max-width: 520px; max-height: 520px;
  top: -8%; left: -6%;
  background: radial-gradient(circle at 35% 35%, rgba(251,247,239,0.9), rgba(251,247,239,0.15));
  animation: blobFloat 22s ease-in-out infinite;
}
.blob-2 {
  width: 40vw; height: 40vw; max-width: 460px; max-height: 460px;
  bottom: -12%; right: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(217,169,78,0.55), rgba(217,169,78,0.05));
  animation: blobFloat 26s ease-in-out infinite reverse;
}
.blob-3 {
  width: 26vw; height: 26vw; max-width: 300px; max-height: 300px;
  top: 40%; right: 18%;
  background: radial-gradient(circle at 40% 40%, rgba(251,247,239,0.7), rgba(251,247,239,0.05));
  animation: blobFloat 19s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4%, 6%) scale(1.08); }
  66%      { transform: translate(-5%, -4%) scale(0.94); }
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  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 type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content { position: relative; width: 100%; max-width: 900px; z-index: 1; }

.hero-kicker {
  font-size: clamp(0.8rem, 2.6vw, 1rem);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin: 0 0 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 13vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;   /* come il logo */
  margin: 0 0 22px;
  text-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px) rotate(2deg);
  animation: wordIn 0.9s var(--ease-out) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.25s; }
.hero-title .word:nth-child(2) { animation-delay: 0.42s; }
.word-accent {
  color: var(--gold);
  font-weight: 800;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-dates {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  font-weight: 600; letter-spacing: 0.04em;
  margin: 0 0 8px; color: var(--white);
}
.hero-location {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: rgba(246,239,226,0.85); margin: 0 0 4px; font-weight: 500;
}
.hero-tagline {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: rgba(246,239,226,0.72);
  max-width: 560px; margin: 10px auto 0; font-weight: 300;
}

/* Nota istituzionale nell'hero (stesso blocco del footer, in scala ridotta).
   Desktop: loghi a sinistra del testo · Mobile: loghi sopra. */
.hero-institutional {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 22px auto 0; max-width: 620px; text-align: left;
}
.hero-institutional-logo {
  flex: none; display: block; width: 200px; height: auto;
  background: #003a5f; border-radius: 8px; padding: 8px 10px;
}
.hero-institutional-text {
  margin: 0; max-width: 330px; font-weight: 300;
  font-size: 0.78rem; line-height: 1.55; color: rgba(246,239,226,0.62);
}
@media (max-width: 720px) {
  .hero-institutional { flex-direction: column; gap: 12px; text-align: center; }
  .hero-institutional-logo { width: 190px; }
  .hero-institutional-text { max-width: 100%; }
}

/* Countdown */
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(4px, 2vw, 16px);
  margin: 34px 0 30px;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: clamp(58px, 16vw, 92px);
  padding: 14px 8px 10px;
  background: rgba(246, 239, 226, 0.07);
  border: 1px solid rgba(246, 239, 226, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  font-weight: 700; line-height: 1; color: var(--white);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.cd-num.flip { animation: cdFlip 0.5s var(--ease-out); }
@keyframes cdFlip {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.28) translateY(-3px); color: var(--gold); }
  100% { transform: scale(1); }
}
.cd-label {
  margin-top: 8px; font-size: clamp(0.6rem, 2vw, 0.72rem);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold-soft); font-weight: 600;
}
.cd-sep {
  font-family: var(--font-display); font-size: clamp(1.4rem, 5vw, 2.4rem);
  color: rgba(217,169,78,0.6); font-weight: 700;
  align-self: flex-start; margin-top: clamp(14px, 4vw, 26px);
}
@media (max-width: 420px) { .cd-sep { display: none; } }
/* Rifiniture mobile: evita overflow orizzontale nell'hero */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.9rem, 16vw, 5.2rem); }
  .hero-title .word { display: block; }        /* "Gioia" / "Festival" su due righe */
  .countdown { flex-wrap: wrap; gap: 8px; }
  .cd-unit { min-width: 66px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; }
}

/* Buttons */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              background 0.3s, color 0.3s;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep);
  box-shadow: 0 10px 26px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px var(--gold-glow);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(246,239,226,0.45);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold); color: var(--gold-soft);
  background: rgba(246,239,226,0.06);
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.mouse {
  display: block; width: 26px; height: 42px;
  border: 2px solid rgba(246,239,226,0.5); border-radius: 14px;
  position: relative;
}
.wheel {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--gold);
  animation: wheel 1.6s var(--ease-out) infinite;
}
@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: clamp(70px, 11vw, 130px) 0; position: relative; }
.section-highlights { background: var(--cream); }
.section-programma { background: var(--navy); color: var(--cream); }
.section-artisti { background: var(--mozzarella); }
.section-galleria { background: var(--cream); }
.section-caseifici { background: var(--navy-deep); color: var(--cream); }
.section-info { background: var(--cream); }
.section-sponsor { background: var(--mozzarella); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 66px); }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 14px;
}
.eyebrow-gold { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700; color: var(--navy); letter-spacing: -0.01em;
}
.section-title-light { color: var(--cream); }
.section-sub {
  margin: 14px auto 0; font-size: clamp(1rem, 2.6vw, 1.15rem);
  color: rgba(34,48,63,0.7); font-weight: 300; max-width: 520px;
}
.section-sub-light { color: rgba(246,239,226,0.75); }

/* =========================================================
   HIGHLIGHTS
   ========================================================= */
.highlights-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }

.hl-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(38,67,99,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.hl-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(217,169,78,0.08));
  opacity: 0; transition: opacity 0.4s;
}
.hl-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.hl-card:hover::before { opacity: 1; }
.hl-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(38,67,99,0.9), var(--navy-light));
  color: var(--gold-soft);
  box-shadow: 0 8px 20px rgba(38,67,99,0.22);
  transition: transform 0.5s var(--ease-out);
}
.hl-card:hover .hl-icon { transform: rotate(-6deg) scale(1.08); }
.hl-icon svg { width: 34px; height: 34px; }
.hl-title {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.hl-text { font-size: 0.96rem; color: rgba(34,48,63,0.72); }

/* =========================================================
   PROGRAMMA (tabs)
   ========================================================= */
.tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 42px;
}
.tab {
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.98rem;
  color: rgba(246,239,226,0.75);
  background: rgba(246,239,226,0.06);
  border: 1px solid rgba(246,239,226,0.16);
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.tab .tab-theme { font-size: 0.72rem; font-weight: 400; opacity: 0.7; letter-spacing: 0.02em; }
.tab:hover { color: var(--cream); border-color: var(--gold-soft); transform: translateY(-2px); }
.tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep); border-color: transparent;
  box-shadow: 0 12px 28px var(--gold-glow);
}
.tab[aria-selected="true"] .tab-theme { opacity: 0.85; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelIn 0.5s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Timeline */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--gold), rgba(217,169,78,0.1));
}
@media (min-width: 640px) { .timeline::before { left: 118px; } }

.slot {
  position: relative; padding: 0 0 30px 46px;
  display: block;
}
@media (min-width: 640px) {
  .slot { padding-left: 150px; }
}
.slot::before {
  content: ""; position: absolute; left: 8px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(217,169,78,0.25);
  z-index: 1;
}
@media (min-width: 640px) { .slot::before { left: 112px; } }
.slot-time {
  display: inline-block; font-family: var(--font-display);
  font-weight: 700; color: var(--gold); font-size: 1.05rem;
  margin-bottom: 4px;
}
@media (min-width: 640px) {
  .slot-time { position: absolute; left: 0; top: 2px; width: 96px; text-align: right; }
}
.slot-card {
  background: rgba(246,239,226,0.06);
  border: 1px solid rgba(246,239,226,0.12);
  border-radius: 16px; padding: 18px 22px;
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
}
.slot-card:hover {
  transform: translateX(6px);
  background: rgba(246,239,226,0.1);
  border-color: var(--gold-soft);
}
.slot-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.slot-text { font-size: 0.94rem; color: rgba(246,239,226,0.72); }

/* =========================================================
   ARTISTI
   ========================================================= */
.artists-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) {
  .artists-grid { grid-template-columns: repeat(4, 1fr); }
  /* Griglia non piena → si adatta al numero di card e resta centrata,
     invece di lasciare buchi a destra. Il conteggio è automatico. */
  /* 3, 5, 6 e 9 schede vanno su 3 colonne: così 6 diventano due righe da 3
     invece di 4 + 2, e 5 diventano 3 + 2 invece di 4 + 1. */
  .artists-grid:has(> :nth-child(3):last-child),
  .artists-grid:has(> :nth-child(5):last-child),
  .artists-grid:has(> :nth-child(6):last-child),
  .artists-grid:has(> :nth-child(9):last-child) {
    grid-template-columns: repeat(3, 1fr); max-width: 920px; margin-inline: auto;
  }
  .artists-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr); max-width: 620px; margin-inline: auto;
  }
  .artists-grid:has(> :only-child) {
    grid-template-columns: minmax(0, 300px); justify-content: center;
  }
}

.artist-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--cream);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  /* è un <button> */
  width: 100%; text-align: left; font-family: inherit; cursor: pointer;
  border: 2px solid transparent; -webkit-tap-highlight-color: transparent;
}
.artist-card.is-active { border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 3px var(--gold-glow); }
.artist-card::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,169,78,0.4), transparent 70%);
  opacity: 0; transition: opacity 0.5s, transform 0.6s var(--ease-out);
}
.artist-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.artist-card:hover::after { opacity: 1; transform: scale(1.3); }
.artist-day {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  padding: 5px 12px; border-radius: 50px; margin-bottom: auto;
  position: relative; z-index: 1;
}
.artist-name {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  margin: 22px 0 6px; position: relative; z-index: 1;
}
.artist-role { font-size: 0.9rem; color: rgba(246,239,226,0.72); position: relative; z-index: 1; }

/* Artist card WITH photo (locandina completa: mostrata pulita, senza testo sovrapposto) */
.artist-card.has-image { padding: 0; background: var(--navy-deep); }
.artist-poster { position: absolute; inset: 0; display: block; z-index: 0; }
.artist-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.artist-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top,
      var(--navy-deep) 4%,
      rgba(27,48,73,0.78) 34%,
      rgba(27,48,73,0.32) 62%,
      rgba(27,48,73,0.15) 100%);
  transition: background 0.5s var(--ease-out);
}
.artist-card.has-image::after { display: none; }        /* niente glow sopra la locandina */
.artist-card.has-image:hover .artist-photo { transform: scale(1.06); }

/* indicatori di click */
.artist-more {
  position: relative; z-index: 1; margin-top: 14px;
  color: var(--gold-soft); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  opacity: 0.85; transition: transform 0.3s var(--ease-out);
}
.artist-card:hover .artist-more { transform: translateX(4px); }
.artist-tap {
  position: absolute; z-index: 1; left: 14px; bottom: 14px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  padding: 6px 12px; border-radius: 50px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s var(--ease-out);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.artist-card.has-image:hover .artist-tap, .artist-card.has-image.is-active .artist-tap { opacity: 1; transform: none; }

/* Dettaglio inline (mini-programma) */
.artist-detail {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.4s var(--ease-out);
}
.artist-detail[hidden] { display: none; }
.artist-detail.open { opacity: 1; }
.artist-detail-inner {
  margin-top: 22px; position: relative;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--cream); border: 1px solid rgba(217,169,78,0.28);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(22px, 4vw, 34px);
}
.artist-detail-close {
  position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.6rem; line-height: 1; color: var(--cream); background: rgba(255,255,255,0.08);
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.artist-detail-close:hover { background: var(--gold); color: var(--navy-deep); transform: rotate(90deg); }
.ad-grid { display: grid; gap: clamp(20px, 4vw, 34px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 720px) { .ad-grid.has-media { grid-template-columns: 230px 1fr; } }
.ad-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
/* logo caseificio nel pannello inline: tile bianco */
.cd-media {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.cd-media img { width: 100%; height: auto; max-height: 170px; object-fit: contain; display: block; }
.ad-day {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold); padding: 5px 13px; border-radius: 50px;
}
.ad-name { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 12px 0 4px; }
.ad-role { color: rgba(246,239,226,0.72); margin: 0 0 18px; }
.ad-bio { margin: 0 0 18px; }
.ad-bio p { color: rgba(246,239,226,0.82); line-height: 1.6; font-size: 0.95rem; margin: 0 0 10px; }
.ad-bio p:last-child { margin-bottom: 0; }
/* Serata con più atti (es. Domenica) */
.artist-card-multi { position: relative; }
.artist-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: var(--gold); color: var(--navy-deep);
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
}
.ad-acts { display: grid; gap: 18px; margin-top: 18px; }
.ad-act { border-top: 1px solid rgba(246,239,226,0.14); padding-top: 16px; }
.ad-act:first-child { border-top: 0; padding-top: 0; }
.ad-act-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin: 0 0 2px; }
.ad-act-role { color: var(--gold-soft); font-size: 0.9rem; margin: 0 0 10px; }
.ad-act .ad-bio { margin: 0; }
.ad-act .ad-bio p { font-size: 0.92rem; }
.ad-program { border-top: 1px solid rgba(246,239,226,0.14); padding-top: 16px; }
.ad-program-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.ad-when { display: flex; align-items: center; gap: 9px; margin: 10px 0 8px; font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.ad-when svg { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; }
.ad-activity { margin: 0; color: rgba(246,239,226,0.85); line-height: 1.55; }
.ad-activity strong { color: var(--cream); }

/* =========================================================
   CASEIFICI
   ========================================================= */
.caseifici-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .caseifici-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .caseifici-grid { grid-template-columns: repeat(4, 1fr); } }

.caseificio-card {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 22px 24px; cursor: pointer; color: inherit; font: inherit;
  background: rgba(246,239,226,0.05);
  border: 1px solid rgba(246,239,226,0.14);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.caseificio-card:hover {
  transform: translateY(-6px);
  background: rgba(246,239,226,0.1);
  border-color: var(--gold-soft);
}
.caseificio-dot {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mozzarella), #e9dcc3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), inset 0 -3px 6px rgba(0,0,0,0.08);
}
.caseificio-logo {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px;
  background: var(--white); display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}
.caseificio-logo img { width: 100%; height: 100%; object-fit: contain; }
.caseificio-name {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--cream); flex: 1;
}
.caseificio-go {
  flex: 0 0 auto; display: inline-flex; color: var(--gold-soft);
  opacity: 0.6; transform: translateX(-4px);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.caseificio-card:hover .caseificio-go { opacity: 1; transform: translateX(0); }

/* ===== Scheda dettaglio caseificio (modale con animazione) ===== */
.cas-modal { position: fixed; inset: 0; z-index: 1600; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cas-modal[hidden] { display: none; }
.cas-backdrop {
  position: absolute; inset: 0; background: rgba(15,26,40,0.72);
  opacity: 0; transition: opacity 0.4s var(--ease-soft); backdrop-filter: blur(0px);
}
.cas-modal.open .cas-backdrop { opacity: 1; backdrop-filter: blur(6px); }
.cas-panel {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid rgba(246,239,226,0.16);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(26px) scale(0.94);
  transition: opacity 0.45s var(--ease-out), transform 0.55s var(--ease-out);
}
.cas-modal.open .cas-panel { opacity: 1; transform: translateY(0) scale(1); }
.cas-close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.7rem; line-height: 1;
  color: var(--cream); background: rgba(0,0,0,0.2);
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.cas-close:hover { background: var(--gold); color: var(--navy-deep); transform: rotate(90deg); }

/* Hero con anelli concentrici animati (motivo del logo) */
.cas-hero {
  position: relative; overflow: hidden;
  padding: 46px 34px 30px;
  border-bottom: 1px solid rgba(246,239,226,0.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(51,85,122,0.6), transparent 60%),
    radial-gradient(70% 120% at 100% 20%, rgba(217,169,78,0.16), transparent 60%);
}
.cas-rings { position: absolute; top: 50%; right: -30px; transform: translateY(-50%); width: 180px; height: 180px; pointer-events: none; }
.cas-rings i {
  position: absolute; top: 50%; left: 50%; border: 2px solid rgba(246,239,226,0.16);
  border-radius: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0;
}
.cas-rings i:nth-child(1) { width: 80px; height: 80px; }
.cas-rings i:nth-child(2) { width: 130px; height: 130px; }
.cas-rings i:nth-child(3) { width: 180px; height: 180px; }
.cas-modal.open .cas-rings i { animation: casRing 2.6s var(--ease-out) infinite; }
.cas-modal.open .cas-rings i:nth-child(2) { animation-delay: 0.4s; }
.cas-modal.open .cas-rings i:nth-child(3) { animation-delay: 0.8s; }
@keyframes casRing {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.3); }
  40%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1); }
}
.cas-logo {
  position: relative; z-index: 1; display: block;
  width: 84px; height: 84px; object-fit: contain; margin-bottom: 16px;
  background: var(--white); border-radius: 16px; padding: 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.cas-logo[hidden] { display: none; }
.cas-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-deep); background: var(--gold);
  padding: 5px 13px; border-radius: 50px; position: relative; z-index: 1;
}
.cas-name {
  font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin: 14px 0 0; position: relative; z-index: 1;
}
.cas-body { padding: 26px 34px 32px; }
.cas-desc { color: rgba(246,239,226,0.86); font-size: 1.02rem; margin: 0 0 22px; }
.cas-facts { display: grid; gap: 14px; margin: 0 0 26px; }
.cas-fact { display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: start;
  padding-bottom: 12px; border-bottom: 1px solid rgba(246,239,226,0.1); }
.cas-fact[hidden] { display: none; }
/* le classi con display esplicito devono rispettare l'attributo hidden */
.footer-social[hidden], .nav-social[hidden], .mnav-social[hidden],
.social-btn[hidden], .nav-social-btn[hidden],
.cas-badge[hidden], .btn[hidden] { display: none; }
.cas-fact dt { color: var(--gold-soft); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 2px 0 0; }
.cas-fact dd { margin: 0; color: var(--cream); }
.cas-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cas-ghost { border-color: rgba(246,239,226,0.4); color: var(--cream); }
.cas-ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(246,239,226,0.06); }

/* Entrata a cascata dei contenuti */
.cas-modal.open .cas-badge,
.cas-modal.open .cas-name,
.cas-modal.open .cas-desc,
.cas-modal.open .cas-facts,
.cas-modal.open .cas-actions {
  animation: casIn 0.6s var(--ease-out) both;
}
.cas-modal.open .cas-name { animation-delay: 0.08s; }
.cas-modal.open .cas-desc { animation-delay: 0.16s; }
.cas-modal.open .cas-facts { animation-delay: 0.24s; }
.cas-modal.open .cas-actions { animation-delay: 0.32s; }
@keyframes casIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 520px) { .cas-fact { grid-template-columns: 1fr; gap: 2px; } }

/* =========================================================
   INFO
   ========================================================= */
.info-layout {
  display: grid; gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .info-layout { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.info-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.info-text { font-size: 0.95rem; color: rgba(34,48,63,0.72); }

/* Map card */
.map-card {
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); color: var(--cream);
}
/* Variante larga: sotto le card di viaggio nella sezione "Come arrivare" */
.map-card-wide { margin-top: 28px; }
@media (min-width: 720px) {
  .map-card-wide { display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch; }
  .map-card-wide .map-visual { height: 100%; min-height: 210px; }
  .map-card-wide .map-body { display: flex; flex-direction: column; justify-content: center; }
}
.map-visual {
  position: relative; height: 190px; overflow: hidden;
  background: linear-gradient(135deg, #2c4d73, var(--navy-deep));
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246,239,226,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,239,226,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-roads {
  position: absolute; inset: 0;
}
.map-roads::before, .map-roads::after {
  content: ""; position: absolute; background: rgba(217,169,78,0.35);
}
.map-roads::before { top: 55%; left: 0; right: 0; height: 8px; transform: rotate(-4deg); }
.map-roads::after { top: 0; bottom: 0; left: 40%; width: 8px; transform: rotate(6deg); }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -70%);
  color: var(--gold); z-index: 2;
  animation: pinBob 2.6s var(--ease-out) infinite;
}
@keyframes pinBob {
  0%, 100% { transform: translate(-50%, -70%); }
  50% { transform: translate(-50%, -82%); }
}
.map-pulse {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(217,169,78,0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: translateX(-50%) scale(0.5); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(2.6); opacity: 0; }
}
.map-body { padding: 26px 26px 30px; }
.map-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.map-place { font-weight: 600; color: var(--white); margin: 0 0 2px; }
.map-city { font-size: 0.9rem; color: rgba(246,239,226,0.7); margin: 0 0 20px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep); color: var(--cream);
  padding: 60px 0 44px; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; opacity: 0.95; }
.footer-dates {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--gold-soft); margin: 0;
}
.footer-location { color: rgba(246,239,226,0.78); margin: 0; }
.footer-social { display: flex; gap: 14px; justify-content: center; margin: 18px 0 4px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  color: var(--cream);
  background: rgba(246,239,226,0.08);
  border: 1px solid rgba(246,239,226,0.18);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.social-btn:hover {
  transform: translateY(-3px);
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 24px var(--gold-glow);
}
.footer-hash {
  font-weight: 700; letter-spacing: 0.06em; color: var(--gold);
  margin: 14px 0 0; font-size: 1.05rem;
}
.footer-credit {
  margin: 18px 0 0; font-size: 0.82rem; color: rgba(246,239,226,0.45);
  letter-spacing: 0.04em;
}
.footer-legal { margin: 8px 0 0; font-size: 0.82rem; }
.footer-legal a { color: rgba(246,239,226,0.6); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--gold-soft); }

/* --- Nota istituzionale + loghi enti ---------------------------------------
   Desktop: loghi a sinistra, testo a destra, allineati sulla stessa riga.
   Mobile: si impila e i loghi restano sopra il testo.
   Il riquadro ha lo stesso blu del file dei loghi (#003a5f), altrimenti
   si vedrebbe uno stacco netto sul blu del footer. */
.footer-institutional {
  width: 100%; max-width: 800px; margin: 28px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(246,239,226,0.14);
  display: flex; align-items: center; justify-content: center;
  gap: 24px; text-align: left;
}
.footer-institutional-logo {
  flex: none; display: block; width: 240px; height: auto;
  background: #003a5f; border-radius: 8px; padding: 10px 12px;
}
.footer-institutional-text {
  margin: 0; max-width: 420px;
  font-size: 0.84rem; line-height: 1.6; color: rgba(246,239,226,0.72);
}
@media (max-width: 720px) {
  .footer-institutional { flex-direction: column; gap: 16px; text-align: center; }
  .footer-institutional-logo { width: 220px; }
  .footer-institutional-text { max-width: 100%; }
}

/* =========================================================
   GALLERIA — serate (album) e foto
   ========================================================= */

/* ---------- Vista 1: le serate ---------- */
.album-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .album-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.album-card {
  position: relative; display: block; width: 100%; padding: 0;
  overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow-md);
  cursor: pointer; text-align: left; color: var(--cream);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
@media (min-width: 700px) { .album-card { aspect-ratio: 4 / 5; } }

.album-card-media { position: absolute; inset: 0; }
.album-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.album-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,27,42,0.92) 6%, rgba(15,27,42,0.45) 42%, rgba(15,27,42,0.05) 72%);
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.album-card:hover .album-card-media img { transform: scale(1.07); }

.album-card-body {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; padding: clamp(18px, 3.4vw, 26px);
}
.album-card-count {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  padding: 5px 11px; border-radius: 999px;
}
.album-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.4vw, 1.9rem); font-weight: 700; line-height: 1.15;
}
.album-card-sub { font-size: 0.92rem; color: rgba(246,239,226,0.8); font-weight: 300; }
.album-card-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
  font-size: 0.9rem; font-weight: 600; color: var(--gold-soft);
}
.album-card-cta svg { transition: transform 0.35s var(--ease-out); }
.album-card:hover .album-card-cta svg { transform: translateX(5px); }

/* ---------- Vista 2: le foto della serata ---------- */
.album-view[hidden] { display: none; }

.album-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: clamp(20px, 3.5vw, 30px);
}
.album-back {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  padding: 10px 16px 10px 12px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  background: rgba(38,67,99,0.07);
  transition: background 0.25s, color 0.25s;
}
.album-back:hover { background: var(--navy); color: var(--cream); }

/* Le linguette scorrono di lato quando le serate non ci stanno in larghezza. */
.album-tabs {
  display: flex; gap: 8px; overflow-x: auto; flex: 1 1 auto;
  padding-bottom: 2px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.album-tabs::-webkit-scrollbar { display: none; }
.album-tab {
  flex: none; padding: 10px 18px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; white-space: nowrap;
  color: rgba(34,48,63,0.7); background: transparent;
  border: 1px solid rgba(38,67,99,0.16);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.album-tab:hover { border-color: var(--navy); color: var(--navy); }
.album-tab.is-active {
  background: var(--navy); border-color: var(--navy); color: var(--cream);
}

.album-headline { margin-bottom: clamp(18px, 3vw, 26px); outline: none; }
.album-headline-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.4vw, 2.1rem); color: var(--navy);
}
.album-headline-sub {
  margin: 6px 0 0; font-size: 0.95rem; font-weight: 300;
  color: rgba(34,48,63,0.65);
}

/* Righe giustificate: altezza e larghezze le calcola app.js, qui c'è solo
   l'aspetto. Ogni riga riempie la larghezza, le foto non vengono ritagliate. */
.photo-grid { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 640px) { .photo-grid { gap: 14px; } }
.photo-row { display: flex; width: 100%; }

.photo-tile {
  position: relative; flex: none; height: 100%; padding: 0;
  overflow: hidden; border-radius: 12px;
  background: rgba(38,67,99,0.08);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.photo-tile img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.5s var(--ease-soft), transform 0.6s var(--ease-out);
}
.photo-tile img.is-loaded { opacity: 1; }
.photo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); z-index: 1; }
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,48,73,0.7), rgba(27,48,73,0) 55%);
  opacity: 0; transition: opacity 0.35s var(--ease-out);
}
.photo-tile:hover::after, .photo-tile:focus-visible::after { opacity: 1; }
.photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 12px 12px 10px; text-align: left;
  color: var(--cream); font-size: 0.82rem; font-weight: 500;
  transform: translateY(8px); opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.photo-tile:hover .photo-cap, .photo-tile:focus-visible .photo-cap {
  transform: translateY(0); opacity: 1;
}
.photo-zoom {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(246,239,226,0.18); color: var(--cream);
  backdrop-filter: blur(4px);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.photo-tile:hover .photo-zoom, .photo-tile:focus-visible .photo-zoom {
  opacity: 1; transform: scale(1);
}
/* Da telefono niente hover: l'icona resta visibile, la didascalia no. */
@media (hover: none) {
  .photo-tile:hover { transform: none; box-shadow: none; }
  .photo-tile:hover img { transform: none; }
  .photo-zoom { opacity: 0.9; transform: scale(1); }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  animation: lbFade 0.3s var(--ease-out);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-figure {
  position: relative; z-index: 1; margin: 0;
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: lbZoom 0.35s var(--ease-out);
}
@keyframes lbZoom { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox-img {
  max-width: 100%; max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--cream); text-align: center;
  font-size: 0.98rem; max-width: 680px;
  padding: 0 8px;
}
.lightbox-btn {
  position: absolute; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream); background: rgba(246,239,226,0.12);
  border: 1px solid rgba(246,239,226,0.22);
  backdrop-filter: blur(6px);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.lightbox-count {
  position: absolute; z-index: 2; top: 26px; left: 0; right: 0; margin: 0;
  text-align: center; pointer-events: none;
  color: rgba(246,239,226,0.72); font-size: 0.86rem;
  font-weight: 600; letter-spacing: 0.08em;
}
.lightbox.is-single .lightbox-count { display: none; }
.lightbox-btn:hover { background: var(--gold); color: var(--navy-deep); transform: scale(1.08); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: clamp(10px, 3vw, 30px); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(10px, 3vw, 30px); top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next { display: none; }
@media (max-width: 560px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-btn { width: 44px; height: 44px; }
}

/* =========================================================
   SPONSOR / PARTNER
   ========================================================= */
.sponsor-tiers { display: flex; flex-direction: column; gap: clamp(30px, 5vw, 50px); }
.sponsor-tier-label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive); margin: 0 0 18px; text-align: center;
}
.sponsor-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-width: clamp(150px, 20vw, 200px); text-align: center;
  background: var(--white); border: 1px solid rgba(38,67,99,0.08);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
a.sponsor-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sponsor-item img { width: auto; max-width: 100%; height: clamp(46px, 7vw, 60px); object-fit: contain; display: block; }
.sponsor-chip { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.05rem; }
/* Etichetta del livello, sotto ogni logo */
.sponsor-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; line-height: 1.4;
}
.sponsor-badge.tier-platinum-plus { background: var(--navy); color: var(--cream); }
.sponsor-badge.tier-platinum { background: rgba(38,67,99,0.12); color: var(--navy); }
.sponsor-badge.tier-gold { background: rgba(217,169,78,0.24); color: var(--gold-dark, #c2933a); }
.sponsor-badge.tier-silver { background: rgba(120,134,148,0.20); color: #56636f; }
.sponsor-badge.tier-bronze { background: rgba(169,113,63,0.20); color: #8a5a30; }
.sponsor-badge.tier-supporter { background: rgba(110,123,78,0.16); color: var(--olive); }

/* Taglie per livello (visibilità decrescente) — loghi "a misura" */
.sponsor-minor.tier-platinum-plus .sponsor-item { min-width: clamp(180px, 23vw, 238px); min-height: 130px; padding: 24px 28px; }
.sponsor-minor.tier-platinum-plus .sponsor-item img { height: clamp(66px, 9vw, 86px); }
.sponsor-minor.tier-platinum-plus .sponsor-chip { font-size: 1.15rem; }
.sponsor-minor.tier-platinum .sponsor-item { min-width: clamp(165px, 21vw, 215px); min-height: 116px; }
.sponsor-minor.tier-platinum .sponsor-item img { height: clamp(58px, 8vw, 74px); }
.sponsor-minor.tier-gold .sponsor-item { min-width: clamp(150px, 18vw, 190px); min-height: 100px; }
.sponsor-minor.tier-gold .sponsor-item img { height: clamp(50px, 7vw, 62px); }
.sponsor-minor.tier-silver .sponsor-item { min-width: clamp(134px, 16vw, 172px); min-height: 90px; padding: 16px 20px; }
.sponsor-minor.tier-silver .sponsor-item img { height: clamp(42px, 6vw, 54px); }
.sponsor-minor.tier-bronze .sponsor-item { min-width: clamp(120px, 14vw, 158px); min-height: 82px; padding: 14px 18px; }
.sponsor-minor.tier-bronze .sponsor-item img { height: clamp(34px, 5vw, 46px); }
.sponsor-minor.tier-bronze .sponsor-chip { font-size: 0.95rem; }
.sponsor-minor.tier-supporter .sponsor-item { min-width: clamp(112px, 13vw, 146px); min-height: 76px; padding: 12px 16px; }
.sponsor-minor.tier-supporter .sponsor-item img { height: clamp(30px, 4.5vw, 40px); }
.sponsor-minor.tier-supporter .sponsor-chip { font-size: 0.9rem; }
.sponsor-minor + .sponsor-minor { margin-top: 6px; }

/* --- MAIN sponsor in evidenza --- */
.sponsor-main { text-align: center; }
.sponsor-main-label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dark, #c2933a); margin-bottom: 16px;
}
.sponsor-main-card {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px) clamp(40px, 7vw, 72px);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(217,169,78,0.35);
  animation: sponsorFloat 5s var(--ease-soft) infinite;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
a.sponsor-main-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 30px 70px rgba(27,48,73,0.3); }
.sponsor-main-card img { height: clamp(84px, 13vw, 132px); width: auto; display: block; }
.sponsor-main-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  animation: sponsorPulse 3.2s ease-out infinite;
}
@keyframes sponsorFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes sponsorPulse {
  0% { box-shadow: 0 0 0 0 rgba(217,169,78,0.45); }
  70% { box-shadow: 0 0 0 22px rgba(217,169,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,169,78,0); }
}

/* --- Carosello sponsor minori --- */
.sponsor-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sponsor-track {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  width: max-content; animation: sponsorScroll 30s linear infinite;
}
.sponsor-marquee:hover .sponsor-track { animation-play-state: paused; }
@keyframes sponsorScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sponsor-track .sponsor-item { flex: 0 0 auto; }
.sponsor-static-row { display: none; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(16px, 3vw, 30px); }

@media (prefers-reduced-motion: reduce) {
  .sponsor-main-card { animation: none; }
  .sponsor-main-card::after { display: none; }
  .sponsor-marquee { display: none; }
  .sponsor-static-row { display: flex; }
}

/* =========================================================
   TICKET DEGUSTAZIONE
   ========================================================= */
.section-ticket { background: var(--cream); }
.ticket-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  max-width: 860px; margin: 0 auto;
}
@media (min-width: 720px) { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px) {
  /* 3, 5 e 6 ticket vanno su 3 colonne: così 3 stanno su una riga sola invece
     di 2 + 1. La griglia si allarga per non stringere troppo le schede.
     Soglia a 800px per coprire anche il tablet in verticale; sotto restano
     2 colonne, perché tre schede con l'elenco puntato diventerebbero strette.
     Il conteggio è automatico: aggiungendone o togliendone non serve toccare nulla. */
  .ticket-grid:has(> :nth-child(3):last-child),
  .ticket-grid:has(> :nth-child(5):last-child),
  .ticket-grid:has(> :nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr); max-width: 1100px;
  }
}

.ticket-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38,67,99,0.08);
  box-shadow: var(--shadow-md);
  padding: 38px 30px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.ticket-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ticket-card.is-featured { border-color: var(--gold); box-shadow: 0 20px 50px var(--gold-glow); }
.ticket-card.is-featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(217,169,78,0.10), transparent 46%);
}
.ticket-badge {
  align-self: flex-start; position: relative; z-index: 1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
  box-shadow: 0 8px 18px var(--gold-glow);
}
.ticket-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; position: relative; z-index: 1;
}
.ticket-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 3.4rem); line-height: 1;
  color: var(--gold); margin: 8px 0 4px; position: relative; z-index: 1;
}
.ticket-tagline { color: rgba(34,48,63,0.7); font-style: italic; margin: 0 0 22px; position: relative; z-index: 1; }
.ticket-features { display: grid; gap: 12px; margin: 0; position: relative; z-index: 1; }
.ticket-feature {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.96rem; color: var(--ink);
}
.ticket-feature svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--olive); margin-top: 2px; }
.ticket-note {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  max-width: 640px; margin: 36px auto 0; text-align: left;
  padding: 16px 24px; border-radius: 18px;
  background: rgba(38,67,99,0.05);
  border: 1px dashed rgba(38,67,99,0.28);
  color: var(--navy); font-weight: 500; font-size: 0.98rem;
}
.ticket-note strong { font-weight: 700; }
.ticket-note svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--gold); }

/* Metodi di pagamento */
.ticket-pay {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  margin: 16px auto 0; max-width: 640px;
}
.ticket-pay-label { color: rgba(34,48,63,0.6); font-size: 0.9rem; font-weight: 500; }

/* Stato "aggiornamento in corso" (nessun ticket definito) */
.ticket-soon {
  grid-column: 1 / -1;
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px dashed var(--gold); box-shadow: var(--shadow-sm);
  padding: clamp(32px, 6vw, 52px) 28px;
}
.ticket-soon-ic {
  display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(217,169,78,0.14); color: var(--gold); margin-bottom: 16px;
}
.ticket-soon-ic svg { width: 32px; height: 32px; }
.ticket-soon-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin: 0 0 8px; }
.ticket-soon-text { color: rgba(34,48,63,0.7); font-size: 1rem; margin: 0; }
.pay-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 50px;
  background: var(--white); border: 1px solid rgba(38,67,99,0.14);
  box-shadow: var(--shadow-sm);
  color: var(--navy); font-weight: 600; font-size: 0.92rem;
}
.pay-badge svg { width: 22px; height: 22px; color: var(--gold); }

/* =========================================================
   COME ARRIVARE
   ========================================================= */
.section-arrivare { background: var(--mozzarella); }
.travel-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .travel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .travel-grid { grid-template-columns: repeat(3, 1fr); }
  /* 4 card → 2 + 2 (invece di 3 + 1); 2 o 1 card restano centrate.
     Il numero di card viene rilevato dal CSS, non serve toccare nulla
     quando se ne aggiunge o toglie una dal pannello admin. */
  .travel-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto;
  }
  .travel-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto;
  }
  .travel-grid:has(> :only-child) {
    grid-template-columns: minmax(0, 420px); justify-content: center;
  }
}

.travel-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(38,67,99,0.06);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.travel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.travel-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(38,67,99,0.9), var(--navy-light));
  color: var(--gold-soft);
  box-shadow: 0 8px 20px rgba(38,67,99,0.22);
  transition: transform 0.5s var(--ease-out);
}
.travel-card:hover .travel-icon { transform: rotate(-6deg) scale(1.08); }
.travel-icon svg { width: 30px; height: 30px; }
.travel-title {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.travel-text { font-size: 0.95rem; color: rgba(34,48,63,0.72); margin: 0 0 20px; }
.travel-maps {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  color: var(--navy); background: transparent;
  border: 1.5px solid rgba(38,67,99,0.25);
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.travel-maps svg { width: 18px; height: 18px; }
.travel-maps:hover {
  transform: translateY(-2px);
  border-color: var(--gold); color: var(--navy-deep); background: rgba(217,169,78,0.14);
}
/* Parcheggi consigliati: pulsanti di navigazione impilati */
.travel-parkings { margin-top: auto; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.travel-parkings .travel-nav { align-self: stretch; justify-content: flex-start; text-align: left; }
.travel-parkings .travel-nav svg { color: var(--gold); flex: 0 0 auto; }

/* =========================================================
   PRESS / AREA STAMPA
   ========================================================= */
.section-press { background: var(--navy); color: var(--cream); }
.press-layout { display: grid; gap: clamp(24px, 4vw, 40px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .press-layout { grid-template-columns: 1.05fr 0.95fr; } }
.press-items { display: grid; gap: 20px; grid-template-columns: 1fr; }
.press-card {
  background: rgba(246,239,226,0.06);
  border: 1px solid rgba(246,239,226,0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
}
.press-card:hover { transform: translateY(-5px); background: rgba(246,239,226,0.1); border-color: var(--gold-soft); }
.press-kind {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
}
.press-card-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.press-date { font-size: 0.85rem; color: var(--gold-soft); font-weight: 600; margin: 0 0 10px; }
.press-body { font-size: 0.95rem; color: rgba(246,239,226,0.75); margin: 0 0 20px; }
.press-readmore { margin-top: auto; align-self: flex-start; gap: 9px; padding: 11px 22px; font-size: 0.92rem; }
.press-readmore svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.press-readmore:hover svg { transform: translateX(4px); }
.press-card .btn { margin-top: auto; align-self: flex-start; }

/* Modale comunicato: pannello largo per un documento */
.press-panel { max-width: 760px; text-align: left; }
.press-modal-head { text-align: left; margin-bottom: 18px; padding-right: 40px; }
.press-modal-head .eyebrow { color: var(--olive); }
.press-modal-head .fb-modal-title { margin: 6px 0 0; text-align: left; font-size: clamp(1.35rem, 3.2vw, 1.9rem); line-height: 1.2; }
.press-modal-body {
  border-top: 1px solid rgba(34,48,63,0.12); padding-top: 18px;
}
.press-modal-p {
  font-size: 1rem; line-height: 1.7; color: rgba(34,48,63,0.82); margin: 0 0 15px;
}
.press-modal-p:last-child { margin-bottom: 0; }
.press-pdf { padding: 11px 22px; font-size: 0.92rem; }
.press-pdf svg { width: 18px; height: 18px; }

.press-photos-title {
  font-family: var(--font-display); font-size: 1.25rem; color: var(--cream);
  margin: 0 0 16px;
}
.press-photo-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.press-photo {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--navy-deep); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.press-photo:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.press-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.press-photo:hover img { transform: scale(1.08); }
.press-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,48,73,0.72), transparent 55%);
  opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.press-photo:hover::after, .press-photo:focus-visible::after { opacity: 1; }
.press-photo-zoom {
  position: absolute; bottom: 10px; right: 10px; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(246,239,226,0.18); color: var(--cream);
  backdrop-filter: blur(4px);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.press-photo:hover .press-photo-zoom, .press-photo:focus-visible .press-photo-zoom { opacity: 1; transform: scale(1); }
.press-photos-empty {
  border: 1px dashed rgba(246,239,226,0.25); border-radius: var(--radius);
  padding: 40px 20px; text-align: center; color: rgba(246,239,226,0.6); font-size: 0.95rem;
}
.press-photos-empty[hidden] { display: none; }

/* Rassegna stampa "Ne parlano" */
.press-clippings { margin-top: clamp(40px, 6vw, 60px); border-top: 1px solid rgba(246,239,226,0.14); padding-top: clamp(30px, 4vw, 44px); }
.press-clippings[hidden] { display: none; }
.press-clippings-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); text-align: center; margin: 0 0 24px; }
.clippings-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
@media (min-width: 680px) { .clippings-grid { grid-template-columns: repeat(4, 1fr); } }
.clipping {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 18px 14px; border-radius: var(--radius); text-decoration: none;
  background: rgba(246,239,226,0.06); border: 1px solid rgba(246,239,226,0.12);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
}
a.clipping:hover { transform: translateY(-5px); background: rgba(246,239,226,0.1); border-color: var(--gold-soft); }
.clipping-logo {
  width: 100%; aspect-ratio: 16 / 9; background: var(--white);
  border-radius: 10px; display: grid; place-items: center; padding: 10px; overflow: hidden;
}
.clipping-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.clipping-fallback { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; text-align: center; }
.clipping-name { font-size: 0.82rem; color: rgba(246,239,226,0.72); text-align: center; }

/* =========================================================
   GRADIMENTO / FEEDBACK FORM
   ========================================================= */
.section-gradimento { background: var(--cream); }
.feedback-form, .feedback-thanks {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid rgba(38,67,99,0.06);
  padding: clamp(28px, 5vw, 44px);
}
.feedback-form[hidden], .feedback-thanks[hidden] { display: none; }

.fb-field { margin-bottom: 22px; }
.fb-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.98rem; }
.fb-optional { color: rgba(34,48,63,0.5); font-weight: 400; font-size: 0.85rem; }
.fb-input, .fb-textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border-radius: 12px;
  background: var(--mozzarella);
  border: 1.5px solid rgba(38,67,99,0.16);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.fb-input:focus, .fb-textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(217,169,78,0.16);
}
.fb-textarea { resize: vertical; min-height: 110px; }

/* Rating stars (accessibili, navigabili da tastiera) */
.fb-rating { border: none; padding: 0; margin: 0 0 24px; }
.fb-rating legend { padding: 0; font-weight: 600; color: var(--navy); margin-bottom: 10px; font-size: 0.98rem; }
.stars { display: inline-flex; flex-direction: row-reverse; gap: 6px; }
.stars input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stars label {
  cursor: pointer; color: rgba(38,67,99,0.22); line-height: 0;
  transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.stars label svg { width: 40px; height: 40px; }
.stars label:hover { transform: scale(1.12); }
.stars input:checked ~ label { color: var(--gold); }
.stars:hover input:checked ~ label { color: rgba(38,67,99,0.22); }
.stars:hover label:hover, .stars:hover label:hover ~ label { color: var(--gold); }
.stars input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Domanda a scelta rapida (chips) */
.fb-choice { border: none; padding: 0; margin: 0 0 22px; }
.fb-choice legend { padding: 0; font-weight: 600; color: var(--navy); margin-bottom: 10px; font-size: 0.98rem; }
.fb-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.fb-chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.fb-chips label {
  cursor: pointer; padding: 9px 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  background: var(--mozzarella); border: 1.5px solid rgba(38,67,99,0.16); color: var(--navy);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.fb-chips label:hover { border-color: var(--gold-soft); transform: translateY(-1px); }
.fb-chips input:checked + label { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); font-weight: 700; }
.fb-chips input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.fb-hint { font-size: 0.82rem; color: rgba(34,48,63,0.6); margin: 2px 0 8px; }

.fb-consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.fb-consent input { margin-top: 3px; width: 20px; height: 20px; accent-color: var(--gold); flex: 0 0 auto; }
.fb-consent label { font-size: 0.9rem; color: rgba(34,48,63,0.75); }

.fb-honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.fb-submit { width: 100%; }

.fb-error {
  color: #a4341f; font-size: 0.92rem; font-weight: 600; margin: 0 0 18px;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(164,52,31,0.08); border: 1px solid rgba(164,52,31,0.22);
}
.fb-error[hidden] { display: none; }

.feedback-thanks { text-align: center; }
.fb-thanks-icon {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep); box-shadow: 0 12px 30px var(--gold-glow);
}
.fb-thanks-icon svg { width: 36px; height: 36px; }
.fb-thanks-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.fb-thanks-text { color: rgba(34,48,63,0.72); margin: 0; }

/* Anti-bot + Step 2 email */
.fb-human { margin-bottom: 22px; }
.fb-email-step { text-align: center; }
.fb-email-step[hidden] { display: none; }
.fb-email-lead { color: rgba(34,48,63,0.78); margin: 0 0 18px; }
.fb-email-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.fb-consent2 { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: rgba(34,48,63,0.75); }
.fb-consent2 input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex: 0 0 auto; }
.fb-email-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.fb-email-actions .btn { flex: 1 1 auto; }
.fb-email-actions .btn-ghost { color: var(--navy); border: 1.5px solid rgba(38,67,99,0.28); }
.fb-email-actions .btn-ghost:hover { background: rgba(38,67,99,0.06); border-color: var(--navy); color: var(--navy-deep); }

/* Step "come ci hai conosciuti" */
.fb-source-step { text-align: center; }
.fb-source-step[hidden] { display: none; }
.fb-source-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 16px 0 18px; }
.fb-source-chip {
  cursor: pointer; padding: 10px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  background: var(--mozzarella); border: 1.5px solid rgba(38,67,99,0.16); color: var(--navy);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.fb-source-chip:hover { border-color: var(--gold-soft); transform: translateY(-1px); }
.fb-source-chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.fb-source-skip.btn-ghost { color: var(--navy); border: 1.5px solid rgba(38,67,99,0.28); }
.fb-source-skip.btn-ghost:hover { background: rgba(38,67,99,0.06); border-color: var(--navy); }

/* Footer: link al modulo di gradimento */
.footer-feedback { margin: 22px 0 4px; padding: 11px 26px; }

/* =========================================================
   FEEDBACK: pulsante fisso (FAB) + modale — sempre accessibile
   ========================================================= */
.fb-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 1250;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep); font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 12px 30px var(--gold-glow), 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  /* nascosto finché non si scorre un po' (vedi .is-visible) */
  opacity: 0; transform: translateY(24px) scale(0.9); pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.fb-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fb-fab svg { width: 20px; height: 20px; flex: 0 0 auto; }
.fb-fab.is-visible:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 42px var(--gold-glow); }
/* su mobile il pulsante giudizio resta in basso a sinistra, compatto a icona
   (l'assistente virtuale occupa l'angolo destro) */
@media (max-width: 899px) {
  .fb-fab { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); left: 16px; padding: 13px; }
  .fb-fab-label { display: none; }
}

.fb-modal { position: fixed; inset: 0; z-index: 1700; display: flex; align-items: center; justify-content: center; padding: 20px; }
.fb-modal[hidden] { display: none; }
.fb-backdrop { position: absolute; inset: 0; background: rgba(15,26,40,0.72); opacity: 0; transition: opacity 0.4s var(--ease-soft); }
.fb-modal.open .fb-backdrop { opacity: 1; backdrop-filter: blur(6px); }
.fb-panel {
  position: relative; z-index: 1; width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  padding: clamp(26px, 5vw, 40px);
  opacity: 0; transform: translateY(24px) scale(0.96);
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.fb-modal.open .fb-panel { opacity: 1; transform: none; }
.fb-close {
  position: absolute; top: 12px; right: 14px; width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.7rem; line-height: 1; color: var(--navy); background: rgba(38,67,99,0.08);
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.fb-close:hover { background: var(--gold); color: var(--navy-deep); transform: rotate(90deg); }
.fb-modal-head { text-align: center; margin-bottom: 22px; }
.fb-modal-head .eyebrow { color: var(--olive); }
.fb-modal-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--navy); margin: 8px 0 6px; }
.fb-modal-sub { color: rgba(34,48,63,0.7); margin: 0; font-size: 0.96rem; }
/* dentro il pannello il form non deve avere la sua "card" */
.fb-modal .feedback-form, .fb-modal .feedback-thanks {
  max-width: none; margin: 0; background: none; box-shadow: none; border: none; padding: 0;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal[data-reveal="down"] { transform: translateY(-24px); }
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Staggered children */
[data-stagger] > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero-title .word { opacity: 1 !important; transform: none !important; }
  .hero-blob, .hero-gradient, .wheel, .map-pin, .map-pulse { animation: none !important; }
  .lightbox-overlay, .lightbox-figure { animation: none !important; }
  .photo-tile img, .album-card-media img, .artist-photo, .press-photo img { transition: none !important; }
  .photo-tile img { opacity: 1 !important; }
  .stars label { transition: none !important; }
}

/* =========================================================
   ANIMAZIONI EXTRA — testo & oggetti
   ========================================================= */
/* Underline animata sotto i titoli di sezione (parte al reveal) */
.section-title { position: relative; padding-bottom: 16px; }
.section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 60px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform 0.7s var(--ease-out) 0.15s;
}
.section-head.is-visible .section-title::after { transform: translateX(-50%) scaleX(1); }

/* Riflesso "shine" che attraversa il testo dorato dell'hero */
.hero-title .word.word-accent {
  background: linear-gradient(105deg, var(--gold) 42%, #fff4d6 50%, var(--gold) 58%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: wordIn 0.9s var(--ease-out) 0.42s both, heroShine 6.5s ease-in-out 2.2s infinite;
}
@keyframes heroShine { 0% { background-position: 160% 0; } 55%, 100% { background-position: -60% 0; } }

/* Shine sui bottoni oro al passaggio del mouse */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--ease-out); pointer-events: none;
}
.btn-gold:hover::after { left: 150%; }

/* Icone: piccolo "pop" d'ingresso (l'hover resta attivo) */
.hl-icon, .travel-icon { animation: iconPop 0.6s var(--ease-out) 0.15s backwards; }
@keyframes iconPop { 0% { transform: scale(0.35) rotate(-14deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .section-title::after { transition: none; transform: translateX(-50%) scaleX(1); }
  .hero-title .word.word-accent { animation: none; background: none; color: var(--gold); -webkit-text-fill-color: var(--gold); }
  .btn-gold::after { display: none; }
  .hl-icon, .travel-icon { animation: none; }
}
