/* ==========================================================================
   SHINDE — Electronic Press Kit
   ========================================================================== */

/* Display — Griffon Bold */
@font-face {
  font-family: "Griffon";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/griffon-bold.woff2") format("woff2");
}

/* Body — Inter (variable 100–900) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Label — Oswald (variable 200–700) */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../assets/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../assets/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg:        #0a090c;
  --bg-soft:   #100e13;
  --panel:     #15121b;
  --line:      rgba(231, 222, 208, 0.10);
  --ink:       #ece9ef;
  --muted:     #9c97a6;
  --muted-2:   #6f6a78;
  --blood:     #c8122a;
  --blood-2:   #7c0712;
  --bone:      #e7ded0;
  --glow:      rgba(200, 18, 42, 0.45);
  --clean:     #19b6a4;

  --font-display: "Griffon", "Times New Roman", serif;
  --font-label:   "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
}

/* ----- Base ----- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--blood);
  color: #fff;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Film-grain + vignette overlay across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Keep content above the grain layer */
.site-header, main, .site-footer {
  position: relative;
  z-index: 2;
}

/* ----- Shared building blocks ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.pretitle {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blood);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.pretitle::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--blood);
  opacity: 0.8;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Centered section intro (pretitle + title + lead) */
.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.section-head .pretitle {
  justify-content: center;
}
.section-head .lead {
  margin-top: 0.8rem;
}

.section {
  padding-block: clamp(72px, 11vw, 130px);
}
.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}

.divider-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--blood);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.btn:hover {
  background: var(--blood);
  color: #fff;
  box-shadow: 0 0 28px -6px var(--glow);
}
.btn:active {
  transform: translateY(1px);
}
.btn--solid {
  background: var(--blood);
  color: #fff;
}
.btn--solid:hover {
  background: var(--blood-2);
}
.btn--ghost {
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--blood);
  background: transparent;
  color: #fff;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 9, 12, 0.82);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 38px;
  width: 38px;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 1.05rem;
  text-transform: uppercase;
  padding-left: 0.1em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-block: 6px;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--blood);
  transition: width .25s ease;
}
.nav a:hover, .nav a.is-active {
  color: var(--ink);
}
.nav a:hover::after, .nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s 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;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 9, 12, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 12px 0 22px;
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .nav.is-open {
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 22px 90px;
  overflow: hidden;
}
/* Darkened album cover background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/img/bg.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(10,9,12,0.45) 0%, rgba(10,9,12,0.78) 55%, rgba(10,9,12,0.96) 100%),
    linear-gradient(180deg, rgba(10,9,12,0.85) 0%, rgba(10,9,12,0.35) 30%, rgba(10,9,12,0.55) 70%, var(--bg) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.hero__logo {
  width: clamp(120px, 20vw, 188px);
  height: auto;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 40px rgba(200,18,42,0.35));
}

.hero__title {
  font-size: clamp(3.2rem, 13vw, 9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 -0.2em 0 0;
  color: #fff;
  text-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.hero__tagline {
  font-family: var(--font-label);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.78rem, 2.2vw, 1.02rem);
  color: var(--bone);
  margin: 1.1rem 0 0;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.4rem;
  margin-top: 1.7rem;
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero__meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--blood);
  border-radius: 50%;
  margin-right: 0.7rem;
}
.hero__cta {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--blood), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after {
    animation: none;
  }
}

/* ==========================================================================
   Bio
   ========================================================================== */

/* Section head — matches the site's .section-title scale, left-aligned */
.feat__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.feat__quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 760px;
  margin: 2rem 0 3.2rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--blood);
}
.feat__banner {
  position: relative;
  margin: 0 0 2.8rem;
  border: 1px solid var(--line);
  overflow: hidden;
}
.feat__banner img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}
.feat__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 20px rgba(10, 9, 12, 0.62);
  pointer-events: none;
}

.feat__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .feat__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
}
.feat__body p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.feat__body strong {
  color: var(--ink);
  font-weight: 600;
}

.footnotes {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--bg-soft));
  padding: 1.5rem 1.6rem;
}
.footnotes__head {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.footnotes__head::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blood);
}
.footnotes dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.6rem;
}
.footnotes dt {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  align-self: start;
  padding-top: 0.18rem;
  white-space: nowrap;
}
.footnotes dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}
.footnotes dd strong {
  color: var(--ink);
  font-weight: 600;
}

.block-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.7rem;
}

/* ==========================================================================
   YouTube + SoundCloud embeds
   ========================================================================== */
.media-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
}
.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.media-frame--video {
  margin-top: 2.8rem;
  max-width: 600px;
  margin-inline: auto;
}

.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background-image: url("../assets/img/album/eidos.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.yt-facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,12,0.25), rgba(10,9,12,0.65));
  transition: background .3s ease;
}
.yt-facade:hover::before {
  background: linear-gradient(180deg, rgba(10,9,12,0.15), rgba(10,9,12,0.5));
}
.yt-facade__btn {
  position: relative;
  display: grid;
  place-items: center;
  transition: transform .25s ease;
}
.yt-facade__btn::before {
  grid-area: 1 / 1;
  content: "";
  width: 36px;
  height: 32px;
  background: #fff;
}
.yt-facade__btn svg {
  grid-area: 1 / 1;
  width: 92px;
  height: 92px;
  fill: #f00;
}
.yt-facade:hover .yt-facade__btn {
  transform: scale(1.06);
}
.yt-facade__label {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
}

/* Listen layout */
.listen__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.8rem;
}
@media (min-width: 1024px) {
  .listen__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.cover-frame {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9);
}
.cover-frame img {
  width: 100%;
}
.cover-frame__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blood);
  padding: 0.3rem 0.7rem;
}
.sc-frame {
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 320px;
}
.sc-frame iframe {
  display: block;
  width: 100%;
}
.listen__sc-link {
  margin-top: 1.2rem;
}

.tracklist__head {
  margin-bottom: 1.2rem;
}
.tracklist__list {
  list-style: none;
  counter-reset: track;
  margin: 0;
  padding: 0;
}
.track {
  counter-increment: track;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.78rem 0.15rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.track:first-child {
  border-top: 1px solid var(--line);
}
.track::before {
  content: counter(track, decimal-leading-zero);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--blood);
  min-width: 2em;
}
.track__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color .2s ease;
}
.track:hover {
  padding-left: 0.5rem;
}
.track:hover .track__title {
  color: #fff;
}

/* Full-width player below the cover + tracklist pairing */
.listen__player {
  margin-top: 3rem;
  max-width: 960px;
  margin-inline: auto;
}

/* Formats strip */
.formats-block {
  margin-top: 3.5rem;
}
.formats-block .block-label {
  text-align: center;
}
.formats {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .formats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.format-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.9rem;
  transition: border-color .25s ease, transform .25s ease;
}
.format-card:hover {
  border-color: var(--blood);
  transform: translateY(-4px);
}
.format-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #000;
}
.format-card span {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7rem;
  text-align: center;
}

/* ==========================================================================
   Members — two voices
   ========================================================================== */
.voices {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.8rem;
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}
@media (min-width: 760px) {
  .voices {
    grid-template-columns: 1fr 1fr;
  }
}

.voice {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.9rem;
  overflow: hidden;
}
.voice__img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.voice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.55) contrast(1.05);
  transition: transform .6s ease, filter .6s ease;
}
.voice--clean .voice__img img {
  object-position: 46% 14%;
}
.voice--harsh .voice__img img {
  object-position: 50% 16%;
}
.voice:hover .voice__img img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.voice__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
.voice--clean .voice__img::after {
  background: linear-gradient(180deg, rgba(12,108,97,0.10) 0%, rgba(8,40,38,0.62) 62%, rgba(7,28,27,0.95) 100%);
}
.voice--harsh .voice__img::after {
  background: linear-gradient(180deg, rgba(124,7,18,0.10) 0%, rgba(58,6,10,0.62) 62%, rgba(28,5,7,0.95) 100%);
}

.voice__type {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}
.voice--clean .voice__type {
  color: var(--clean);
}
.voice--harsh .voice__type {
  color: var(--blood);
}
.voice__type::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  vertical-align: middle;
  margin-right: 0.7rem;
  background: currentColor;
}
.voice__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
}
.voice__inst {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 0.5rem;
}
@media (min-width: 760px) {
  .voice--harsh {
    text-align: right;
    align-items: flex-end;
  }
}

.voices__seam {
  display: none;
}
@media (min-width: 760px) {
  .voices__seam {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--clean), var(--blood));
    z-index: 1;
    box-shadow: 0 0 22px -2px rgba(0,0,0,0.6);
  }
}
@media (max-width: 759px) {
  .voice--clean {
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--clean), var(--blood)) 1;
  }
}

/* ==========================================================================
   Members — the instruments
   ========================================================================== */
.members__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .members__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.members__subhead {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  margin-top: 4rem;
}

.member {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.member__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(0.25);
}
.member:hover .member__img img {
  transform: scale(1.05);
  filter: grayscale(0);
}
@media (hover: none) {
  .member__img img {
    filter: none;
  }
}
.member__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,9,12,0.92) 100%);
}
.member__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.1rem 1.2rem;
}
.member__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.member__role {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Footer / Socials
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-block: clamp(56px, 8vw, 88px);
  text-align: center;
}
.site-footer .pretitle {
  justify-content: center;
}
.footer-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem 0;
}
.social-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.social-link:hover {
  color: #fff;
  border-color: var(--blood);
  transform: translateY(-3px);
  box-shadow: 0 0 26px -8px var(--glow);
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-logo {
  width: 64px;
  margin: 0 auto 1.2rem;
  opacity: 0.9;
}
.footer-subtitle {
  margin-top: 0.8rem;
}
.copyright {
  color: var(--muted-2);
  font-size: 0.78rem;
  margin-top: 1.4rem;
}

/* ==========================================================================
   Scroll-reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: .08s;
}
.reveal[data-delay="2"] {
  transition-delay: .16s;
}
.reveal[data-delay="3"] {
  transition-delay: .24s;
}
.reveal[data-delay="4"] {
  transition-delay: .32s;
}
.reveal[data-delay="5"] {
  transition-delay: .40s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Focus visibility for keyboard users */
:focus-visible {
  outline: 2px solid var(--blood);
  outline-offset: 3px;
}

/* Custom scrollbar */
/* ::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2530;
  border: 3px solid var(--bg);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blood-2);
} */
