/* ==========================================================
   FONDERIE MUSICALI — Elegant Gold/Black Theme
   Ispirato a clienti.css (oro, nero, minimal, superfici soft)
   ========================================================== */

/* ---------- VARIABLES ---------- */
:root {
    --fm-bg: #0b0b0b;
    --fm-surface: #161616;
    --fm-surface-soft: rgba(255, 255, 255, 0.04);
    --fm-border: rgba(255, 255, 255, 0.10);
    --fm-border-strong: rgba(255, 255, 255, 0.22);
  
    --fm-text: #ffffff;
    --fm-text-muted: rgba(255, 255, 255, 0.65);
  
    --fm-gold: #d4af37;
    --fm-gold-light: #e0c050;
    --fm-gold-dark: #b8941f;
    --fm-gold-soft: rgba(212, 175, 55, 0.14);
    --fm-gold-glow: rgba(212, 175, 55, 0.3);
    
    /* Premium gradients */
    --fm-gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --fm-gold-gradient-vertical: linear-gradient(180deg, #f4d03f 0%, #d4af37 50%, #b8941f 100%);
    --fm-gold-metallic: linear-gradient(135deg, rgba(244, 208, 63, 0.9) 0%, rgba(212, 175, 55, 0.95) 25%, rgba(184, 148, 31, 0.9) 50%, rgba(212, 175, 55, 0.95) 75%, rgba(244, 208, 63, 0.9) 100%);
    
    /* Premium shadows */
    --fm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --fm-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --fm-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --fm-shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    --fm-shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --fm-shadow-gold-lg: 0 16px 48px rgba(212, 175, 55, 0.4);
    --fm-shadow-gold-xl: 0 24px 64px rgba(212, 175, 55, 0.5);
    --fm-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.55);
    
    /* Glassmorphism */
    --fm-glass-bg: rgba(22, 22, 22, 0.7);
    --fm-glass-border: rgba(255, 255, 255, 0.1);
    --fm-glass-blur: blur(20px);
  
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
  
    --space-xs: 0.35rem;
    --space-sm: 0.7rem;
    --space-md: 1.1rem;
    --space-lg: 1.55rem;
    --space-xl: 2.4rem;
  
    --transition: 220ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-elastic: 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-soft: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    /* Premium effects */
    --fm-glow-intensity: 0.4;
    --fm-blur-intensity: 20px;
  }
  
  /* ---------- GLOBAL ---------- */
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: var(--fm-bg);
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--fm-text);
    font-family: var(--font-soft);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  
  body.loaded * {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Premium text rendering */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
  }
  
  p {
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  
  /* ---------- LOADER ---------- */
  .fm-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fm-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .fm-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .fm-loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--fm-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  a {
    color: var(--fm-gold);
    transition: color var(--transition);
  }
  
  a:hover {
    color: var(--fm-gold);
    opacity: 0.9;
  }
  
  /* Container */
  .fm-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  /* ---------- NAVBAR ---------- */
  .fm-header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--fm-border);
    z-index: 20;
    transition: background 0.3s ease;
  }
  
  .fm-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
  }
  
  .fm-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    position: relative;
    padding-bottom: 2px;
  }
  
  .fm-logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2px;
    border-radius: 1px;
    background: var(--fm-gold-gradient);
    opacity: 0.85;
  }
  
  .fm-logo-main {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
  }
  
  .fm-nav a {
    margin-left: var(--space-md);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fm-text-muted);
    transition: all var(--transition);
    position: relative;
    padding-bottom: 2px;
  }
  
  .fm-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fm-gold);
    transition: width var(--transition);
  }
  
  .fm-nav a:hover {
    color: var(--fm-gold);
  }
  
  .fm-nav a:hover::after {
    width: 100%;
  }
  
  /* ---------- HERO (minimal, full-bleed video) ---------- */
  .fm-hero {
    position: relative;
    min-height: min(100vh, 900px);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
    overflow: hidden;
  }
  
  .fm-hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
    background: #0b0b0b;
  }
  
  .fm-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #0b0b0b;
    filter: brightness(0.62) contrast(1.05) saturate(1.08);
  }
  
  .fm-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      168deg,
      rgba(8, 8, 8, 0.82) 0%,
      rgba(11, 11, 11, 0.38) 45%,
      rgba(8, 8, 8, 0.78) 100%
    );
    pointer-events: none;
  }
  
  .fm-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.55);
  }
  
  .fm-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(1100px, 96vw);
    margin: 0 auto;
  }
  
  .fm-hero-stack {
    text-align: center;
    animation: heroEnter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
  
  @keyframes heroEnter {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fm-hero-kicker {
    margin: 0 0 var(--space-md);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--fm-gold);
    opacity: 0.92;
  }
  
  .fm-hero-title {
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    max-width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }
  
  .fm-hero-title-brand {
    display: block;
    font-size: clamp(1.85rem, 5.8vw, 3.35rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 
      0 2px 3px rgba(0, 0, 0, 0.45),
      0 8px 48px rgba(0, 0, 0, 0.55);
  }
  
  .fm-hero-title-gold {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(0.62rem, 2.15vw, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.26em;
    line-height: 1.25;
    white-space: nowrap;
    color: var(--fm-gold-light);
    background: var(--fm-gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.25));
  }
  
  @supports not (background-clip: text) {
    .fm-hero-title-gold {
      color: var(--fm-gold);
      background: none;
      -webkit-text-fill-color: currentColor;
      filter: none;
      text-shadow: 0 2px 20px rgba(212, 175, 55, 0.35);
    }
  }

  .fm-hero-title--single {
    margin-bottom: 0.65rem;
  }

  .fm-hero-subline {
    margin: 0 0 var(--space-lg);
    max-width: min(100%, 36rem);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--fm-gold-light);
    background: var(--fm-gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.2));
  }

  @supports not (background-clip: text) {
    .fm-hero-subline {
      color: var(--fm-gold);
      background: none;
      -webkit-text-fill-color: currentColor;
      filter: none;
    }
  }
  
  .fm-hero-payoff {
    margin: 0 0 var(--space-xl);
    font-size: clamp(0.88rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }
  
  .fm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    margin-top: var(--space-xs);
  }
  
  .fm-hero-btn {
    min-width: 11.5rem;
    justify-content: center;
    padding: 0.82rem 1.5rem;
    border-radius: var(--radius-md);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ---------- BUTTONS ---------- */
  .btn-primary,
  .btn-secondary {
    padding: 0.65rem 1.6rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: var(--fm-gold);
    color: #111;
  }
  
  .btn-primary svg {
    transition: transform 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -16px rgba(212,175,55,0.6);
    background: #e0c050;
  }
  
  .btn-primary:hover svg {
    transform: translateX(4px);
  }
  
  .btn-primary:active {
    transform: translateY(-1px);
  }
  
  .btn-secondary {
    background: transparent;
    border-color: var(--fm-border);
    color: var(--fm-text);
  }
  
  .btn-secondary svg {
    transition: transform 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: var(--fm-gold-soft);
    color: var(--fm-gold);
    border-color: var(--fm-gold);
    transform: translateY(-2px);
  }
  
  .btn-secondary:hover svg {
    transform: translateY(2px);
  }
  
  .btn-secondary:active {
    transform: translateY(0);
  }
  
  .fm-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--fm-gold);
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    background: none;
    border: none;
    padding: var(--space-sm);
    font: inherit;
  }
  
  .fm-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
  }
  
  .fm-scroll-indicator:focus-visible {
    outline: 2px solid var(--fm-gold);
    outline-offset: 6px;
    border-radius: var(--radius-sm);
  }
  
  .fm-scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--fm-gold), transparent);
    opacity: 0.6;
  }
  
  .fm-scroll-indicator svg {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-12px);
    }
    60% {
      transform: translateX(-50%) translateY(-6px);
    }
  }
  
  /* ---------- SECTIONS ---------- */
  .fm-section {
    padding: calc(var(--space-xl) * 2) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow: hidden;
  }
  
  .fm-section-alt {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0.04) 50%,
      rgba(255,255,255,0.02) 100%
    );
  }
  
  .fm-section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
      radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: decorationFloat 20s ease-in-out infinite;
    will-change: transform, opacity;
  }
  
  @keyframes decorationFloat {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.6;
    }
    33% {
      transform: translate(2%, -2%) scale(1.02);
      opacity: 0.7;
    }
    66% {
      transform: translate(-2%, 2%) scale(0.98);
      opacity: 0.65;
    }
  }
  
  .fm-section-formats .fm-section-bg-decoration {
    background: 
      radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  }
  
  .fm-section-about .fm-section-bg-decoration {
    background: 
      radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
      linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
  }
  
  .fm-section-info .fm-section-bg-decoration {
    background: 
      radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 50% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  }
  
  .fm-container {
    position: relative;
    z-index: 1;
  }
  
  /* ---------- SECTION HEADER ---------- */
  .fm-section-header {
    text-align: center;
    margin-bottom: calc(var(--space-xl) * 1.5);
    position: relative;
  }
  
  .fm-section h2 {
    margin: 0 auto var(--space-md);
    font-size: 2.4rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    display: inline-block;
    background: var(--fm-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: textShine 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3))
            drop-shadow(0 4px 16px rgba(212, 175, 55, 0.2));
    will-change: background-position;
  }
  
  .fm-section h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fm-gold));
    opacity: 0.6;
  }
  
  .fm-section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--fm-gold), transparent);
    opacity: 0.6;
  }
  
  .fm-section-intro {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* ---------- FORMAT CARDS ---------- */
  .fm-format-grid {
    margin-top: var(--space-lg);
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .fm-format-card {
    background: var(--fm-glass-bg);
    backdrop-filter: var(--fm-glass-blur);
    -webkit-backdrop-filter: var(--fm-glass-blur);
    border-radius: var(--radius-lg);
    border: 1px solid var(--fm-glass-border);
    overflow: hidden;
    box-shadow: 
      var(--fm-shadow-md),
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    will-change: transform, box-shadow;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  
  a.fm-format-card:focus-visible {
    outline: 2px solid var(--fm-gold);
    outline-offset: 3px;
  }
  
  .fm-format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fm-gold-gradient);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
    animation: borderShine 3s ease-in-out infinite;
  }
  
  .fm-format-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
  }
  
  .fm-format-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
      var(--fm-shadow-gold-xl),
      0 0 0 1px rgba(212, 175, 55, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    background: rgba(22, 22, 22, 0.95);
  }
  
  .fm-format-card:hover::before {
    opacity: 1;
  }
  
  .fm-format-card:hover::after {
    opacity: 1;
  }
  
  @keyframes borderShine {
    0%, 100% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 0%;
    }
  }
  
  .fm-format-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--fm-surface-soft);
  }
  
  .fm-format-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--fm-surface-soft);
  }
  
  .fm-format-image:not([src]),
  .fm-format-image[src=""] {
    background: linear-gradient(
      135deg,
      var(--fm-gold-soft) 0%,
      var(--fm-surface-soft) 100%
    );
  }
  
  .fm-format-card:hover .fm-format-image {
    transform: scale(1.08);
  }
  
  .fm-format-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(11, 11, 11, 0.3) 70%,
      rgba(11, 11, 11, 0.7) 100%
    );
    pointer-events: none;
  }
  
  .fm-format-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--fm-gold-metallic);
    background-size: 200% 100%;
    color: #111;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2;
    box-shadow: 
      0 4px 20px rgba(212, 175, 55, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeShine 3s ease-in-out infinite;
    will-change: transform, box-shadow;
  }
  
  .fm-format-card:hover .fm-format-badge {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 
      0 8px 28px rgba(212, 175, 55, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    background-position: 100% 0%;
  }
  
  @keyframes badgeShine {
    0%, 100% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 0%;
    }
  }
  
  .fm-format-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(212, 175, 55, 0.02) 100%
    );
  }
  
  .fm-format-header {
    margin-bottom: var(--space-md);
    position: relative;
  }
  
  .fm-format-card h3 {
    margin: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    position: relative;
    background: var(--fm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: textShine 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    will-change: background-position;
  }
  
  .fm-format-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--fm-gold-gradient);
    background-size: 200% 100%;
    opacity: 0.8;
    border-radius: 2px;
    animation: borderShine 3s ease-in-out infinite;
  }
  
  .fm-format-tagline {
    margin: var(--space-sm) 0 var(--space-md);
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .fm-format-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    opacity: 0.75;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  
  .fm-format-meta li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: 0.5rem;
  }
  
  .fm-format-meta li:first-child {
    margin-top: 0;
  }
  
  .fm-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--fm-gold);
    opacity: 0.8;
  }
  
  .fm-format-meta span {
    flex: 1;
  }
  
  .fm-format-desc {
    margin-top: auto;
    opacity: 0.9;
    line-height: 1.7;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* ---------- ABOUT SECTION ---------- */
  .fm-two-cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: calc(var(--space-xl) * 1.5);
    align-items: center;
  }
  
  .fm-locale-copy {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fm-locale-copy .fm-section-header {
    margin-bottom: calc(var(--space-xl) * 1.1);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fm-locale-venue-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: calc(var(--space-xl) * 1.35);
    align-items: start;
  }
  
  .fm-locale-venue-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  
  .fm-locale-venue-grid--reverse .fm-locale-venue-media {
    order: 2;
  }
  
  .fm-locale-venue-grid--reverse .fm-locale-venue-copy {
    order: 1;
  }
  
  .fm-locale-venue-media {
    min-width: 0;
  }
  
  .fm-locale-venue-figure {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .fm-locale-venue-caption {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    margin: 0;
    padding: 0 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .fm-locale-venue-caption-title {
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.14em;
  }
  
  .fm-locale-venue-caption-sep {
    color: rgba(212, 175, 55, 0.55);
    font-weight: 400;
  }
  
  .fm-locale-venue-caption-place {
    color: var(--fm-gold);
    opacity: 0.92;
    letter-spacing: 0.18em;
  }
  
  /* Card locale: foto intera (contain), centrata — niente ritaglio tipo cover */
  .fm-about-image-wrapper--venue {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: min(520px, 58vw);
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse 120% 100% at 50% 40%, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
  }
  
  .fm-about-image-wrapper--venue .fm-about-image-glow {
    z-index: 0;
  }
  
  .fm-about-image-wrapper--venue .fm-about-image {
    --venue-img-inset: clamp(0.5rem, 2.2vw, 1rem);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: auto;
    height: auto;
    max-width: calc(100% - 2 * var(--venue-img-inset));
    max-height: calc(100% - 2 * var(--venue-img-inset));
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: var(--radius-md);
  }
  
  /* Vignetta leggera in basso (foto intera: overlay molto soft) */
  .fm-about-image-wrapper--venue .fm-about-image-overlay {
    z-index: 1;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 62%,
      rgba(11, 11, 11, 0.1) 88%,
      rgba(11, 11, 11, 0.22) 100%
    );
    opacity: 1;
  }
  
  .fm-about-image-wrapper--venue:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  }
  
  .fm-about-image-wrapper--venue:hover .fm-about-image-overlay {
    opacity: 0.65;
  }
  
  .fm-locale-intro {
    margin: var(--space-md) auto 0;
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.03em;
  }
  
  .fm-locale-venue {
    margin-bottom: 0;
  }
  
  .fm-about-text--venue {
    margin-top: 0;
    padding: calc(var(--space-xl) * 1.1);
  }
  
  .fm-about-text--venue p {
    margin-bottom: var(--space-md);
    font-size: 1.02rem;
    line-height: 1.75;
  }
  
  .fm-about-text--venue p:first-of-type {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .fm-locale-divider {
    height: 1px;
    margin: calc(var(--space-xl) * 1.35) 0;
    border: none;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(212, 175, 55, 0.45) 20%,
      rgba(212, 175, 55, 0.45) 80%,
      transparent
    );
    opacity: 0.85;
  }
  
  @media (max-width: 900px) {
    .fm-locale-venue-grid,
    .fm-locale-venue-grid--reverse {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
    
    .fm-locale-venue-grid--reverse .fm-locale-venue-media {
      order: -1;
    }
    
    .fm-locale-venue-grid--reverse .fm-locale-venue-copy {
      order: 0;
    }
    
    .fm-about-image-wrapper--venue {
      max-height: none;
      aspect-ratio: 4 / 3;
      min-height: 220px;
    }
    
    .fm-locale-venue-caption {
      justify-content: center;
      text-align: center;
    }
  }
  
  .fm-about-content {
    position: relative;
    z-index: 1;
  }
  
  .fm-about-text {
    background: var(--fm-glass-bg);
    backdrop-filter: var(--fm-glass-blur);
    -webkit-backdrop-filter: var(--fm-glass-blur);
    border-radius: var(--radius-lg);
    padding: calc(var(--space-xl) * 1.2);
    border: 1px solid var(--fm-glass-border);
    box-shadow: 
      var(--fm-shadow-md),
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .fm-about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fm-gold-gradient);
    background-size: 200% 100%;
    opacity: 0.6;
    animation: borderShine 3s ease-in-out infinite;
  }
  
  .fm-section-alt p {
    opacity: 0.92;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .fm-section-alt p:last-of-type {
    margin-bottom: 0;
  }
  
  /* About section image (solo classi legacy non-venue; i club usano --venue sopra) */
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue) {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--fm-surface-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  
  .fm-about-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
      circle at center,
      rgba(212, 175, 55, 0.2) 0%,
      transparent 70%
    );
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
  }
  
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue):hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
      0 20px 60px rgba(212, 175, 55, 0.3),
      0 0 0 1px rgba(212, 175, 55, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
  }
  
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue):hover .fm-about-image-glow {
    opacity: 1;
  }
  
  .fm-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
  }
  
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue):hover .fm-about-image {
    transform: scale(1.08);
  }
  
  .fm-about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 40%,
      rgba(11, 11, 11, 0.4) 100%
    );
    pointer-events: none;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-lg);
  }
  
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue):hover .fm-about-image-overlay {
    opacity: 0.8;
  }
  
  .fm-about-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  
  .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue):hover .fm-about-image-border {
    opacity: 1;
  }
  
  /* ---------- INFO SECTION ---------- */
  .fm-info-section-intro {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fm-info-venues {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    margin-top: calc(var(--space-xl) * 1.35);
  }
  
  .fm-info-venue-card {
    background: var(--fm-glass-bg);
    backdrop-filter: var(--fm-glass-blur);
    -webkit-backdrop-filter: var(--fm-glass-blur);
    border-radius: var(--radius-lg);
    border: 1px solid var(--fm-glass-border);
    padding: var(--space-lg);
    box-shadow: var(--fm-shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  }
  
  .fm-info-venue-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: var(--fm-shadow-gold-xl), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
  }
  
  .fm-info-venue-card-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  
  .fm-info-venue-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fm-gold);
    opacity: 0.9;
  }
  
  .fm-info-venue-title {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
  }
  
  .fm-info-venue-address {
    margin: 0 0 var(--space-md);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
  }
  
  .fm-info-venue-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
  }
  
  .fm-info-link-maps,
  .fm-info-link-social {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }
  
  .fm-info-link-maps {
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #e8d089;
  }
  
  .fm-info-link-maps:hover {
    background: rgba(212, 175, 55, 0.24);
    color: #fff;
    transform: translateY(-1px);
  }
  
  .fm-info-link-social {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
  }
  
  .fm-info-link-social:hover {
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--fm-gold);
  }
  
  /* Fascia unica: telefono | email | social (niente tre altezze diverse) */
  .fm-info-strip {
    margin-top: calc(var(--space-xl) * 1.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: linear-gradient(168deg, rgba(24, 24, 24, 0.97), rgba(12, 12, 12, 0.99));
    box-shadow: 
      0 10px 32px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
  }
  
  .fm-info-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  
  .fm-info-strip-block {
    flex: 1 1 200px;
    min-width: 0;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
  }
  
  .fm-info-strip-block--social {
    flex: 1.2 1 220px;
  }
  
  .fm-info-strip-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
  }
  
  .fm-info-strip-value {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--fm-gold);
    text-decoration: none;
    word-break: break-word;
    line-height: 1.4;
    transition: color 0.25s ease;
  }
  
  .fm-info-strip-value:hover {
    color: #f0e0a8;
  }
  
  .fm-info-strip-hint {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
  }
  
  .fm-info-strip-lead {
    margin: 0 0 var(--space-xs);
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
  }
  
  .fm-info-strip-vr {
    width: 1px;
    align-self: stretch;
    min-height: 3rem;
    margin: var(--space-md) 0;
    flex: 0 0 1px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(212, 175, 55, 0.28) 50%,
      transparent 100%
    );
  }
  
  .fm-info-social-links--strip {
    margin-top: var(--space-xs);
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .fm-info-social-links--strip .btn-social {
    padding: 0.7rem 1.25rem;
    font-size: 0.88rem;
  }
  
  .fm-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: calc(var(--space-xl) * 1.5);
  }
  
  .fm-info-card {
    background: var(--fm-glass-bg);
    backdrop-filter: var(--fm-glass-blur);
    -webkit-backdrop-filter: var(--fm-glass-blur);
    border-radius: var(--radius-lg);
    border: 1px solid var(--fm-glass-border);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 
      var(--fm-shadow-md),
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow;
  }
  
  .fm-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fm-gold), rgba(212, 175, 55, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 1;
  }
  
  .fm-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  
  .fm-info-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      var(--fm-shadow-gold-xl),
      0 0 0 1px rgba(212, 175, 55, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    background: rgba(22, 22, 22, 0.95);
  }
  
  .fm-info-card:hover::before {
    transform: scaleX(1);
  }
  
  .fm-info-card:hover::after {
    opacity: 1;
  }
  
  .fm-info-icon {
    width: 64px;
    height: 64px;
    background: var(--fm-gold-gradient);
    background-size: 200% 200%;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    margin-bottom: var(--space-md);
    transition: all var(--transition-smooth);
    box-shadow: 
      0 4px 16px rgba(212, 175, 55, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: iconShine 3s ease-in-out infinite;
    will-change: transform, box-shadow;
  }
  
  .fm-info-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: var(--fm-gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
  }
  
  .fm-info-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
  }
  
  .fm-info-card:hover .fm-info-icon {
    background-position: 100% 50%;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
      0 8px 28px rgba(212, 175, 55, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  }
  
  .fm-info-card:hover .fm-info-icon::before {
    opacity: 1;
  }
  
  .fm-info-card:hover .fm-info-icon::after {
    opacity: 1;
  }
  
  @keyframes iconShine {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  
  .fm-info-card h3 {
    margin: 0 0 var(--space-sm);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    background: var(--fm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: textShine 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    will-change: background-position;
  }
  
  .fm-info-card p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
  }
  
  .fm-info-card a {
    color: var(--fm-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .fm-info-card a:hover {
    color: #e0c050;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  }
  
  .fm-info-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: var(--space-xs);
    font-style: italic;
  }
  
  .fm-info-card-social {
    grid-column: span 2;
  }
  
  .fm-info-social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }
  
  .btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--fm-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition-smooth);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
  }
  
  .btn-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
  }
  
  .btn-social:hover::before {
    left: 100%;
  }
  
  .btn-social:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--fm-gold);
    color: var(--fm-gold);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
      0 8px 32px rgba(212, 175, 55, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .btn-social svg {
    transition: transform var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  }
  
  .btn-social:hover svg {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
  }
  
  /* ---------- FOOTER ---------- */
  .fm-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: calc(var(--space-xl) * 1.5) 0 var(--space-xl);
    margin-top: calc(var(--space-xl) * 2);
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.01) 100%
    );
    position: relative;
    overflow: hidden;
  }
  
  .fm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--fm-gold-gradient);
    background-size: 200% 100%;
    opacity: 0.6;
    animation: borderShine 3s ease-in-out infinite;
  }
  
  .fm-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }
  
  .fm-footer a {
    color: var(--fm-text-muted);
    text-decoration: none;
    transition: all var(--transition-smooth);
    font-weight: 500;
    position: relative;
  }
  
  .fm-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fm-gold-gradient);
    transition: width var(--transition-smooth);
  }
  
  .fm-footer a:hover {
    color: var(--fm-gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  }
  
  .fm-footer a:hover::after {
    width: 100%;
  }
  
  .fm-footer strong {
    color: var(--fm-gold);
    font-weight: 700;
    background: var(--fm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* ---------- SMOOTH SCROLLING ---------- */
  html {
    scroll-behavior: smooth;
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .fm-section h2::before,
    .fm-section h2::after {
      display: none;
    }
    
    .fm-section h2 {
      font-size: 1.8rem;
    }
    
    .fm-two-cols {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    
    .fm-about-image-wrapper:not(.fm-about-image-wrapper--venue) {
      min-height: 350px;
    }
    
    .fm-hero-actions {
      flex-direction: column;
      width: 100%;
      max-width: 20rem;
      margin-left: auto;
      margin-right: auto;
    }
    
    .fm-hero-btn {
      width: 100%;
    }
    
    .fm-info-card-social {
      grid-column: span 1;
    }
    
    .fm-info-venues {
      grid-template-columns: 1fr;
    }
    
    .fm-info-strip-inner {
      flex-direction: column;
    }
    
    .fm-info-strip-vr {
      width: 100%;
      height: 1px;
      min-height: 0;
      margin: 0;
      flex-basis: auto;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.25) 50%,
        transparent 100%
      );
    }
    
    .fm-info-grid {
      grid-template-columns: 1fr;
    }
    
    .fm-format-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 700px) {
    .fm-nav {
      display: none;
    }
    
    .fm-hero {
      min-height: 85vh;
    }
    
    .fm-format-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .fm-hero-title {
      gap: 0.35rem;
    }
    
    .fm-hero-title-brand {
      font-size: clamp(1.35rem, 8vw, 2.1rem);
      letter-spacing: 0.1em;
    }
    
    .fm-hero-title-gold {
      font-size: clamp(0.45rem, 1.85vw, 0.72rem);
      letter-spacing: 0.12em;
    }
    
    .fm-section {
      padding: var(--space-xl) 0;
    }
    
    .fm-section h2 {
      font-size: 1.5rem;
      letter-spacing: 0.15em;
    }
    
    .fm-section-intro {
      font-size: 0.95rem;
    }
    
    .fm-hero {
      min-height: 100vh;
      min-height: 100dvh;
      padding-top: calc(70px + var(--space-lg));
    }
    
    .fm-format-image-wrapper {
      height: 180px;
    }
    
    .fm-format-card h3 {
      font-size: 1.2rem;
    }
    
    .fm-info-card {
      padding: var(--space-lg);
    }
    
    .fm-info-icon {
      width: 48px;
      height: 48px;
    }
    
    .fm-about-text {
      padding: var(--space-lg);
    }
  }
  
  /* Fallback per browser che non supportano video */
  @supports not (object-fit: cover) {
    .fm-hero-video {
      display: none;
    }
    
    .fm-hero {
      background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
    }
  }

  .fm-seo-footer {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--fm-border);
    opacity: 0.35;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
  }

  .fm-seo-footer p {
    margin: 0;
  }

  /* Testo SEO: resta nel DOM per i crawler, non occupa spazio né è visibile */
  .fm-seo-footer.fm-seo-footer--visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
  }