:root {
  --bg: #110f0e;
  --panel: #1b1715;
  --text: #fff7ea;
  --muted: #cdbfaa;
  --gold: #f0b85a;
  --red: #e0563f;
  --teal: #24c7b5;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(36,199,181,.18), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(224,86,63,.22), transparent 34%),
    linear-gradient(180deg, #17100f 0%, var(--bg) 45%, #080706 100%);
}

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

.site-header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px clamp(18px, 4vw, 54px);
  background: rgba(10, 8, 7, .72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--gold);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.84);
}

nav a:hover { color: var(--text); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 22px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 42%, rgba(240,184,90,.20), transparent 28%),
    radial-gradient(circle at 76% 48%, rgba(224,86,63,.18), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.18) 45%, rgba(0,0,0,.46)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(4,3,12,.88)),
    url("assets/home-gli-improbabili.png") center top / cover no-repeat;
  opacity: .92;
  filter: contrast(1.12) saturate(1.10) brightness(.86);
}

.hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,184,90,.28), transparent 66%);
  filter: blur(8px);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 10px 0;
  font-size: clamp(54px, 10vw, 120px);
  line-height: .9;
  letter-spacing: -.05em;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}

.motto {
  margin: 0;
  color: var(--gold);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
}

.intro {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.6;
}

.actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #120b08;
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 22px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}

p {
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cards article,
.event {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.cards article {
  min-height: 120px;
  display: flex;
  align-items: end;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.live-panel {
  max-width: 1000px;
}

.event {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.event span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.event strong {
  font-size: 30px;
}

.event em {
  color: rgba(255,255,255,.84);
  font-style: normal;
}

.contact {
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 54px);
  color: rgba(255,255,255,.84);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  nav { flex-wrap: wrap; }

  .hero { min-height: 88vh; padding-top: 72px; }

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

  .cards { grid-template-columns: 1fr; }

  footer { flex-direction: column; }
}

.brand img {
  display: block;
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255,220,120,.18));
}

@media (max-width: 820px) {
  .brand img {
    height: 32px;
  }
}

.hero-logo-wrap {
  margin: 10px 0 18px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(92vw, 760px);
  height: auto;
  filter:
    drop-shadow(0 10px 38px rgba(0,0,0,.55))
    drop-shadow(0 0 18px rgba(255,210,120,.14));
}

.band-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 46px;
  align-items: center;
}

.band-copy p {
  max-width: 680px;
}

.band-card {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}

.band-card strong,
.band-card span {
  display: block;
}

.band-card strong {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 6px;
}

.band-card span {
  color: rgba(255,255,255,.84);
  line-height: 1.5;
}

.band-photo {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}

.band-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(1.04) brightness(.88);
}

@media (max-width: 820px) {
  .band-section {
    grid-template-columns: 1fr;
  }
}

.band-cinematic {
  position: relative;
  max-width: none;
  min-height: 760px;
  margin: 0;
  padding: 120px clamp(22px, 7vw, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,5,5,.82) 0%, rgba(5,5,5,.58) 34%, rgba(5,5,5,.18) 66%, rgba(5,5,5,.48) 100%),
    radial-gradient(circle at 58% 38%, rgba(224,86,63,.18), transparent 32%),
    radial-gradient(circle at 70% 24%, rgba(36,199,181,.14), transparent 28%),
    url("assets/01.png") center center / cover no-repeat;
}

.band-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 45% 46%, rgba(255,120,190,.16), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.64));
  mix-blend-mode: screen;
  opacity: .82;
}

.band-cinematic .band-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.band-cinematic .band-copy p {
  max-width: 520px;
}

.band-cinematic h2 {
  max-width: 560px;
}

.band-cinematic .band-card {
  max-width: 520px;
  background: rgba(22,20,18,.58);
  backdrop-filter: blur(12px);
}

.band-cinematic .band-photo {
  display: none;
}

@media (max-width: 820px) {
  .band-cinematic {
    min-height: auto;
    padding: 82px 22px;
    background-position: center center;
  }
}

.section-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
}

.repertorio-section {
  position: relative;
}

.repertorio-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.repertorio-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 15%, rgba(36,199,181,.20), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(240,184,90,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}

.repertorio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 38%),
    linear-gradient(0deg, rgba(0,0,0,.42), transparent 56%);
  opacity: .9;
}

.repertorio-card span,
.repertorio-card strong,
.repertorio-card em {
  position: relative;
  z-index: 1;
}

.repertorio-card span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.repertorio-card strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.repertorio-card em {
  color: rgba(255,255,255,.76);
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .repertorio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .repertorio-grid {
    grid-template-columns: 1fr;
  }

  .repertorio-card {
    min-height: 220px;
  }
}

.live-section {
  max-width: 1120px;
}

.live-heading {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: end;
}

.live-heading p {
  margin: 0;
  max-width: 520px;
}

.live-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.live-event {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(36,199,181,.18), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.live-event-featured {
  border-color: rgba(240,184,90,.32);
}

.live-event-muted {
  opacity: .92;
}

.live-date {
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-date span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.live-date strong {
  margin-top: 6px;
  color: var(--gold);
  font-size: 28px;
  line-height: .95;
}

.live-info {
  display: grid;
  gap: 8px;
}

.live-tag {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.live-info strong {
  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
}

.live-info em {
  color: rgba(255,255,255,.76);
  font-style: normal;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .live-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .live-event {
    grid-template-columns: 1fr;
  }

  .live-event .btn {
    width: 100%;
  }
}

/* Contatti / Booking v2 */
.booking-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.booking-section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: radial-gradient(circle, rgba(240, 184, 92, .18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.booking-wrap {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.booking-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.65;
}

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.booking-tags span,
.booking-label {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.82);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    rgba(15, 10, 12, .62);
  box-shadow: 0 26px 80px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
}

.booking-card strong {
  color: var(--text);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
}

.booking-card p {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255,255,255,.78);
  border-top: 1px solid var(--line);
  background: rgba(10, 7, 9, .72);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
  letter-spacing: .04em;
}

.site-footer span {
  color: rgba(255,255,255,.72);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-nav a {
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

@media (max-width: 880px) {
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .booking-actions .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}


.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-meta span {
  white-space: nowrap;
}


/* Spacing tuning v1 */
.booking-section {
  padding-top: 72px;
  padding-bottom: 68px;
}

.booking-card {
  gap: 16px;
}

.booking-copy h2 {
  margin-bottom: 18px;
}

.booking-tags {
  margin-top: 22px;
}

.site-footer {
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-nav {
  gap: 12px;
}

@media (max-width: 880px) {
  .booking-section {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .booking-card {
    padding: 24px;
  }

  .booking-meta {
    gap: 8px 10px;
    font-size: 11px;
  }

  .site-footer {
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}


/* Live compact final */
.live-list {
  gap: 9px;
}

.live-event-compact {
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
}

.live-event-compact .live-date {
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 16px;
  text-align: center;
  align-items: center;
}

.live-event-compact .live-date span {
  font-size: 10px;
  letter-spacing: .14em;
}

.live-event-compact .live-date strong {
  margin-top: 2px;
  font-size: 22px;
}

.live-event-compact .live-date small {
  margin-top: 3px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.live-event-compact .live-info {
  gap: 2px;
}

.live-event-compact .live-tag {
  font-size: 10px;
  letter-spacing: .14em;
}

.live-event-compact .live-info strong {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  font-size: clamp(18px, 1.9vw, 24px);
}

.live-city {
  color: rgba(255,255,255,.70);
  font-size: .72em;
  font-weight: 700;
}

.live-city::before {
  content: "·";
  margin-right: 7px;
  color: rgba(255,255,255,.42);
}

.live-details {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.22;
}

.live-details span {
  display: inline-flex;
  align-items: center;
}

.live-details span:empty {
  display: none;
}

.live-details span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--teal);
}

@media (max-width: 880px) {
  .live-event-compact {
    grid-template-columns: 68px 1fr;
    gap: 11px;
    padding: 11px;
  }

  .live-event-compact .live-date {
    min-height: 58px;
    padding: 8px;
  }

  .live-event-compact .live-date strong {
    font-size: 21px;
  }

  .live-event-compact .live-date small {
    font-size: 10px;
  }

  .live-event-compact .live-info strong {
    font-size: 18px;
  }

  .live-details {
    font-size: 13px;
  }
}


/* Live compact final v2 */
.live-list {
  gap: 6px;
}

.live-event-compact {
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 16px;
  min-height: 0;
}

.live-event-compact .live-date {
  min-height: 48px;
  padding: 5px 8px;
  border-radius: 13px;
}

.live-event-compact .live-date span {
  font-size: 9px;
}

.live-event-compact .live-date strong {
  margin-top: 0;
  font-size: 19px;
}

.live-event-compact .live-date small {
  margin-top: 1px;
  font-size: 10px;
}

.live-event-compact .live-tag {
  font-size: 9px;
}

.live-event-compact .live-info {
  gap: 0;
}

.live-event-compact .live-info strong {
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.05;
}

.live-details {
  font-size: 13px;
  line-height: 1.15;
}

@media (max-width: 880px) {
  .live-event-compact {
    grid-template-columns: 62px 1fr;
    gap: 9px;
    padding: 9px;
  }

  .live-event-compact .live-date {
    min-height: 48px;
    padding: 5px 6px;
  }

  .live-event-compact .live-info strong {
    font-size: 16px;
  }

  .live-details {
    font-size: 12px;
  }
}

/* Live day + time inline */
.live-time-inline {
  color: rgba(255,255,255,.70);
  font-size: .44em;
  font-weight: 800;
  letter-spacing: .04em;
  vertical-align: middle;
}
