/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #CC1F1F;
  --red-d:  #a01818;
  --cyan:   #00E5FF;
  --black:  #080808;
  --dark:   #111111;
  --mid:    #1a1a1a;
  --white:  #F5F5F5;
  --muted:  rgba(245,245,245,0.5);
  --border: rgba(245,245,245,0.08);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: auto; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 3rem;
}

.section-head { margin-bottom: 0; }
.section-head .section-title { margin-bottom: 3.5rem; }

section { padding: 7rem 0; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-red,
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover,
.btn-primary:hover { background: var(--red-d); border-color: var(--red-d); }

@keyframes btn-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 0 10px 2px rgba(204,31,31,0.3),
      -10px 0 20px 2px rgba(204,31,31,0.15),
      10px 0 20px 2px rgba(204,31,31,0.15),
      0 4px 14px 2px rgba(204,31,31,0.2);
  }
  50% {
    transform: translateY(-5px);
    box-shadow:
      0 0 18px 4px rgba(204,31,31,0.45),
      -16px 0 32px 4px rgba(204,31,31,0.25),
      16px 0 32px 4px rgba(204,31,31,0.25),
      0 10px 28px 4px rgba(204,31,31,0.3);
  }
}

.btn-pulse {
  animation: btn-float 2s ease-in-out infinite;
}
.btn-pulse:hover {
  animation-play-state: paused;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,245,245,0.4);
}
.btn-outline:hover { border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: #ddd; border-color: #ddd; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,245,245,0.4);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ─── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 22px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  padding: 0;
  z-index: 2;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(204,31,31,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(204,31,31,0.08) 0%, transparent 60%),
    var(--black);
}

/* Grain texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: max(5rem, 10vh) 2rem max(3rem, 6vh);
  box-sizing: border-box;
  overflow: hidden;
}

.hero-badge {
  margin: 0 auto 1.5rem;
  width: min(260px, 30vw, 22vh);
  animation: badge-spin 30s linear infinite;
}

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, min(11vw, 13vh), 10rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--red);
}

/* Scroll-driven word flash */
.hero-headline .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.3s, text-shadow 0.3s, color 0.3s;
}
.hero-headline .word.lit {
  opacity: 1;
  text-shadow: 0 0 60px rgba(204,31,31,0.8), 0 0 20px rgba(204,31,31,0.4);
}
.hero-headline .word.done {
  opacity: 1;
  text-shadow: none;
}
.hero-headline .word.em-word { color: var(--red); }
.hero-headline .word.em-word.lit {
  text-shadow: 0 0 80px rgba(204,31,31,1), 0 0 30px rgba(204,31,31,0.6);
}

.hero-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

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

/* ─── HERO LOGO ───────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  width: min(380px, 58vw);
  width: min(300px, 45vw, 20vh);
  margin: 0.5rem auto clamp(1rem, 4vh, 3rem);
  opacity: 0.35;
  filter: brightness(2.5) blur(14px) saturate(0);
  transform: scale(1.08);
  transition: none;
}

.hero-logo-wrap.bloom-in {
  animation: logo-bloom 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logo-bloom {
  0%   { opacity: 0;   filter: brightness(6) blur(28px) saturate(0);   transform: scale(1.2); }
  20%  { opacity: 0.6; filter: brightness(4) blur(16px) saturate(0.1); transform: scale(1.12); }
  45%  { opacity: 0.85; filter: brightness(2.5) blur(8px) saturate(0.4); transform: scale(1.06); }
  65%  { opacity: 0.95; filter: brightness(1.6) blur(3px) saturate(0.8); transform: scale(1.02); }
  85%  { opacity: 1;   filter: brightness(1.15) blur(0.5px) saturate(1); transform: scale(1.0); }
  100% { opacity: 1;   filter: brightness(1) blur(0) saturate(1);       transform: scale(1); }
}

.hero-ring-halo {
  position: absolute;
  inset: -12%;
  animation: badge-spin 20s linear infinite;
  filter: drop-shadow(0 0 30px rgba(204,31,31,0.6));
}

.hero-stamp {
  width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

/* ─── SCROLL STORY ────────────────────────────────────── */
.scroll-story { position: relative; }

.story-panel {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Set art via JS from data-art attr */
.story-panel[data-art] { background-image: var(--bg); }

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.3) 60%,
    rgba(8,8,8,0.7) 100%
  );
  z-index: 1;
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem;
}

.story-content--left { margin-left: 8vw; margin-top: -8vh; }
.story-content--right { margin-left: auto; margin-right: 8vw; text-align: right; }

.story-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

/* Spray paint diagonal word */
.story-word {
  position: absolute;
  left: 5vw;
  bottom: 12%;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  transform: rotate(-14deg);
  transform-origin: left center;
  opacity: 0;
  filter: blur(18px) saturate(0);
  text-shadow:
    2px 2px 0 rgba(204,31,31,0.6),
    -1px -1px 8px rgba(204,31,31,0.3);
}

.story-word--right {
  left: auto;
  right: 5vw;
  transform: rotate(14deg);
  transform-origin: right center;
}

.story-word.spray-go {
  animation: spraypaint 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes spraypaint {
  0%   { opacity: 0;    filter: blur(22px) saturate(0);   letter-spacing: 0.4em; }
  15%  { opacity: 0.3;  filter: blur(14px) saturate(0.2); letter-spacing: 0.25em; }
  35%  { opacity: 0.6;  filter: blur(7px)  saturate(0.5); letter-spacing: 0.14em; }
  55%  { opacity: 0.85; filter: blur(3px)  saturate(0.8); letter-spacing: 0.08em; }
  75%  { opacity: 0.95; filter: blur(1px)  saturate(1);   letter-spacing: 0.065em; }
  90%  { opacity: 1;    filter: blur(0.5px) saturate(1.1); letter-spacing: 0.06em; }
  100% { opacity: 1;    filter: blur(0) saturate(1);      letter-spacing: 0.06em; }
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-panel.visible .story-title {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .story-content--left,
  .story-content--right {
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
  }
  .story-panel {
    height: 100vw;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

/* ─── MUSIC ───────────────────────────────────────────── */
#music { background: var(--dark); }

.music-embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.embed-wrap iframe {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.embed-yt iframe { aspect-ratio: 16/9; height: auto; }

.yt-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.yt-placeholder strong { color: var(--white); }
.yt-placeholder span { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

.bandcamp-wrap {
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stream-links a {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.stream-links a:hover { color: var(--white); border-color: var(--red); }

.stream-icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stream-icon-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.stream-icon-links a svg { width: 18px; height: 18px; flex-shrink: 0; }
.stream-icon-links a:hover { color: var(--white); border-color: var(--red); background: rgba(204,31,31,0.08); }

/* ─── THE BAND ────────────────────────────────────────── */
#band { background: var(--black); }

.band-bio--centered {
  max-width: 720px;
  margin: 0 auto 6rem;
  text-align: center;
}

.band-bio p {
  color: rgba(245,245,245,0.75);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.band-bio strong { color: var(--white); }

.band-photo-wrap {
  position: relative;
}

.band-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: url(#duotone-red) contrast(1.2) brightness(0.9);
  transition: filter 0.6s;
}
.band-photo-wrap:hover img {
  filter: grayscale(0%) contrast(1.05);
}

.band-photo-wrap.no-img {
  aspect-ratio: 3/4;
  background: var(--mid);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.band-photo-wrap.no-img::after {
  content: 'Drop assets/band-photo.jpg here';
}

.photo-accent {
  position: absolute;
  top: 1rem; left: 1rem;
  right: -1rem; bottom: -1rem;
  border: 1px solid var(--red);
  z-index: -1;
  pointer-events: none;
}

/* ─── MEMBERS GRID ────────────────────────────────────── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.member-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}

.member-img-wrap {
  position: absolute;
  inset: 0;
}

.member-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease, filter 0.6s;
  filter: url(#duotone-red) contrast(1.2) brightness(0.9);
}

/* Duotone: black shadows, red highlights via SVG filter */
.member-img-wrap {
  position: absolute;
  inset: 0;
}
.member-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(204,31,31,0.55),
    rgba(8,8,8,0.3)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.5s;
}

.member-card:hover .member-img-wrap::after,
.member-card:focus .member-img-wrap::after {
  opacity: 0;
}

.member-card:hover .member-img-wrap img,
.member-card:focus .member-img-wrap img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}

.member-img-wrap.no-img {
  background: var(--mid);
}
.member-img-wrap.no-img::after {
  content: attr(data-name);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.7) 40%,
    rgba(8,8,8,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(0);
  transition: background 0.3s;
}

.member-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.member-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.member-bio {
  font-size: 0.82rem;
  color: rgba(245,245,245,0.75);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.member-card:hover .member-img-wrap img,
.member-card:focus .member-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}

.member-card:hover .member-bio,
.member-card:focus .member-bio {
  max-height: 300px;
  opacity: 1;
}

.member-card:hover .member-overlay,
.member-card:focus .member-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.99) 0%,
    rgba(8,8,8,0.85) 50%,
    rgba(8,8,8,0.3) 100%
  );
}

/* ─── MEMBER CARD: full-screen bio on tap (mobile) ──────── */
.member-card.bio-open .member-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  padding: 4rem 2rem 3rem;
  background: rgba(8,8,8,0.97);
}
.member-card.bio-open .member-bio {
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible;
}
.member-card.bio-open .member-overlay::after {
  content: 'Tap anywhere to close';
  display: block;
  color: rgba(245,245,245,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* ─── YOUTUBE THUMBNAIL ───────────────────────────────── */
.yt-thumb-link {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}
.yt-thumb-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
  opacity: 0.85;
}
.yt-thumb-link:hover img { transform: scale(1.03); opacity: 0.65; }

.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.yt-thumb-link:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }

.yt-label {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* ─── INSTAGRAM GRID ──────────────────────────────────── */
#instagram { background: var(--black); padding-bottom: 0; }

.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.insta-heading-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  transition: opacity 0.2s;
}
.insta-heading-link:hover { opacity: 0.8; }

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

.insta-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--mid);
}
.insta-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.insta-cell:hover img { transform: scale(1.05); opacity: 0.7; }

.insta-cell--overlay {
  background: var(--mid);
}
.insta-more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(204,31,31,0.15);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.insta-cell--overlay:hover .insta-more { background: rgba(204,31,31,0.35); }

/* ─── SOCIAL ICONS ────────────────────────────────────── */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-icons a svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-icons a:hover { color: var(--white); border-color: var(--red); background: rgba(204,31,31,0.08); }

/* ─── LIVE ────────────────────────────────────────────── */
#live {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.live-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.live-left p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Override Bandsintown widget styles */
.bit-widget-wrap {
  width: 100%;
}

.live-right .bit-widget {
  background: transparent !important;
}

.live-right .bit-event {
  border-bottom: 1px solid var(--border) !important;
  padding: 1.25rem 0 !important;
  background: transparent !important;
}

.live-right .bit-event:last-child {
  border-bottom: none !important;
}

.live-right .bit-event__buttons a {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 1rem !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
}

.live-right .bit-event__buttons a:hover {
  background: var(--red-d) !important;
  border-color: var(--red-d) !important;
}

.live-right .bit-date,
.live-right .bit-venue,
.live-right .bit-location {
  color: var(--white) !important;
}

/* ─── STORE ───────────────────────────────────────────── */
#store {
  padding: 0;
}

.store-inner {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.store-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--red) 0%, #7a0000 50%, var(--black) 100%);
  opacity: 0.85;
}

.store-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SHOWS LIST ──────────────────────────────────────── */
.shows-list { display: flex; flex-direction: column; }

.show-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.show-row:first-child { border-top: 1px solid var(--border); }

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}
.show-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
}
.show-day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}
.show-year {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.show-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.show-venue {
  font-size: 0.8rem;
  color: var(--muted);
}

.show-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

.show-past {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.2);
  border: 1px solid rgba(245,245,245,0.1);
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
}

/* ─── STORE ───────────────────────────────────────────── */
#store { background: var(--dark); }

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.store-item {
  background: var(--mid);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: block;
  text-decoration: none;
}
.store-item:hover { background: #222; transform: translateY(-2px); }
.store-item:hover .store-item-name { color: var(--white); }
.store-item:hover .store-item-price { color: var(--red); }

.store-img-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,245,0.15);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.store-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.store-item:hover .store-img-placeholder img { transform: scale(1.04); }

.store-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
}

.store-item-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.store-item-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245,245,245,0.5);
  transition: color 0.2s;
}

/* ─── SHOPIFY BUY BUTTON — match site style ──────────── */
.shopify-btn-node .shopify-buy__btn,
.shopify-btn-node .shopify-buy__btn-wrapper .shopify-buy__btn {
  display: block !important;
  width: calc(100% - 2rem) !important;
  margin: 0 1rem 0.75rem !important;
  padding: 0.75rem 1.5rem !important;
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border: 2px solid var(--red) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s, border-color 0.2s !important;
  text-align: center !important;
  line-height: 1 !important;
}
.shopify-btn-node .shopify-buy__btn:hover {
  background: var(--red-d) !important;
  border-color: var(--red-d) !important;
}
/* hide any variant/option selectors that leak through */
.shopify-btn-node .shopify-buy__option-set { display: none !important; }

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

/* ─── PRESS ───────────────────────────────────────────── */
#press { background: var(--dark); }

.press-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.5rem;
  background: var(--mid);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.press-card:hover { background: #222; border-color: var(--red); }

.press-card--big {
  /* all cards equal size now */
}

.press-outlet {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

.press-headline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.press-quote {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.press-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
}

.press-achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}

.achievement {
  background: var(--mid);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--border);
}

.achievement-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}

.achievement-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.press-posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.press-posters img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s;
}

.press-posters img:hover { filter: grayscale(0%); }

@media (max-width: 900px) {
  .press-featured { grid-template-columns: 1fr; }
  .press-achievements { grid-template-columns: repeat(2, 1fr); }
  .press-posters { grid-template-columns: 1fr; }
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact { background: var(--black); padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.contact-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-email {
  color: var(--red);
  font-size: 1rem;
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.7; }

.socials-list,
.stream-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.socials-list a,
.stream-list a {
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.socials-list a::before,
.stream-list a::before {
  content: '—';
  color: var(--red);
  font-size: 0.8rem;
}
.socials-list a:hover,
.stream-list a:hover { color: var(--white); padding-left: 4px; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

footer p {
  font-size: 0.78rem;
  color: var(--muted);
}

footer a {
  color: var(--red);
  transition: opacity 0.2s;
}
footer a:hover { opacity: 0.7; }

.footer-bandcamp {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s !important;
}
.footer-bandcamp:hover {
  color: var(--white) !important;
  border-color: var(--white);
  opacity: 1 !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .music-embeds { grid-template-columns: 1fr; }
  .band-intro { grid-template-columns: 1fr; gap: 3rem; }
  .band-photo-wrap { order: -1; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .live-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.2em; }
  .nav-toggle { display: flex; z-index: 101; position: relative; }

  .members-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: clamp(3.5rem, 18vw, 5rem); }

  section { padding: 5rem 0; }
}

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

/* ─── SHORT VIEWPORT FIX ──────────────────────────────── */
@media (max-height: 750px) {
  .hero-content { padding-top: max(5rem, 10vh); }
  .hero-headline { font-size: clamp(2.5rem, min(10vw, 11vh), 8rem); }
  .hero-badge { width: min(220px, 40vw); margin-bottom: 1rem; }
  .hero-logo-wrap { width: min(260px, 42vw); margin-top: 0.5rem; margin-bottom: clamp(1rem, 3vh, 3rem); }
  .hero-ctas { margin-top: 1rem; }
}

@media (max-height: 580px) {
  .hero-content { padding-top: max(4rem, 8vh); }
  .hero-headline { font-size: clamp(2rem, min(9vw, 10vh), 6rem); }
  .hero-badge { width: min(160px, 30vw); margin-bottom: 0.5rem; }
  .hero-logo-wrap { width: min(180px, 32vw); margin-top: 0.25rem; margin-bottom: 1rem; }
  .hero-ctas { gap: 0.5rem; margin-top: 0.5rem; }
  .hero-ctas .btn { padding: 0.6rem 1.5rem; font-size: 0.7rem; }
}
