/* Jade & the Dive Bombs — Bold & Dark con accento "fuoco" (project.md §4) */

:root {
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --bg-card: #161616;
  --text: #e8e6e1;
  --text-dim: #9a968f;
  --accent: #ff6b1a;
  --accent-strong: #ff6b1a;
  --gradient: linear-gradient(90deg, #e52b0f, #ff6b1a 45%, #ffc32e);
  --nav-bg: rgba(10, 10, 10, 0.92);
  --nav-border: rgba(255, 255, 255, 0.08);
  --font-display: "Oswald", "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  --font-body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

[data-theme="light"] {
  --bg: #f4f2ee;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text: #171512;
  --text-dim: #6d675f;
  --accent: #c24600;
  --accent-strong: #ff6b1a;
  --nav-bg: rgba(244, 242, 238, 0.92);
  --nav-border: rgba(0, 0, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* --- NAV sticky --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 1.25rem;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.3rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--accent-strong); border-bottom-color: var(--accent-strong); }

.theme-toggle {
  background: none;
  border: 1px solid var(--nav-border);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}
.theme-toggle:hover { border-color: var(--accent-strong); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--nav-border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

/* Logo unico (logo2, sticker con bordo) in entrambi i temi — §8.7 */
.logo-light { display: none; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }

/* --- HERO full-bleed con slideshow --- */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 40%, rgba(0,0,0,.7));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.hero-logo {
  width: min(70vw, 560px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
}

.tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.15rem, 3.4vw, 1.9rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

/* --- Bottone fuoco --- */

.btn {
  display: inline-block;
  background: var(--gradient);
  color: #141414;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255, 107, 26, 0.55); }

/* --- Sezioni --- */

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.25rem 2.5rem;
  scroll-margin-top: 70px;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 64px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.loading, .empty-state { color: var(--text-dim); font-style: italic; }

/* Blocco booking (ex sezione DATE: la lista date è stata eliminata, il blocco resta al suo posto) */
.booking-block {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--nav-border);
  border-top: 4px solid var(--accent-strong);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.booking-block h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.booking-block p { color: var(--text-dim); max-width: 46ch; }

/* --- NEWS --- */

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  height: auto;
  display: block;
}

.news-date {
  color: var(--text-dim);
  font-size: 0.8rem;
  display: block;
  padding: 1rem 1.25rem 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1.25rem 0;
}

.news-card p { padding: 0.6rem 1.25rem 1.25rem; color: var(--text); }

/* --- COUNTDOWN PROSSIMO LIVE --- */
.countdown-section { text-align: center; }
.countdown-kicker {
  color: var(--accent-strong);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0;
}
.countdown-event {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em; /* identica a .tagline */
  font-size: clamp(1.15rem, 3.4vw, 1.9rem); /* identica a .tagline */
  margin: 0.5rem 0 0.2rem;
}
.countdown-meta { color: var(--text-dim); margin: 0 0 1.8rem; }
.countdown-digits {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.countdown-label {
  color: var(--text-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.5rem;
}
.countdown-sep {
  font-family: var(--font-display);
  color: var(--text-dim);
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  line-height: 1;
  align-self: flex-start;
}
.countdown-today {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 7vw, 4rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

/* Countdown in hero: al posto del bottone CTA, largo quanto il logo,
   leggibile sopra la foto (shade nero trasparente + testi chiari,
   numeri in gradiente) */
.hero-countdown {
  width: min(70vw, 560px);
  max-width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  padding: 1.2rem 1.5rem 1.4rem;
}
.hero-countdown .countdown-meta { margin-bottom: 1.2rem; }
.hero-countdown .countdown-kicker {
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero-countdown .countdown-event {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero-countdown .countdown-meta {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero-countdown .countdown-label,
.hero-countdown .countdown-sep {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* --- LA BAND --- */

.band-bio { max-width: 75ch; margin-bottom: 2.25rem; }

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--nav-border);
  overflow: hidden;
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.member-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  padding: 0.9rem 1rem 0;
}

/* Soprannome: sotto il nome, carattere magro (body), senza parentesi */
.member-stage {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.1rem 1rem 0;
}

.member-role {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem 0;
}

.member-emoji { font-size: 1rem; margin-right: 0.4rem; }

.member-bio {
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 0.7rem 1rem 1.1rem;
}

/* --- SCALETTA --- */

.setlist-note {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.setlist-group {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 1.05rem;
  margin: 1.6rem 0 0.5rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-strong);
}

.setlist-group:first-child { margin-top: 0; }

.setlist-entry {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--nav-border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.9rem;
}

.setlist-title { font-weight: 600; }

.setlist-artist { color: var(--text-dim); font-size: 0.85rem; }

.setlist-note-entry {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
  margin-left: auto;
}

/* --- VIDEO --- */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card { background: var(--bg-card); }

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  padding: 0;
}

.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid var(--accent-strong);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 1;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
}

/* --- LISTEN --- */

#audio-player {
  width: 100%;
  margin-bottom: 1.5rem;
  accent-color: var(--accent-strong);
}

.tracks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg-card);
  padding: 0.7rem 1rem;
  border-left: 3px solid transparent;
}

.track-item.is-playing { border-left-color: var(--accent-strong); }

.track-play-btn {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
}

.track-item:hover .track-play-btn { background: rgba(255, 107, 26, 0.12); }

.track-title { font-weight: 600; }

.track-subtitle {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-left: auto;
}

/* --- ARCHIVE --- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item { margin: 0; }

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.gallery-item figcaption {
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 0.5rem 0.25rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- CONTATTI --- */

#contatti { text-align: center; display: flex; flex-direction: column; align-items: center; }
#contatti p { color: var(--text-dim); margin-bottom: 1.5rem; }

/* --- LIGHTBOX ARCHIVE (immagini a piena risoluzione) --- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox[hidden] { display: none; }

/* fade-in apertura / fade-out chiusura (classe aggiunta/rimossa in main.js) */
.lightbox.lb-open { opacity: 1; }

.lightbox-figure {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 3.5rem;
}

.lightbox-figure img {
  max-width: min(95vw, 1600px);
  max-height: 86svh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: opacity 0.22s ease;
}

/* cross-fade ‹/›: l'immagine va a opacity 0, si cambia src, poi torna a 1 */
.lightbox-figure img.lb-fade { opacity: 0; }

/* click sull'immagine → dimensione reale 100% (toggle, con scroll) */
.lightbox-figure img.lightbox-zoomed {
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

#lightbox-cap {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--nav-border);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }

/* --- FOOTER --- */

#page-footer {
  background: #050505;
  border-top: 1px solid var(--nav-border);
  text-align: center;
  padding: 2.5rem 1.25rem 2rem;
  margin-top: 3rem;
}

[data-theme="light"] #page-footer { background: #171512; }

.socials-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.socials-list a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.socials-list a:hover { color: var(--accent-strong); }

.footer-email {
  display: inline-block;
  color: var(--accent-strong);
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 600;
}
.footer-email:hover { text-decoration: underline; }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 1.25rem;
}

.footer-copy-privacy {
  color: inherit;
  text-decoration: none;
}
.footer-copy-privacy:hover { color: var(--accent); text-decoration: underline; }

.footer-credit {
  color: var(--text-dim);
  font-size: 0.65rem;
  margin-top: 0.75rem;
  opacity: 0.75;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}
.footer-credit a:hover { color: var(--accent); text-decoration: underline; }

/* --- Responsive --- */

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 0 1rem;
  }

  .nav.nav-open .nav-links { display: flex; }

  .nav-links a { font-size: 1rem; }

  .theme-toggle { width: 42px; height: 42px; font-size: 1.2rem; }

  .hero { min-height: 82svh; }

  .hero-logo { width: min(86vw, 460px); }
}

@media (max-width: 480px) {
  .setlist-note-entry { margin-left: 0; width: 100%; }
  .gallery-item img { height: 180px; }
}

/* --- DICONO DI NOI: citazioni dal pubblico --- */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr; /* uno sopra l'altro, larghezza intera */
  gap: 1rem;
}

.quote-card {
  background: var(--bg-card);
  border-top: 3px solid var(--accent);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
}

.quote-card.flag-minus { border-top-color: #c0392b; }

.quote-text {
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}

.quote-author {
  margin-top: 0.5rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.quote-flag { margin-left: 0.35rem; }

/* timestamp (popolato dal webhook: dd/mm/aaaa HH:MM), dopo la firma */
.quote-time { margin-left: 0.35rem; }

/* link "Vedi tutti i commenti": dopo l'ultimo commento visibile quando
   max_visible è raggiunto */
.quotes-all { text-align: center; margin: 1.25rem 0 0; }

.quotes-all-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quotes-all-link:hover { color: var(--text); }

.quotes-empty {
  grid-column: 1 / -1; /* messaggio vuoto: tutta la larghezza, non una sola colonna */
  color: var(--text-dim);
  font-style: italic;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  margin: 0;
}

.quotes-actions { text-align: center; margin-top: 1.75rem; }

.quotes-counter {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.quote-counter-sep { margin: 0 0.6rem; opacity: 0.5; }

/* --- MODAL "DICCI LA TUA" --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay[hidden] { display: none; }

.modal {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--nav-border);
  border-top: 4px solid var(--accent);
  max-width: 520px;
  width: 100%;
  padding: 1.5rem 1.5rem 1.25rem;
  max-height: 90svh;
  overflow-y: auto;
}

/* gadget di chiusura stile finestra, in alto a destra */
.modal-x {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 1px solid var(--nav-border);
  border-radius: 4px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}
.modal-x:hover { color: var(--text); border-color: var(--text-dim); }

.modal-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.modal label {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.9rem 0 0.3rem;
}

.modal input,
.modal textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--nav-border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
}

.modal textarea { min-height: 110px; resize: vertical; }

.modal input:focus,
.modal textarea:focus { outline: 2px solid var(--accent); }

.q-count {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.q-count.warn { color: #ffc32e; }
.q-count.limit { color: #e05252; }

.quotes-msg { min-height: 1.4em; margin: 0.8rem 0 0; font-size: 0.95rem; }
.quotes-msg.ok { color: #4caf50; }
.quotes-msg.ko { color: #e05252; }

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.modal-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* informativa privacy nella modale (link al momento della raccolta) */
.quotes-privacy {
  margin-top: 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-dim);
  text-align: center;
}
.quotes-privacy a { color: var(--accent); }

/* thumb: stesso trattamento font dei soprannomi (.member-stage) — più leggibile */
.thumb-btn {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.14em;
}

.thumb-btn[value="-"] { background: linear-gradient(90deg, #a02a2a, #c0392b); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
  .btn { transition: none; }
}
