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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 80%, rgba(0, 0, 0, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 72px;
}

.hero-logo {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-logo .f {
  letter-spacing: 0.18em;
}

.hero-tagline {
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-genre {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

#about {
  background: var(--black);
  padding-top: 120px;
  padding-bottom: 0;
}

.about-text h2,
.orbit-header h2,
.music-header h2,
.live-header h2,
#booking h2 {
  text-wrap: balance;
}

.about-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
}

.about-text p,
.orbit-meta p {
  line-height: 1.85;
}

.about-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--white);
  font-weight: 600;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin-bottom: 32px;
}

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

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 6s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
}

#orbit {
  background: var(--black);
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.orbit-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.orbit-meta {
  max-width: 760px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.orbit-meta p {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.035em;
  color: rgba(255, 255, 255, 0.58);
}

.orbit-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

#music,
#live {
  background: var(--black);
  padding-top: 120px;
  padding-bottom: 120px;
}

#music {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

#live {
  border-top: 1px solid rgba(176, 48, 32, 0.15);
}

.music-header,
.live-header {
  margin-bottom: 48px;
}

.music-header h2,
.live-header h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-photo:nth-child(2) {
  margin-top: 48px;
}

#booking {
  background: var(--black);
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#booking h2 {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.booking-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 56px;
  letter-spacing: 0.04em;
}

.booking-email-text {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gray);
}

.booking-email-text a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.booking-email-text a:hover {
  color: var(--white);
}

footer span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 0 24px 48px;
  }

  #about,
  #orbit,
  #music,
  #live {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .orbit-meta {
    max-width: 100%;
    padding-left: 18px;
  }

  .live-photo:nth-child(2) {
    margin-top: 0;
  }

  #booking {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
