/* Eternal City Noise — design system sito */

:root {
  --bg: #080808;
  --bg-soft: #111;
  --panel: #171311;
  --paper: #f2eadb;
  --text: #f8f1e5;
  --muted: #c9bba3;
  --dim: #8d806e;
  --red: #d12027;
  --red-dark: #7f1116;
  --line: rgba(242, 234, 219, .18);
  --line-strong: rgba(242, 234, 219, .38);
  --shadow: 10px 10px 0 var(--red-dark);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(209, 32, 39, .20), transparent 31rem),
    radial-gradient(circle at 8% 72%, rgba(209, 32, 39, .10), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #111 48%, #080808 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .35;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, .18) 3px 4px);
  opacity: .35;
}

a { color: inherit; }

img {
  display: block;
  max-width: 100%;
}

/* Accessibilità */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--paper);
  color: #050505;
  font-weight: 900;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-start {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem;
  max-width: 11rem;
}

.lang-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: .95rem;
  line-height: 1;
  padding: .28rem .34rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .10);
  outline: none;
}

.lang-btn.is-active {
  border-color: var(--red);
  background: rgba(209, 32, 39, .22);
  box-shadow: 0 0 0 1px rgba(209, 32, 39, .35);
}

.lang-switcher--standalone {
  max-width: none;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 118px;
  height: auto;
  flex: 0 0 auto;
  filter: contrast(1.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .055em;
  line-height: 1;
  font-size: 1.02rem;
  white-space: nowrap;
}

.brand-sub {
  margin-top: .22rem;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: .55rem .62rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  outline: none;
}

.nav-links .booking-pill {
  color: #fff;
  background: var(--red);
  padding: .55rem .8rem;
}

/* Tipografia */
h1, h2, h3 {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* Hero — banner · testo · foto */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  margin: 0 0 1.05rem;
  font-size: clamp(3.7rem, 8.2vw, 7.4rem);
  line-height: .86;
  max-width: none;
}

.hero-copy {
  max-width: 52rem;
}

.lead {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.6rem 0 1rem;
}

.micro {
  margin: .85rem 0 0;
  color: var(--dim);
  font-size: .92rem;
}

/* Pulsanti */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  padding: .82rem 1.05rem;
  border: 2px solid var(--paper);
  color: var(--paper);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .84rem;
  font-family: inherit;
  box-shadow: 5px 5px 0 var(--red-dark);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--red-dark);
  outline: none;
}

.btn.primary {
  background: var(--paper);
  color: #080808;
  border-color: var(--paper);
}

.btn.red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, .035);
}

/* Banner hero — intero, non tagliato */
.hero-banner {
  border: 3px solid var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #050505;
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: stretch;
}

.hero-gallery figure {
  margin: 0;
  border: 2px solid var(--paper);
  overflow: hidden;
  background: #050505;
  box-shadow: 4px 4px 0 var(--red-dark);
}

.hero-gallery-main {
  min-height: 100%;
}

.hero-gallery-main img,
.hero-gallery-side img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.hero-gallery-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.hero-gallery-side figure {
  min-height: 0;
}

.hero-gallery-side img {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.poster {
  position: relative;
  border: 3px solid var(--paper);
  background: linear-gradient(150deg, rgba(209, 32, 39, .20), transparent 45%), #050505;
  padding: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.poster::before {
  content: "ECN";
  position: absolute;
  right: -.15em;
  bottom: -.28em;
  color: rgba(255, 255, 255, .045);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 11rem;
  letter-spacing: .04em;
  pointer-events: none;
}

.poster-inner {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  border: 1px solid var(--line);
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, .05), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(-9deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 11px);
}

.poster-title {
  margin: .2rem 0 0;
  font-size: 2.2rem;
  line-height: .92;
}

.poster-art {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.svg-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, .35);
  padding: .7rem;
}

.svg-tile img {
  max-height: 170px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .55));
}

.poster-caption {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

/* Sezioni */
main { position: relative; z-index: 1; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.8rem 1rem;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  line-height: .92;
}

.section-note {
  max-width: 36rem;
  margin: 0;
  color: var(--dim);
  font-size: .98rem;
}

.icon-head {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.small-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 2px solid var(--line-strong);
  background: rgba(255, 255, 255, .035);
  box-shadow: 4px 4px 0 var(--red-dark);
}

.small-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Card e pannelli */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  padding: 1.1rem;
}

.card.killer {
  background: linear-gradient(160deg, rgba(209, 32, 39, .24), rgba(255, 255, 255, .04));
  border-color: rgba(209, 32, 39, .60);
}

.label {
  display: inline-block;
  width: max-content;
  margin-bottom: .8rem;
  padding: .22rem .48rem;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card h3,
.panel h3 {
  margin: .1rem 0 .52rem;
  font-size: 1.62rem;
  line-height: 1;
}

.card p,
.panel p {
  margin: .2rem 0 1rem;
  color: var(--muted);
}

.card a:not(.btn),
.text-link {
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.card a:not(.btn):hover,
.text-link:hover { color: var(--red); }

.soon {
  color: var(--dim);
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.panel.strong {
  border-color: rgba(209, 32, 39, .55);
  background: rgba(209, 32, 39, .08);
}

.video-embed {
  aspect-ratio: 16 / 9;
  border: 2px solid var(--paper);
  overflow: hidden;
  margin-bottom: 1rem;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .72rem;
}

.list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .72rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.list strong { color: var(--text); }

/* Band */
.band-block {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 1rem;
  align-items: stretch;
}

.band-mark {
  min-height: 270px;
  border: 1px solid var(--line);
  background: #050505;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.band-mark img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.band-mark.cover img {
  object-fit: cover;
  min-height: 320px;
}

/* Galleria */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.gallery-filters button {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  padding: .5rem .75rem;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-filters button.on,
.gallery-filters button:hover {
  color: var(--text);
  border-color: var(--red);
  background: rgba(209, 32, 39, .12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.gallery-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .2s ease;
}

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

.gallery-item figcaption {
  padding: .55rem .65rem;
  font-size: .68rem;
  color: var(--dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1rem;
}

.gallery-preview a {
  display: block;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
}

.gallery-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.video-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  padding: .85rem;
}

.video-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.1rem;
}

.video-card video {
  width: 100%;
  display: block;
  border: 1px solid var(--line-strong);
  background: #000;
}

.video-card p {
  margin: .65rem 0 0;
  font-size: .88rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, .92);
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  border: 2px solid var(--paper);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 2px solid var(--paper);
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 900;
  padding: .45rem .7rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
}

.page-hero h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: .92;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: .85rem;
  color: var(--dim);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.breadcrumb:hover { color: var(--red); }

.copy-box {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  padding: 1rem;
  margin-bottom: .85rem;
  white-space: pre-wrap;
}

.manifesto-line {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--red);
  text-align: center;
}

.member-list li { flex-direction: column; align-items: flex-start; gap: .15rem; }

.copy-btn { margin-top: .25rem; }

/* Oracolo */
.quote-box {
  border: 2px solid var(--red);
  background: rgba(209, 32, 39, .09);
  padding: 1.25rem;
}

.quote-text {
  margin: .25rem 0 .7rem;
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: .95;
}

.quote-source { margin: 0; color: var(--muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem 3rem;
  color: var(--dim);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  text-decoration: none;
  color: var(--paper);
}

.footer a:hover { color: var(--red); }

/* Responsive */
@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-start { flex-wrap: wrap; }
  .lang-switcher { max-width: none; }
  .nav-links { justify-content: flex-start; }
  .hero { padding-top: 1rem; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-gallery-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .hero-gallery-side img { aspect-ratio: 1; }
  .gallery-grid,
  .gallery-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .split, .band-block { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-note { margin-top: .6rem; }
}

@media (max-width: 580px) {
  .brand-logo { width: 86px; }
  .brand-name { font-size: .94rem; }
  .brand-sub { font-size: .66rem; }
  .nav-links { font-size: .7rem; }
  .hero { padding-top: 2.1rem; }
  .hero h1 { font-size: 3.55rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-gallery-side { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid,
  .gallery-preview { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .list li { display: block; }
  .list span { display: block; margin-top: .15rem; }
}
