:root {
  --bg: #090909;
  --bg-soft: #121212;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text: #f5f0e8;
  --muted: #b8aea1;
  --gold: #c9a86a;
  --blue: #2f6f8f;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 111, 143, 0.22), transparent 34rem),
    radial-gradient(circle at top right, rgba(201, 168, 106, 0.15), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.lang {
  display: none;
}

body[data-lang="it"] .lang-it {
  display: inline;
}

body[data-lang="en"] .lang-en {
  display: inline;
}

body[data-lang="it"] p.lang-it,
body[data-lang="en"] p.lang-en,
body[data-lang="it"] h2.lang-it,
body[data-lang="en"] h2.lang-en,
body[data-lang="it"] h3.lang-it,
body[data-lang="en"] h3.lang-en {
  display: block;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #856735);
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
}

.logo-text {
  font-size: 0.98rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 0.86rem;
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--text);
  color: #111;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: min(1280px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding-top: 140px;
}

.hero-content,
.hero-card {
  min-width: 0;
}

.hero-bg {
  position: absolute;
  inset: 120px -20px 60px;
  z-index: -1;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(135deg, rgba(47, 111, 143, 0.18), rgba(201, 168, 106, 0.08));
  border: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.3rem, 10vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  margin-bottom: 28px;
}

.hero-subtitle {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--text);
  color: #111;
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-card-text {
  padding: 22px 8px 4px;
}

.small-title {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-card-text p:not(.small-title) {
  color: var(--muted);
}

.section-label {
  margin-bottom: 22px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 900;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.large-text {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-note {
  max-width: 360px;
  color: var(--muted);
  font-size: 1.08rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.bio-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.bio-copy p {
  max-width: 820px;
}

.bio-highlights {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 14px;
}

.bio-highlights div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.bio-highlights span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.bio-highlights p {
  color: var(--muted);
}

.musicians-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.musician-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, background 0.25s ease;
}

.musician-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
}

.number {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.musician-card h3 {
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.musician-card p {
  color: var(--muted);
}

.music-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.08), rgba(47, 111, 143, 0.08)),
    var(--bg-card);
}

.album-cover {
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  background: #171717;
  border: 1px solid var(--line);
}

.album-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.album-info h2 {
  margin-bottom: 4px;
}

.album-info h3 {
  color: var(--muted);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 24px;
}

.album-info p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px solid rgba(201, 168, 106, 0.4);
}

.text-link:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.concert-list {
  display: grid;
  gap: 16px;
}

.concert-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.concert-item.muted {
  opacity: 0.72;
}

.date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--gold);
  font-weight: 800;
}

.date strong {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

.concert-item h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.concert-item p {
  color: var(--muted);
}

.video-box {
  min-height: 420px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(47, 111, 143, 0.24), transparent 26rem),
    var(--bg-card);
}

.video-preview {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 106, 0.62);
  border-radius: 28px;
  background: #151515;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(201, 168, 106, 0.04), transparent 13rem),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.video-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.video-preview:hover img {
  transform: scale(1.035);
}

.play-circle {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.94);
  border: 2px solid rgba(201, 168, 106, 0.86);
  color: #111;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.play-circle::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #111;
}

.video-preview .play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 10px rgba(245, 240, 232, 0.08);
}

.video-preview:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fffaf0;
  border-color: var(--gold);
}

.video-box p {
  max-width: 620px;
  color: var(--muted);
}

.press-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.press-box p {
  color: var(--muted);
  margin-bottom: 22px;
}

.tiny-note {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.75;
}

.contact-card {
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 42px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.12), rgba(47, 111, 143, 0.12)),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.contact-links a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(9, 9, 9, 0.94);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 10px 0;
  }

  .language-switch {
    width: fit-content;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-card {
    max-width: 520px;
  }

  .two-columns,
  .music-card,
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-highlights {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .musicians-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .logo-text {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    width: calc(100% - 20px);
    padding-top: 120px;
    gap: 28px;
  }

  .hero-bg {
    inset: 95px 0 35px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 3.7rem);
    letter-spacing: -0.055em;
  }

  .hero-subtitle {
    max-width: 28ch;
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .musicians-grid {
    grid-template-columns: 1fr;
  }

  .concert-item {
    grid-template-columns: 1fr;
  }

  .bio-highlights {
    grid-template-columns: 1fr;
  }

  .video-box {
    padding: 30px 22px;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a {
    width: 100%;
  }
}
