/* style.css · Celeste Polzonetti · 2026 */


/* ── index.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }

  /* RECORD ALERT */
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; margin-top: 0px; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  /* HERO */
  .hero { min-height: calc(100vh - 95px); display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; padding: 5rem 2.5rem 4rem; position: relative; overflow: hidden; gap: 3rem; }
  .hero-content { z-index: 2; position: relative; }
  .hero-image-container { position: relative; width: 100%; height: 75vh; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
  .hero-image-wrapper { width: 100%; height: 100%; position: relative; }
  .hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; -webkit-mask-image: linear-gradient(to top, transparent 0%, black 10%, black 85%, transparent 100%), linear-gradient(to left, black 40%, transparent 100%); mask-image: linear-gradient(to top, transparent 0%, black 10%, black 85%, transparent 100%), linear-gradient(to left, black 85%, transparent 100%); -webkit-mask-composite: source-in; mask-composite: intersect; filter: contrast(102%) brightness(95%); }
  .photo-credit { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(244,241,235,0.35); text-align: right; margin-top: 0.5rem; padding-right: 1rem; }
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 100% 40%, rgba(212,160,23,0.12) 0%, transparent 65%), radial-gradient(ellipse 60% 40% at 0% 80%, rgba(200,64,26,0.06) 0%, transparent 60%), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px); pointer-events: none; }
  .hero-flag { 
  position: relative;
  display: inline-flex;        /* Forza la bandiera a stare sulla stessa linea di "Celeste" */
  flex-direction: row; 
  gap: 2px;
  margin-left: 18px;           /* Distanza laterale dalla parola Celeste */
  transform: translateY(-8px); /* Solleva la bandiera per allinearla visivamente alle lettere maiuscole */
  z-index: 2; 
  }
  .flag-stripe { height: 24px; width: 14px; border-radius: 1px; }
  .flag-stripe.green { background: #009246; }
  .flag-stripe.white { background: #fff; }
  .flag-stripe.red { background: #CE2B37; }
  .hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
  .hero-eyebrow::before { content: ''; display: inline-block; width: 2rem; height: 2px; background: var(--gold); }
  .hero-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3.5rem, 7.5vw, 6.2rem); line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem; }
  .hero-name .accent { color: var(--gold); }
  .hero-subtitle { font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-size: clamp(1.1rem, 2.3vw, 1.7rem); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,235,0.38); margin-bottom: 2rem; }
  .hero-tagline { max-width: 750px; font-size: 1.05rem; line-height: 1.75; color: rgba(244,241,235,0.65); margin-bottom: 2.5rem; }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.85rem 2rem; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.15s; }
  .btn-primary { background: var(--gold); color: #000; }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(244,241,235,0.25); }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* STATS */
  .stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface); border-bottom: 1px solid rgba(212,160,23,0.12); position: relative; z-index: 3; }
  .stat-item { padding: 1.75rem 1rem; text-align: center; border-right: 1px solid rgba(244,241,235,0.06); }
  .stat-item:last-child { border-right: none; }
  .stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 0.2rem; }
  .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.38); }
  .stat-sub { font-size: 0.78rem; color: rgba(244,241,235,0.55); margin-top: 0.25rem; }

  /* SEZIONI LINK */
  .sections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(244,241,235,0.06); }
  .section-card { background: var(--card-bg); padding: 2.5rem; text-decoration: none; color: var(--white); display: flex; flex-direction: column; justify-content: space-between; min-height: 220px; position: relative; overflow: hidden; transition: background 0.2s; border-top: 2px solid transparent; }
  .section-card:hover { background: rgba(212,160,23,0.05); border-top-color: var(--gold); }
  .section-card-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,241,235,0.35); margin-bottom: 0.5rem; }
  .section-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 0.75rem; }
  .section-card-desc { font-size: 0.88rem; color: rgba(244,241,235,0.45); line-height: 1.6; flex: 1; }
  .section-card-arrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 1.5rem; }

  /* FOOTER */
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .header-spacer { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.2); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 992px) { 
    .hero { grid-template-columns: 1fr; padding-top: 4rem; gap: 1.5rem; } 
    .hero-image-container { height: 45vh; order: -1; } 
    .hero-image-wrapper img { object-position: 50% 15%; -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%); mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%); } 
 
  
  }


@media (max-width: 768px) { 
    nav { padding: 0.75rem 1.25rem; } 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0;
      position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15);
      z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    
    /* Allineamento a SINISTRA dei contenuti Hero anche su Mobile */
    .hero { text-align: left !important; padding: 3rem 1.25rem; }
    .hero-eyebrow { justify-content: flex-start !important; }
    .hero-cta { justify-content: flex-start !important; }
    .hero-tagline { margin-left: 0 !important; margin-right: auto !important; }
    
    /* Riduce il font del nome su smartphone per fare spazio alla bandiera sulla stessa riga */
    .hero-name {
      font-size: 2.8rem !important; 
    }

    /* Gestione della bandiera allineata a sinistra */
    .hero-flag {
      display: inline-flex !important;
      margin-left: 10px !important;           /* Avvicina la bandiera alla fine del nome */
      transform: translateY(-3px) !important; /* Allineamento verticale preciso */
      vertical-align: middle !important;
    }
    .flag-stripe { 
      height: 16px !important;                /* Altezza ridotta per non toccare Polzonetti sotto */
      width: 10px !important;                 /* Larghezza proporzionata */
    }

    .stats-strip { grid-template-columns: repeat(2, 1fr); } 
    .stat-item { border-bottom: 1px solid rgba(244,241,235,0.06); } 
    .sections-grid { grid-template-columns: 1fr; } 
    .record-alert { padding: 0.75rem 1rem; font-size: 0.75rem; gap: 0.5rem; } 
  }
  




/* ── record.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .stat-card { background: var(--card-bg); border: 1px solid rgba(244,241,235,0.06); padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; border-top: 2px solid rgba(212,160,23,0.3); }
  .stat-card.highlight { border-top-color: var(--gold); background: linear-gradient(180deg, rgba(212,160,23,0.04) 0%, var(--card-bg) 100%); }
  .stat-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(244,241,235,0.4); text-transform: uppercase; margin-bottom: 1rem; }
  .stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 6vw, 4.5rem); color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
  .stat-value span { color: var(--gold); font-size: 1.5rem; font-weight: 700; margin-left: 0.2rem; }
  .stat-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
  .stat-desc { font-size: 0.88rem; color: rgba(244,241,235,0.5); line-height: 1.5; }
  
  .stat-tag {
    display: inline-block;
    position: relative; /* Cambiato da absolute a relative per evitare la sovrapposizione */
    background-color: #ffaa00;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px; /* Crea lo spazio di sicurezza sotto l'etichetta */
    letter-spacing: 0.5px;
}
  
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.15rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
	  nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .section { padding: 3rem 1.25rem; }
  }


/* ── palmares.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  .medals-table { width: 100%; border-collapse: collapse; margin-top: 1rem; text-align: left; }
  .medals-table th { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.35); padding: 1rem; border-bottom: 1px solid rgba(212,160,23,0.15); }
  .medals-table td { padding: 1.25rem 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); font-size: 0.95rem; }
  .medals-table tr:hover td { background: rgba(244,241,235,0.02); }
  .m-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: rgba(244,241,235,0.4); }
  .m-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; color: var(--white); }
  .m-comp { font-size: 0.9rem; color: rgba(244,241,235,0.6); }
  .m-place { font-size: 0.9rem; color: rgba(244,241,235,0.4); }
  .badge-medal { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
  .gold-m { background: var(--gold); color: #000; }
  .silver-m { background: #999; color: #000; }
  .bronze-m { background: #CD7F32; color: #000; }
  .final-m { background: rgba(244,241,235,0.1); color: var(--white); }
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
  nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .section { padding: 3rem 1.25rem; }
    .medals-table th:nth-child(4), .medals-table td:nth-child(4) { display: none; }
  }


/* ── carriera.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  .timeline { position: relative; max-width: 800px; margin-top: 1rem; }
  .timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 1px; background: rgba(212,160,23,0.15); }
  .timeline-item { position: relative; padding-left: 45px; margin-bottom: 2.5rem; }
  .timeline-dot { position: absolute; left: 10px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--black); border: 2px solid var(--gold); }
  .timeline-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.25rem; letter-spacing: 0.05em; }
  .timeline-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
  .timeline-text { font-size: 0.95rem; color: rgba(244,241,235,0.6); line-height: 1.6; }
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
     nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .section { padding: 3rem 1.25rem; }
  }


/* ── profilo.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .bio-table { width: 100%; border-collapse: collapse; }
  .bio-table td { padding: 0.85rem 0; border-bottom: 1px solid rgba(244,241,235,0.06); font-size: 0.95rem; }
  .bio-table td:first-child { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; color: rgba(244,241,235,0.4); width: 35%; letter-spacing: 0.05em; }
  .bio-table td:last-child { color: var(--white); font-weight: 500; }
  .text-block p { font-size: 1rem; color: rgba(244,241,235,0.6); line-height: 1.7; margin-bottom: 1rem; }
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
  nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .section { padding: 3rem 1.25rem; }
    .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
  }


/* ── gallery.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  
  /* GALLERY GRID */
  .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
  .gallery-item { background: var(--card-bg); border: 1px solid rgba(244,241,235,0.06); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; }
  .gallery-item:hover { transform: translateY(-4px); border-color: rgba(212,160,23,0.3); }
  .gallery-img-wrapper { width: 100%; height: 260px; overflow: hidden; position: relative; background: #111; }
  .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
  .gallery-item:hover .gallery-img-wrapper img { transform: scale(1.03); }
  .gallery-meta { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 0.75rem; }
  .gallery-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--white); line-height: 1.3; }
  .gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
  .gallery-credit { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 0.05em; color: rgba(244,241,235,0.35); text-transform: uppercase; }
  
  .badge { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; }
  .badge-gold { background: var(--gold); color: #000; }
  .badge-outline { background: rgba(212,160,23,0.12); color: var(--gold); border: 1px solid rgba(212,160,23,0.3); }
  
  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
  nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .section { padding: 3rem 1.25rem; }
    .gallery-grid { grid-template-columns: 1fr; }
  }


/* ── contatti.html ── */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #D4A017; --gold-light: #F0C842; --black: #0a0a0a; --white: #f4f1eb; --card-bg: #141414; --surface: #1a1a1a; --orange: #C8401A; --success: #2ec4b6; }
  html { scroll-behavior: smooth; }
  body { margin-top: 58px; font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,160,23,0.15); }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header { padding: 2rem 2.5rem 0.5rem; border-bottom: 1px solid rgba(212,160,23,0.1); position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.07) 0%, transparent 65%); pointer-events: none; }
  .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .page-eyebrow::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; line-height: 0.9; color: var(--white); margin-bottom: 1rem; }
  .page-desc { font-size: 1rem; color: rgba(244,241,235,0.5); max-width: 750px; line-height: 1.7; }
  .section { padding: 1.5rem 2.5rem 4rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
  .section-label::before { content: ''; display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1; margin-bottom: 2rem; color: var(--white); }
  
  /* GRID CONTATTI & INPUTS */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
  .contact-channels { display: flex; flex-direction: column; gap: 1rem; }
  .channel-card { background: var(--card-bg); border: 1px solid rgba(244,241,235,0.07); padding: 1.75rem; border-top: 2px solid rgba(212,160,23,0.3); transition: border-color 0.2s; }
  .channel-card:hover { border-top-color: var(--gold); }
  .channel-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.35); margin-bottom: 0.4rem; }
  .channel-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--white); text-transform: uppercase; }
  .channel-value a { color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
  
  .contact-form { background: var(--surface); border: 1px solid rgba(244,241,235,0.06); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,235,0.5); }
  .form-control { font-family: 'Barlow', sans-serif; background: var(--card-bg); border: 1px solid rgba(244,241,235,0.1); padding: 0.85rem 1rem; color: var(--white); font-size: 0.95rem; transition: border-color 0.2s, outline 0.2s; }
  .form-control:focus { outline: none; border-color: var(--gold); }
  textarea.form-control { resize: vertical; min-height: 120px; }
  
  .btn-submit { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2rem; background: var(--gold); color: #000; border: none; cursor: pointer; transition: background 0.15s; width: max-content; display: inline-flex; align-items: center; gap: 0.5rem; }
  .btn-submit:hover { background: var(--gold-light); }
  .btn-submit:disabled { background: #555; color: #aaa; cursor: not-allowed; }
  
  /* STILE FUMETTO DI NOTIFICA (TOAST) */
  #toast-notification { position: fixed; bottom: 2rem; right: -400px; z-index: 1000; background: #141414; border-left: 4px solid var(--success); padding: 1.2rem 1.8rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 1rem; transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-family: 'Barlow', sans-serif; }
  #toast-notification.show { right: 2rem; }
  #toast-notification.error { border-left-color: var(--orange); }
  #toast-notification i { font-size: 1.4rem; color: var(--success); }
  #toast-notification.error i { color: var(--orange); }
  #toast-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

  footer { padding: 1.5rem 2.5rem; border-top: 1px solid rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(244,241,235,0.25); flex-wrap: wrap; gap: 0.5rem; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
  .breadcrumb-bar { background: #0a0a0a; border-bottom: 1px solid rgba(212,160,23,0.1); padding: 0.45rem 2.5rem; display: flex; align-items: center; gap: 0.5rem; position: sticky; top: 58px; z-index: 99; }
  .breadcrumb-bar a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,235,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb-bar a:hover { color: var(--gold); }
  .breadcrumb-bar .sep { font-size: 0.72rem; color: rgba(244,241,235,0.15); }
  .breadcrumb-bar .current { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
  .record-alert { background: var(--gold); color: #000; padding: 0.75rem 2.5rem; transition: opacity 0.3s ease; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
  .blink { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #000; animation: blink 1.2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  #torna-su { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--gold); font-size: 1rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(4px); }
  #torna-su:hover { background: rgba(212,160,23,0.3); border-color: var(--gold); }
  .back-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.8rem; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,160,23,0.4); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
  .back-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
  nav {padding: 0.75rem 1.25rem;} 
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0; position: fixed; top: 48px; left: 0; right: 0;
      background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,160,23,0.15); z-index: 101; padding: 0.5rem 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 0.75rem 1.5rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(244,241,235,0.05); }
    .breadcrumb-bar { top: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; }
    .btn-submit { width: 100%; text-align: center; justify-content: center; }
  }



/* ── PROFILO FOTO ── */
.profilo-foto-wrapper {
  width: 70%;
  flex: none;
  max-height: 280px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.profilo-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── SIDEBAR ── */
.page-layout { display: grid; grid-template-columns: 1fr 220px; gap: 2rem; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: .75rem; position: sticky; top: 140px; }
.sidebar-block { background: #141414; border: 1px solid rgba(212,160,23,.2); border-left: 2px solid #D4A017; padding: .9rem 1rem; }
.sidebar-block-label { font-family: 'Barlow Condensed', sans-serif; font-size: .58rem; color: #D4A017; letter-spacing: .12em; font-weight: 700; text-transform: uppercase; margin-bottom: .5rem; }
.sidebar-block-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .9rem; text-transform: uppercase; color: var(--white); line-height: 1.3; }
.sidebar-block-sub { font-size: .7rem; color: rgba(244,241,235,.4); margin-top: .2rem; }
.sidebar-pb { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: #D4A017; line-height: 1; }
.sidebar-date { display: inline-block; margin-top: .5rem; background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3); padding: .2rem .6rem; font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; color: #D4A017; letter-spacing: .08em; }
.sidebar-instagram { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.sidebar-instagram-icon { width: 26px; height: 26px; border-radius: 6px; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-instagram-handle { font-size: .78rem; color: rgba(244,241,235,.6); }
.sidebar-links { background: #141414; border: 1px solid rgba(255,255,255,.06); padding: .9rem 1rem; }
.sidebar-links a { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(244,241,235,.45); text-decoration: none; padding: .2rem 0; transition: color .2s; }
.sidebar-links a:hover { color: #D4A017; }

@media (max-width: 768px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
/* ── COOKIE BANNER ── */
#cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #111; border-top: 1px solid rgba(212,160,23,0.25); padding: 1rem 2rem; flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
#cookie-banner p { font-size: 0.82rem; color: rgba(244,241,235,0.6); line-height: 1.6; flex: 1; min-width: 200px; margin: 0; }
#cookie-banner p a { color: var(--gold); text-decoration: none; }
#cookie-banner p a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
#cookie-accept { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.4rem; background: var(--gold); color: #000; border: none; cursor: pointer; transition: background 0.2s; }
#cookie-accept:hover { background: var(--gold-light); }
#cookie-refuse { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.4rem; background: transparent; color: rgba(244,241,235,0.4); border: 1px solid rgba(244,241,235,0.15); cursor: pointer; transition: all 0.2s; }
#cookie-refuse:hover { color: var(--white); border-color: rgba(244,241,235,0.4); }
@media (max-width: 768px) { #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.25rem; } .cookie-btns { width: 100%; } #cookie-accept, #cookie-refuse { flex: 1; text-align: center; } }

/* ── FIX PER CELLULARI (Risolve il problema dell'hamburger e della tabella) ── */
@media (max-width: 768px) {
  /* Impedisce alla pagina di allargarsi oltre lo schermo */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Sistema il layout generale della pagina Palmarès */
  .page-layout {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  /* Forza la tabella a rimanere dentro la sua area scorrevole */
  .main-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Riduce leggermente i margini interni della tabella per farla stare comoda */
  .medals-table th, .medals-table td {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
  }
  
  
  .breadcrumb-bar { 
    position: relative !important; 
    top: 0 !important; 
  }

  .record-alert { 
    margin-top: 0 !important; 
    position: relative !important;
	min-height: 110px !important; /* Forza l'altezza di 4 righe per evitare lo sbalzo */
    display: flex !important;
    align-items: center !important; /* Mantiene il testo corto perfettamente centrato in verticale */
  }
  
  .sidebar {
    display: none !important;
  }
}

/* --- Fix Spazio Nero per TUTTE le pagine (Solo PC e Tablet) --- */
@media (min-width: 992px) {
  .page-layout {
    grid-template-columns: 1fr 300px !important; /* Allarga la colonna di sinistra e fissa la sidebar a 300px */
    gap: 4rem !important; /* Distanza elegante tra il testo e la sidebar */
    max-width: 1400px !important; /* Mantiene il sito compatto ed elegante al centro nei monitor giganti */
    margin: 0 auto !important; 
  }

  .main-content {
    width: 100% !important; /* Sfrutta tutto lo spazio guadagnato a sinistra */
  }
}