/* ═══════════════════════════════════════════════════════════
   OrizzontiFestival — Shared Design System
   Palette: #080808 bg | #c0392b red | #b03a2e dark-red | #f0ede8 text
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --bg2:      #0f0f0f;
  --bg3:      #161616;
  --surface:  #1c1c1c;
  --gold:     #c0392b;
  --gold2:    #e05545;
  --gold-dim: rgba(192,57,43,.15);
  --red:      #b03a2e;
  --white:    #f0ede8;
  --muted:    #888;
  --border:   rgba(192,57,43,.2);
  --radius:   12px;
  --nav-h:    72px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --max-w:    1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ── Reveal ─────────────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right  { opacity: 0; transform: translateX(40px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ── NAV ────────────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center; padding: 0 32px;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,57,43,.25);
  transition: background .4s, border-color .4s;
}
#mainNav.scrolled {
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(192,57,43,.35);
}
.nav-logo {
  text-decoration: none; flex: 1;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 65px; width: auto; display: block;
  object-fit: contain;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a {
  color: rgba(240,237,232,.7); text-decoration: none; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  margin-left: 28px; padding: 9px 22px; background: var(--gold); color: var(--bg);
  border-radius: 40px; font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold2); transform: scale(1.04); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(8,8,8,.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── Eccezioni oro: link attivi navbar ── */
.nav-links a.active,
.nav-links a:hover { color: #c9a84c; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: calc(var(--nav-h) + 16px) 0 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .75rem; letter-spacing: .08em; color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner .sep { opacity: .4; }
.breadcrumb-inner .current { color: var(--gold); }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg2);
  background-size: cover;
  background-position: center;
  padding: 60px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.02em;
  max-width: 720px;
  text-shadow: 2px 2px 2px black;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  margin-top: 20px; max-width: 620px;
  font-size: 1rem; color: var(--white); line-height: 1.8;
}
.page-hero-meta {
  margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap;
}
.page-hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--muted);
}
.page-hero-meta-item strong { color: var(--white); }

/* ── Section Base ───────────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  margin-top: 16px; max-width: 560px;
  color: var(--white); font-size: .95rem; line-height: 1.8;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 20px 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 40px;
  font-size: .83rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #c9a84c; color: var(--bg); box-shadow: 0 8px 28px rgba(201,168,76,.22); }
.btn-primary:hover { background: #e8c96e; box-shadow: 0 12px 36px rgba(201,168,76,.38); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(240,237,232,.22); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 20px; font-size: .75rem; }
.btn-call { background: #2e7d32; color: #fff; box-shadow: 0 8px 24px rgba(46,125,50,.25); }
.btn-call:hover { background: #388e3c; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.45); border-color: var(--gold); }
.card-accent {
  position: relative; overflow: hidden;
}
.card-accent::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.card-accent:hover::after { transform: scaleX(1); }

/* ── Event Cards ────────────────────────────────────────── */
.event-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
.event-date { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.event-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.event-artist { font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.event-desc { font-size: .86rem; color: var(--white); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.event-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; }
.event-venue { font-size: .73rem; color: var(--muted); }
.event-tag { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 40px; background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border); }

@media (max-width: 900px) { .event-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .event-grid { grid-template-columns: 1fr; } }

/* ── Event Card con immagine (programma) ─────────────────── */
.card-with-image {
  display: flex;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  background: var(--card-pastel, var(--bg3));
  border-color: transparent;
}
.card-with-image .card-body {
  flex: 0 0 60%;
  padding: 26px 24px 22px;
}
.card-with-image .card-image {
  flex: 0 0 40%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.card-with-image .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.card-with-image:hover .card-image img { transform: scale(1.07); }
/* testi scuri sul pastello chiaro */
.card-with-image .event-date   { color: #7a3e2a; }
.card-with-image .event-title  { color: #1a1208; }
.card-with-image .event-artist { color: #4a4035; }
.card-with-image .event-desc   { color: #2e2820; -webkit-line-clamp: 4; }
.card-with-image .event-venue  { color: #5a5248; }
.card-with-image .event-tag    { background: rgba(0,0,0,.08); color: #2e2820; border-color: rgba(0,0,0,.14); }
.card-with-image .event-footer { border-top-color: rgba(0,0,0,.10); }
.card-with-image:hover         { border-color: rgba(0,0,0,.18); }
@media (max-width: 700px) {
  .card-with-image             { flex-direction: column; }
  .card-with-image .card-body  { flex: none; }
  .card-with-image .card-image { flex: none; min-height: 180px; }
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; color: var(--white);
  font-size: .95rem; font-weight: 500; transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--gold); flex-shrink: 0;
  transition: transform .3s var(--ease), background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--bg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
  padding: 0 24px;
  color: var(--white); font-size: .9rem; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ── Info Grid ──────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.info-block { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.info-block-icon { font-size: 1.8rem; margin-bottom: 14px; }
.info-block-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.info-block p, .info-block address { font-size: .88rem; color: var(--white); font-style: normal; line-height: 1.8; }
.info-block a { color: var(--gold); text-decoration: none; }
.info-block a:hover { text-decoration: underline; }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

/* ── Ticket Cards ───────────────────────────────────────── */
.tickets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ticket-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 32px 24px; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.ticket-card.featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(192,57,43,.08) 0%, var(--bg3) 60%); }
.ticket-card.featured::before { content: 'Consigliato'; position: absolute; top: 20px; right: -28px; background: var(--gold); color: var(--bg); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 40px; transform: rotate(45deg); }
.ticket-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.ticket-type { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.ticket-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.ticket-price sup { font-size: 1.1rem; vertical-align: super; }
.ticket-price sub { font-size: .9rem; color: var(--muted); vertical-align: baseline; }
.ticket-desc { color: var(--white); font-size: .86rem; margin: 14px 0 20px; line-height: 1.6; }
.ticket-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.ticket-features li { font-size: .83rem; color: var(--white); display: flex; align-items: center; gap: 9px; }
.ticket-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.ticket-btn { display: block; width: 100%; text-align: center; padding: 12px; border-radius: 40px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: all .2s; }
.ticket-btn-gold { background: var(--gold); color: var(--bg); }
.ticket-btn-gold:hover { background: var(--gold2); }
.ticket-btn-outline { border: 1px solid var(--border); color: var(--muted); }
.ticket-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) { .tickets-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ── Artist Pills ───────────────────────────────────────── */
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 14px; }
.artist-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all .25s var(--ease); }
.artist-pill:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-4px); }
.artist-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), rgba(176,58,46,.15)); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); overflow: hidden; }
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.artist-name { font-size: .83rem; font-weight: 500; text-align: center; line-height: 1.3; }
.artist-role { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; }

/* ── Quote Block ────────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--gold); padding: 18px 22px;
  background: var(--gold-dim); border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block q { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--white); quotes: "\201C" "\201D"; }
.quote-block cite { display: block; margin-top: 10px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* ── CTA Band ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  padding: 72px 0; text-align: center;
  position: relative;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p { color: var(--white); max-width: 520px; margin: 0 auto 36px; font-size: .95rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Numbers Strip ──────────────────────────────────────── */
.numbers-strip { padding: 56px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-item { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.number-item:last-child { border-right: none; }
.number-item .big { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: var(--gold); line-height: 1; }
.number-item .desc { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-right: 1px solid var(--border); }
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 12px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; padding: 0 44px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.marquee-item span { color: var(--gold); margin: 0 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Review Cards ───────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .88rem; color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-author { font-size: .75rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.review-author strong { color: var(--gold); }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Table ──────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; font-size: .88rem; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.04); }
.data-table tr:hover td { background: var(--gold-dim); }

/* ── Contact Form ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: .9rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ── Map Box ────────────────────────────────────────────── */
.map-box {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.map-box iframe { display: block; width: 100%; height: 360px; border: none; }
.map-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,8,.9), transparent);
  padding: 20px;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .86rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: rgba(240,237,232,.55);
  transition: transform .25s, background .25s, border-color .25s, color .25s, box-shadow .25s;
}
.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
  color: #fff;
}
/* Brand colours on hover */
.social-link.fb:hover  { background: #1877F2; border-color: #1877F2; }
.social-link.ig:hover  { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); border-color: transparent; }
.social-link.yt:hover  { background: #FF0000; border-color: #FF0000; }
.social-link.tw:hover  { background: #000; border-color: #555; }
.social-link.tk:hover  { background: #010101; border-color: #69C9D0; color: #69C9D0; }
.footer-nap { font-size: .82rem; color: var(--muted); line-height: 1.8; font-style: normal; }
.footer-nap strong { color: var(--white); display: block; margin-bottom: 4px; }
.footer-nap a { color: var(--gold); text-decoration: none; }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.sponsor-badge { display: flex; align-items: center; gap: 10px; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 8px 18px; font-size: .74rem; color: var(--muted); }
.sponsor-name { color: var(--gold); font-weight: 600; }
/* Footer logo */
.footer-logo-img { height: 52px; width: auto; display: block; margin-bottom: 16px; object-fit: contain; }
/* Sezione sponsor nel footer */
.footer-sponsors {
  padding: 28px 0 0;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.sponsors-label {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.sponsor-img {
  max-height: 56px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);   /* logo bianco su sfondo scuro */
  opacity: .75; transition: opacity .25s;
}
.sponsor-img:hover { opacity: 1; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ── Cursor Glow ────────────────────────────────────────── */
.cursor-glow { position: fixed; pointer-events: none; z-index: 9999; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(192,57,43,.04) 0%, transparent 70%); transform: translate(-50%,-50%); transition: left .08s, top .08s; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes lineSlide { 0%,100% { transform: scaleY(.3) translateY(-100%); opacity: 0; } 40%,60% { transform: scaleY(1) translateY(0); opacity: .16; } }
@keyframes scrollLine { 0%,100% { transform: scaleY(0) translateY(-100%); opacity: 0; } 50% { transform: scaleY(1) translateY(0); opacity: 1; } }
