:root {
  --bg: #0d0f12;
  --panel: #161a20;
  --text: #f5f7fb;
  --muted: #aeb6c2;
  --paper: #f4f1ec;
  --ink: #171717;
  --accent: #00c2d7;
  --accent-2: #ff4f7b;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-hero {
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 24px 0;
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
}

.site-hero::before {
  content: none;
}

.site-nav {
  position: relative;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: rgba(13, 15, 18, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% + 48px));
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 34px -24px 0;
  padding: 0 max(24px, calc((100vw - 1040px) / 2)) 86px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.04) 0%, rgba(8, 10, 14, 0.18) 34%, rgba(8, 10, 14, 0.92) 100%),
    url("../images/banner_M2Six.jpg") center 28% / cover no-repeat;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(820px, 94vw);
  margin: 42px auto 0;
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.button.primary {
  color: #071014;
  background: var(--accent);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.shows-section .button.secondary {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
}

.section {
  padding: 96px 24px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.section h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
}

.section p {
  max-width: 680px;
  color: #3e4349;
  font-size: 18px;
}

.feature-image {
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.shows-section {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.show-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
  box-shadow: 0 18px 50px rgba(13, 20, 32, 0.08);
}

.show-card + .show-card {
  margin-top: 18px;
}

.show-date {
  min-height: 132px;
  display: grid;
  place-content: center;
  border-radius: 8px;
  color: #071014;
  background: var(--accent);
  text-align: center;
}

.show-date span {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.show-date strong {
  font-size: 18px;
}

.show-details h3,
.track-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
}

.show-details p {
  margin-bottom: 6px;
}

.music-section {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(13, 15, 18, 0.94), rgba(13, 15, 18, 0.86)),
    url("../images/7R3-89307_LR_R_C.jpg") center / cover no-repeat;
}

.music-section h2,
.music-section .track-card h3 {
  color: var(--text);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.track-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.track-card audio {
  width: 100%;
  margin-top: 14px;
}

.gallery-section {
  color: var(--text);
  background: #0d0f12;
}

.gallery-section .section-heading h2 {
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-grid img {
  grid-column: span 4;
  width: 100%;
  height: 320px;
  padding: 10px;
  border-radius: 8px;
  object-fit: contain;
  background: #111418;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.13);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2) {
  grid-column: span 6;
  height: 460px;
}

.site-footer {
  padding: 72px 24px;
  color: var(--text);
  background: #0d0f12;
}

.site-footer h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) minmax(240px, 0.8fr);
  gap: 36px;
  align-items: start;
}

address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.footer-links {
  flex-direction: column;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 900px) {
  .site-nav {
    position: relative;
    top: auto;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .site-hero {
    min-height: auto;
    padding: 14px 18px 0;
  }

  .site-hero::before {
    content: none;
  }

  .hero-content {
    width: calc(100% + 36px);
    min-height: 620px;
    margin: 28px -18px 0;
    padding: 0 18px 64px;
  }

  .hero-logo {
    width: min(760px, 94vw);
    margin-top: 34px;
  }

  .split-layout,
  .show-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .show-card {
    align-items: stretch;
  }

  .show-date {
    min-height: 104px;
  }

  .gallery-grid img {
    grid-column: span 6;
    height: 300px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2) {
    grid-column: span 12;
    height: 420px;
  }
}

@media (max-width: 560px) {
  .site-hero {
    padding: 12px 18px 0;
  }

  .site-hero::before {
    content: none;
  }

  .section {
    padding: 72px 18px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-content {
    min-height: 560px;
    margin-top: 24px;
    padding-bottom: 44px;
    background-position: center top;
  }

  .hero-logo {
    width: 92vw;
    margin-top: 28px;
  }

  .hero-copy,
  .section p {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .gallery-grid {
    gap: 10px;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2) {
    grid-column: span 12;
    height: 340px;
  }
}
