  :root {
    --black: #0a0805;
    --deep: #110e09;
    --red: #c0392b;
    --amber: #e67e22;
    --gold: #d4a017;
    --cream: #f0e6d3;
    --gray: #7a6a58;
    --white: #faf5ee;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
	html {	  scroll-behavior: smooth;	  overflow-x: hidden;	}

  body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* GRAIN OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: linear-gradient(to bottom, rgba(10,8,5,0.95), transparent);
    backdrop-filter: blur(2px);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
  }

  .nav-links a:hover { opacity: 1; color: var(--gold); }

  /* HERO */
  #hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(192,57,43,0.25) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, rgba(17,14,9,0.5) 0%, transparent 70%),
      linear-gradient(160deg, #0a0805 0%, #1a1208 50%, #0a0805 100%);
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(212,160,23,0.03) 80px, rgba(212,160,23,0.03) 81px);
  }

  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
  }

  .hero-tag {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease both;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 15vw, 14rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
    color: var(--cream);
    text-shadow: 0 0 80px rgba(192,57,43,0.3), 4px 4px 0 rgba(192,57,43,0.4);
    animation: fadeUp 1s 0.2s ease both;
  }

  .hero-title span { color: var(--red); }

  .hero-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 1.5rem;
    animation: fadeUp 1s 0.4s ease both;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
  }

  /* HERO LOGO */
  .hero-logo {
    display: block;
    margin: 0 auto 1.8rem;
    max-width: 220px;
    width: 100%;
    height: auto;
    animation: fadeUp 1s ease both;
    filter: drop-shadow(0 0 30px rgba(212,160,23,0.35));
  }

  .hero-scroll span {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gray);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  /* SECTIONS */
  section { padding: 7rem 4rem; }

  .section-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 3rem;
  }

  /* ABOUT */
  #about {
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(240,230,211,0.75);
    margin-bottom: 1.2rem;
  }

  .members {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .member {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border: 1px solid rgba(212,160,23,0.15);
    background: rgba(212,160,23,0.03);
    transition: border-color 0.3s, background 0.3s;
  }

  .member:hover {
    border-color: rgba(212,160,23,0.4);
    background: rgba(212,160,23,0.07);
  }

  .member-icon {
    font-size: 2.2rem;
    width: 150px;
    text-align: center;
    flex-shrink: 0;
  }

  .member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--gold);
  }

  .member-role {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.2em;
  }

  /* GALLERY */
  #gallery {
    background: var(--black);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 4px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

  .gallery-item:nth-child(1) .gallery-placeholder {
    background: linear-gradient(145deg, #1a0a08, #2d1510);
  }
  .gallery-item:nth-child(2) .gallery-placeholder {
    background: linear-gradient(145deg, #0d1a08, #1a2d10);
  }
  .gallery-item:nth-child(3) .gallery-placeholder {
    background: linear-gradient(145deg, #0a0d1a, #10152d);
  }
  .gallery-item:nth-child(4) .gallery-placeholder {
    background: linear-gradient(145deg, #1a150a, #2d2010);
  }
  .gallery-item:nth-child(5) .gallery-placeholder {
    background: linear-gradient(145deg, #1a0a14, #2d1020);
  }

  .gallery-placeholder-icon { font-size: 3rem; opacity: 0.4; }
  .gallery-placeholder-text {
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(240,230,211,0.3);
    text-transform: uppercase;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.12);
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay-icon { font-size: 2.5rem; }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,8,5,0.97);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .lightbox.active { display: flex; }

  .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
  }

  .lightbox-placeholder {
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Special Elite', cursive;
    color: var(--gray);
    font-size: 1.2rem;
    border: 1px solid rgba(212,160,23,0.2);
  }

  .lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
  }

  /* VIDEOS */
  #videos {
    background: var(--deep);
  }

  .videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .video-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    overflow: hidden;
    border: 1px solid rgba(212,160,23,0.1);
    cursor: pointer;
  }

  .video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }

  .video-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: opacity 0.3s;
  }

  .video-item:hover .video-thumb { opacity: 0; }
  .video-item:hover iframe { pointer-events: all; }

  .video-thumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a08, #0a0805);
    z-index: 0;
  }

  .play-btn {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }

  .play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--gold);
    margin-left: 4px;
  }

  .video-title {
    position: relative;
    z-index: 1;
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--cream);
    text-align: center;
    padding: 0 2rem;
  }

  /* VIDEO ADD FORM */
  .video-add-form {
    margin-top: 2rem;
    display: none;
    gap: 1rem;
    align-items: flex-end;
  }

  .video-add-form.visible { display: flex; }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .form-group label {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
  }

  .form-group input, .form-group textarea, .form-group select {
    background: rgba(240,230,211,0.05);
    border: 1px solid rgba(212,160,23,0.25);
    color: var(--cream);
    padding: 0.7rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }

/* NEWS */
 #news { background: var(--dark); }
  .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
  .news-card { border-left: 3px solid var(--amber); padding-left: 1.5rem; }
  .news-date { font-family: 'Special Elite', cursive; font-size: .75rem; letter-spacing: .2em; color: var(--amber); text-transform: uppercase; margin-bottom: .5rem; }
  .news-title { font-family: 'Bebas Neue', sans-serif;; font-size: 1.5rem; font-weight: 500; color: var(--cream); margin-bottom: .75rem; line-height: 1.3; }
  .news-body { font-size: .9rem; line-height: 1.7; color: var(--offwhite); opacity: .8; }
  .news-read { display: inline-block; margin-top: 1rem; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--amber); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
  .news-read:hover { border-color: var(--amber); }


  /* DATES / CALENDAR */
  #dates {
    background: var(--black);
  }

  .dates-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 900px;
  }

  .events-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .event-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.8rem 1rem;
    border-bottom: 1px solid rgba(212,160,23,0.12);
    border-left: 2px solid transparent;
    animation: fadeUp 0.5s ease both;
    transition: background 0.25s, border-left-color 0.25s, padding-left 0.25s;
  }

  .event-item:hover {
    background: rgba(212,160,23,0.04);
    border-left-color: var(--red);
    padding-left: 1.5rem;
  }

  .event-date-box {
    text-align: center;
    border: 1px solid var(--red);
    padding: 0.6rem 0.4rem;
    flex-shrink: 0;
  }

  .event-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--red);
    line-height: 1;
  }

  .event-month {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
  }

  .event-time-pill {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-top: 0.4rem;
  }

  .event-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .event-venue {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    line-height: 1.1;
  }

  .event-location {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.15em;
  }

  .event-description {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: rgba(240,230,211,0.55);
    line-height: 1.5;
    margin-top: 0.3rem;
    max-width: 480px;
  }

  .event-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .event-ticket {
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .event-ticket:hover {
    background: var(--gold);
    color: var(--black);
  }

  .event-locandina {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(192,57,43,0.4);
    color: var(--red);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .event-locandina:hover {
    background: var(--red);
    color: var(--cream);
  }

  .event-delete {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(192,57,43,0.3);
    color: var(--red);
    background: none;
    cursor: pointer;
    display: none;
    transition: background 0.2s;
  }

  /* CONTACTS */
  
    #contact { background: var(--dark); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-text { font-size: 1rem; line-height: 1.8; color: var(--offwhite); opacity: .85; }
  .contact-socials { margin-top: 2rem; display: flex; gap: 1rem; }
  .social-btn {
    width: 44px; height: 44px; border: 1px solid rgba(200,130,26,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--amber); text-decoration: none; font-size: 1.1rem;
    transition: border-color .2s, background .2s;
  }
  .social-btn:hover { border-color: var(--amber); background: rgba(200,130,26,.1); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .contact-form input, .contact-form textarea {
    background: var(--mid); border: 1px solid rgba(200,130,26,.2); border-radius: 3px;
    padding: .85rem 1rem; color: var(--cream);
    font-family: 'Lato', sans-serif; font-size: .95rem; outline: none; transition: border-color .2s;
  }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
  .contact-form textarea { min-height: 130px; resize: vertical; }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,234,214,.3); }
  
  
/* SOCIAL */	.social-row {	  display: flex;	  flex-direction: row;	  gap: 0.8rem;	  margin: 1.8rem 0;	  flex-wrap: wrap;	}	.social-pill {	  display: inline-flex;	  align-items: center;	  gap: 0.5rem;	  padding: 0.65rem 1.2rem;	  border-radius: 4px;	  font-family: 'Special Elite', cursive;	  font-size: 0.85rem;	  letter-spacing: 0.12em;	  text-decoration: none;	  color: #fff;	  transition: opacity 0.2s, transform 0.15s;	  cursor: pointer;	}	.social-pill svg {	  width: 18px;	  height: 18px;	  flex-shrink: 0;	}	.social-pill:hover { opacity: 0.85; transform: translateY(-2px); }	.social-pill.insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }	.social-pill.fb    { background: #1877F2; }	.social-pill.yt    { background: #FF0000; }	@media (max-width: 600px) {	  .social-row { flex-direction: column; align-items: stretch; }	  .social-pill { justify-content: center; padding: 0.75rem 1rem; font-size: 0.9rem; }	}
	.container-social {
		max-width: 300px;
		margin: 1.5rem 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	
  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(212,160,23,0.1);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--gold);
  }

  footer p {
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gray);
  }

  /* SCROLL ANIMATIONS */
  .slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .slide-in-left.visible,
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* stagger delay per ogni item */
  .slide-delay-1 { transition-delay: 0.1s; }
  .slide-delay-2 { transition-delay: 0.2s; }
  .slide-delay-3 { transition-delay: 0.3s; }
  .slide-delay-4 { transition-delay: 0.4s; }
  .slide-delay-5 { transition-delay: 0.5s; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* NO EVENTS */
  .no-events {
    font-family: 'Special Elite', cursive;
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212,160,23,0.12);
  }

  /* LOCANDINA LINK */
  .locandina-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212,160,23,0.4);
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .locandina-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }
  .locandina-link svg {
    flex-shrink: 0;
  }

  /* DIVIDER */
  .divider {
    width: 60px;
    height: 2px;
    background: var(--red);
    margin-bottom: 2rem;
  }

  /* hamburger hidden on desktop */
  .nav-hamburger { display: none; }
  #nav-toggle { display: none; }

  /* ── TABLET ─────────────────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    section { padding: 5rem 1.5rem; }
    #about { grid-template-columns: 1fr; gap: 3rem; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: span 1; }
    .videos-grid { grid-template-columns: 1fr; }
    .dates-layout { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

  /* ── MOBILE ──────────────────────────────────────── */
  @media (max-width: 600px) {

    /* NAV — hamburger */
	nav {	  padding: 1rem 1.2rem;	  background: rgba(10,8,5,0.97);	  flex-wrap: wrap;	  width: 100%;	  max-width: 100vw;	  overflow: hidden;	  box-sizing: border-box;	}
    .nav-logo { font-size: 1.3rem; }

    .nav-hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 300;
      background: none;
      border: none;
      padding: 4px;	  	  margin-left: auto;	  flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--gold);
      transition: transform 0.3s, opacity 0.3s;
    }	/* CONTACTS — fix mobile */	.contact-inner {	  grid-template-columns: 1fr;	  gap: 2rem;	}	.contact-form input,	.contact-form textarea {	  width: 100%;	  max-width: 100%;	  box-sizing: border-box;	}

    /* Menu chiuso: nasconde i link */
    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 2rem 0 1.5rem;
      border-top: 1px solid rgba(212,160,23,0.15);
      margin-top: 0.5rem;
      list-style: none;
    }
    /* Menu aperto via JS */
    .nav-links.open {
      display: flex;
    }
    .nav-links a { font-size: 1.2rem; letter-spacing: 0.3em; opacity: 1; }

    /* Animazione hamburger → X */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* HERO */
    #hero { height: 100svh; }
    .hero-logo { max-width: 160px; margin-bottom: 1.2rem; }
    .hero-sub { font-size: 0.75rem; letter-spacing: 0.25em; }

    /* SECTIONS */
    section { padding: 4rem 1.2rem; }
    .section-title { font-size: clamp(2.4rem, 10vw, 3.5rem); margin-bottom: 2rem; }

    /* ABOUT */
    #about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.2rem; }
    .member { gap: 1rem; padding: 1rem; }
    .member-icon { width: 70px; }
    .member-icon img { width: 70px !important; height: 70px !important; object-fit: cover; border-radius: 2px; }
    .member-name { font-size: 1.15rem; }

    /* GALLERY */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 3px; }
    .gallery-item:first-child { grid-row: span 1; }
    .gallery-grid .gallery-item { height: 160px; }

    /* LIGHTBOX */
    .lightbox-content { max-width: 100vw; max-height: 100vh; padding: 0 0.5rem; }
    .lightbox-close {
      top: 1rem; right: 1rem;
      position: fixed;
      font-size: 1.2rem;
      background: rgba(10,8,5,0.8);
      padding: 0.4rem 0.8rem;
      border: 1px solid rgba(212,160,23,0.3);
    }
    .lightbox-placeholder { width: 90vw; height: 60vw; font-size: 0.9rem; }

    /* VIDEOS */
    .videos-grid { grid-template-columns: 1fr; gap: 1.2rem; }

    /* DATES */
    .event-item {
      grid-template-columns: 72px 1fr;
      grid-template-rows: auto auto;
      gap: 0.8rem 1rem;
      padding: 1.2rem 0.5rem;
    }
    .event-actions {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding-top: 0.4rem;
      border-top: 1px solid rgba(212,160,23,0.08);
    }
    .event-date-box { padding: 0.5rem 0.3rem; }
    .event-day { font-size: 1.9rem; }
    .event-venue { font-size: 1.2rem; }
    .event-description { font-size: 0.82rem; max-width: 100%; }

    /* CONTACTS */
    .contacts-email { font-size: 1.3rem; word-break: break-all; }
    .social-links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }

    /* FOOTER */
    footer { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1.5rem 1.2rem; }
  }
