/* ============================================
   Matteo Cirillo — sito personale
   Homepage: sfondo bianco, immagine incorniciata,
   testo minimo, firma animata
   ============================================ */

:root{
  --bg: #ffffff;
  --ink: #131313;
  --ink-soft: #6b6b6b;
  --signature: #8a6d3b;
  --line: #e9e7e2;
  --maxw: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

strong, b{
  font-weight: 700 !important;
}

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */
header.site-nav{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner{
  max-width: var(--maxw);
  margin:0 auto;
  padding: 22px 32px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.brand{
  font-family: 'Segoe Script', 'Brush Script MT', cursive;
  font-size: 1.9rem;
  color: var(--signature);
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: sig-reveal 1.4s 0.2s ease forwards;
}
nav.links{
  display:flex;
  gap: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
nav.links a{ position:relative; padding-bottom:3px; border-bottom: 1px solid transparent; }
nav.links a:hover{ border-bottom-color: var(--ink); }
nav.links a.active{ border-bottom-color: var(--ink); }
.nav-toggle{ display: none; }

/* ---------- HERO ---------- */
.hero-frame{ padding: 0; }
.photo-frame{
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background:#111;
}
.photo-frame img{
  width:100%; height:100%;
  object-fit: cover;
  object-position: center 22%;
  display:block;
}
.photo-frame::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 38%, rgba(0,0,0,0) 62%);
}

.hero-overlay{
  position: absolute;
  z-index: 2;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 460px;
  color: #fff;
  text-align: left;
}
@keyframes sig-reveal{ to{ clip-path: inset(0 0 0 0); } }

.hero-overlay h1{
  font-family:'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0 0 8px;
  color: #fff;
  padding-left: 8px;
}
.hero-overlay .role{
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  padding-left: 8px;
}
.hero-overlay p{
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.9;
  background: #000;
  padding: 3px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: 0;
}

/* ---------- FOOTER ---------- */
.site-footer{
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left{
  display:flex;
  align-items:center;
  gap: 16px;
}
.icon-link{
  color: var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  padding:4px;
  cursor:pointer;
}
.icon-link:hover{ opacity: 0.75; }
.icon-facebook{ color: #1877F2; }
.icon-instagram{ color: #C13584; }
.search-input{
  width: 160px;
  opacity: 1;
  padding: 4px 2px;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
}
.footer-right{
  display:flex;
  align-items:center;
  gap: 26px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-right a{ letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.76rem; color: var(--ink); }
.footer-right a:hover{ opacity: 0.75; }
.footer-right .copy{ font-size: 0.78rem; color: var(--ink); }

/* ---------- CHI SONO ---------- */
.chi-sono{ padding: 36px 0 100px; }
.chi-sono h2{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.chi-sono-top{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 56px;
}
.chi-sono-portraits{
  display: flex;
  gap: 14px;
}
.chi-sono-portraits img{
  width: 50%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.chi-sono-portrait-single img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}
.chi-sono-bio p{
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
}
.chi-sono-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.chi-sono-gallery img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.chi-sono-awards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.chi-sono-awards figure{
  margin: 0;
}
.chi-sono-awards img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.chi-sono-awards figcaption{
  margin-top: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: center;
}
.chi-sono-reflection{
  max-width: 720px;
  margin: 0 auto;
}
.chi-sono-reflection p{
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 22px;
}
.chi-sono-reflection p:last-child{
  margin-bottom: 0;
}

/* ---------- CINEMA ---------- */
.cinema-page{ padding: 32px 0 100px; }
.cinema-page-label{
  margin-bottom: 20px;
}
.spettacoli-page{ padding-top: 6px; }
.spettacoli-page .cinema-page-label{ margin-bottom: 8px; }
.spettacoli-page .cinema-project{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.spettacoli-page .cinema-divider{
  margin: 52px 0;
}
.spettacoli-page .cinema-info h3{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1;
  margin: -0.16em 0 6px;
}
.spettacoli-page .cinema-meta{
  margin-top: 14px;
}
.cinema-note{
  color: var(--ink-soft);
  margin-bottom: 18px !important;
}
.cinema-title-sub{
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.42em;
  line-height: 1.3;
  color: var(--ink-soft);
  margin-top: 6px;
}
.cinema-page-label span{
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cinema-hero{
  position: relative;
  width: 100%;
  height: 66vh;
  min-height: 400px;
  overflow: hidden;
  background: #111;
  margin-bottom: 56px;
}
.cinema-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.cinema-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.82) 100%);
}
.cinema-hero-overlay{
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 8%;
  color: #fff;
}
.cinema-hero-kicker{
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.cinema-hero-overlay h3{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  letter-spacing: 0.01em;
  margin: 0;
  color: #fff;
}
.cinema-project{
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.cinema-project:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cinema-project-header{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.cinema-project-header--text-only{
  grid-template-columns: 1fr;
}
.cinema-poster img:not(.mini-gallery-slide){
  width: 100%;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.cinema-poster img:not(.mini-gallery-slide):hover{
  opacity: 0.88;
}
.poster-lightbox{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.poster-lightbox.active{
  display: flex;
}
.poster-lightbox img{
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.2s ease;
}
.lightbox-nav:hover{
  background: rgba(255,255,255,0.32);
}
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }
.cinema-duo{
  display: flex;
  gap: 8px;
}
.cinema-duo img{
  width: 50%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.cinema-info h3{
  font-family:'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0 0 10px;
  color: var(--ink);
}
.cinema-meta{
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cinema-info p{
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 18px;
}
.cinema-info p:last-child{ margin-bottom: 0; }
.cinema-credit{
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-style: italic;
}
.cinema-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cinema-gallery--six{
  grid-template-columns: repeat(3, 1fr);
}
.cinema-divider{
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0 56px;
}
.cinema-info p a{
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.cinema-info p a:hover{
  opacity: 0.7;
}
.video-band{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  background: #101010;
  padding: 44px 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.video-thumb-row{
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.video-band-label{
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px;
}
.yt-card{
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  overflow: hidden;
  background: #141414;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.yt-card:hover{
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  transform: translateY(-3px);
}
.yt-player{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.yt-player img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}
.yt-player-top{
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0));
}
.yt-player-channel{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.yt-avatar{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3a3a3a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.yt-player-text{ min-width: 0; }
.yt-vtitle{
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}
.yt-vchannel{
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}
.yt-player-iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 30;
}
.yt-card.is-playing{
  cursor: default;
}
.yt-card.is-playing:hover{
  transform: none;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
}
.yt-player-fallback{
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(10,10,10,0.94);
  text-decoration: none;
}
.yt-player-fallback span{
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.yt-player-fallback:hover{
  background: rgba(20,20,20,0.98);
}
.yt-player-fallback:hover span{
  text-decoration: underline;
}
.yt-player-icons{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #fff;
}
.yt-player-icons svg{
  width: 15px;
  height: 15px;
  opacity: 0.9;
}
.yt-player-icons .yt-cc{
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 2px;
  padding: 0 3px;
  line-height: 1.4;
}
.yt-player-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20,20,20,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.yt-card:hover .yt-player-play{
  background: rgba(20,20,20,0.72);
  transform: translate(-50%,-50%) scale(1.06);
}
.yt-player-play svg{
  width: 20px;
  height: 20px;
  margin-left: 2px;
}
.yt-player-bottom{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 10px 9px;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7));
}
.yt-player-bar{
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: visible;
}
.yt-player-bar::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6%;
  border-radius: 2px;
  background: #e2201f;
}
.yt-player-bar::after{
  content: "";
  position: absolute;
  left: 6%; top: 50%;
  width: 9px; height: 9px;
  margin-top: -4.5px; margin-left: -4.5px;
  border-radius: 50%;
  background: #e2201f;
}
.yt-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #1c1c1c;
}
.yt-actions-left{
  display: flex;
  align-items: center;
  gap: 14px;
}
.yt-actions-left svg{
  width: 16px;
  height: 16px;
  opacity: 0.75;
}
.yt-actions-badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e2201f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.yt-actions-badge--alt{
  background: #3a3a3a;
}
.yt-player--external{
  background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-player--external .yt-player-play{
  position: static;
  transform: none;
}
.yt-player-label{
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.yt-actions-badge svg{
  width: 13px;
  height: 13px;
}
.yt-info{
  padding: 16px 16px 18px;
}
.yt-info-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.yt-pill{
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141414;
  background: #e8c65a;
  padding: 4px 10px;
  border-radius: 20px;
}
.yt-pill--alt{
  background: #3a3a3a;
  color: #fff;
}
.yt-date{
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  white-space: nowrap;
}
.yt-info h4{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.yt-info p{
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 14px;
}
.yt-info-footer{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.mini-gallery{
  margin-top: 16px;
}
.mini-gallery-label{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.mini-gallery-viewport{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.mini-gallery-slide{
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  z-index: 1;
}
.mini-gallery-slide.active{
  display: block;
}
.mini-gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(20,20,20,0.55);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mini-gallery-nav:hover{
  background: rgba(20,20,20,0.8);
}
.mini-gallery-prev{ left: 10px; }
.mini-gallery-next{ right: 10px; }
.cinema-gallery img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px){
  .nav-inner{ position: relative; padding: 14px 20px; }
  .brand{ font-size: 1.3rem; }
  .nav-toggle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .nav-toggle span{
    display: block;
    height: 2px;
    background: var(--ink);
    transition: width 0.2s ease;
  }
  .nav-toggle span:nth-child(1){ width: 22px; }
  .nav-toggle span:nth-child(2){ width: 16px; }
  .nav-toggle span:nth-child(3){ width: 22px; }
  .nav-toggle.open span:nth-child(2){ width: 22px; }
  nav.links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    padding: 4px 20px 10px;
    font-size: 0.74rem;
  }
  nav.links.open{ display: flex; }
  nav.links a{ padding: 12px 0; border-bottom: 1px solid var(--line); }
  nav.links a:last-child{ border-bottom: none; }
  .photo-frame{ height: 76vh; }
  .hero-overlay{ left: 6%; right: 6%; max-width: none; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
  .chi-sono-top{ grid-template-columns: 1fr; gap: 24px; }
  .chi-sono-portraits{ max-width: 280px; }
  .chi-sono-gallery{ grid-template-columns: repeat(2, 1fr); }
  .chi-sono-awards{ grid-template-columns: repeat(2, 1fr); }
  .cinema-project-header{ grid-template-columns: 1fr; gap: 24px; }
  .cinema-info{ order: -1; }
  .spettacoli-page .cinema-info{ display: contents; }
  .spettacoli-page .cinema-poster{ display: contents; }
  .spettacoli-page .cinema-info-head{ order: -4; }
  .spettacoli-page .cinema-poster img:not(.mini-gallery-slide){ order: -3; max-width: 300px; margin: 0 auto 4px; }
  .spettacoli-page .cinema-info-body{ order: -2; margin-top: 4px; }
  .spettacoli-page .mini-gallery{ order: -1; width: 100%; max-width: 300px; margin: 20px auto 0; }
  .spettacoli-page .cinema-poster img:not(.mini-gallery-slide){ width: 100%; }
  .cinema-poster{ max-width: 300px; margin: 0 auto; }
  .cinema-poster img:not(.mini-gallery-slide){ border-radius: 10px; box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
  .mini-gallery-viewport{ border-radius: 10px; box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
  .mini-gallery-nav{ width: 40px; height: 40px; font-size: 0.95rem; }
  .mini-gallery-prev{ left: 4px; }
  .mini-gallery-next{ right: 4px; }
  .cinema-duo{ max-width: 280px; margin: 0 auto; }
  .cinema-gallery{ grid-template-columns: repeat(2, 1fr); }
  .cinema-hero{ height: auto; aspect-ratio: 3 / 2; min-height: 0; }
}

/* ---------- SCROLL REVEAL (disattivato: contenuto sempre visibile) ---------- */
.reveal{
  opacity: 1;
  transform: none;
}

/* ---------- EVENTI (placeholder) ---------- */
.eventi-heading{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 8px 0 32px;
  color: var(--ink);
}
.eventi-list{
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 20px;
}
.eventi-card{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.eventi-card-poster img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  display: block;
}
.eventi-card-info h3{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: var(--ink);
}
.eventi-date-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.eventi-date-list li{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.98rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.eventi-date-list li:last-child{ border-bottom: none; }
.eventi-date{
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.eventi-place{
  color: var(--ink-soft);
  text-align: right;
}
.eventi-note{
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 20px 0 60px;
}
.eventi-note a{
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.eventi-note a:hover{ opacity: 0.7; }
@media (max-width: 640px){
  .eventi-card{ grid-template-columns: 1fr; }
  .eventi-card-poster img{ max-width: 220px; margin: 0 auto; }
  .eventi-date-list li{ flex-direction: column; gap: 2px; }
  .eventi-place{ text-align: left; }
}

/* ---------- RASSEGNA STAMPA ---------- */
.press-heading{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 8px 0 44px;
  color: var(--ink);
}
.press-layout{
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 36px;
  align-items: start;
}
.press-rail{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 10px;
  overflow: hidden;
}
.press-clip{
  width: 100%;
}
.press-clip img{
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.press-main{
  min-width: 0;
}
@media (max-width: 1100px){
  .press-layout{ grid-template-columns: 1fr; }
  .press-rail{ display: none; }
}
.press-group{
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.press-group:first-child{
  margin-top: 8px;
}
.press-group + .press-group{
  margin-top: 60px;
}
.press-group-title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 30px;
}
.press-item{
  text-align: center;
}
.press-item + .press-item{
  margin-top: 40px;
}
.press-title{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0 auto 14px;
  color: var(--ink);
}
.press-dek{
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  max-width: 480px;
  margin: 0 auto 16px;
}
.press-quote{
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--ink);
  max-width: 480px;
  margin: 0 auto 16px;
}
.press-quote::before{
  content: '\201C';
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ink-soft);
  margin-bottom: -4px;
}
.press-source{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a4fd6;
  background: #f4f6fc;
  border: 1px solid #d7e0f7;
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.press-source-icon{ flex-shrink: 0; }
.press-source:hover{ background: #e8edfb; border-color: #b9c8f0; }
.press-meta{
  font-family: 'Playfair Display', serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 0 0 6px;
  text-transform: uppercase;
  font-style: italic;
}
.press-meta::before,
.press-meta::after{
  content: '\2014';
  margin: 0 8px;
}

/* ---------- COLLABORAZIONI ---------- */
.collab-title{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 8px 0 18px;
  color: var(--ink);
}
.collab-intro{
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 40px;
}
.collab-formats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  margin-bottom: 8px;
}
.collab-format{
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 22px;
}
.collab-format-photo{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.collab-format-photo::after{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(17,17,17,0) 38%, rgba(17,17,17,0.65) 72%, #111 100%);
}
.collab-format:not(:has(.collab-format-photo)){
  padding-top: 22px;
}
.collab-format h4{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.12rem;
  margin: 18px 20px 8px;
  color: #fff;
}
.collab-format p{
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
  padding: 0 20px;
}
.collab-form-wrap{
  max-width: 680px;
}
.collab-form-wrap h3{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.collab-form-wrap > p{
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.collab-form-alt{
  margin-bottom: 30px !important;
}
.collab-form-alt a{
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.collab-form-alt a:hover{ opacity: 0.7; }
.collab-form{
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}
.collab-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.collab-field{
  margin-bottom: 20px;
}
.collab-field label{
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.collab-field input[type="text"],
.collab-field input[type="email"],
.collab-field select,
.collab-field textarea{
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  box-sizing: border-box;
}
.collab-field textarea{
  resize: vertical;
  min-height: 130px;
  font-family: 'Inter', sans-serif;
}
.collab-field input:focus,
.collab-field select:focus,
.collab-field textarea:focus{
  outline: none;
  border-color: var(--ink);
}
.collab-consent{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
  cursor: pointer;
}
.collab-consent input{
  margin-top: 3px;
  flex-shrink: 0;
}
.collab-consent a{
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.collab-consent a:hover{ opacity: 0.7; }
.collab-error{
  color: #b3261e;
  font-size: 0.86rem;
  margin: -8px 0 18px;
}
.collab-submit{
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 15px 34px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.collab-submit:hover{ opacity: 0.85; }
.collab-note{
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.collab-privacy{
  max-width: 720px;
  padding-bottom: 60px;
}
.collab-privacy h3{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 18px;
  color: var(--ink);
}
.collab-privacy p{
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.collab-privacy p strong{
  color: var(--ink);
}
.collab-privacy-note{
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px){
  .collab-formats{ grid-template-columns: 1fr; }
  .collab-row{ grid-template-columns: 1fr; gap: 0; }
  .collab-form{ padding: 22px; }
}
