:root {
  --bg: #050507;
  --bg-soft: #0d0d12;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f2ea;
  --muted: #b7b0a4;
  --gold: #d7a84d;
  --amber: #ffce74;
  --red: #b8242f;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 77, 0.16), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(184, 36, 47, 0.18), transparent 30%),
    linear-gradient(135deg, #050507 0%, #0d0b10 45%, #050507 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.top-ticker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 168, 77, 0.26);
  background: linear-gradient(90deg, #120c08, #2a1115, #120c08);
  color: var(--amber);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 42px;
  padding: 10px 0;
  min-width: 200%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(5, 5, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(31px, 4vw, 54px);
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a {
  color: rgba(245, 242, 234, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 206, 116, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #8d5a1d);
  color: #090704;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(215, 168, 77, 0.16);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  padding: 8px 12px;
}

main {
  padding-top: 138px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  padding: clamp(42px, 7vw, 94px) clamp(18px, 6vw, 88px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.98) 0%, rgba(5,5,7,0.75) 48%, rgba(5,5,7,0.35) 100%),
    url('../images/hero.jpg') center / cover no-repeat;
  opacity: 0.92;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(transparent, var(--bg));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(72px, 13vw, 188px);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 206, 116, 0.72);
}

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

.hero-copy p,
.section-lead,
.page-hero p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero-card {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.82) 100%),
    url('../images/portrait.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  padding: 30px;
}

.hero-card h3 {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 46px;
  letter-spacing: 0.04em;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 6vw, 88px);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header h2,
.page-hero h1,
.split h2 {
  margin: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.card,
.release-card,
.show-card,
.embed-card {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.042));
  box-shadow: var(--shadow);
}

.card,
.release-card,
.show-card {
  padding: 28px;
}

.card h3,
.release-card h3,
.show-card h3 {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
}

.card p,
.release-card p,
.show-card p {
  color: var(--muted);
  line-height: 1.7;
}

.release-art {
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 22px;
  background: #141015 url('../images/release.jpg') center / cover no-repeat;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  color: rgba(245, 242, 234, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
}

.split-img {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: url('../images/story.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f0f13;
}

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

.video-note {
  color: var(--muted);
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.instagram-feed {
  overflow: hidden;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
}

.page-hero {
  padding: clamp(66px, 10vw, 128px) clamp(18px, 6vw, 88px) clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5,5,7,0.98), rgba(5,5,7,0.78), rgba(5,5,7,0.45)),
    url('../images/hero.jpg') center / cover no-repeat;
}

.page-hero p {
  max-width: 780px;
}

.footer {
  padding: 48px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: #050507;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-header {
    top: 36px;
    padding: 14px 18px;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5,5,7,0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  main {
    padding-top: 124px;
  }

  .hero,
  .split,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .split-img {
    min-height: 430px;
  }

  .section-header {
    display: block;
  }

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

@media (max-width: 560px) {
  .ticker-track {
    font-size: 10px;
    gap: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 76px;
  }

  .hero-card,
  .split-img {
    min-height: 360px;
  }

  .card,
  .release-card,
  .show-card {
    padding: 22px;
  }

  .instagram-feed {
    padding: 10px;
  }
}

/* ===== YOUTUBE VIDEO FIX ===== */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto 0;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
