/* /css/base/base.css */
:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #cba135;
  --light-accent: #e6c46a;
  --section-padding: 4rem 1rem;
  --max-width: 900px;

  --font-content: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;

  /* Colori testo uniformati */
  --text-primary: #fffbe9;
  --text-secondary: rgba(244, 238, 212, 0.85);
  --text-meta: rgba(212, 175, 55, 0.8);

  /* Glassmorphism cards */
  --card-bg-glass: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(35, 35, 35, 0.92) 100%);
  --card-border: 1px solid rgba(212, 175, 55, 0.2);
  --card-border-hover: 1px solid rgba(212, 175, 55, 0.45);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --card-shadow-hover: 0 8px 32px rgba(212, 175, 55, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);

  /* Animation timing */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====== RESET BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding-top: 78px;
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-content);
  line-height: 1.6;
  min-height: 100vh;
}

/* Link generali */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--light-accent);
  text-decoration: underline;
}

/* Titoli e testo contenuto */
h1, h2, h3, h4 {
  font-family: var(--font-content);
  font-weight: 600;
  margin: 0 0 1rem 0;
}
h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  text-align: center;
}

/* Base container e sezioni */
section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: auto;
}

/* ====== SECTION TITLE (centrale per tutte le sezioni) ======
   Usa lo stesso stile in Home: Projects, News, Video, Concerts, ecc.
   Markup atteso: <div class="section-title">Titolo</div>
*/
.section-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-color);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 700;
  margin-top: 2.5vw;
  margin-bottom: 3vw;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 2px 16px #000, 0 0px 1px rgba(247, 204, 60, 0.5);
}

/* ====== PAGE HERO TITLE (gradient uniformato per tutte le pagine) ====== */
/* Include all page-specific title classes for cascade override */
.page-title-gradient,
.page-title,
.news-hero__title,
.gallery-title,
.gallery-hero h1,
.gallery-header h1,
.rep-hero-title-premium,
.writings-title,
.press-kit-hero__title,
.linktree-title,
.hero-bio .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  text-align: center;
  text-transform: none;
}

/* ====== PAGE CLAIM/SUBTITLE (uniformato per tutte le pagine) ====== */
.page-claim,
.news-hero__claim,
.gallery-description,
.rep-hero-subtitle-premium,
.writings-subtitle,
.press-kit-hero__subtitle,
.linktree-role,
.hero-bio .hero-claim {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  text-align: center;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  background: none;
}

/* ====== PAGE HEADER CONTAINER ====== */
.page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .page-title-gradient,
  .page-title,
  .news-hero__title,
  .gallery-title,
  .gallery-hero h1,
  .gallery-header h1,
  .rep-hero-title-premium,
  .writings-title,
  .press-kit-hero__title,
  .linktree-title,
  .hero-bio .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-claim,
  .news-hero__claim,
  .gallery-description,
  .rep-hero-subtitle-premium,
  .writings-subtitle,
  .press-kit-hero__subtitle,
  .linktree-role,
  .hero-bio .hero-claim {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .page-header {
    padding: 1rem 1.5rem;
  }
}

/* ====== CARD HOVER EFFECT UNIFORMATO ====== */
.card-hover-lift {
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.card-hover-lift:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--card-shadow-hover);
}

/* Variant con scale aggiuntivo */
.card-hover-lift-scale {
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.card-hover-lift-scale:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--card-shadow-hover);
}

/* ====== GLASSMORPHISM CARD BASE ====== */
.card-glass {
  background: var(--card-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--card-border);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}

/* ====== ACCESSIBILITY ENHANCEMENTS 2026 ====== */

/* Focus Visible - keyboard navigation indicator */
:focus-visible {
  outline: 2px solid var(--accent-color, #d4af37);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove default focus for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Enhanced focus for buttons and links */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-color, #d4af37);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Skip to content link (accessibility) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color, #d4af37);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ARIA live region styling */
[aria-live="polite"],
[aria-live="assertive"] {
  /* Ensure visibility for screen readers */
}

.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ====== HIGH CONTRAST MODE SUPPORT ====== */
@media (prefers-contrast: high) {
  :root {
    --card-border: 2px solid rgba(212, 175, 55, 0.6);
  }

  a, button {
    text-decoration: underline;
  }

  :focus-visible {
    outline-width: 3px;
  }
}

/* /css/components/back-to-top.css */
/**
 * Back to Top Button - 2026 UX Best Practice
 * Always visible, elegant golden style
 */

.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37 0%, #e6c96e 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2147483647;
  font-size: 28px;
  font-weight: bold;
  color: #0a0a0a;
  line-height: 1;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #e6c96e 0%, #f0d478 100%);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* /css/components/buttons/buttons-base.css */
/* buttons-base.css */

/* ======= PULSANTI STANDARD SITO ======= */
.btn,
.concert-button,
.concert-toggle,
.btn-link,
.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.75em 1.25em;
  min-height: 44px; /* WCAG 2.5.5 touch target */
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  outline: none;
  width: auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--font-ui);
}

.btn:hover,
.concert-button:hover,
.concert-toggle:hover,
.btn-link:hover,
.btn-return:hover,
.btn.active,
.concert-button.active,
.concert-toggle.active,
.btn-link.active {
  background: rgba(203, 161, 53, 0.6);
  color: #181818;
  box-shadow: none;
}

/* Focus */
.btn:focus,
.concert-button:focus,
.concert-toggle:focus,
.btn-link:focus,
.btn-return:focus {
  outline: 2px solid var(--light-accent);
  outline-offset: 2px;
}

/* Icone nei pulsanti */
.btn img.icon,
.concert-button img.icon,
.concert-toggle img.icon,
.btn-link img.icon,
.btn-return img.icon {
  width: 1.6em;
  height: 1.6em;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: none;
  margin: 0;
}

/* Hover icone */
.btn:hover img.icon,
.concert-button:hover img.icon,
.concert-toggle:hover img.icon,
.btn-link:hover img.icon,
.btn-return:hover img.icon {
  filter: none !important;
}

/* ======= VARIANTI PULSANTI ======= */

/* Primary button - filled */
.btn-primary {
  background: var(--accent-color);
  color: #181818;
  border-color: var(--accent-color);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--light-accent);
  border-color: var(--light-accent);
  color: #181818;
}

/* Secondary button - outlined (same as base, for clarity) */
.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background: rgba(203, 161, 53, 0.6);
  color: #181818;
}

/* Link button - no border, underline on hover */
.btn-link {
  border: none;
  padding: 0.5em 0.75em;
  min-height: 44px; /* WCAG touch target */
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s, color 0.2s;
}

.btn-link:hover {
  background: transparent;
  text-decoration-color: var(--accent-color);
  color: var(--accent-color);
}
/* /css/components/buttons/buttons-ids.css */
/* buttons-ids.css */

/* ===== ID PULSANTI SPECIFICI ===== */
#btn_it,
#btn_en,
#btn_expand,
#btn_return {
  cursor: pointer;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  border: 1.5px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-weight: 600;
  font-family: var(--font-ui);
  transition: all 0.2s;
  outline: none;
}

#btn_it.active,
#btn_en.active {
  background: var(--accent-color);
  color: #181818;
  font-weight: 700;
}

#btn_it:focus,
#btn_en:focus,
#btn_expand:focus,
#btn_return:focus {
  outline: 2px solid var(--light-accent);
  outline-offset: 2px;
}
/* /css/components/buttons/buttons-specific.css */
/* buttons-specific.css */

/* ======= PULSANTI SPECIALI ======= */

/* Pulsante "Leggi di più" */
.read-more-btn {
  background-color: #d4af37;
  color: #121212;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.8rem 2rem;
  margin-top: 1.6rem;
  cursor: pointer;
  box-shadow: 0 0 18px #d4af37bb;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover {
  background-color: #f0e68c;
  box-shadow: 0 0 28px #f9f4b5;
}

/* Pulsante "Torna su" - RIMOSSO: ora gestito da back-to-top.css */

/* ======= PULSANTI LINKTREE ======= */

.linktree-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 2.2rem !important; /* spazio icona-testo */
  padding: 1rem 1.4rem 1rem 3rem !important; /* più padding a sinistra */
  font-weight: 600 !important;
  border: 1.5px solid var(--accent-color) !important;
  border-radius: 12px !important;
  color: var(--accent-color) !important;
  background: transparent !important;
  text-decoration: none !important;
  font-family: var(--font-ui) !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  user-select: none !important;
  box-sizing: border-box !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

.linktree-btn:hover {
  background-color: var(--accent-color) !important;
  color: #181818 !important;
  box-shadow: none !important;
}

/* Icone nei pulsanti Linktree */
.linktree-btn img.icon {
  position: absolute !important;
  left: 1rem !important;
  width: 1.6rem !important;
  height: 1.6rem !important;
  object-fit: contain !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  transition: opacity 0.3s ease !important;
  user-select: none !important;
}

/* Opacità icone Linktree */
.linktree-btn img.icon.gold {
  opacity: 1 !important;
  z-index: 2 !important;
}

.linktree-btn img.icon.black {
  opacity: 0 !important;
  z-index: 1 !important;
}

.linktree-btn:hover img.icon.gold {
  opacity: 0 !important;
  z-index: 1 !important;
}

.linktree-btn:hover img.icon.black {
  opacity: 1 !important;
  z-index: 2 !important;
}

/* Pulsanti Linktree "Extra" (colore più chiaro) */
.section-extra-links .linktree-btn {
  color: #cbb970cc !important;
  border-color: #cbb970cc !important;
  background: transparent !important;
}

.section-extra-links .linktree-btn:hover {
  background-color: var(--accent-color) !important;
  color: #181818 !important;
  box-shadow: none !important;
}
/* /css/components/close-button-standard.css */
/* ========================================
   STANDARDIZED CLOSE BUTTON - SITE WIDE
   White circle with black X
   ======================================== */

.close-btn-standard,
.modal-close-standard,
.lightbox__close--modern {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: #fff !important;
  border: none !important;
  color: #000 !important;
  font-size: 2.5rem !important;
  cursor: pointer !important;
  padding: 0 !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  z-index: 10001 !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

.close-btn-standard:hover,
.modal-close-standard:hover,
.lightbox__close--modern:hover {
  background: #f0f0f0 !important;
  transform: scale(1.1) rotate(90deg) !important;
}

/* For modals that need the close button in different position */
.close-btn-standard.top-left {
  right: auto !important;
  left: 20px !important;
}

.close-btn-standard.bottom-right {
  top: auto !important;
  bottom: 20px !important;
}

/* /css/components/continue-exploring.css */
/* ===== CONTINUE EXPLORING - Premium Widget Style ===== */

.continue-exploring {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(10, 10, 10, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.continue-exploring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Widget container - glass morphism */
.explore-widget {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated border glow */
.explore-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.explore-widget:hover::before {
  opacity: 1;
}

/* Header section */
.explore-widget__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

/* Decorative line under header */
.explore-widget__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

.explore-widget__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.explore-widget__title i {
  font-size: 1.1em;
  color: #d4af37;
  animation: compass-pulse 3s ease-in-out infinite;
}

@keyframes compass-pulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
  }
  75% {
    transform: rotate(-10deg) scale(1.05);
    opacity: 0.9;
  }
}

.explore-widget__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Cards grid - horizontal on desktop */
.explore-widget__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Individual card */
.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Card hover glow effect */
.explore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.explore-card:hover {
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.explore-card:hover::before {
  opacity: 1;
}

/* Icon container */
.explore-card__icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.explore-card__icon i {
  font-size: 1.8rem;
  color: #d4af37;
  transition: all 0.4s ease;
}

.explore-card:hover .explore-card__icon {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  border-color: #d4af37;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.explore-card:hover .explore-card__icon i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Content */
.explore-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explore-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.explore-card:hover .explore-card__title {
  color: #f0d478;
}

.explore-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
}

/* Arrow indicator */
.explore-card__arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: rgba(212, 175, 55, 0.6);
  font-size: 0.9rem;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}

.explore-card:hover .explore-card__arrow {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0a0a;
  transform: translateY(4px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Section-specific colors */
.explore-card[href*="bio"] .explore-card__icon { border-color: rgba(139, 92, 246, 0.4); }
.explore-card[href*="bio"] .explore-card__icon i { color: #a78bfa; }
.explore-card[href*="bio"]:hover .explore-card__icon { border-color: #a78bfa; box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25); }

.explore-card[href*="concerts"] .explore-card__icon { border-color: rgba(239, 68, 68, 0.4); }
.explore-card[href*="concerts"] .explore-card__icon i { color: #f87171; }
.explore-card[href*="concerts"]:hover .explore-card__icon { border-color: #f87171; box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25); }

.explore-card[href*="gallery"] .explore-card__icon { border-color: rgba(34, 197, 94, 0.4); }
.explore-card[href*="gallery"] .explore-card__icon i { color: #4ade80; }
.explore-card[href*="gallery"]:hover .explore-card__icon { border-color: #4ade80; box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25); }

.explore-card[href*="repertoire"] .explore-card__icon { border-color: rgba(59, 130, 246, 0.4); }
.explore-card[href*="repertoire"] .explore-card__icon i { color: #60a5fa; }
.explore-card[href*="repertoire"]:hover .explore-card__icon { border-color: #60a5fa; box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25); }

.explore-card[href*="news"] .explore-card__icon { border-color: rgba(251, 146, 60, 0.4); }
.explore-card[href*="news"] .explore-card__icon i { color: #fb923c; }
.explore-card[href*="news"]:hover .explore-card__icon { border-color: #fb923c; box-shadow: 0 8px 24px rgba(251, 146, 60, 0.25); }

.explore-card[href*="press"] .explore-card__icon { border-color: rgba(236, 72, 153, 0.4); }
.explore-card[href*="press"] .explore-card__icon i { color: #f472b6; }
.explore-card[href*="press"]:hover .explore-card__icon { border-color: #f472b6; box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .explore-widget__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .explore-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .explore-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .explore-card__icon i {
    font-size: 1.5rem;
  }

  .explore-card__content {
    align-items: flex-start;
  }

  .explore-card__arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .explore-card:hover .explore-card__arrow {
    transform: translateY(-50%) translateX(4px);
  }

  .explore-card:hover {
    transform: translateX(8px);
  }
}

@media (max-width: 600px) {
  .continue-exploring {
    padding: 3.5rem 1rem;
  }

  .explore-widget {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .explore-widget__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .explore-widget__title {
    font-size: 1.4rem;
    gap: 0.75rem;
  }

  .explore-widget__subtitle {
    font-size: 0.9rem;
  }

  .explore-card {
    padding: 1.25rem;
  }

  .explore-card__icon {
    width: 52px;
    height: 52px;
  }

  .explore-card__icon i {
    font-size: 1.3rem;
  }

  .explore-card__title {
    font-size: 1.15rem;
  }

  .explore-card__desc {
    font-size: 0.8rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .explore-widget__title i {
    animation: none;
  }

  .explore-card,
  .explore-card__icon,
  .explore-card__icon i,
  .explore-card__arrow {
    transition: none !important;
  }

  .explore-card:hover,
  .explore-card:hover .explore-card__icon {
    transform: none;
  }
}

/* /css/components/engagement-funnel.css */
/* ====================================
   NEWS ENGAGEMENT FUNNEL - CSS STYLES
   Complete styling for all funnel elements
   ==================================== */

/* ============= HOMEPAGE ENHANCEMENTS ============= */

/* Update card header with badge */
.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.update-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.update-badge--new {
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  color: #fff;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(236, 72, 153, 0.5); }
  50% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.8); }
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.update-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--gold, #d4af37);
  color: var(--gold, #d4af37);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--gold, #d4af37);
  color: #000;
}

/* Explore News Section */
.explore-news-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.news-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.news-teaser-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--gold, #d4af37);
}

.news-teaser-media {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.news-teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.news-teaser-card:hover .news-teaser-media img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.news-badge--hot {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.news-badge--new {
  background: rgba(139, 92, 246, 0.9);
  color: #fff;
}

.news-teaser-content {
  padding: 1.25rem;
}

.news-teaser-tags {
  margin-bottom: 0.75rem;
}

.news-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-teaser-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-teaser-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-teaser-title a:hover {
  color: var(--gold, #d4af37);
}

.news-teaser-excerpt {
  color: var(--text-secondary, #999);
  line-height: 1.6;
  margin: 0.75rem 0;
}

.news-teaser-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
  margin: 1rem 0;
}

.news-teaser-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold, #d4af37);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.news-teaser-cta:hover {
  gap: 0.5rem;
}

/* ============= SIDEBAR WIDGETS ============= */

.news-sidebar-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.widget-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0;
}

.widget-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
  margin-top: 0.25rem;
}

.widget-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.widget-link {
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.widget-link:hover {
  gap: 0.5rem;
}

/* Most Read Widget */
.most-read-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.most-read-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(4px);
}

.most-read-rank {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #d4af37);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.875rem;
}

.most-read-rank[data-rank="1"] {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.most-read-rank[data-rank="2"] {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.most-read-rank[data-rank="3"] {
  background: linear-gradient(135deg, #cd7f32, #e8a87c);
}

.most-read-content {
  flex: 1;
  min-width: 0;
}

.most-read-title {
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.most-read-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.most-read-title a:hover {
  color: var(--gold, #d4af37);
}

.most-read-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
}

.most-read-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.most-read-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Cross-Navigation Widget */
.cross-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cross-nav-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cross-nav-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold, #d4af37);
  transform: translateX(4px);
}

.cross-nav-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 8px;
  font-size: 1.25rem;
}

.cross-nav-content {
  flex: 1;
  min-width: 0;
}

.cross-nav-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.25rem 0;
}

.cross-nav-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0.25rem 0;
  line-height: 1.4;
}

.cross-nav-desc,
.cross-nav-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
  margin: 0.25rem 0;
}

.cross-nav-cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.cross-nav-cta:hover {
  text-decoration: underline;
}

/* ============= RELATED ARTICLES ============= */

.related-articles-section {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.related-articles-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-articles-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.5rem 0;
}

.related-articles-subtitle {
  font-size: 1rem;
  color: var(--text-secondary, #999);
  margin: 0;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.related-article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--gold, #d4af37);
}

.related-article-media {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.related-article-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-media img {
  transform: scale(1.05);
}

.related-article-content {
  padding: 1rem;
}

.related-article-tags {
  margin-bottom: 0.5rem;
}

.related-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 20px;
  font-size: 0.75rem;
}

.related-article-title {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.related-article-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-article-title a:hover {
  color: var(--gold, #d4af37);
}

.related-article-excerpt {
  color: var(--text-secondary, #999);
  line-height: 1.6;
  margin: 0.75rem 0;
  font-size: 0.9375rem;
}

.related-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
  margin: 1rem 0;
}

.related-article-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold, #d4af37);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.related-article-cta:hover {
  gap: 0.5rem;
}

.related-articles-footer {
  text-align: center;
  margin-top: 2rem;
}

/* ============= EXIT INTENT MODAL ============= */

.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.exit-intent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.exit-intent-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--gold, #d4af37);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.exit-intent-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold, #d4af37);
  transform: rotate(90deg);
}

.exit-intent-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.exit-intent-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.exit-intent-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 1rem 0;
}

.exit-intent-subtitle {
  font-size: 1rem;
  color: var(--text-secondary, #ccc);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.exit-intent-form {
  max-width: 100%;
}

.exit-intent-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.exit-intent-input:focus {
  outline: none;
  border-color: var(--gold, #d4af37);
  background: rgba(255, 255, 255, 0.08);
}

.exit-intent-preferences {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
  text-align: left;
}

.exit-intent-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.exit-intent-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold, #d4af37);
}

.exit-intent-checkbox span {
  font-size: 0.9375rem;
  color: var(--text-primary, #fff);
}

.exit-intent-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.exit-intent-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  display: none;
}

.exit-intent-feedback--success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.exit-intent-feedback--error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.exit-intent-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
}

.trust-item i {
  color: var(--gold, #d4af37);
}

/* ============= INLINE NEWSLETTER ============= */

.newsletter-inline {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px solid var(--gold, #d4af37);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.newsletter-inline::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.newsletter-inline-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.newsletter-inline-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #d4af37);
  color: #000;
  border-radius: 12px;
  font-size: 1.75rem;
}

.newsletter-inline-content {
  flex: 1;
}

.newsletter-inline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.5rem 0;
}

.newsletter-inline-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary, #ccc);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.newsletter-inline-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-inline-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-inline-input:focus {
  outline: none;
  border-color: var(--gold, #d4af37);
  background: rgba(0, 0, 0, 0.4);
}

.newsletter-inline-submit {
  flex-shrink: 0;
}

.newsletter-inline-preferences {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.inline-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.inline-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold, #d4af37);
}

.newsletter-inline-trust {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
}

.newsletter-inline-feedback {
  margin-top: 0.75rem;
  padding: 0.625rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: none;
}

.newsletter-inline-feedback--success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.newsletter-inline-feedback--error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* ============= BACK TO TOP BUTTON ============= */

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gold, #d4af37);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ============= STICKY NEWSLETTER BAR (MOBILE) ============= */

.sticky-newsletter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-top: 2px solid var(--gold, #d4af37);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9997;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.sticky-newsletter-bar.is-visible {
  transform: translateY(0);
}

.sticky-newsletter-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
}

.sticky-newsletter-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #fff;
}

.sticky-newsletter-content i {
  color: var(--gold, #d4af37);
  font-size: 1.125rem;
}

.sticky-newsletter-cta {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============= READING TIME REMAINING ============= */

.reading-time-remaining {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  padding: 0.625rem 1rem;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--gold, #d4af37);
  border-radius: 20px;
  color: var(--gold, #d4af37);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.reading-time-remaining.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ============= BOOKMARK BUTTON ============= */

.bookmark-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.bookmark-btn:hover {
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  transform: scale(1.1);
}

.bookmark-btn.is-saved {
  background: var(--gold, #d4af37);
  color: #000;
}

/* ============= TOAST NOTIFICATION ============= */

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--gold, #d4af37);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9375rem;
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.toast-notification.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============= RESPONSIVE ============= */

@media (max-width: 768px) {
  .news-teaser-grid,
  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .newsletter-inline-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-inline-input-group {
    flex-direction: column;
  }

  .newsletter-inline-preferences {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cross-nav-grid {
    gap: 0.75rem;
  }

  .back-to-top-btn {
    bottom: 5rem; /* Move up to avoid sticky bar */
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .reading-time-remaining {
    bottom: 5rem; /* Move up to avoid sticky bar */
    left: 1rem;
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }

  .exit-intent-content {
    border-radius: 12px;
    max-width: 95%;
  }

  .exit-intent-body {
    padding: 2rem 1.5rem;
  }

  .exit-intent-title {
    font-size: 1.5rem;
  }

  .exit-intent-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============= PRESS STATS BAR ============= */

.press-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem;
  margin: 2rem auto 3rem;
  max-width: 600px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.press-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.press-stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.press-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .press-stats-bar {
    gap: 1.5rem;
    padding: 1.25rem 1rem;
  }

  .press-stat__value {
    font-size: 2rem;
  }

  .press-stat__label {
    font-size: 0.7rem;
  }
}

/* ============= DISCOVERY CARDS (Cross-page navigation) ============= */

.bio-discovery,
.discovery-section {
  margin: 4rem 0 2rem;
  padding: 0 1rem;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.discovery-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discovery-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-6px);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.discovery-card__label {
  padding: 0.75rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.discovery-card__media {
  position: relative;
  width: 100%;
  min-height: 120px;
  max-height: 280px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discovery-card__media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.discovery-card:hover .discovery-card__media img {
  transform: scale(1.05);
}

.discovery-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.discovery-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.discovery-card:hover .discovery-card__title {
  color: #f0d478;
}

.discovery-card__excerpt,
.discovery-card__meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.discovery-card__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(212, 175, 55, 0.8);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.discovery-card__count i {
  font-size: 0.75rem;
}

.discovery-card__arrow {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4af37;
  transition: gap 0.3s ease;
}

.discovery-card:hover .discovery-card__arrow {
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .discovery-card__media {
    aspect-ratio: 2/1;
  }

  .discovery-card__title {
    font-size: 1.1rem;
  }
}

/* ============= PRINT STYLES ============= */

@media print {
  .exit-intent-modal,
  .sticky-newsletter-bar,
  .back-to-top-btn,
  .reading-time-remaining,
  .bookmark-btn,
  .toast-notification,
  .reading-progress-bar,
  .press-stats-bar,
  .discovery-section,
  .bio-discovery {
    display: none !important;
  }
}

/* /css/components/footer.css */
/* ===== Footer (component) — fixed, single line, CSS-only ===== */
.site-footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 32px; /* Altezza compatta che funziona */
    background: #000;
    color: #fff;
    border-top: 1px solid #cba135;
    font-family: var(--font-ui, "Montserrat", sans-serif);
    z-index: 900;
}

.site-footer .footbar-inner{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 8px; /* solo orizzontale */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: nowrap; /* una sola riga */
    overflow: visible; /* evita clipping */
}

/* LEFT: Copyright (must never shrink/clip) */
.footer-left, .foot-left{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: max-content;
    height: 100%;
    color: #fff;
}

/* Copyright assoluto: visibile e centrato verticalmente */
.footer-copyright{
    position: absolute !important;
    top: 0 !important;
    left: 8px !important; /* allinea al padding del container */
    height: 32px !important; /* uguale all'altezza del footer */
    display: flex !important;
    align-items: center !important;
    color: #fff;
    font-size: .75rem;
    line-height: 1;
    white-space: nowrap;
    text-indent: 0;
    pointer-events: none; /* non intercetta i click sopra i link */
}

/* RIGHT: Legal/utility (takes remaining space) */
.footer-links{
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.footer-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-links a,
.footer-links button,
.footer-list a,
.footer-list button{
    color: inherit;
    text-decoration: none;
    font-size: .75rem;
    line-height: 1;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-list a:hover,
.footer-list button:hover{
    text-decoration: underline;
}

/* a11y focus */
.footer-links a:focus-visible,
.footer-links button:focus-visible{
    outline: 2px solid #cba135;
    outline-offset: 2px;
}

/* Checkbox controller (hidden) */
.foot-toggle{
    position: absolute;
    left: -9999px;
}

/* Three-dot trigger */
.foot-trigger{
    display: none;
}

.foot-dot{
    display: block;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    margin: 0 1px;
}

@media (max-width: 767px){
    .foot-trigger{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        cursor: pointer;
    }

    .footer-links{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        background: #000;
        border-top: 1px solid #cba135;
        padding: 6px 8px;
        box-shadow: 0 -8px 24px rgba(0,0,0,.35);
        z-index: 901; /* sopra al testo assoluto */
    }

    .footer-list{ gap: 6px; }

    #foot_toggle:checked ~ .footer-links{
        display: flex;
        justify-content: flex-end;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* /css/components/hamburger.css */
/* hamburger.css - Stili base Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    display: block;
  }
/* /css/components/layout.css */
/* Sticky layout baseline: caricato globalmente via cssGlobal */
html, body { height: 100%; }

/* In alcuni browser mobile usare anche 100dvh può aiutare */
.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  min-height: 1px;
}

/* Evita che il footer si comprima */
footer,
.site-footer { flex-shrink: 0; }

/* === Reservations (CSS-only, no JS) === */
:root {
  --navbar-h: 52px;  /* altezza barra fissa in alto (slim) */
  --footer-h: 32px;  /* altezza una riga in basso  */
}

/* Spazio per navbar fissa (anche su responsive) + safe area iOS */
#main_content {
  padding-top: var(--navbar-h);
  padding-top: max(var(--navbar-h), env(safe-area-inset-top));
  padding-bottom: var(--footer-h);
  padding-bottom: max(var(--footer-h), env(safe-area-inset-bottom));
}

/* Mobile/tablet: navbar leggermente più bassa */
@media (max-width: 1024px){
  :root { --navbar-h: 48px; }
}

/* /css/components/modal.css */
/* ===== MODALE GENERICA ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
  }
  .modal-overlay.show { display: flex; }
  
  .modal-box {
    background: #1a1a1a;
    color: var(--text-color);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-close {
    position: sticky;
    top: 0;
    right: 0;
    align-self: flex-end;
    margin: -0.5rem -0.5rem 0.5rem 0;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
  }
  .modal-close:hover {
    transform: scale(1.2);
  }
  
  .modal-title {
    font-size: 1.5rem;
    color: var(--light-accent);
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .modal-content {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-color);
    overflow-y: auto;
    flex: 1;
    padding-right: 0.5rem;
  }

  /* Custom scrollbar per modal */
  .modal-content::-webkit-scrollbar {
    width: 8px;
  }
  .modal-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
  }
  .modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
  }
  
  .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    margin-top: 2rem;
  }
  .modal-buttons button,
  .modal-buttons .btn {
    background: var(--accent-color);
    color: #0f0f0f;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
  }
  .modal-buttons button:hover,
  .modal-buttons .btn:hover {
    background: var(--light-accent);
    color: #0f0f0f;
  }
  
  /* === Scrollbar modale === */
  .modal-box::-webkit-scrollbar,
  .modal-content::-webkit-scrollbar {
    width: 8px;
    background: #2b2b2b;
  }
  .modal-box::-webkit-scrollbar-thumb,
  .modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
  }
  
  /* === Fullscreen mode (opzionale) === */
  .modal-box.fullscreen {
    width: 97vw;
    max-width: 1000px;
    height: 95vh;
    max-height: none;
  }
  .modal-box.fullscreen .modal-content {
    max-height: calc(95vh - 120px);
    overflow-y: auto;
  }
  
  /* === Responsive === */
  @media (max-width: 768px) {
    .modal-box {
      padding: 1.2rem;
      max-width: 98vw;
    }
    .modal-title { font-size: 1.2rem; }
    .modal-content { font-size: 0.98rem; }
    .modal-close { font-size: 1.5rem; }
  }
/* ===== Concert Lightbox (scoped) ===== */
#concert_lightbox .modal-box {
  max-width: 980px;            /* più spazio per poster+testo */
}

#concert_lightbox .concert-lightbox-body {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.5rem;
}

#concert_lightbox .concert-lightbox-body::-webkit-scrollbar {
  width: 8px;
}
#concert_lightbox .concert-lightbox-body::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
#concert_lightbox .concert-lightbox-body::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

/* Layout griglia: poster PICCOLO a sinistra (200px), dettagli a destra */
#concert_lightbox .concert-lightbox-poster-view {
  display: grid;
  grid-template-columns: 200px 1fr; /* poster piccolo | dettagli */
  gap: 1.5rem;
  align-items: start;
}

#concert_lightbox .concert-lightbox-img {
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
}

#concert_lightbox .concert-lightbox-info {
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: 70vh;
}

#concert_lightbox #concert_poster,
#concert_lightbox .concert-lightbox-img img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

#concert_lightbox .concert-title,
#concert_lightbox .lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--light-accent);
  margin: 0 0 .5rem 0;
}

#concert_lightbox .concert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  opacity: .9;
  margin-bottom: 1rem;
}

#concert_lightbox .concert-program { 
  white-space: pre-wrap; 
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: .75rem .9rem;
  margin: .75rem 0 1rem 0;
}

#concert_lightbox .concert-facts {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0 0;
}
#concert_lightbox .concert-facts li { 
  margin: .35rem 0; 
  line-height: 1.5; 
}
#concert_lightbox .concert-facts li strong { 
  color: var(--light-accent); 
}

#concert_lightbox .modal-buttons { 
  justify-content: flex-start; 
}

/* Responsive: poster sopra, testo sotto */
@media (max-width: 900px) {
  #concert_lightbox .concert-lightbox-poster-view {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .modal-box {
    max-height: 95vh;
    padding: 1.5rem;
  }

  #concert_lightbox .concert-lightbox-poster-view {
    gap: 1rem;
  }
}

/* ===== Concert Lightbox - Iframe Mode (LP Preview) ===== */
#concert_lightbox .concert-lightbox-iframe {
  display: none;
  width: 100%;
  height: 80vh;
  min-height: 600px;
}

#concert_lightbox.iframe-mode .modal-box {
  max-width: 95vw;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
}

#concert_lightbox.iframe-mode .concert-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#concert_lightbox.iframe-mode .concert-lightbox-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

#concert_lightbox .concert-lightbox-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== Year Archive Modal (below concert lightbox) ===== */
#year_modal.modal-overlay {
  z-index: 9990; /* sotto alla lightbox dei singoli concerti */
}
#year_modal .modal-box {
  max-width: 1200px;
}
#year_modal .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

/* Layout griglia per concerti nell'archivio anno */
#year_modal .concerts-year-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

#year_modal .concert-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

#year_modal .concert-block {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
}

/* Top section: poster sx + info dx */
#year_modal .concert-top-section {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#year_modal .concert-thumb-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 3/4;
}

#year_modal .concert-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#year_modal .concert-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

#year_modal .concert-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0;
  line-height: 1.3;
}

#year_modal .concert-date,
#year_modal .concert-place {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Bottom section: programma a tutta larghezza */
#year_modal .concert-bottom-section {
  padding: 1rem;
  padding-top: 0.75rem;
}

#year_modal .concert-details {
  display: block !important;
  margin: 0;
}

#year_modal .concert-details[open] {
  display: block !important;
}

#year_modal .concert-details summary {
  display: none !important; /* Nascondi il pulsante "Mostra di più" */
}

#year_modal .concert-extra {
  display: block !important;
  margin: 0;
  padding: 0;
}

#year_modal .concert-program {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.5rem 0;
}

#year_modal .concert-program pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
}

#year_modal .concert-facts {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

#year_modal .concert-facts li {
  margin: 0.25rem 0;
}

#year_modal .concert-facts strong {
  color: #d4af37;
}

#year_modal .concert-actions {
  margin-top: 0.5rem;
}
/* /css/components/navbar.css */
/* navbar.css — Navbar fissa e responsive (modulare, senza inline) */

/* BASE */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 6px 12px;
  min-height: var(--navbar-h, 52px);
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 999;
}

/* Stato fisso (desktop e mobile) */
nav.navbar.navbar--fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* Logo */
.nav-left .logo {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-color);
  text-decoration: none;
}

/* Centro: menu desktop */
.nav-center { flex: 1; display: flex; justify-content: center; }

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu a { color: #fff; font-weight: 300; transition: color 0.2s; font-family: var(--font-ui); }
.menu a:hover,
.menu a.active,
.menu a.nav-active { color: var(--accent-color); font-weight: 600; }

/* Active state indicator - underline */
.menu a.nav-active {
  position: relative;
}

.menu a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Logo active state */
.nav-left .logo.nav-active {
  position: relative;
}

.nav-left .logo.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Destra: toggle lingua + hamburger */
.nav-right { display: flex; align-items: center; gap: .75rem; }

/* Language switch */
.lang-switch button{
  background: none;
  border: none;
  color: var(--accent-color);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .95rem;
  cursor: pointer;
  padding: 0 .25rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-switch button:hover:not([aria-checked="true"]) { color: var(--light-accent); }
.lang-switch button[aria-checked="true"] { color: #fff; font-weight: 600; text-decoration: underline; cursor: default; pointer-events: none; }

/* ===== Responsive: hamburger e pannello mobile ===== */
.nav-toggle{ position:absolute; left:-9999px; }

/* L'hamburger di default è nascosto (desktop) */
.hamburger{ display:none; }

@media (max-width: 1199px){
  /* Navbar più sottile su mobile */
  nav.navbar{ padding: 4px 10px; min-height: var(--navbar-h, 48px); letter-spacing: 0.05em; }
  .nav-right{ gap: .5rem; }
  .nav-left .logo{ font-size: 1rem; }
  .lang-switch button{ font-size: .85rem; padding: 0 .2rem; }

  /* Su mobile/tablet: nascondo il menu inline e mostro l'hamburger */
  .nav-center{ display:none; }
  .hamburger{ display:inline-flex; line-height: 1; }

  /* ===== PANNELLO MOBILE MODERNO (2025 Best Practices) ===== */
  .nav-toggle:checked ~ .nav-center{
    display:block;
    position:fixed;
    top: 56px;
    right: 0;
    width: min(240px, 75vw);
    max-height: calc(100vh - 56px - 16px);
    overflow-y: auto;
    overflow-x: hidden;

    /* Glassmorphism moderno */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.92) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);

    /* Bordi e ombre sofisticate */
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 16px;
    box-shadow:
      -6px 6px 32px rgba(0, 0, 0, 0.6),
      inset 1px 1px 0 rgba(255, 255, 255, 0.05);

    z-index: 998;
    padding: 16px 14px;

    /* Animazione entrata fluida */
    animation: slideInFromRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Menu items container */
  .nav-toggle:checked ~ .nav-center .menu{
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  /* Tutti i link - stile unificato e allineato a destra */
  .nav-toggle:checked ~ .nav-center .menu > li {
    width: 100%;
    text-align: right;
  }

  .nav-toggle:checked ~ .nav-center .menu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: right;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Dropdown toggle button - STESSO allineamento dei link */
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Hover effect con shimmer */
  .nav-toggle:checked ~ .nav-center .menu a:hover,
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: translateX(-4px);
    box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.15);
  }

  /* Active state */
  .nav-toggle:checked ~ .nav-center .menu a.active,
  .nav-toggle:checked ~ .nav-center .menu a.nav-active,
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    font-weight: 500;
  }

  /* Remove desktop underline on mobile - use background instead */
  .nav-toggle:checked ~ .nav-center .menu a.nav-active::after {
    display: none;
  }

  /* ===== DROPDOWN MOBILE (Accordion style) ===== */
  .nav-toggle:checked ~ .nav-center .nav-item-dropdown {
    width: 100%;
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    min-width: auto;

    /* Accordion animation */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-toggle:checked ~ .nav-center .nav-item-dropdown.dropdown-open .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    padding: 8px 0 4px 0;
    margin-top: 4px;
  }

  /* Dropdown items - indentati leggermente e allineati a destra */
  .nav-toggle:checked ~ .nav-center .nav-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px 10px 12px;
    margin: 2px 0;
    text-align: right;
    font-size: 0.9em;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(-2px);
    border-left-color: rgba(212, 175, 55, 0.5);
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-item.active {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-color);
    font-weight: 500;
    border-left-color: var(--accent-color);
  }

  /* Chevron icon animation */
  .nav-toggle:checked ~ .nav-center .nav-dropdown-toggle i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-toggle:checked ~ .nav-center .nav-item-dropdown.dropdown-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }

  /* Scrollbar styling per menu lungo */
  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar {
    width: 6px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
  }
}

/* ===== Dropdown Menu ===== */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--accent-color);
  font-weight: 600;
}

.nav-dropdown-toggle i {
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-dropdown-toggle i,
.nav-item-dropdown.dropdown-open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 300;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

/* Mobile dropdown styles - ACCORDION STYLE */
@media (max-width: 1199px) {
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 !important;
    text-align: left;
    margin: 0 !important;
    position: static;
    color: #fff;
    font-weight: 300;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-item-dropdown.dropdown-open .nav-dropdown-menu {
    opacity: 1;
    max-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    margin: 0.25rem 0;
  }

  .nav-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.85em;
    text-align: right;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    border: none;
  }

  .nav-dropdown-item:hover {
    color: var(--accent-color);
  }
}

/* Accessibilità focus */
.lang-switch button:focus-visible,
.hamburger:focus-visible,
.nav-dropdown-toggle:focus-visible{ outline:2px solid var(--accent-color); outline-offset:2px; }

/* /css/components/page-transition.css */
/**
 * Page Transitions - 2026 UX Enhancement
 *
 * Smooth fade transitions when navigating between pages.
 * Works with View Transitions API where supported, with CSS fallback.
 */

/* ===== VIEW TRANSITIONS API (Chrome 111+, Edge 111+) ===== */
@view-transition {
  navigation: auto;
}

/* Customize the transition animations */
::view-transition-old(root) {
  animation: fade-out 0.2s ease-out forwards;
}

::view-transition-new(root) {
  animation: fade-in 0.3s ease-in forwards;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CSS FALLBACK (all browsers) ===== */

/* Page load animation */
.page-enter {
  animation: page-fade-in 0.4s ease-out forwards;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Content sections stagger animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for multiple elements */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }

  .page-enter {
    animation: none;
    opacity: 1;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== LOADING OVERLAY ===== */
.page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.page-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--accent-color, #d4af37);
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loading-spinner {
    animation: none;
    border-top-color: var(--accent-color, #d4af37);
    border-right-color: var(--accent-color, #d4af37);
  }
}

/* /css/components/skeleton.css */
/**
 * Skeleton Screens - Loading States 2026
 *
 * Modern loading placeholders that match the layout being loaded.
 * Better perceived performance than spinners.
 */

/* Base skeleton animation */
@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Base skeleton element */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}

/* Alternative pulse animation (for reduced motion) */
@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: skeleton-pulse 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* Skeleton variants */
.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
  border-radius: 4px;
}

.skeleton-text--short {
  width: 40%;
}

.skeleton-text--medium {
  width: 70%;
}

.skeleton-text--long {
  width: 90%;
}

.skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-avatar--large {
  width: 80px;
  height: 80px;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.skeleton-image--square {
  aspect-ratio: 1 / 1;
}

.skeleton-image--portrait {
  aspect-ratio: 3 / 4;
}

.skeleton-button {
  height: 44px;
  width: 120px;
  border-radius: 8px;
}

.skeleton-badge {
  height: 24px;
  width: 60px;
  border-radius: 12px;
}

/* ===== SKELETON CARD LAYOUTS ===== */

/* Generic card skeleton */
.skeleton-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.skeleton-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Concert card skeleton */
.skeleton-concert-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.skeleton-concert-card__date {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
}

.skeleton-concert-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Work modal skeleton */
.skeleton-work-modal {
  padding: 1.5rem;
}

.skeleton-work-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skeleton-work-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-work-modal__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

/* News card skeleton */
.skeleton-news-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.skeleton-news-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.skeleton-news-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Composer card skeleton */
.skeleton-composer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.skeleton-composer-card__portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.skeleton-composer-card__name {
  height: 1.25em;
  width: 80%;
}

.skeleton-composer-card__stats {
  height: 1em;
  width: 50%;
}

/* ===== SKELETON GRID LAYOUTS ===== */

.skeleton-grid {
  display: grid;
  gap: 1.5rem;
}

.skeleton-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.skeleton-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.skeleton-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .skeleton-grid--2,
  .skeleton-grid--3,
  .skeleton-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ===== INLINE LOADING INDICATOR ===== */

.loading-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.loading-inline__dots {
  display: inline-flex;
  gap: 4px;
}

.loading-inline__dot {
  width: 6px;
  height: 6px;
  background: var(--accent-color, #d4af37);
  border-radius: 50%;
  animation: loading-dot 1.4s ease-in-out infinite;
}

.loading-inline__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-inline__dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loading-dot {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-inline__dot {
    animation: skeleton-pulse 2s ease-in-out infinite;
  }
}

/* /css/components/social-share.css */
/**
 * Social Share Buttons - 2026 UX Enhancement
 *
 * Modern, accessible share buttons for articles and content.
 * Supports: Facebook, Twitter/X, LinkedIn, WhatsApp, Email, Copy Link
 */

/* ===== SHARE CONTAINER ===== */
.social-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-share__label {
  font-family: var(--font-ui, 'Montserrat', sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

/* ===== SHARE BUTTONS ===== */
.social-share__buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-share__btn:focus-visible {
  outline: 2px solid var(--accent-color, #d4af37);
  outline-offset: 2px;
}

/* Platform-specific colors on hover */
.social-share__btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-share__btn--twitter:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.social-share__btn--linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}

.social-share__btn--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.social-share__btn--email:hover {
  background: var(--accent-color, #d4af37);
  border-color: var(--accent-color, #d4af37);
  color: #000;
}

.social-share__btn--copy:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--accent-color, #d4af37);
  color: var(--accent-color, #d4af37);
}

/* Copy success state */
.social-share__btn--copy.copied {
  background: rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
  color: #2ecc71;
}

/* ===== COMPACT VARIANT ===== */
.social-share--compact .social-share__btn {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.social-share--compact .social-share__label {
  font-size: 0.75rem;
}

/* ===== INLINE VARIANT (for article headers) ===== */
.social-share--inline {
  display: inline-flex;
  gap: 0.5rem;
}

.social-share--inline .social-share__label {
  display: none;
}

/* ===== VERTICAL VARIANT (for sidebars) ===== */
.social-share--vertical {
  flex-direction: column;
  align-items: flex-start;
}

.social-share--vertical .social-share__buttons {
  flex-direction: column;
}

/* ===== FLOATING SHARE BAR (for long articles) ===== */
.social-share--floating {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.social-share--floating.visible {
  opacity: 1;
  visibility: visible;
}

.social-share--floating .social-share__label {
  display: none;
}

.social-share--floating .social-share__buttons {
  flex-direction: column;
}

/* ===== TOOLTIP FOR COPY FEEDBACK ===== */
.social-share__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.social-share__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.social-share__btn:hover .social-share__tooltip,
.social-share__tooltip.show {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .social-share--floating {
    display: none;
  }

  .social-share {
    justify-content: center;
  }

  .social-share__label {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .social-share__buttons {
    justify-content: center;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .social-share__btn {
    transition: none;
  }

  .social-share__btn:hover {
    transform: none;
  }

  .social-share--floating {
    transition: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .social-share {
    display: none;
  }
}

/* /css/components/sw-update.css */
/* Service Worker Update Notification */

.sw-update-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.98) 0%, rgba(35, 35, 35, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(212, 175, 55, 0.1);
  animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sw-update-content {
  padding: 20px;
  color: var(--text-primary, #fffbe9);
}

.sw-update-content p {
  margin: 0 0 12px 0;
  font-family: var(--font-ui, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sw-update-content p strong {
  color: var(--accent-color, #cba135);
  font-weight: 600;
}

.sw-update-content button {
  margin-right: 10px;
  margin-top: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-ui, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-update-content button:first-of-type {
  background: var(--accent-color, #cba135);
  color: #000;
}

.sw-update-content button:first-of-type:hover {
  background: var(--light-accent, #e6c46a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.sw-update-content button:last-of-type {
  background: transparent;
  color: var(--text-secondary, rgba(244, 238, 212, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.sw-update-content button:last-of-type:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sw-update-notification {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .sw-update-content button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .sw-update-notification {
    animation: none;
  }
}

/* /css/components/video-thumbnails.css */
/* ==========================================================================
   Video thumbnails component (Modern & Professional)
   Convenzioni: id_snake_case, classi kebab-case
   - Griglia: .video-grid
   - Card: .video-item
   - Thumb: .video-thumb (link con <img.youtube-thumbnail>)
   - Titolo sotto: .video-title
   ========================================================================== */

.video-grid {
  display: grid;
  /* Fix: limitiamo max width delle colonne per evitare che si allarghino troppo */
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px)) !important;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center !important;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

/* Card generica con glassmorphism */
.video-item {
  width: 100%;
  max-width: 340px !important; /* Riduciamo da 380px a 340px */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

/* Link immagine con effetti moderni */
.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;

  /* Glassmorphism background - usa variables */
  background: var(--card-bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Gold accent border */
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;

  /* Multi-layer shadows */
  box-shadow: var(--card-shadow);

  transition: all 0.4s var(--ease-smooth);
}

/* Video badge (Coming Soon / In Arrivo) */
.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-ui, Montserrat, Arial, sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.video-badge--upcoming {
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%);
  color: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.7);
  }
}

/* Play button overlay */
.video-thumb::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 175, 55, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.video-thumb:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--card-shadow-hover);
}

.video-thumb:hover::before {
  opacity: 1;
}
  
/* Immagine con zoom hover */
.youtube-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.video-thumb:hover .youtube-thumbnail {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Titolo SOTTO alla miniatura */
.video-title {
  margin: 0.75rem 0 0;
  padding: 0 0.3rem;
  font-family: var(--font-ui, Montserrat, Arial, sans-serif);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.35;
  color: var(--accent-color, #cba135);
  text-align: left;

  /* Subtle glow */
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);

  /* 2 righe max, ellissi */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;

  transition: text-shadow 0.3s ease;
}

.video-item:hover .video-title {
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.video-title a {
  color: inherit;
  text-decoration: none;
}

.video-title a:hover {
  text-decoration: underline;
}
  
  /* Variante EMBED (riutilizzabile per /video) */
  .video-card {
    width: min(560px, 92vw);
    background: #181818;
    border: 2px solid var(--accent-color, #cba135);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px #0005;
    padding: 0;
  }
  .video-card .video-frame {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
  }
  .video-card .video-title {
    display: block;
    max-width: 90%;
    margin: 0.6rem auto 0.9rem;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--accent-color, #cba135);
    line-height: 1.18;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .video-item { width: 100%; }
    .video-thumb { border-radius: 10px; }
  }
  
/* /css/utils/animations.css */
/* Modern Micro-interactions & Animations */

/* Smooth transitions baseline */
*,
*::before,
*::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover effects - Unified */
.card-hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Smooth fade-in on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scale on hover - subtle */
.scale-hover {
  transition: transform 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.02);
}

/* Glow effect on hover */
.glow-hover {
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  filter: brightness(1.05);
}

/* Smooth gradient shift */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* Underline animation */
.underline-hover {
  position: relative;
  text-decoration: none;
}

.underline-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f0d478);
  transition: width 0.3s ease;
}

.underline-hover:hover::after {
  width: 100%;
}

/* Shimmer effect (loading/highlight) */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Smooth parallax scroll (subtle) */
@media (prefers-reduced-motion: no-preference) {
  .parallax-subtle {
    transform: translateZ(0);
    will-change: transform;
  }
}

/* Pulse effect for notifications/badges */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Button press effect */
.button-press:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth border animation */
@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(212, 175, 55, 0.3);
  }
  50% {
    border-color: rgba(212, 175, 55, 0.8);
  }
}

.border-pulse {
  animation: borderPulse 2s ease infinite;
}

/* /css/utils/helpers.css */
/* Classi helper */
.hidden { display: none !important; }
.visible { display: block !important; }
.text-center { text-align: center !important; }
.flex { display: flex !important; }
.inline-block { display: inline-block !important; }
.cursor-pointer { cursor: pointer; }
.no-select { user-select: none; }
.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
/* /css/utils/responsive-fixed.css */
/* responsive.css — Navbar/Hamburger responsive + small utilities
   Scope: only cross-cutting rules (component-agnostic).
   Component-specific tweaks should live in their module CSS (e.g. components/navbar.css).
*/

/* ===== NAVBAR (mobile-first via checkbox #nav_toggle) ===== */
/* DISABILITATO - ora gestito in components/navbar.css */
/*
@media (max-width: 1199px) {
  nav.navbar { position: relative; z-index: 100; }

 
  nav.navbar .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 16px;
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 1000;
    box-sizing: border-box;
    overflow-x: hidden;
  }

 
  nav.navbar .nav-toggle:checked ~ .nav-center .menu { display: flex; }

 
  nav.navbar .menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav.navbar .menu a {
    display: block;
    width: 100%;
    padding: 6px 4px;
    margin: 0;
    text-align: right;
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: inherit;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-sizing: border-box;
  }

 
  nav.navbar .menu button.nav-dropdown-toggle {
    display: flex !important;
    width: 100% !important;
    padding: 6px 4px !important;
    margin: 0 !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.375rem !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-family: var(--font-ui) !important;
    font-weight: 300 !important;
    font-size: inherit !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer;
    box-sizing: border-box !important;
  }

 
  nav.navbar .menu button.nav-dropdown-toggle i {
    font-size: 0.7em !important;
    margin-left: 0 !important;
  }

 
  nav.navbar .nav-item-dropdown {
    width: 100%;
  }

  nav.navbar .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    visibility: visible !important;
  }

  nav.navbar .nav-item-dropdown.dropdown-open .nav-dropdown-menu {
    opacity: 1;
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem 0 !important;
    margin: 0.25rem 0;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box;
  }

  nav.navbar .nav-dropdown-item {
    display: block;
    padding: 0.5rem 4px !important;
    font-size: 0.85em !important;
    width: 100%;
    text-align: right !important;
    box-sizing: border-box;
  }

 
  nav.navbar .hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    cursor: pointer;
    user-select: none;
    z-index: 110;
  }
  nav.navbar .hamburger span {
    display: block;
    width: 22px; height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

 
  nav.navbar .nav-right { display: inline-flex; align-items: center; gap: .5rem; }
  nav.navbar .lang-switch { margin-right: .25rem; }
  nav.navbar .lang-switch button { font-size: .8125rem; padding: .25rem .5rem; }
  nav.navbar .nav-center { position: static; }
}
*/

@media (min-width: 1200px) {
  /* Desktop layout: menu always visible inline */
  nav.navbar .hamburger { display: none !important; }
  nav.navbar .nav-center { display: flex !important; }
  nav.navbar .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
}

/* ===== LEGACY FALLBACK (if some JS toggles .menu.show) — keeps compatibility */
@media (max-width: 1199px) {
  nav.navbar .menu.show { display: flex; }
}
/* /css/pages/press-kit.css */
/* Press-Kit / EPK page styles - Premium Design */

/* Import Engagement Funnel Components */
@import url('../components/engagement-funnel.css');

:root {
  --pk-bg: #0a0a0a;
  --pk-text: #e8e8e8;
  --pk-text-muted: rgba(255, 255, 255, 0.6);
  --pk-accent: #d4af37;
  --pk-accent-light: #f0d478;
  --pk-panel: rgba(255, 255, 255, 0.03);
  --pk-panel-hover: rgba(255, 255, 255, 0.06);
  --pk-border: rgba(255, 255, 255, 0.1);
  --pk-border-hover: rgba(212, 175, 55, 0.4);
  --pk-gradient: linear-gradient(135deg, #d4af37 0%, #f0d478 100%);
}

.press-kit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  color: var(--pk-text);
}

/* ===== HERO - Premium Style ===== */
.press-kit-hero {
  position: relative;
  text-align: center;
  padding: 4rem 2rem 5rem;
  margin-bottom: 4rem;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(212, 175, 55, 0.02) 50%,
    transparent 100%
  );
  border-bottom: 1px solid var(--pk-border);
}

.press-kit-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--pk-gradient);
  border-radius: 0 0 2px 2px;
}

.press-kit-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pk-accent);
  margin-bottom: 1rem;
}

.press-kit-hero__label i {
  font-size: 1rem;
}

/* Titolo unificato - eredita da .page-title in base.css */
.press-kit-hero__title {
  margin: 0 0 1rem;
}

/* Sottotitolo unificato - eredita da .page-claim in base.css */
.press-kit-hero__subtitle {
  max-width: 600px;
}

/* ===== SECTION Common ===== */
.press-kit-section {
  margin-bottom: 5rem;
}

.press-kit-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.press-kit-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--pk-accent);
  font-size: 1.25rem;
}

.press-kit-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--pk-text);
}

.press-kit-section__desc {
  color: var(--pk-text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  padding-left: 64px;
}

/* ===== BIOGRAPHY Section ===== */
.press-kit-bio {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.press-kit-bio__photo {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--pk-border);
  transition: all 0.3s ease;
}

.press-kit-bio__photo:hover {
  border-color: var(--pk-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
}

.press-kit-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.press-kit-bio__text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--pk-text);
}

.bio-short,
.bio-long {
  margin-bottom: 1.5rem;
}

.bio-long {
  padding-top: 1rem;
  border-top: 1px solid var(--pk-border);
}

.btn-text {
  background: none;
  border: none;
  color: var(--pk-accent);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.btn-text:hover {
  background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .press-kit-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .press-kit-bio__photo {
    width: 180px;
    height: 180px;
  }

  .press-kit-section__desc {
    padding-left: 0;
  }
}

/* ===== DOCUMENTS Section ===== */
.press-kit-documents {
  display: grid;
  gap: 1.25rem;
}

.document-card {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.document-card:hover {
  background: var(--pk-panel-hover);
  border-color: var(--pk-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.document-card__preview {
  position: relative;
  width: 100px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  background: #111;
}

.document-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.document-card:hover .document-card__preview img {
  transform: scale(1.05);
}

.document-card__format-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: var(--pk-accent);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* PDF Fallback Icon */
.document-card__pdf-fallback {
  position: relative;
  width: 100px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--pk-border);
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.document-card:hover .document-card__pdf-fallback {
  border-color: var(--pk-accent);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.document-card__pdf-fallback .pdf-icon {
  width: 60px;
  height: 75px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.document-card__icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.document-card__info {
  flex: 1;
  min-width: 0;
}

.document-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--pk-text);
}

.document-card__desc {
  font-size: 0.95rem;
  color: var(--pk-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.document-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--pk-text-muted);
}

.meta-item {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.document-card__action {
  flex-shrink: 0;
}

.document-card__action .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .document-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .document-card__action {
    width: 100%;
  }

  .document-card__action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== PHOTOS Gallery ===== */
.press-kit-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--pk-border-hover);
}

.gallery-item__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__media img {
  transform: scale(1.05);
}

.gallery-item__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 10, 0.85);
  color: var(--pk-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__info {
  padding: 1.25rem;
}

.gallery-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--pk-text);
}

.gallery-item__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--pk-text-muted);
  margin-bottom: 1rem;
}

.gallery-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-item .btn-text {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.gallery-item .btn-text i {
  transition: transform 0.2s ease;
}

.gallery-item .btn-text:hover i {
  transform: translateX(3px);
}

/* ===== VIDEOS Section ===== */
.press-kit-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--pk-border-hover);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.video-card__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__info {
  padding: 1rem 1.25rem;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--pk-text);
  line-height: 1.3;
}

.video-card__desc {
  color: var(--pk-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card .btn-text {
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

@media (max-width: 768px) {
  .press-kit-videos {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===== CONTACT Section ===== */
.press-kit-contact {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 0;
}

.press-kit-contact .press-kit-section__title {
  margin-bottom: 0.5rem;
}

.press-kit-contact .press-kit-section__desc {
  padding-left: 0;
  margin-bottom: 2rem;
}

.contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: var(--pk-panel);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--pk-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pk-gradient);
  border-radius: 50%;
  color: #0a0a0a;
  font-size: 1.5rem;
}

.contact-card__content {
  text-align: center;
}

.contact-card__label {
  font-size: 0.9rem;
  color: var(--pk-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card__email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pk-accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card__email:hover {
  color: var(--pk-accent-light);
}

/* Legacy contact-info styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-item__label {
  font-weight: 600;
  color: var(--pk-text-muted);
}

.contact-item__value {
  color: var(--pk-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-item__value:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--pk-gradient);
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn i {
  font-size: 0.9em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .press-kit {
    padding: 0 1rem 2rem;
  }

  .press-kit-hero {
    padding: 3rem 1rem 4rem;
    margin-bottom: 3rem;
  }

  /* Titolo responsive gestito da .page-title in base.css */

  .press-kit-section {
    margin-bottom: 3.5rem;
  }

  .press-kit-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .press-kit-section__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .press-kit-gallery {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .press-kit-contact {
    padding: 2rem 1rem;
  }

  .contact-card {
    padding: 1.5rem;
    width: 100%;
  }
}

