:root {
  --bg-0: #0a0d0b;
  --bg-1: #111610;
  --ink: #f4f3ed;
  --ink-soft: #cecbbd;
  --accent: #c2ff3b;
  --accent-deep: #5d7f1b;
  --panel: #161e18;
  --panel-edge: #2e3f31;
  --shadow: 0 10px 40px rgb(0 0 0 / 45%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgb(140 190 74 / 15%), transparent 40%),
    radial-gradient(circle at 80% 20%, rgb(194 255 59 / 14%), transparent 45%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1));
  color: var(--ink);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgb(0 0 0 / 55%), rgb(0 0 0 / 0%));
}

.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink);
  text-decoration: none;
}

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.4rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgb(255 255 255 / 26%);
}

.lang-switch a.is-active {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  filter: saturate(1.25) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 5%) 10%, rgb(0 0 0 / 70%) 100%),
    linear-gradient(120deg, rgb(18 34 21 / 70%) 0%, rgb(33 43 17 / 30%) 55%, rgb(0 0 0 / 30%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 11vw, 9rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 6vw, 4rem);
  max-width: 55rem;
  animation: rise 900ms ease-out both;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e5ff91);
  color: #10140f;
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: rgb(0 0 0 / 30%);
  border-color: rgb(255 255 255 / 24%);
  color: var(--ink);
}

.mute-toggle {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.3rem);
  z-index: 3;
  border: 1px solid rgb(255 255 255 / 35%);
  color: var(--ink);
  background: rgb(10 12 10 / 50%);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.mute-toggle:hover,
.mute-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  animation: bob 1.8s ease-in-out infinite;
}

.panel {
  padding: clamp(2rem, 6vw, 4.25rem) clamp(1rem, 5vw, 4rem);
  max-width: 70rem;
  margin: 0 auto;
}

.panel-intro {
  text-align: center;
}

.panel.panel-intro h2 {
  color: #e00000;
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.panel-intro p a {
  color: #e00000;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  text-decoration: none;
  border-bottom: 1px solid rgb(224 0 0 / 35%);
}

.panel h2 {
  margin-top: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.panel p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  max-width: 64ch;
}

.panel-accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border-block: 1px solid var(--panel-edge);
  background: linear-gradient(180deg, rgb(194 255 59 / 6%), rgb(0 0 0 / 0%));
}

.music-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.music-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 70%) 100%),
    linear-gradient(110deg, rgb(8 16 8 / 40%) 0%, rgb(0 0 0 / 8%) 52%, rgb(0 0 0 / 45%) 100%);
}

.music-content {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.25rem) clamp(1rem, 5vw, 4rem);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.embed-card {
  background: rgb(7 12 9 / 65%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.embed-card iframe {
  display: block;
  border: 0;
}

.social-line {
  margin-top: 1.1rem;
  text-align: center;
}

.social-line a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 1rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 28%);
  color: var(--ink);
  text-decoration: none;
}

.social-line a:hover,
.social-line a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.video-stack {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: #050806;
}

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

.panel-contact {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.panel-release {
  position: relative;
  isolation: isolate;
  width: 100vw;
  min-height: 100svh;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #020302;
}

.release-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
  z-index: 0;
}

.release-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 24%) 0%, rgb(0 0 0 / 58%) 100%),
    linear-gradient(110deg, rgb(15 22 15 / 28%) 0%, rgb(0 0 0 / 10%) 52%, rgb(0 0 0 / 40%) 100%);
  z-index: 1;
  pointer-events: none;
}

.release-content {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.25rem) clamp(1rem, 5vw, 4rem);
}

.release-banner {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 5vw, 4rem) 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 8vw, 10rem);
  letter-spacing: 0.03em;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.92;
}

.release-header-grid {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: clamp(1rem, 2.8vw, 2rem);
  align-items: start;
}

.release-cover-left {
  margin: 0;
}

.release-cover-left img {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow: var(--shadow);
}

.release-copy h2 {
  margin-top: 0;
}

.release-meta {
  margin: 0.25rem 0;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.track-columns {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.track-columns h3 {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
}

.track-columns ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.track-columns li {
  margin: 0.25rem 0;
}

.release-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 999px;
  text-decoration: none;
}

.release-link:hover,
.release-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.soundcloud-wrap {
  margin-top: 1rem;
}

.soundcloud-player {
  width: 100%;
  min-height: 166px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: rgb(0 0 0 / 30%);
}

.track-embed-sides {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.embed-side h4 {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  color: var(--ink);
}

.track-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.soundcloud-track-player {
  width: 100%;
  min-height: 166px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: rgb(0 0 0 / 30%);
}

.panel a {
  color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Tablet — collapse music grid early */
@media (max-width: 900px) {
  .music-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile — hamburger nav + single-column layouts */
@media (max-width: 768px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  /* Show hamburger, hide nav by default */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem 0 1rem;
    background: rgb(8 12 9 / 97%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--panel-edge);
    display: none;
  }

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

  .site-nav > a {
    padding: 0.8rem 1.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgb(255 255 255 / 6%);
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 14%);
    margin-top: 0.4rem;
    padding-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }

  .lang-switch a {
    padding: 0.3rem 0;
    border-bottom: 0;
  }

  /* Hero */
  .hero-content {
    padding-top: 6.5rem;
  }

  .mute-toggle {
    bottom: 3.1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Music grid */
  .music-grid {
    grid-template-columns: 1fr;
  }

  /* Release section */
  .release-header-grid {
    grid-template-columns: 1fr;
  }

  .release-cover-left {
    max-width: 320px;
  }

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

  .track-embed-sides {
    grid-template-columns: 1fr;
  }

  /* Release meta wraps on small screens */
  .release-meta {
    font-size: 0.9rem;
  }
}

/* Small phones — tighten further */
@media (max-width: 400px) {
  .brand {
    font-size: 1.3rem;
  }

  .release-meta {
    font-size: 0.82rem;
  }
}


/* ── Cookie consent ───────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}
#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-banner a {
  color: #ccc;
}
.cookie-banner-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
#cookie-accept,
#cookie-decline {
  padding: 0.45rem 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
#cookie-accept {
  background: #fff;
  color: #000;
}
#cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#cookie-accept:hover { background: #e0e0e0; }
#cookie-decline:hover { border-color: #fff; }

/* Placeholder shown when embeds are blocked */
.consent-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 152px;
  width: 100%;
}
.consent-enable-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
}
.consent-enable-btn:hover {
  border-color: #fff;
  color: #fff;
}
.privacy-link {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}
.privacy-link a {
  color: inherit;
  text-decoration: underline;
}
