:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f5efe6;
  --muted: #c8b8a4;
  --line: rgba(255, 255, 255, 0.12);
  --red: #bf1724;
  --gold: #d2a44b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

button,
select {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.header-inner {
  min-height: var(--header-height);
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy span {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 800;
}

.language-picker select {
  appearance: none;
  min-width: 120px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 999px;
  padding: 10px 36px 10px 14px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  padding: 74px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.7fr);
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 700px;
}

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

h1,
h2,
h3,
p,
dd,
dt {
  margin: 0;
}

h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.02;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.lead,
.section-lead,
.intro-copy p,
.upcoming-copy p,
.band-copy p,
.contact-grid p,
.archive-head p {
  max-width: 68ch;
  color: #f2ebdf;
  font-size: 1.02rem;
}

.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 34rem;
}

.hero-side {
  align-self: end;
  justify-self: end;
  max-width: 290px;
  padding: 22px 24px;
  background: rgba(7, 7, 7, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-tags,
.actions,
.booking-actions,
.contact-actions,
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-top: 28px;
}

.hero-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

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

.btn-gold {
  background: var(--gold);
  color: #080808;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section {
  padding: 92px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--bg-soft);
}

.intro-grid,
.band-grid,
.contact-grid,
.booking-grid,
.upcoming-event,
.section-head,
.archive-head {
  display: grid;
  gap: 28px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.intro-visual img,
.band-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-visual img {
  min-height: 360px;
}

.booking-grid {
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  margin-bottom: 34px;
}

.section-lead {
  justify-self: end;
}

.compact {
  margin-bottom: 28px;
}

.upcoming-event {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  margin-bottom: 42px;
}

.upcoming-poster img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.upcoming-copy {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.event-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.event-meta dd {
  font-size: 1rem;
  font-weight: 700;
}

.archive-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  margin-bottom: 22px;
}

.poster-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 22vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.poster-track::-webkit-scrollbar {
  height: 10px;
}

.poster-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

.poster-card {
  margin: 0;
  scroll-snap-align: start;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

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

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  margin-bottom: 12px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.band-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
}

.band-portrait img {
  aspect-ratio: 0.8;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.social-grid a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
}

.contact-location {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.94rem;
}

.site-footer {
  padding: 26px 20px 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 28px;
  fill: #fff;
}

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .hero-content,
  .section-head,
  .archive-head,
  .upcoming-event,
  .intro-grid,
  .band-grid,
  .contact-grid,
  .booking-grid,
  .video-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-lead {
    justify-self: start;
  }

  .hero-side {
    justify-self: start;
    max-width: 100%;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .event-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions {
    gap: 12px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--line);
  }

  body.menu-open .nav {
    display: flex;
  }

  .brand-copy small {
    display: none;
  }

  .language-picker label {
    display: none;
  }

  .language-picker select {
    min-width: 102px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 36px;
    gap: 24px;
  }

  .lead,
  .section-lead,
  .intro-copy p,
  .upcoming-copy p,
  .band-copy p,
  .contact-grid p,
  .archive-head p {
    font-size: 0.98rem;
  }

  .hero-tags span,
  .social-grid a,
  .btn {
    width: 100%;
  }

  .actions,
  .booking-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .upcoming-copy {
    padding: 20px;
  }

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

  .poster-track {
    grid-auto-columns: 74vw;
  }

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

  .gallery-grid img {
    min-height: 240px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
