:root {
  --gz-black: #0d0d0d;
  --gz-offwhite: #f0ece4;
  --gz-red: #c0392b;
  --gz-grey: #1e1e1e;
  --gz-mid: #5a5a5a;
  --gz-rule: rgba(240,236,228,0.12);
}

/* ── Base ── */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gz-black);
  color: var(--gz-offwhite);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

h1, h2, h3, h4, .nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

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

a:hover {
  color: var(--gz-red);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Navbar ── */

.gz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0) 100%);
  transition: background 0.3s;
}

.gz-nav.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid var(--gz-rule);
}

.gz-nav .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gz-offwhite);
}

.gz-nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gz-nav .nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gz-offwhite);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.gz-nav .nav-links a:hover {
  opacity: 1;
  color: var(--gz-red);
}

.gz-nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.gz-nav .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gz-offwhite);
  transition: transform 0.3s, opacity 0.3s;
}

.gz-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--gz-black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.gz-mobile-menu.open {
  display: flex;
}

.gz-mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--gz-offwhite);
}

.gz-mobile-menu a:hover {
  color: var(--gz-red);
}

@media (max-width: 768px) {
  .gz-nav .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .gz-nav .hamburger {
    display: flex;
  }
}

/* ── Hero ── */

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/img/IMG_4771_desktop.jpg');
  background-size: cover;
  background-position: -10% top;
  filter: brightness(0.45) contrast(1.1);
  transform: scale(.8);
  transition: transform 8s ease-out;
  background-repeat: no-repeat;
}

#hero .hero-bg-mobile {
  background-image: url('../../assets/img/IMG_4771.jpg');
  background-position: 10% top;
  background-size: cover;
  background-repeat: no-repeat;
}

#hero .hero-bg.loaded, #hero .hero-bg-mobile.loaded {
  transform: scale(1);
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, var(--gz-black) 0%, transparent 100%);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4rem;
  max-width: 900px;
}

#hero .eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--bs-info-border-subtle);
  margin-bottom: 0.6rem;
}

#hero h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  margin: 0 0 1.2rem;
  color: var(--gz-offwhite);
}

#hero .hero-sub {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

#hero .hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gz-primary {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 1rem;
  padding: 0.65rem 1.8rem;
  background: var(--gz-red);
  color: var(--gz-offwhite);
  border: 2px solid var(--gz-red);
  transition: background 0.2s, color 0.2s;
}

.btn-gz-primary:hover {
  background: transparent;
  color: var(--gz-red);
}

.btn-gz-outline {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 1rem;
  padding: 0.65rem 1.8rem;
  background: transparent;
  color: var(--gz-offwhite);
  border: 2px solid rgba(240,236,228,0.4);
  transition: border-color 0.2s, color 0.2s;
}

.btn-gz-outline:hover {
  border-color: var(--gz-offwhite);
  color: var(--gz-offwhite);
}

/* ── Section base ── */

section {
  padding: 6rem 2.5rem;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: var(--gz-red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 1.5rem;
  line-height: 1;
}

.rule {
  width: 40px;
  height: 2px;
  background: var(--gz-red);
  margin-bottom: 2rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--gz-rule);
  margin: 0;
}

/* ── About ── */

#about {
  background: var(--gz-grey);
}

#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

#about .about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

#about .about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(192,57,43,0.25);
  pointer-events: none;
}

#about .about-text p {
  opacity: 0.75;
  margin-bottom: 1.2rem;
}

#about .members {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

#about .member {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

#about .member strong {
  font-weight: 500;
  opacity: 1;
  min-width: 80px;
}

@media (max-width: 768px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Streaming ── */

#streaming {
  background: var(--gz-black);
  max-width: 1100px;
  margin: 0 auto;
}

#streaming .platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--gz-rule);
  border: 1px solid var(--gz-rule);
  margin-top: 2.5rem;
}

#streaming .platform-item {
  background: var(--gz-black);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.2s;
  text-align: center;
}

#streaming .platform-item:hover {
  background: var(--gz-grey);
}

#streaming .platform-item i {
  font-size: 2rem;
  color: var(--gz-red);
}

#streaming .platform-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

#streaming .embed-wrapper {
  margin-top: 3rem;
  border: 1px solid var(--gz-rule);
  overflow: hidden;
}

/* ── Events ── */

#events {
  background: var(--gz-grey);
}

#events .events-inner {
  max-width: 800px;
  margin: 0 auto;
}

.show-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gz-rule);
}

.show-item:first-of-type {
  border-top: 1px solid var(--gz-rule);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.show-date .month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  color: var(--gz-red);
}

.show-date .day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gz-offwhite);
}

.show-info .venue {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.show-info .city {
  font-size: 0.85rem;
  opacity: 0.5;
}

.show-info .with {
  font-size: 0.8rem;
  opacity: 0.45;
  margin-top: 0.15rem;
}

.btn-gz-tickets {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(240,236,228,0.3);
  color: var(--gz-offwhite);
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.btn-gz-tickets:hover {
  border-color: var(--gz-red);
  background: var(--gz-red);
  color: var(--gz-offwhite);
}

#events .no-shows {
  padding: 3rem 0;
  opacity: 0.4;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .show-item {
    grid-template-columns: 70px 1fr;
  }
}

@media (max-width: 600px) {
  .btn-gz-tickets {
    display: none;
  }
}

/* ── Socials ── */

#socials {
  background: var(--gz-black);
}

#socials .socials-inner {
  max-width: 800px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gz-rule);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gz-offwhite);
  transition: border-color 0.2s, color 0.2s;
}

.social-link i {
  font-size: 1.1rem;
  color: var(--gz-red);
}

.social-link:hover {
  border-color: var(--gz-red);
  color: var(--gz-red);
}

/* ── Booking ── */

#booking {
  background: var(--gz-grey);
}

#booking .booking-inner {
  max-width: 680px;
  margin: 0 auto;
}

#booking p {
  opacity: 0.65;
  margin-bottom: 2rem;
}

#booking .booking-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gz-red);
  padding-bottom: 0.2rem;
  display: inline-block;
  color: var(--gz-offwhite);
  transition: color 0.2s;
}

#booking .booking-email:hover {
  color: var(--gz-red);
}

/* ── Merch ── */

#merch {
  background: var(--gz-black);
}

#merch .merch-inner {
  max-width: 1000px;
  margin: 0 auto;
}

#merch .merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.merch-card {
  border: 1px solid var(--gz-rule);
  overflow: hidden;
  transition: border-color 0.2s;
}

.merch-card:hover {
  border-color: rgba(192,57,43,0.5);
}

.merch-card .merch-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gz-grey);
}

.merch-card .merch-img img {
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-img img {
  transform: scale(1.04);
}

.merch-card .merch-label {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.merch-card .merch-label span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.merch-card .merch-label small {
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.1em;
}

/* ── Footer ── */

footer {
  padding: 2.5rem 2.5rem;
  border-top: 1px solid var(--gz-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.4;
}

footer .footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 1;
}

/* 360px default */

#hero .hero-bg-mobile {
  background-position: 10% top;
}

@media (min-width: 576px) {
  #hero .hero-bg-mobile {
    background-position: -200% top;
  }
}

@media (min-width: 768px) {
  #hero .hero-bg-mobile {
    background-position: -10% top;
  }
}

@media (min-width: 992px) {
  #hero .hero-bg-mobile {
    background-position: -200% top;
  }
}

@media (min-width: 1200px) {
  #hero .hero-bg-mobile {
    background-position: 65% top;
  }
}

@media (min-width: 1400px) {
  #hero .hero-bg-mobile {
    background-position: 70% top;
  }
}

/* ── Watch ── */

#watch {
  padding: 80px 40px;
}

.video-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #c0392b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.video-title {
  font-size: 28px;
  font-weight: 900;
  color: #f5f0e8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 14px 0 4px;
}

.video-sub {
  font-size: 14px;
  color: #888;
  margin: 0 0 48px;
}

.watch-featured {
  margin-bottom: 48px;
}

.watch-secondary {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  .watch-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .watch-secondary-meta .video-tag {
    display: none;
  }
}

.embed-wrapper-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-wrapper-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#watch {
  max-width: 1100px;
  margin: 0 auto;
}

