/* WhiteStar — streamlined band site */
:root {
  --bg: #06070c;
  --bg-brown: #12100e;
  --bg-blue: #0a1018;
  --bg-alt: #0c0e14;
  --bg-warm: #100e0c;
  --text: #f4f0e8;
  --muted: #a8a4a0;
  --ink: #0a0a0c;
  /* Lemon yellow */
  --accent: #fff44f;
  --accent-hot: #fffa8a;
  --accent-rose: #ff5c7a;
  --accent-brown: #6b4a2a;
  --accent-blue: #2a4a6e;
  --glow: rgba(80, 120, 180, 0.35);
  --glow-rose: rgba(255, 92, 122, 0.2);
  --border: rgba(244, 240, 232, 0.1);
  --border-accent: rgba(255, 244, 79, 0.18);
  --display: "Oswald", "DM Sans", system-ui, sans-serif;
  --nav: "Oswald", "DM Sans", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --header-h: 6.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Muted galaxy: deep black + soft nebula brown/blue/violet dust */
  --surface-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  --grad-body:
    radial-gradient(ellipse 70% 45% at 20% 15%, rgba(55, 35, 70, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(25, 45, 85, 0.16), transparent 58%),
    radial-gradient(ellipse 55% 40% at 50% 80%, rgba(50, 32, 22, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(30, 40, 75, 0.1), transparent 50%),
    radial-gradient(ellipse 35% 25% at 15% 70%, rgba(40, 28, 20, 0.1), transparent 50%),
    linear-gradient(168deg, #05060a 0%, #0a0c12 35%, #080a10 70%, #06070c 100%);
  --grad-section:
    linear-gradient(150deg, rgba(14, 12, 14, 0.97) 0%, rgba(8, 12, 20, 0.98) 50%, rgba(12, 10, 12, 0.97) 100%),
    radial-gradient(ellipse 65% 50% at 10% 30%, rgba(40, 28, 55, 0.14), transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 75%, rgba(22, 40, 70, 0.14), transparent 58%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(35, 24, 18, 0.08), transparent 55%);
  --grad-card:
    linear-gradient(165deg, rgba(18, 14, 16, 0.92) 0%, rgba(10, 14, 22, 0.95) 50%, rgba(14, 12, 12, 0.92) 100%);
  --grad-contact:
    linear-gradient(140deg, #0e0c0e 0%, #0a1018 40%, #0c0e12 75%, #06070c 100%),
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(45, 30, 55, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(20, 40, 75, 0.14), transparent 55%),
    radial-gradient(ellipse 35% 30% at 50% 90%, rgba(40, 28, 18, 0.1), transparent 50%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--grad-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Soft cosmic dust over deep space */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: var(--surface-noise);
  background-size: 240px 240px;
  mix-blend-mode: soft-light;
}

/* Distant nebula haze — muted galaxy feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 45% 30% at 12% 40%, rgba(60, 40, 90, 0.09), transparent 70%),
    radial-gradient(ellipse 40% 28% at 88% 55%, rgba(25, 50, 95, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 25% at 55% 15%, rgba(50, 35, 25, 0.07), transparent 65%),
    radial-gradient(circle 1px at 18% 22%, rgba(200, 210, 255, 0.25), transparent 2px),
    radial-gradient(circle 1px at 72% 38%, rgba(255, 230, 180, 0.2), transparent 2px),
    radial-gradient(circle 1px at 42% 68%, rgba(180, 200, 255, 0.18), transparent 2px),
    radial-gradient(circle 1px at 91% 12%, rgba(255, 244, 200, 0.15), transparent 2px),
    radial-gradient(circle 1px at 8% 78%, rgba(200, 190, 255, 0.15), transparent 2px);
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* Header — nav centered with logo between Tour and Contact */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2rem);
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 14, 0.96) 0%,
    rgba(10, 10, 14, 0.8) 55%,
    rgba(6, 8, 14, 0.4) 100%
  );
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: linear-gradient(
    90deg,
    rgba(10, 8, 12, 0.94),
    rgba(8, 12, 20, 0.94),
    rgba(10, 8, 12, 0.94)
  );
  backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  margin: 0 0.35rem;
  transition: transform 0.25s var(--ease);
}

.nav .logo:hover {
  transform: scale(1.04);
  text-shadow: none;
}

.nav .logo img {
  height: 5.5rem;
  width: auto;
  border-radius: 0;
  background: transparent;
  /* white mark on dark site; no black plate */
  mix-blend-mode: normal;
}

/* Subtle sans + white for all nav items */
.nav a {
  font-family: var(--nav);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s, text-shadow 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.nav a:not(.btn):not(.logo):hover {
  color: var(--accent);
  text-shadow: none;
}

.nav a.btn {
  padding: 0.5rem 1rem;
  font-family: var(--nav);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  border: 2px solid var(--accent-hot);
  box-shadow: none;
}

.nav a.btn:hover {
  color: #000;
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  text-shadow: none;
  box-shadow: 0 6px 16px rgba(80, 120, 180, 0.22);
}

/* Active nav item (e.g. Music page) */
.nav a.nav-active {
  color: #000;
  background: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
}

.nav a.nav-active:hover {
  color: #000;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.25s, opacity 0.25s;
}

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

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

/* Buttons — match header style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  background: var(--accent);
  color: var(--ink);
  box-shadow: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(80, 120, 180, 0.28);
  background: var(--accent-hot);
  border-color: var(--accent-hot);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(80, 120, 180, 0.28);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.7rem;
}

.btn-full {
  width: 100%;
}

/* Layout — above stars so only transparent hero areas reveal them */
main {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 720px;
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.section-alt {
  background: var(--grad-section);
  border-top: none;
  border-bottom: none;
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: var(--surface-noise);
  background-size: 200px 200px;
  mix-blend-mode: soft-light;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* All section yellow chips — same size, pure black text */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000 !important;
  -webkit-text-fill-color: #000;
  background: var(--accent);
  border: 2px solid var(--accent-hot);
  padding: 0.42rem 0.85rem;
  margin-bottom: 0.85rem;
  line-height: 1.25;
  box-shadow: none;
  text-shadow: none;
  transition: box-shadow 0.25s;
}

.eyebrow:hover {
  box-shadow: 0 6px 16px rgba(80, 120, 180, 0.2);
}

.lead {
  color: var(--muted);
  max-width: 28rem;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

/* Hero — full viewport so band animation plays on first scroll */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) clamp(1rem, 4vw, 2rem) 3rem;
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

/* Hero photo — soft blend, stars show through, photo still readable */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
}

.hero-photo {
  position: relative;
  width: min(105vw, 1575px);
  height: min(92.4vh, 945px);
  border: none;
  /* Soft multi-axis dissolve — keep center strong, kill hard edges */
  -webkit-mask-image:
    radial-gradient(
      ellipse 70% 64% at 50% 46%,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.85) 40%,
      rgba(0, 0, 0, 0.45) 58%,
      rgba(0, 0, 0, 0.12) 74%,
      transparent 90%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 10%,
      #000 22%,
      #000 78%,
      rgba(0, 0, 0, 0.35) 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 24%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    );
  mask-image:
    radial-gradient(
      ellipse 70% 64% at 50% 46%,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.85) 40%,
      rgba(0, 0, 0, 0.45) 58%,
      rgba(0, 0, 0, 0.12) 74%,
      transparent 90%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 10%,
      #000 22%,
      #000 78%,
      rgba(0, 0, 0, 0.35) 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 24%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    );
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect, intersect;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Opaque enough to read faces; translucent enough for stars */
  opacity: 0.72;
  border: none;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: normal;
  /* Hard-rock paint style, colors dialed back further */
  filter: contrast(1.06) brightness(0.99) saturate(0.765);
}

/* Light film grain + a few subtle cracks */
.hero-photo .hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.29;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.hero-photo .hero-texture::before {
  display: none;
}

/* Sparse subtle cracks only */
.hero-photo .hero-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.12) 38.3%,
      transparent 38.6%,
      transparent 100%
    ),
    linear-gradient(
      -28deg,
      transparent 0%,
      transparent 62%,
      rgba(255, 255, 255, 0.09) 62.2%,
      transparent 62.5%,
      transparent 100%
    ),
    linear-gradient(
      72deg,
      transparent 0%,
      transparent 78%,
      rgba(0, 0, 0, 0.18) 78.15%,
      transparent 78.4%,
      transparent 100%
    ),
    linear-gradient(
      155deg,
      transparent 0%,
      transparent 22%,
      rgba(255, 255, 255, 0.07) 22.15%,
      transparent 22.4%,
      transparent 55%,
      rgba(0, 0, 0, 0.12) 55.2%,
      transparent 55.45%,
      transparent 100%
    );
}

/* Hero text entrance animation */
.hero-copy .eyebrow,
.hero-copy .hero-line,
.hero-copy .lead,
.hero-copy .hero-actions,
.hero-copy .scroll-cue {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-text-in 0.85s var(--ease) forwards;
}

.hero-copy .eyebrow {
  animation-delay: 0.15s;
}

.hero-copy .hero-line:nth-child(1) {
  animation-delay: 0.35s;
}

.hero-copy .hero-line:nth-child(2) {
  animation-delay: 0.5s;
  transform: translateY(28px) scale(0.96);
}

.hero-copy .hero-line:nth-child(3) {
  animation-delay: 0.65s;
}

.hero-copy .lead {
  animation-delay: 0.85s;
}

.hero-copy .hero-actions {
  animation-delay: 1.05s;
}

.hero-copy .scroll-cue {
  animation:
    hero-scroll-in 0.85s var(--ease) 1.35s forwards,
    scroll-bounce 2s ease-in-out 2.3s infinite;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-scroll-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Muted stage wash — barely any color */
.hero-photo .hero-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(ellipse 50% 45% at 30% 40%, rgba(160, 120, 70, 0.35), transparent 65%),
    radial-gradient(ellipse 45% 40% at 70% 55%, rgba(90, 70, 50, 0.25), transparent 60%),
    linear-gradient(160deg, rgba(40, 30, 25, 0.2), transparent 50%);
}

/* Soft edge fog only — lighter so photo + stars both show */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  background:
    linear-gradient(
      to right,
      var(--bg) 0%,
      rgba(10, 10, 12, 0.7) 6%,
      transparent 22%,
      transparent 78%,
      rgba(10, 10, 12, 0.7) 94%,
      var(--bg) 100%
    ),
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(10, 10, 12, 0.65) 8%,
      transparent 24%,
      transparent 70%,
      rgba(10, 10, 12, 0.65) 90%,
      var(--bg) 100%
    );
  z-index: 2;
  opacity: 0.85;
}

.hero-bg::after {
  background: radial-gradient(
    ellipse 62% 56% at 50% 45%,
    transparent 0%,
    transparent 38%,
    rgba(10, 10, 12, 0.15) 60%,
    rgba(10, 10, 12, 0.45) 80%,
    rgba(10, 10, 12, 0.75) 100%
  );
  z-index: 3;
}

.hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.hero h1 .hero-line {
  display: block;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero h1 .hero-line--accent {
  display: inline-block;
  color: var(--ink);
  background: var(--accent);
  padding: 0.092em 0.322em;
  box-shadow: none;
  text-shadow: none;
  transition: box-shadow 0.25s;
}

.hero h1 .hero-line--accent:hover {
  box-shadow: 0 8px 20px rgba(80, 120, 180, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: none;
}

.hero-copy .lead {
  color: rgba(244, 240, 232, 0.9);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2.75rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-cue:hover {
  color: var(--accent);
}

.scroll-cue svg {
  opacity: 0.85;
}

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

/* Story — after hero; polaroid floats so text wraps */
.story-layout {
  display: block;
  max-width: 1100px;
}

.story-copy {
  overflow: visible; /* allow polaroid eject motion */
}

.story-copy .section-head {
  margin-bottom: 1.5rem;
  clear: both;
}

/* Story eyebrow uses shared .eyebrow sizing */

.story-copy .section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  max-width: 34ch;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

/* Band name callouts — caps, no glow */
.ws-name {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  font-family: var(--display);
  font-size: 1.02em;
}

/* Story section reveal */
#story .section-head {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

#story .section-head.is-visible {
  opacity: 1;
  transform: none;
}

#story .story-copy > p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

#story.is-visible .story-copy > p {
  opacity: 1;
  transform: none;
}

#story.is-visible .story-copy > p:nth-of-type(1) { transition-delay: 0.55s; }
#story.is-visible .story-copy > p:nth-of-type(2) { transition-delay: 0.7s; }
#story.is-visible .story-copy > p:nth-of-type(3) { transition-delay: 0.85s; }

/* Polaroid — “just developed” fly-in */
.story-photo {
  float: left;
  width: min(48%, 440px);
  margin: 0.25rem 1.75rem 1.25rem 0;
  padding: 0.7rem 0.7rem 0;
  background: #f2e8c8;
  border: none;
  border-radius: 2px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 14px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(12deg) scale(0.35) translateY(80px);
  opacity: 0;
  position: relative;
  z-index: 2;
  transform-origin: 50% 110%;
  will-change: transform, opacity;
}

.story-photo.is-visible {
  animation: polaroid-eject 1.15s cubic-bezier(0.22, 1.2, 0.36, 1) 0.2s forwards;
}

/* Camera flash when polaroid appears */
.story-photo.is-visible::before {
  content: "";
  position: absolute;
  inset: 0.7rem 0.7rem auto 0.7rem;
  aspect-ratio: 16 / 10;
  z-index: 3;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  animation: polaroid-flash 0.55s ease-out 0.15s forwards;
}

@keyframes polaroid-eject {
  0% {
    opacity: 0;
    transform: rotate(18deg) scale(0.28) translateY(100px);
    filter: brightness(2.2);
  }
  35% {
    opacity: 1;
    transform: rotate(-6deg) scale(1.06) translateY(-12px);
    filter: brightness(1.3);
  }
  55% {
    transform: rotate(3deg) scale(0.97) translateY(6px);
    filter: brightness(1.05);
  }
  75% {
    transform: rotate(-2.5deg) scale(1.02) translateY(-2px);
    filter: brightness(1);
  }
  100% {
    opacity: 1;
    transform: rotate(-1.5deg) scale(1) translateY(0);
    filter: none;
  }
}

@keyframes polaroid-flash {
  0% { opacity: 0.95; }
  40% { opacity: 0.55; }
  100% { opacity: 0; }
}

.story-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  /* Warm polaroid aging — photo already yellowed */
  filter: contrast(0.98) saturate(1.05) sepia(0.12) brightness(1.02);
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  /* Develop: start washed, settle to final look */
  opacity: 0.35;
  transition: opacity 1.4s ease 0.35s, filter 1.4s ease 0.35s;
}

.story-photo.is-visible img {
  opacity: 1;
  filter: contrast(0.98) saturate(1.05) sepia(0.12) brightness(1.02);
}

.story-photo::after {
  display: none;
}

.story-photo figcaption {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a2622;
  text-align: center;
  padding: 0.9rem 0.5rem 1.05rem;
  line-height: 1.35;
  opacity: 0;
  transition: opacity 0.5s ease 0.9s;
}

.story-photo.is-visible figcaption {
  opacity: 1;
}

.story-copy p {
  color: rgba(232, 228, 220, 0.88);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 1.05rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-copy > p:first-of-type {
  color: rgba(244, 240, 232, 0.95);
  font-size: 1.02rem;
}

.story-photo figcaption .ws-name {
  color: #1a1610;
  text-shadow: none;
  font-weight: 800;
}

/* Band */
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Scroll reveal — Meet WhiteStar */
#band .section-head {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

#band .section-head.is-visible {
  opacity: 1;
  transform: none;
}

.member {
  padding: 0 0 1.25rem;
  background: var(--grad-card);
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  will-change: transform, opacity;
  position: relative;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    box-shadow 0.3s;
}

.member::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: var(--surface-noise);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.member > * {
  position: relative;
  z-index: 1;
}

/* Fly in from staggered directions */
.member:nth-child(1) {
  transform: translate3d(-72px, 48px, 0) rotate(-4deg) scale(0.88);
  transition-delay: 0.08s;
}
.member:nth-child(2) {
  transform: translate3d(0, 80px, 0) rotate(2deg) scale(0.88);
  transition-delay: 0.2s;
}
.member:nth-child(3) {
  transform: translate3d(0, 80px, 0) rotate(-2deg) scale(0.88);
  transition-delay: 0.32s;
}
.member:nth-child(4) {
  transform: translate3d(72px, 48px, 0) rotate(4deg) scale(0.88);
  transition-delay: 0.44s;
}

.member.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.member.is-visible:hover {
  transform: translate3d(0, -6px, 0) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(80, 120, 180, 0.15);
}

.member.is-visible .member-photo img {
  animation: member-photo-in 0.9s var(--ease) both;
}

.member:nth-child(1).is-visible .member-photo img { animation-delay: 0.15s; }
.member:nth-child(2).is-visible .member-photo img { animation-delay: 0.27s; }
.member:nth-child(3).is-visible .member-photo img { animation-delay: 0.39s; }
.member:nth-child(4).is-visible .member-photo img { animation-delay: 0.51s; }

@keyframes member-photo-in {
  from {
    transform: scale(1.18);
    filter: brightness(0.55) saturate(0.7);
  }
  to {
    transform: scale(1);
    filter: none;
  }
}

.member-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1e;
  margin-bottom: 1rem;
  border-bottom: none;
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s var(--ease);
  /* Match hero: grain + reduced color */
  filter: contrast(1.06) brightness(0.99) saturate(0.765);
}

.member-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.29;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.member.is-visible:hover .member-photo img {
  transform: scale(1.05);
  animation: none;
}

.member h3,
.member .role,
.member .bio {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.member h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* Bio cards — different color, stay small */
.member .role {
  display: inline-block;
  font-family: var(--display);
  color: #e8e4dc;
  background: rgba(45, 58, 78, 0.9);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.5rem 1.15rem 0.75rem;
  padding: 0.25rem 0.55rem;
  border: none;
  box-shadow: inset 0 -2px 0 rgba(120, 150, 190, 0.45);
  transition: box-shadow 0.25s, background 0.25s;
}

.member:hover .role {
  background: rgba(55, 72, 98, 0.95);
  box-shadow: inset 0 -2px 0 rgba(160, 185, 220, 0.7);
}

.member .bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-bottom: 0.25rem;
}

/* Music */
.tracks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.track {
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(18, 14, 16, 0.5) 0%, rgba(10, 14, 24, 0.55) 100%),
    rgba(255, 255, 255, 0.015);
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.25s;
}

.track:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 18px rgba(80, 120, 180, 0.12);
}

.track h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--accent);
  text-shadow: none;
}

.track iframe {
  border-radius: 4px;
}

/* Tour */
.dates {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dates li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}

.dates li:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 16px rgba(80, 120, 180, 0.12);
}

.dates time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
  padding: 0.45rem 0.5rem;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 2px;
  box-shadow: none;
  transition: box-shadow 0.25s;
}

.dates li:hover time {
  box-shadow: 0 0 12px rgba(80, 120, 180, 0.25);
}

.dates .day {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

.dates .mon {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dates h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
}

.dates p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
#contact.section-alt {
  background: var(--grad-contact);
  border-top: none;
}

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

.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list a {
  display: inline-block;
  font-family: var(--display);
  color: #000;
  background: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 2px solid #ffffff;
  box-shadow: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.contact-list a:hover {
  color: #000;
  background: var(--accent);
  border-color: var(--accent-hot);
  box-shadow: 0 6px 18px rgba(80, 120, 180, 0.22);
}

/* Contact form submit — white */
#contact .btn-full,
.contact .btn-full {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

#contact .btn-full:hover,
.contact .btn-full:hover {
  background: var(--accent);
  border-color: var(--accent-hot);
  color: #000;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background:
    linear-gradient(160deg, rgba(16, 12, 14, 0.55) 0%, rgba(10, 14, 24, 0.6) 100%),
    rgba(255, 255, 255, 0.015);
  border: none;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.form label span {
  display: block;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: rgba(120, 160, 210, 0.85);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 4px 16px rgba(80, 120, 180, 0.12);
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.75rem;
  border-top: none;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, transparent, rgba(8, 10, 18, 0.65)),
    linear-gradient(90deg, rgba(40, 28, 50, 0.1), transparent 45%, rgba(20, 40, 70, 0.1));
  box-shadow: inset 0 20px 30px -24px rgba(60, 90, 140, 0.12);
}

.footer a {
  color: var(--accent);
  font-weight: 600;
}

.footer-credit {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Music page */
.page-music .music-main {
  padding-top: var(--header-h);
}

/* Music page: clear section fills so stars show through */
body.page-music {
  background: #05060a;
  background-image: none;
}

body.page-music::before,
body.page-music::after {
  display: none;
}

body.page-music #stars {
  opacity: 1;
  z-index: 1;
}

.page-music .section,
.page-music .section-alt {
  background: transparent !important;
  box-shadow: none;
}

.page-music .section-alt::before {
  display: none;
}

.music-page .music-intro {
  margin-bottom: 2rem;
}

/* Track cards — solid enough that Spotify embeds read clearly */
.page-music .track {
  background: linear-gradient(
    145deg,
    rgba(28, 32, 42, 0.94) 0%,
    rgba(14, 16, 24, 0.96) 100%
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.page-music .tracks-spotify .track {
  background: linear-gradient(
    145deg,
    rgba(32, 36, 48, 0.97) 0%,
    rgba(16, 18, 28, 0.98) 100%
  );
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-music .sc-list {
  background: linear-gradient(
    145deg,
    rgba(24, 28, 38, 0.92) 0%,
    rgba(12, 14, 22, 0.95) 100%
  );
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.music-intro,
.music-teaser {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
  margin-top: 1.25rem;
}

/* Music CTA: EQ stacked above button, blended as one unit */
.music-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 1.35rem;
  width: min(100%, 15.5rem);
  border-radius: 4px;
  overflow: hidden;
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(80, 120, 180, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.music-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-hot);
  box-shadow: 0 10px 26px rgba(80, 120, 180, 0.28);
}

.music-cta .eq {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 32px;
  padding: 0.5rem 1.25rem 0.2rem;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 100%
  );
}

.music-cta .eq span {
  display: block;
  width: 8px;
  height: 100%;
  border-radius: 1px 1px 0 0;
  background: rgba(0, 0, 0, 0.55);
  transform-origin: bottom center;
  animation: eq-bounce 0.7s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -0.08s);
}

.music-cta .eq span:nth-child(odd) {
  animation-duration: 0.55s;
}
.music-cta .eq span:nth-child(3n) {
  animation-duration: 0.9s;
}

.music-cta-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #000;
  box-shadow: none;
  padding-top: 0.55rem;
  padding-bottom: 0.75rem;
}

.music-cta:hover .music-cta-btn,
.music-cta-btn:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
  color: #000;
}

@keyframes eq-bounce {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

.music-feature {
  margin-bottom: 0.5rem;
}

.music-feature h3 {
  margin-bottom: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .music-cta .eq span {
    animation: none;
    transform: scaleY(0.4);
  }
}

.track-link {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  word-break: break-all;
}

.track-link a {
  color: rgba(160, 190, 230, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sc-list {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sc-list-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text);
}

.sc-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sc-list a {
  color: rgba(160, 190, 230, 0.95);
  font-size: 0.9rem;
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sc-list a:hover {
  color: var(--accent);
}

.tracks-spotify .track iframe {
  min-height: 152px;
}

/* Merch page */
.page-merch .merch-main {
  padding-top: var(--header-h);
}

.merch-hero {
  padding-bottom: 1.5rem;
}

.merch-intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.merch-grid-tees {
  max-width: 1100px;
  margin: 0 auto;
}

.merch-card {
  padding: 0 0 1.35rem;
  background: var(--grad-card);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.merch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 18px rgba(80, 120, 180, 0.12);
}

.merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: #e8e8e8;
  overflow: hidden;
}

.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}

.merch-card:hover .merch-img img {
  transform: scale(1.04);
}

.merch-card-tee h3,
.merch-card-tee .merch-price,
.merch-card-tee .merch-desc,
.merch-card-tee .btn {
  margin-left: 1rem;
  margin-right: 1rem;
}

.merch-visual {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.merch-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.merch-price {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.merch-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  flex: 1;
}

.merch-note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.merch-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

/* Soft accent bar under section titles */
.section-head h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
  opacity: 0.9;
}

.hero .section-head h2::after,
.hero h1::after {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  :root {
    --header-h: 5.25rem;
  }

  .story-photo {
    float: none;
    width: min(100%, 420px);
    margin: 0 auto 1.5rem;
  }

  .story-photo.is-visible {
    animation-name: polaroid-eject-mobile;
  }

  @keyframes polaroid-eject-mobile {
    0% {
      opacity: 0;
      transform: rotate(14deg) scale(0.3) translateY(90px);
      filter: brightness(2);
    }
    40% {
      opacity: 1;
      transform: rotate(-5deg) scale(1.05) translateY(-10px);
      filter: brightness(1.2);
    }
    100% {
      opacity: 1;
      transform: rotate(-1deg) scale(1) translateY(0);
      filter: none;
    }
  }

  .story-copy .section-head h2 {
    max-width: none;
  }

  .header {
    justify-content: center;
    padding-right: 3.5rem;
  }

  /* Keep logo visible in bar; other links in menu */
  .nav {
    gap: 0;
  }

  .nav > a:not(.logo) {
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav.open > a:not(.logo) {
    display: flex;
  }

  .nav .logo img {
    height: 4.25rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--header-h) + 1.5rem);
  }

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

  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav.open .logo {
    display: none;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
  }

  .nav a.btn {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .dates li {
    grid-template-columns: auto 1fr;
  }

  .dates li .btn {
    grid-column: 2;
    justify-self: start;
  }
}

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

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

  #band .section-head,
  .member,
  .member:nth-child(n) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .member.is-visible .member-photo img {
    animation: none;
  }

  .scroll-cue {
    animation: none;
  }

  .hero-copy .eyebrow,
  .hero-copy .hero-line,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .hero-copy .scroll-cue {
    opacity: 1;
    transform: none;
    animation: none;
  }

  #story .section-head,
  #story .story-copy > p,
  .story-photo,
  .story-photo img,
  .story-photo figcaption {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }

  .story-photo {
    transform: rotate(-1.5deg) !important;
  }

  .member:hover,
  .member.is-visible:hover,
  .dates li:hover,
  .btn:hover {
    transform: none;
  }
}
