:root {
  --bg: #060606;
  --bg-soft: #111112;
  --ink: #f6f0e7;
  --muted: #b7afa6;
  --line: rgba(246, 240, 231, 0.16);
  --red: #d42121;
  --red-dark: #7e1212;
  --gold: #d7a84b;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid rgba(246, 240, 231, 0.08);
  background: rgba(6, 6, 6, 0.76);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(6, 6, 6, 0.92);
}

.brand {
  display: inline-flex;
  width: clamp(104px, 13vw, 152px);
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 12px 30px rgba(255, 255, 255, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2.5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, #070707 0%, #141010 52%, #060606 100%);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 128px));
  min-height: auto;
  margin: 0 auto;
  padding: calc(var(--header-height) + 86px) 0 98px;
}

.hero-section {
  display: grid;
  align-items: center;
  background: #050505;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 36%, rgba(5, 5, 5, 0.28) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.06) 42%, rgba(5, 5, 5, 0.74));
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: 100vh;
  min-height: 100svh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  margin-bottom: 24px;
  font-size: clamp(4.4rem, 16vw, 12rem);
  text-shadow: 0 14px 48px rgba(0, 0, 0, 0.76);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.6vw, 5.8rem);
}

h3 {
  margin-bottom: 6px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 32px;
  color: #e7ddd2;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--red);
  color: white;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #f02a2a;
  transform: translateY(-2px);
}

.split-layout,
.schedule-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.copy-block {
  max-width: 720px;
}

.band-section {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.7)),
    url("assets/band_2.JPG") center 38% / cover;
}

.band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.band-heading {
  max-width: 650px;
}

.member-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.member-row {
  padding: 22px 4px 22px 70px;
  border-bottom: 1px solid var(--line);
}

.member-row h3 {
  margin: 0 0 4px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.member-row p {
  margin: 0;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-stack {
  position: relative;
  min-height: clamp(360px, 38vw, 560px);
}

.poster {
  position: absolute;
  border: 1px solid rgba(246, 240, 231, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  object-fit: cover;
}

.poster-main {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 56%;
}

.section-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(190px, 16vw, 300px));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(246, 240, 231, 0.12);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  cursor: zoom-in;
}

.gallery-grid img:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-grid img:nth-child(1) {
  object-position: 52% 34%;
}

.gallery-grid img:nth-child(6) {
  object-position: 50% 22%;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 3, 3, 0.96);
  color: var(--ink);
  overflow: hidden;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  align-items: center;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-items: center;
  margin: 0;
  padding: 44px 0 24px;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  z-index: 2;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(246, 240, 231, 0.25);
  background: rgba(8, 8, 8, 0.72);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  border-color: var(--gold);
  background: rgba(36, 28, 20, 0.92);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lightbox-arrow {
  justify-self: center;
}

.schedule-section {
  background:
    linear-gradient(rgba(6, 6, 6, 0.82), rgba(6, 6, 6, 0.96)),
    url("assets/band_3.png") center / cover;
}

.show-list {
  display: grid;
  max-height: min(66vh, 620px);
  gap: 10px;
  overflow: auto;
  overscroll-behavior-y: contain;
  padding-right: 6px;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.08);
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.show-card {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(246, 240, 231, 0.14);
  background: rgba(12, 12, 12, 0.74);
  backdrop-filter: blur(10px);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.show-card:hover,
.show-card:focus-visible {
  border-color: rgba(215, 168, 75, 0.58);
  background: rgba(28, 22, 18, 0.86);
  transform: translateX(3px);
}

.show-card time {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.show-card p,
.show-card h3 {
  margin: 0;
}

.show-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.schedule-status {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(246, 240, 231, 0.14);
  background: rgba(12, 12, 12, 0.74);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.72)),
    url("assets/band_1.png") center / cover;
}

.contact-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 800;
  text-decoration-color: rgba(215, 168, 75, 0.45);
  text-underline-offset: 5px;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.social-link {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(246, 240, 231, 0.16);
  background: rgba(9, 9, 9, 0.82);
  color: var(--ink);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(215, 168, 75, 0.58);
  background: rgba(28, 22, 18, 0.86);
  transform: translateY(-2px);
}

.social-link span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-link strong {
  position: relative;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .section-inner {
    width: min(1420px, calc(100% - 192px));
  }

  .gallery-grid {
    grid-template-rows: repeat(2, clamp(210px, 14vw, 300px));
    gap: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .section {
    min-height: 100vh;
    min-height: 100svh;
    scroll-snap-align: start;
  }

  .section-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 36px) 0 44px;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(246, 240, 231, 0.12);
    background: rgba(6, 6, 6, 0.96);
    opacity: 0;
    transform: translateY(calc(-100% - 2px));
    transition: opacity 160ms ease, transform 220ms ease, visibility 220ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 0;
  }

  .split-layout,
  .band-layout,
  .schedule-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .member-row {
    padding: 14px 4px;
  }

  .poster-stack {
    min-height: 34vh;
  }

  .poster-main {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .gallery-grid {
    height: calc(100svh - var(--header-height) - 210px);
    min-height: 340px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid img:nth-child(1) {
    object-position: 50% 34%;
  }

  .gallery-grid img:nth-child(6) {
    object-position: 50% 18%;
  }

  .section-heading {
    min-height: 18vh;
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 108px;
  }

  .section-inner {
    width: min(100% - 28px, 520px);
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 28px;
  }

  .hero-section::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.42) 56%, rgba(5, 5, 5, 0.78)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.28));
  }

  .hero-image {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .poster-stack {
    min-height: 260px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: calc(100svh - var(--header-height) - 310px);
    min-height: 260px;
  }

  .section-heading {
    min-height: auto;
    margin-bottom: 14px;
  }

  .show-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .show-card span {
    white-space: normal;
  }

  .show-list {
    max-height: 48vh;
    overflow-y: scroll;
  }

  .member-row {
    padding: 11px 2px;
  }

  .member-row h3 {
    font-size: 1.35rem;
  }

  .member-row p {
    font-size: 0.72rem;
  }

  .social-link {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .social-link strong {
    text-align: left;
  }

  .lightbox[open] {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .lightbox figure {
    padding: 70px 0 20px;
  }

  .lightbox-close,
  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}
