/* ============================================================
   ASH PULPIT — Sermons from the ruins of certainty
   Visual system derived from Brand Book v1
   ============================================================ */

:root {
  /* palette */
  --coal:       #080807;
  --coal-2:     #0d0c0b;
  --coal-3:     #141210;
  --ash:        #8b8880;
  --ash-dim:    #5d5b55;
  --bone:       #e6ddcb;
  --bone-dim:   #b8b0a0;
  --oxide:      #7a1e16;
  --oxide-lit:  #a8341f;
  --green:      #34463a;
  --gold:       #b39a5e;

  /* accent is tweakable (oxide by default) */
  --accent:     var(--oxide);
  --accent-lit: var(--oxide-lit);

  /* type */
  --f-display: "Oswald", "Bebas Neue", sans-serif;
  --f-liturgy: "Cinzel", serif;
  --f-quote:   "Cormorant Garamond", serif;
  --f-body:    "IBM Plex Sans Condensed", sans-serif;
  --f-lyric:   "Crimson Pro", serif;

  --grain: 0.07;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--coal);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* concrete base wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(52,70,58,0.10), transparent 60%),
    radial-gradient(100% 60% at 80% 110%, rgba(122,30,22,0.06), transparent 70%),
    var(--coal);
  pointer-events: none;
}

/* film grain + scratches */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: var(--grain);
  mix-blend-mode: overlay;
  background-image: url("assets/grain.svg");
  background-size: 320px 320px;
}

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

::selection { background: var(--accent); color: var(--bone); }

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

/* ---------- shared type helpers ---------- */
.kicker {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: var(--accent-lit);
}
.kicker.ash { color: var(--ash); }

.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.eyebrow-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.55;
}

.section {
  position: relative;
  padding: clamp(80px, 11vw, 160px) clamp(22px, 5vw, 72px);
}
.wrap { max-width: var(--maxw); margin: 0 auto; }

.h-display {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,136,128,0.28), transparent);
  border: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(22px, 5vw, 54px);
  transition: background .5s ease, border-color .5s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,7,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139,136,128,0.16);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}
.nav__mono {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55)) contrast(1.05);
  -webkit-user-drag: none;
  user-select: none;
}
.nav__brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
  color: var(--bone);
  border-left: 1px solid rgba(139,136,128,0.3);
  padding-left: 13px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.nav__links a {
  font-family: var(--f-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--bone-dim);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent-lit);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }

.btn {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding: 11px 22px;
  border: 1px solid var(--accent);
  color: var(--bone);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); }
.btn--solid { background: var(--accent); }
.btn--solid:hover { background: var(--accent-lit); border-color: var(--accent-lit); }
.btn--ghost { border-color: rgba(139,136,128,0.4); }
.btn--ghost:hover { background: rgba(230,221,203,0.08); border-color: var(--bone-dim); }
.btn--lg { padding: 15px 34px; font-size: 0.78rem; }

.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(80% 70% at 78% 38%, rgba(52,70,58,0.18), transparent 60%),
    var(--coal);
}
/* figure + halo */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__halo {
  position: absolute;
  top: 50%; right: 20%;
  transform: translate(50%, -50%);
  width: clamp(360px, 42vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--oxide-lit) 0%, var(--oxide) 42%, #4a130d 72%, transparent 78%);
  filter: saturate(0.9) contrast(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.hero__figure {
  position: absolute;
  right: 0; bottom: 0; top: 0;
  height: 100%;
  width: clamp(440px, 56vw, 1040px);
  object-fit: cover;
  object-position: 60% 32%;
  filter: grayscale(0.55) contrast(1.12) brightness(0.96);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 34%),
    radial-gradient(120% 100% at 70% 45%, #000 55%, transparent 92%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(90deg, transparent 0%, #000 34%),
    radial-gradient(120% 100% at 70% 45%, #000 55%, transparent 92%);
          mask-composite: intersect;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--coal) 8%, rgba(8,8,7,0.72) 30%, rgba(8,8,7,0.10) 56%, transparent 72%),
    linear-gradient(180deg, rgba(8,8,7,0.55) 0%, transparent 26%, transparent 64%, var(--coal) 100%);
}
/* faint manifesto fragments, like the key art */
.hero__frag {
  position: absolute;
  z-index: 1;
  font-family: var(--f-quote);
  font-style: italic;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ash);
  opacity: 0.32;
  max-width: 22ch;
  text-transform: uppercase;
}
.hero__frag--tr { top: 16%; right: 5%; text-align: right; }
.hero__frag--br { bottom: 13%; right: 5%; text-align: right; color: var(--accent-lit); opacity: 0.4; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 72px);
}
.hero__lead { max-width: 620px; }
.hero__ap {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-liturgy);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--accent-lit);
  margin-bottom: 18px;
}
.hero__ap::after {
  content: "";
  width: clamp(50px, 9vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-lit), transparent);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(4.4rem, 14vw, 12rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 26px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.6);
}
.hero__tagline {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: clamp(0.78rem, 1.5vw, 1.05rem);
  color: var(--accent-lit);
  margin-bottom: 22px;
}
.hero__tagline::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--accent-lit);
  flex-shrink: 0;
}
.hero__sub {
  font-family: var(--f-quote);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--bone-dim);
  line-height: 1.4;
  margin-bottom: 34px;
  max-width: 34ch;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__release {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.hero__release-meta .lbl {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.58rem;
  color: var(--ash);
}
.hero__release-meta .ttl {
  font-family: var(--f-liturgy);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--bone);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-lit);
  box-shadow: 0 0 0 0 rgba(168,52,31,0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168,52,31,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(168,52,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,52,31,0); }
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.6rem;
  color: var(--ash);
}
.scroll-cue .line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--ash), transparent);
  animation: drop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%,100% { transform: scaleY(0.4); opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   KEY ART BAND
   ============================================================ */
.keyart {
  position: relative;
  height: clamp(340px, 56vh, 600px);
  overflow: hidden;
}
.keyart img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.keyart::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--coal) 0%, transparent 22%, transparent 78%, var(--coal-2) 100%);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid rgba(139,136,128,0.16);
  border-bottom: 1px solid rgba(139,136,128,0.16);
  background: var(--coal-2);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
  color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee span::after {
  content: "✜";
  color: var(--accent-lit);
  font-size: 0.8rem;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  position: relative;
  overflow: hidden;
}
.manifesto__col {
  position: absolute;
  top: 50%; right: clamp(-60px, -2vw, 0px);
  transform: translateY(-50%);
  height: 118%;
  opacity: 0.16;
  pointer-events: none;
  filter: grayscale(0.3) contrast(1.05);
  -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent);
          mask-image: radial-gradient(closest-side, #000 60%, transparent);
}
.manifesto__inner { position: relative; z-index: 2; max-width: 820px; }
.manifesto__verse {
  font-family: var(--f-lyric);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.5rem);
  line-height: 1.18;
  color: var(--bone);
  letter-spacing: 0.005em;
}
.manifesto__verse .dim { color: var(--ash); }
.manifesto__punch {
  margin-top: 38px;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--accent-lit);
}
.manifesto__pt {
  margin-top: 30px;
  font-family: var(--f-quote);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ash-dim);
  max-width: 50ch;
}

/* ============================================================
   RELEASE
   ============================================================ */
.release { background: var(--coal-2); }
.release__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
/* composed album cover */
.cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--coal);
  border: 1px solid rgba(139,136,128,0.18);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9);
}
.cover__halo {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%,-50%);
  width: 62%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--oxide-lit), var(--oxide) 55%, #4a130d 100%);
  filter: saturate(0.85) contrast(1.05);
  opacity: 0.92;
  mix-blend-mode: screen;
}
.cover__fig {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.15) brightness(0.7);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
          mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
  mix-blend-mode: luminosity;
  opacity: 0.95;
}
.cover__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,7,0.2), rgba(8,8,7,0.0) 30%, rgba(8,8,7,0.85) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(8,8,7,0.9), transparent 60%);
}
.cover__txt {
  position: absolute;
  left: 0; right: 0;
  padding: 0 8%;
}
.cover__artist {
  top: 7%;
  position: absolute;
  left: 8%;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  color: var(--bone);
}
.cover__title {
  bottom: 12%;
  text-align: center;
  font-family: var(--f-liturgy);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--bone);
}
.cover__sub {
  bottom: 7%;
  text-align: center;
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.58rem;
  color: var(--ash);
}

.release__title {
  font-family: var(--f-liturgy);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin: 14px 0 22px;
}
.release__desc {
  font-family: var(--f-lyric);
  font-size: 1.12rem;
  color: var(--bone-dim);
  max-width: 50ch;
  margin-bottom: 30px;
}
.release__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.plat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(139,136,128,0.28);
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--bone-dim);
  transition: border-color .3s, color .3s, background .3s;
}
.plat:hover { border-color: var(--accent); color: var(--bone); background: rgba(122,30,22,0.12); }
.plat svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   MUSIC / TRACKLIST
   ============================================================ */
.tracks__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 46px;
  gap: 24px;
  flex-wrap: wrap;
}
.tracks__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.track {
  display: grid;
  grid-template-columns: 42px 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(139,136,128,0.14);
  cursor: pointer;
  transition: background .3s, padding-left .3s;
  position: relative;
}
.track:first-of-type { border-top: 1px solid rgba(139,136,128,0.14); }
.track:hover { background: linear-gradient(90deg, rgba(122,30,22,0.10), transparent); padding-left: 26px; }
.track.playing { background: linear-gradient(90deg, rgba(122,30,22,0.16), transparent); }
.track__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ash-dim);
}
.track.playing .track__num { color: var(--accent-lit); }
.track__play {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(139,136,128,0.4);
  display: grid; place-items: center;
  color: var(--bone);
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.track:hover .track__play { border-color: var(--accent-lit); }
.track__play svg { width: 13px; height: 13px; fill: currentColor; }
.track__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.track__name {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.18rem;
  color: var(--bone);
}
.track__lyric {
  font-family: var(--f-quote);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track__tag {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: var(--ash-dim);
  border: 1px solid rgba(139,136,128,0.22);
  padding: 4px 9px;
}
.track__dur {
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  color: var(--ash);
}
.track__bars {
  display: none;
  gap: 3px;
  align-items: flex-end;
  height: 18px;
}
.track.playing .track__bars { display: flex; }
.track.playing .track__num-wrap .track__num { display: none; }
.track__bars span {
  width: 3px;
  background: var(--accent-lit);
  animation: eq 0.9s ease-in-out infinite;
}
.track__bars span:nth-child(2){ animation-delay: .2s; }
.track__bars span:nth-child(3){ animation-delay: .4s; }
.track__bars span:nth-child(4){ animation-delay: .1s; }
@keyframes eq {
  0%,100% { height: 4px; }
  50% { height: 18px; }
}

/* sticky player */
.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  background: rgba(10,9,8,0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(139,136,128,0.2);
}
.player.open { transform: translateY(0); }
.player__bar {
  position: absolute; top: 0; left: 0;
  height: 2px;
  background: var(--accent-lit);
  width: 0%;
}
.player__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(22px, 5vw, 54px);
}
.player__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--bone);
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s, transform .2s;
}
.player__btn:hover { background: var(--accent-lit); transform: scale(1.05); }
.player__btn svg { width: 16px; height: 16px; fill: currentColor; }
.player__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.player__name {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player__artist {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  color: var(--ash);
}
.player__time {
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  color: var(--ash);
}
.player__close {
  background: none; border: none; color: var(--ash);
  cursor: pointer; font-size: 1.2rem; padding: 6px;
  transition: color .3s;
}
.player__close:hover { color: var(--bone); }

/* ============================================================
   TOUR
   ============================================================ */
.tour { background: var(--coal-2); }
.tour__row {
  display: grid;
  grid-template-columns: 130px 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 24px 14px;
  border-bottom: 1px solid rgba(139,136,128,0.14);
  transition: background .3s, padding-left .3s;
}
.tour__row:first-of-type { border-top: 1px solid rgba(139,136,128,0.14); }
.tour__row:hover { background: linear-gradient(90deg, rgba(122,30,22,0.08), transparent); padding-left: 22px; }
.tour__date { display: flex; flex-direction: column; }
.tour__date .d {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.tour__date .m {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  color: var(--accent-lit);
}
.tour__city {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  color: var(--bone);
}
.tour__venue {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tour__status {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  color: var(--ash);
}
.tour__status.soldout { color: var(--oxide-lit); }
.tour__btn {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  background: transparent;
  -webkit-appearance: none;
          appearance: none;
  color: var(--bone);
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.tour__btn:hover { background: var(--accent); transform: translateY(-1px); }
.tour__btn[disabled] { opacity: 0.35; border-color: var(--ash-dim); pointer-events: none; }

/* ============================================================
   MERCH
   ============================================================ */
.merch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.product {
  border: 1px solid rgba(139,136,128,0.16);
  background: var(--coal-2);
  transition: border-color .3s, transform .3s;
}
.product:hover { border-color: rgba(179,154,94,0.45); transform: translateY(-4px); }
.product__art {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 50% 0%, #1c1a17, var(--coal) 72%);
  overflow: hidden;
}
.product__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/grain.svg");
  background-size: 200px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
/* garment shapes */
.garment {
  position: relative;
  width: 74%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
}
.garment__print { position: relative; z-index: 2; }
.garment__word {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone);
  line-height: 0.95;
}
.garment__mono {
  font-family: var(--f-liturgy);
  font-weight: 900;
  color: var(--bone);
  line-height: 1;
}
.garment__sub {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.5rem;
  color: var(--ash);
  margin-top: 6px;
}
.tee {
  background: #15130f;
  clip-path: polygon(0% 18%, 18% 18%, 30% 6%, 70% 6%, 82% 18%, 100% 18%, 88% 34%, 88% 100%, 12% 100%, 12% 34%);
  width: 88%;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.7);
}
.vinyl {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, #0c0b0a 0 2px, #131210 2px 4px);
  display: grid; place-items: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.9), 0 10px 30px rgba(0,0,0,0.6);
}
.vinyl__label {
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--oxide), #3a100b);
  display: grid; place-items: center;
}
.product__body { padding: 16px 18px 20px; }
.product__name {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.02rem;
  color: var(--bone);
}
.product__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.product__price {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.product__add {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: var(--bone-dim);
  background: transparent;
  -webkit-appearance: none;
          appearance: none;
  border: 1px solid rgba(139,136,128,0.3);
  padding: 7px 13px;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.product__add:hover { background: var(--accent); color: var(--bone); border-color: var(--accent); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.signup {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.signup__col {
  position: absolute;
  bottom: -8%; left: 50%;
  transform: translateX(-50%);
  height: 130%;
  opacity: 0.08;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent);
          mask-image: radial-gradient(closest-side, #000 55%, transparent);
}
.signup__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.signup__title {
  font-family: var(--f-liturgy);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 16px 0 14px;
}
.signup__desc {
  font-family: var(--f-lyric);
  font-size: 1.08rem;
  color: var(--bone-dim);
  margin-bottom: 32px;
}
.signup__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(139,136,128,0.3);
}
.signup__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  outline: none;
}
.signup__form input::placeholder { color: var(--ash-dim); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; }
.signup__form button {
  background: var(--accent);
  border: none;
  color: var(--bone);
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  padding: 0 26px;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.signup__form button:hover { background: var(--accent-lit); }
.signup__note {
  margin-top: 16px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ash-dim);
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(139,136,128,0.16);
  padding: clamp(56px, 7vw, 90px) clamp(22px, 5vw, 72px) 40px;
  background: var(--coal);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto 50px;
}
.footer__brand-mono {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)) contrast(1.05);
  -webkit-user-drag: none;
  user-select: none;
}
.footer__tag {
  font-family: var(--f-quote);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ash);
  margin-top: 12px;
  max-width: 32ch;
}
.footer__colhead {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  color: var(--ash-dim);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--bone-dim);
  transition: color .25s;
  width: fit-content;
}
.footer__links a:hover { color: var(--accent-lit); }
.footer__socials { display: flex; gap: 14px; margin-top: 4px; }
.footer__socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(139,136,128,0.26);
  display: grid; place-items: center;
  color: var(--bone-dim);
  transition: border-color .3s, color .3s, background .3s, transform .2s;
}
.footer__socials a:hover { border-color: var(--accent); color: var(--bone); background: rgba(122,30,22,0.14); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(139,136,128,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ash-dim);
  text-transform: uppercase;
}

/* ============================================================
   reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .scroll-cue .line, .pulse-dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .release__grid { grid-template-columns: 1fr; }
  .cover { max-width: 440px; margin: 0 auto; }
  .merch__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .tour__row { grid-template-columns: 90px 1fr auto; }
  .tour__status { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__toggle {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    background: none; border: 1px solid rgba(139,136,128,0.3);
    color: var(--bone); cursor: pointer;
  }
  .nav__toggle svg { width: 18px; height: 18px; fill: currentColor; }
  .nav__brand-name { display: none; }
  .hero { align-items: flex-end; }
  .hero__figure {
    width: 100%;
    object-position: 58% 18%;
    -webkit-mask-image: radial-gradient(120% 80% at 60% 30%, #000 40%, transparent 80%);
            mask-image: radial-gradient(120% 80% at 60% 30%, #000 40%, transparent 80%);
    opacity: 0.85;
  }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(8,8,7,0.5) 0%, rgba(8,8,7,0.1) 30%, rgba(8,8,7,0.85) 72%, var(--coal) 100%);
  }
  .hero__halo { right: 50%; top: 30%; width: 320px; }
  .hero__frag { display: none; }
  .hero__inner { padding-bottom: 64px; }
  .hero__title { font-size: clamp(4rem, 22vw, 7rem); }
  .hero__actions { gap: 12px; }
  .hero__release { margin-left: 0; width: 100%; margin-top: 4px; }
  .track { grid-template-columns: 34px 1fr auto; gap: 14px; }
  .track__tag, .track__lyric { display: none; }
  .track__play { display: none; }
  .merch__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .signup__form { flex-direction: column; }
  .signup__form button { padding: 14px; }
  .marquee span { font-size: 0.85rem; }
}

/* mobile nav drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(8,8,7,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  color: var(--bone-dim);
}
.mobile-menu a:hover { color: var(--accent-lit); }
.mobile-menu__close {
  position: absolute;
  top: 22px; right: 22px;
  background: none; border: none; color: var(--bone);
  font-size: 2rem; cursor: pointer;
}
