:root {
  --bg: #05070b;
  --bg-soft: #0b1018;
  --panel: rgba(11, 16, 24, 0.78);
  --panel-strong: rgba(8, 10, 14, 0.96);
  --line: rgba(214, 176, 100, 0.15);
  --line-strong: rgba(214, 176, 100, 0.45);
  --gold: #d5ab67;
  --gold-soft: #f1dbb2;
  --text: #f5f2eb;
  --muted: #b8bdc8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 171, 103, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(72, 99, 145, 0.14), transparent 22%),
    linear-gradient(180deg, #06080d 0%, #040507 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a,
.social-pill,
.social-mini a {
  position: relative;
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-pill:hover,
.social-mini a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.social-mini {
  display: flex;
  gap: 10px;
}

.social-mini a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  min-height: 78vh;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(4, 6, 10, 0.98) 0%, rgba(4, 6, 10, 0.82) 45%, rgba(4, 6, 10, 0.32) 100%),
    radial-gradient(circle at 15% 20%, rgba(213, 171, 103, 0.14), transparent 18%),
    var(--bg);
  overflow: hidden;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
}

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

.hero-title-wrap {
  position: relative;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(100%, 420px);
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.signature {
  position: absolute;
  right: 10%;
  top: 18%;
  font-family: "Allura", cursive;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: rgba(213, 171, 103, 0.18);
  transform: rotate(-6deg);
}

.hero-subtitle {
  width: min(560px, 100%);
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: transparent;
}

.hero-visual {
  display: flex;
  align-items: end;
  justify-content: center;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.12), rgba(6, 8, 12, 0.78)),
    #111;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(4, 6, 10, 0.1) 0%, rgba(4, 6, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(213, 171, 103, 0.12) 0%, transparent 30%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.05) brightness(0.78);
}

.release-card {
  position: relative;
  z-index: 1;
  width: min(360px, 85%);
  margin: 0 0 26px 45%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 10, 14, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.release-label,
.contact-label {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.release-card h2,
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.release-card p,
.story-card p,
.newsletter-copy p:last-child,
.event-venue,
.video-card p,
.social-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.release-card a {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  font-weight: 700;
}

.grid-band,
.story-section,
.gallery-section,
.videos-section,
.social-section,
.contact-section {
  margin-top: 28px;
}

.grid-band {
  display: grid;
  grid-template-columns: 0.9fr 2fr 1.1fr;
  gap: 18px;
}

.panel,
.newsletter,
.story-card,
.gallery-card,
.video-card,
.social-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.panel {
  padding: 28px;
}

.panel h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.stack-list,
.event-list {
  display: grid;
  gap: 16px;
}

.song-item,
.event-item {
  display: grid;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.song-item {
  grid-template-columns: 64px 1fr auto;
}

.song-thumb,
.video-thumb {
  overflow: hidden;
  border-radius: 16px;
}

.song-thumb img,
.video-thumb img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-title,
.video-title,
.event-city {
  margin: 0;
  font-weight: 800;
}

.song-plays,
.event-date {
  color: var(--gold);
  font-weight: 700;
}

.video-grid,
.cards-grid,
.social-grid,
.contact-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

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

.video-feature {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
}

.video-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.72) 100%);
}

.play-badge {
  width: 66px;
  height: 66px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.play-badge::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 23px 0 0 27px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--text);
}

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

.event-item:last-child,
.song-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
}

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

.note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 2.2rem;
}

.newsletter-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
}

.newsletter-form {
  display: flex;
  flex: 1;
  justify-content: end;
  gap: 14px;
}

.newsletter-form input {
  width: min(100%, 360px);
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

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

.story-card,
.video-card,
.social-card,
.contact-card {
  padding: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-card {
  min-height: 300px;
  overflow: hidden;
}

.gallery-card.tall {
  min-height: 620px;
}

.gallery-card:nth-child(1) img {
  height: 100%;
  object-position: center 20%;
  filter: brightness(0.78) contrast(1.05);
}

.gallery-card:nth-child(2) img {
  height: 100%;
  object-position: center 36%;
  filter: saturate(0.75) brightness(0.68);
}

.gallery-card:nth-child(3) img {
  height: 100%;
  object-position: center 8%;
  filter: brightness(0.9) contrast(1.08);
}

.cards-grid,
.social-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card,
.social-card {
  display: grid;
  gap: 14px;
}

.video-card .video-thumb {
  height: 240px;
  border-radius: 20px;
}

.video-card .video-thumb img {
  filter: brightness(0.64);
}

.video-card a,
.social-card a,
.contact-card a {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  font-weight: 700;
}

.social-card strong {
  font-size: 1.1rem;
}

.social-pill {
  display: inline-flex;
  width: fit-content;
  margin-right: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.site-footer {
  padding: 30px 8px 6px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-mini {
    display: none;
  }

  .hero,
  .grid-band,
  .gallery-grid,
  .cards-grid,
  .social-grid,
  .contact-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 580px;
  }

  .release-card {
    margin-left: 10%;
  }

  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    justify-content: stretch;
  }

  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1440px);
    padding-top: 12px;
  }

  .topbar {
    grid-template-columns: auto auto;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding: 24px 20px;
    border-radius: 30px;
  }

  .signature {
    position: static;
    display: block;
    margin-top: 8px;
    transform: none;
  }

  .hero-visual {
    min-height: 440px;
  }

  .release-card {
    width: calc(100% - 18px);
    margin: 0 9px 12px;
  }

  .song-item {
    grid-template-columns: 56px 1fr;
  }

  .song-plays {
    grid-column: 2;
  }

  .newsletter {
    padding: 22px 20px;
  }

  .newsletter-copy {
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .gallery-card,
  .gallery-card.tall {
    min-height: 280px;
  }
}
