:root {
  --bg: #050303;
  --bg2: #110909;
  --panel: rgba(18, 11, 11, 0.86);
  --panel-2: rgba(28, 16, 16, 0.78);
  --text: #f6f1ec;
  --muted: #c7b5aa;
  --cream: #f0e2d2;
  --red: #b42020;
  --red-bright: #ff5656;
  --ember: #ff8b42;
  --wine: #5c1616;
  --charcoal: #181010;
  --green: #62f5a4;
  --gold: #d7a15f;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 24px;
  --max: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(180, 32, 32, 0.18), transparent 30%),
    radial-gradient(
      circle at 88% 14%,
      rgba(255, 139, 66, 0.1),
      transparent 22%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(92, 22, 22, 0.18),
      transparent 38%
    ),
    linear-gradient(180deg, #030202 0%, #0a0606 48%, #140c0c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: auto;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 4, 4, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-inner {
  width: min(calc(100% - 28px), var(--max));
  margin: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #e8d8cf;
  font-weight: 750;
  font-size: 0.92rem;
}
.nav a:hover,
.nav a.active {
  background: rgba(180, 32, 32, 0.16);
  color: #ffd0d0;
}
.menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 850;
}
.lang {
  display: flex;
  gap: 5px;
}
.lang-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
}
.lang-btn.active {
  color: #fff;
  background: linear-gradient(90deg, var(--wine), var(--red));
  border-color: transparent;
}

.hero {
  position: relative;
  padding: 72px 0 38px;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 10px 0 auto;
  height: 620px;
  z-index: -1;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(180, 32, 32, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 70% 35%,
      rgba(255, 139, 66, 0.1),
      transparent 30%
    ),
    radial-gradient(circle at 26% 18%, rgba(92, 22, 22, 0.18), transparent 24%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 32px;
  align-items: stretch;
}
.hero-copy,
.hero-visual,
.panel,
.artist-card,
.release-card,
.store-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    145deg,
    rgba(24, 14, 14, 0.94),
    rgba(9, 6, 6, 0.88)
  );
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-copy {
  padding: clamp(28px, 5vw, 62px);
  position: relative;
  overflow: hidden;
}
.hero-copy:after {
  content: "✦";
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 10rem;
  opacity: 0.04;
  transform: rotate(-8deg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(180, 32, 32, 0.4);
  background: rgba(180, 32, 32, 0.12);
  color: #ffd2d2;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.55rem, 7vw, 6.5rem);
  line-height: 0.9;
  margin: 22px 0 18px;
  letter-spacing: -0.06em;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    #fff7f1 2%,
    var(--cream) 28%,
    #ffb0b0 58%,
    var(--red-bright) 82%,
    var(--ember) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: clamp(1rem, 1.6vw, 1.23rem);
  line-height: 1.7;
  color: #d8c7bf;
  max-width: 720px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  transition:
    0.2s transform,
    0.2s background,
    0.2s border-color,
    0.2s box-shadow;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 86, 86, 0.48);
  background: rgba(180, 32, 32, 0.12);
  box-shadow: 0 12px 28px rgba(180, 32, 32, 0.15);
}
.btn.primary {
  background: linear-gradient(
    90deg,
    var(--wine),
    var(--red),
    var(--red-bright)
  );
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(180, 32, 32, 0.26);
}
.btn.green {
  background: linear-gradient(90deg, #167850, var(--green));
  color: #04110c;
  border-color: transparent;
}

.hero-visual {
  padding: 24px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.signal {
  height: 180px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(92, 22, 22, 0.44), rgba(7, 4, 4, 0.35)),
    url("../img/nyahvolt-hero.jpg") center/cover;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}
.signal:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 2, 2, 0.88));
  border-radius: inherit;
}
.signal-content {
  position: relative;
  z-index: 2;
}
.signal-content h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
}
.signal-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ebddd6;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat strong {
  display: block;
  font-size: 1.3rem;
  color: #ffbbb0;
}
.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.85rem;
}

section {
  padding: 46px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}
.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: 20px;
}
.panel {
  padding: 26px;
}
.panel h3 {
  margin-top: 0;
  color: #fff0e8;
}

.artist-card {
  overflow: hidden;
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
}
.artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.05) brightness(0.72);
}
.artist-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 2, 2, 0.04),
    rgba(15, 7, 7, 0.94) 78%
  );
}
.artist-info {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.artist-info h3 {
  margin: 0 0 7px;
  font-size: 1.55rem;
}
.artist-info p {
  margin: 0;
  color: #d6c5bd;
  line-height: 1.5;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(180, 32, 32, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  color: #f0d6cd;
}

.release-card {
  padding: 18px;
}
.release-cover {
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  background: #151010;
}
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-card h3 {
  margin: 16px 0 5px;
  color: #fff4ef;
}
.release-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.eco {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}
.eco-mark {
  min-height: 280px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(98, 245, 164, 0.3),
      transparent 30%
    ),
    linear-gradient(135deg, #0a0908, #152119);
  border: 1px solid rgba(98, 245, 164, 0.22);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.eco-mark strong {
  font-size: clamp(2rem, 5vw, 4rem);
  display: block;
}
.eco-list {
  display: grid;
  gap: 12px;
}
.eco-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.eco-item b {
  color: var(--green);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.store-card {
  overflow: hidden;
}
.store-card summary {
  cursor: pointer;
  list-style: none;
}
.store-card summary::-webkit-details-marker {
  display: none;
}
.store-cover {
  aspect-ratio: 1/1;
  background: #120e0e;
}
.store-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  font-weight: 950;
}
.store-title:after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(180, 32, 32, 0.18);
  color: #ffd6d6;
}
.store-card[open] .store-title:after {
  content: "−";
}
.store-body {
  padding: 0 18px 20px;
  color: var(--muted);
}
.note {
  color: var(--muted);
  line-height: 1.65;
}
.coming {
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    radial-gradient(circle, rgba(180, 32, 32, 0.18), transparent 55%), #120b0b;
  color: #efc4c4;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.canada-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 850;
}

.footer {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 3, 3, 0.8);
}
.footer-grid {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
}
.footer h3,
.footer h4 {
  margin-top: 0;
  color: #fff2ea;
}
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.8;
}
.footer-links {
  display: grid;
  gap: 5px;
}
.legal-line {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  color: #a89488;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.jump-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  border: 1px solid rgba(255, 86, 86, 0.35);
  background: rgba(8, 4, 4, 0.88);
  color: #ffd2d2;
  border-radius: 999px;
  padding: 12px 15px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.2s;
}
.jump-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .eco {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 6, 6, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
  }
  .nav.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .lang {
    display: none;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 22px), var(--max));
  }
  .topbar-inner {
    width: min(calc(100% - 18px), var(--max));
    min-height: 68px;
  }
  .brand span {
    font-size: 0.92rem;
  }
  .brand small {
    display: none;
  }
  .hero {
    padding-top: 36px;
  }
  .hero-copy {
    padding: 25px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 17vw, 4.4rem);
  }
  .grid-3,
  .grid-2,
  .store-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .artist-card {
    min-height: 340px;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .actions .btn {
    width: 100%;
  }
  .lang {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* RED OUTLAW V2 — force artwork into the black/red visual system */
.signal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(40,0,0,.58), rgba(120,0,0,.28), rgba(0,0,0,.48));
  mix-blend-mode: multiply;
}
.signal-content { z-index: 3; }
.artist-card img, .release-cover img, .store-cover img {
  filter: saturate(.78) contrast(1.12) brightness(.72) sepia(.18) hue-rotate(325deg);
}
.hero-copy, .hero-visual, .panel, .artist-card, .release-card, .store-card {
  box-shadow: 0 24px 80px rgba(0,0,0,.62), 0 0 0 1px rgba(130,18,18,.10), 0 0 38px rgba(120,0,0,.08);
}



/* INDEX PAGE ONLY — FADED BACKGROUND IMAGE
   Upload the image to: /assets/img/branding/faded-background.jpg
*/
body.home-page {
  background:
    linear-gradient(rgba(8, 3, 3, 0.78), rgba(12, 5, 5, 0.90)),
    url("../img/branding/faded-background.jpg") center center / cover fixed no-repeat;
}

/* INDEX HERO FIT FIX — prevents the right panel and text from being cut off */
.hero-grid > * {
  min-width: 0;
}

.hero-copy,
.hero-visual {
  width: 100%;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero p {
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1;
  }
}
