/* ============================================
   FIELDTRIP — rock-poster + roadtrip + driehoek
   ============================================ */

:root{
  --magenta: #ff3df0;
  --violet: #b85cff;
  --plum: #220822;
  --plum-deep: #160516;
  --plum-band: #0e030e;

  --cream: #f1e6d0;
  --ink: #1a0420;

  --text: #ffffff;
  --muted: rgba(255,255,255,.66);
  --muted-ink: rgba(26,4,32,.62);

  --display: "Archivo Black", "Anton", system-ui, sans-serif;
  --trip-label: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --header-h: 84px;
  --pad-section: clamp(5rem, 11vw, 11rem);
  --gutter: clamp(1.2rem, 4vw, 3.5rem);

  --ease-out-quart: cubic-bezier(.22,.9,.24,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{
  margin:0; padding:0;
  background: var(--plum);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before{
  content:"";
  position: fixed; inset:0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

.container{ max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
a{ color: inherit; }
button{ font: inherit; cursor: pointer; }
img{ display: block; max-width: 100%; }

/* ============ TYPE SYSTEM ============ */
.eyebrow{
  font-family: var(--trip-label);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
}
.tri-bullet{
  display: inline-block;
  width: 11px; height: 10px;
  flex: 0 0 11px;
  filter: drop-shadow(0 0 6px rgba(255,61,240,.5));
}
.tri-bullet.sep{
  width: 14px; height: 13px;
  margin: 0 1rem;
  flex: 0 0 14px;
}

/* ============ HEADER ============ */
header{
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(20,4,26,.65), rgba(20,4,26,.35) 60%, rgba(20,4,26,0));
  transition: background .6s var(--ease-out-quart), backdrop-filter .6s var(--ease-out-quart);
  will-change: background;
}
header.scrolled{
  background: rgba(14,3,14,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
header.menu-open{
  background: rgba(14,3,14,.94);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.header-inner{
  max-width: 1400px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); gap: 1.4rem;
}

.logo-mark{
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: transform .4s var(--ease-spring);
}
.logo-mark .logo-img{
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255,61,240,.45));
}
.logo-mark:hover{ transform: scale(1.04); }

.nav-list{
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .25rem;
}
.nav-list a{
  display: inline-block;
  padding: .55rem .85rem;
  font-family: var(--mono);
  font-size: .78rem; font-weight: 600;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 999px;
  position: relative;
  transition: color .2s ease;
}
.nav-list a::before{
  content:""; position: absolute; inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  transform: scale(.7); opacity: 0;
  transition: transform .3s var(--ease-out-quart), opacity .3s ease;
}
.nav-list a:hover::before{ transform: scale(1); opacity:1; }
.nav-list a .num{
  font-size: .58rem; opacity: .5; margin-right: .35rem;
  position: relative;
}

.header-actions{ display: flex; align-items: center; gap: .6rem; }

.icon-btn{
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff; text-decoration: none;
  transition: transform .3s var(--ease-spring), background .2s ease;
}
.icon-btn:hover{ transform: translateY(-2px) rotate(-6deg); background: rgba(255,255,255,.16); }
.icon-btn svg{ width: 18px; height: 18px; }

.book-btn{
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.2rem;
  font-family: var(--display);
  font-size: .85rem; letter-spacing: .08em;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, box-shadow .4s ease;
}
.book-btn span{ white-space: nowrap; }
.book-btn:hover{
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,61,240,.35);
}
.book-btn .arrow{
  display:inline-block;
  width: 16px; height: 16px;
  transition: transform .35s var(--ease-out-quart);
}
.book-btn:hover .arrow{ transform: translateX(3px); }

.menu-toggle{ display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle .bars{ width: 28px; height: 20px; position: relative; display: block; }
.menu-toggle .bars span{
  display:block; position: absolute; left: 0; right: 0; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease-out-quart), top .3s ease, opacity .2s ease;
}
.menu-toggle .bars span:nth-child(1){ top: 2px; }
.menu-toggle .bars span:nth-child(2){ top: 9px; }
.menu-toggle .bars span:nth-child(3){ top: 16px; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1){ top: 9px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3){ top: 9px; transform: rotate(-45deg); }

/* ============ HERO ============ */
#hero{
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.hero-img-wrap{
  position: absolute; inset: 0;
  z-index: 0;
  display: block;
}
.hero-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: slowZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slowZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.07); }
}

.hero-overlay{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,4,26,.45) 0%, rgba(20,4,26,.05) 25%, rgba(20,4,26,.05) 55%, rgba(20,4,26,.78) 92%, var(--plum) 100%),
    linear-gradient(90deg, rgba(20,4,26,.55) 0%, rgba(20,4,26,.05) 55%, rgba(20,4,26,0) 100%);
  pointer-events: none;
}

/* hero-tri removed for premium clean hero */

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 7rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 5vh, 4rem);
}
.hero-top{ align-self: start; }
.hero-mid{ align-self: end; }
.hero-bottom{
  align-self: end;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: clamp(2rem, 6vh, 4rem);
}
.hero-bottom .tag{
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  max-width: 18ch;
}
.hero-bottom .loc{
  margin: 0;
  font-family: var(--trip-label);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

#hero h1{
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.8rem, 13vw, 12rem);
  line-height: .85;
  letter-spacing: -.04em;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  text-shadow:
    0 2px 0 rgba(255,255,255,.05),
    0 8px 36px rgba(0,0,0,.55),
    0 0 80px rgba(184,92,255,.28),
    0 0 140px rgba(255,61,240,.16);
}
#hero h1::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35em;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--violet), transparent 75%);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out-expo) .6s;
  box-shadow: 0 0 20px rgba(255,61,240,.4);
}
#hero h1.ready::after{ transform: scaleX(1); }
.hero-underline{ display: none; }
#hero h1 .ltr{
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
#hero h1.ready .ltr{
  opacity: 1;
  transform: none;
}

/* Scroll hint */
.scroll-hint{
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scroll-hint .line{
  display: inline-block; width: 50px; height: 1px; background: rgba(255,255,255,.5);
  position: relative; overflow: hidden;
}
.scroll-hint .line::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, #fff 50%, transparent);
  animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer{
  0%{ transform: translateX(-100%);} 100%{ transform: translateX(100%);}
}

/* ============ MARQUEE ============ */
.marquee{
  position: relative;
  border-block: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(255,61,240,.14), rgba(184,92,255,.14));
  overflow: hidden;
  z-index: 3;
}
.marquee-track{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  padding: .9rem 0;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-track span{
  display: inline-flex;
  align-items: center;
}
.marquee-track .ghost{
  -webkit-text-stroke: 1.5px rgba(255,255,255,.85);
  color: transparent;
  font-style: normal;
}
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* ============ OVER ONS ============ */
#over-ons{
  padding: var(--pad-section) 0;
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
#over-ons::before{
  content:"";
  position: absolute;
  top: -10%; right: -8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,61,240,.12), transparent 70%);
  pointer-events: none;
}

.over-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
/* When .reveal is combined with .cinematic, skip the default translateY behavior — the clip-path reveal owns the motion */
.reveal.cinematic{
  opacity: 1;
  transform: none;
}

/* ============ OVER-IMAGE CINEMATIC ============ */
.over-image{
  position: relative;
  aspect-ratio: 3/2;
}
.over-image-frame{
  position: absolute; inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26,4,32,.28);
  clip-path: inset(0 100% 0 0 round 16px);
  transition:
    clip-path 1.6s var(--ease-out-expo),
    transform .9s var(--ease-out-expo),
    box-shadow .9s var(--ease-out-expo);
  isolation: isolate;
}
.over-image-frame::after{
  content:"";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.24) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-130%) skewX(-16deg);
  transition: opacity .55s ease, transform 1.05s var(--ease-out-expo);
}
.over-image.in-view .over-image-frame{
  clip-path: inset(0 0 0 0 round 16px);
}
.over-image img{
  width:100%; height:100%; object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 2s var(--ease-out-expo);
}
.over-image.in-view img{ transform: scale(1); }
.over-image .corner-tag{
  position: absolute; top: 18px; left: 18px;
  background: var(--ink); color: var(--cream);
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  padding: .4rem .65rem; border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .6s ease 1.2s, transform .6s var(--ease-out-expo) 1.2s;
}
.over-image.in-view .corner-tag{ opacity: 1; transform: none; }
.over-image .over-tri{
  position: absolute;
  bottom: -34px; right: -34px;
  width: 110px; height: 100px;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(255,61,240,.45));
  opacity: 0;
  transform: rotate(-30deg) scale(.7);
  transition: opacity .8s ease 1.3s, transform 1.1s var(--ease-spring) 1.3s;
  pointer-events: none;
}
.over-image.in-view .over-tri{
  opacity: 1;
  transform: rotate(0deg) scale(1);
  animation: spinSlow 22s linear infinite 2.4s;
}
@keyframes spinSlow{
  to{ transform: rotate(360deg); }
}

@media (min-width: 761px){
  .over-image:hover .over-image-frame{
    transform: perspective(900px) rotateX(1.8deg) rotateY(-3.4deg) translateY(-8px);
    box-shadow: 0 46px 88px rgba(26,4,32,.38);
  }
  .over-image:hover .over-image-frame::after{
    opacity: 1;
    transform: translateX(130%) skewX(-16deg);
  }
  .over-image:hover img{
    transform: scale(1.075) translate3d(-1.6%, -1.2%, 0);
  }
  .over-image:hover .corner-tag{
    transform: translateY(-2px);
  }
  .over-image:hover .over-tri{
    filter: drop-shadow(0 16px 28px rgba(255,61,240,.58));
  }
}

.over-content .section-head{
  font-family: var(--trip-label); font-size: .76rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted-ink);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .8rem;
}
.over-content .section-head .num{
  background: var(--ink); color: var(--cream);
  padding: .25rem .5rem; border-radius: 4px;
}
.over-content h2{
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .9;
  margin: 0 0 1.6rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.over-content h2 .accent{
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.over-content h2 .accent .word .inner,
#band h2 .accent .word .inner{
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.over-content p{
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(26,4,32,.78);
  margin: 0 0 1.2rem;
  max-width: 58ch;
}

/* Line-by-line subtle reveal for paragraphs */
.split-lines{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s var(--ease-out-quart), transform 1.1s var(--ease-out-quart);
}
.split-lines.in-view{ opacity: 1; transform: none; }

/* Word-mask reveal for split-words headings */
.split-words .word{
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
}
.split-words .word .inner{
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-out-expo), opacity 1s var(--ease-out-expo);
}
.split-words.in-view .word .inner{
  transform: translateY(0);
  opacity: 1;
}

/* ============ MEET THE BAND ============ */
#band{
  padding: var(--pad-section) 0;
  background: var(--plum-deep);
  position: relative;
  overflow: hidden;
}
#band::before{
  content: "BAND · BAND · BAND · BAND · BAND";
  position: absolute;
  top: 4%; left: 0; right: 0;
  font-family: var(--display); font-size: clamp(6rem, 16vw, 16rem);
  white-space: nowrap;
  color: rgba(255,255,255,.02);
  letter-spacing: -.03em;
  pointer-events: none;
  line-height: .85;
}

#band .head{
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
}
#band h2{
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: .9; margin: 0;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
#band h2 .accent,
#band h2 .accent .word .inner{
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
#band .head p{
  max-width: 36ch;
  color: var(--muted);
  font-size: .98rem;
  margin: 0;
}

.bandgrid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.member{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  perspective: 900px;
}
.member .photo{
  position: relative;
  width: 100%;
  aspect-ratio: 1.178/1;
  display: block;
  transform-origin: 50% 58%;
  transform-style: preserve-3d;
  will-change: transform, filter;
}
.member .photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: opacity .78s var(--ease-out-quart), transform 1.15s var(--ease-out-quart);
  backface-visibility: hidden;
  transform-origin: 50% 58%;
}
.member .photo img.rest{ transform: rotateY(0deg); }
.member .photo img.hover{
  opacity: 0;
  transform: rotateY(-88deg);
}
.member .meta{
  text-align: center;
  margin-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.member .instr{
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.member .naam{
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.01em;
  transition: color .3s ease, transform .4s var(--ease-out-quart);
}
.member:hover .naam{
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine){
  .member:hover .photo{
    animation: bandDesktopSettle 0.25s cubic-bezier(.16,1,.3,1) both;
  }
  .member:hover .photo img.rest{
    animation: bandDesktopRestFlipOut 0.25s cubic-bezier(.36,0,.2,1) both;
  }
  .member:hover .photo img.hover{
    animation: bandDesktopHoverFlipIn 0.25s cubic-bezier(.36,0,.2,1) both;
  }
}

@keyframes bandMobileSettle{
  0%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,61,240,0)); }
  48%{ transform: scale(.975); filter: drop-shadow(0 0 18px rgba(255,61,240,.2)); }
  100%{ transform: scale(1.015); filter: drop-shadow(0 0 14px rgba(255,61,240,.18)); }
}
@keyframes bandMobileRestFlipOut{
  0%{ opacity: 1; transform: rotateY(0deg); }
  42%{ opacity: 1; transform: rotateY(0deg); }
  52%{ opacity: 0; transform: rotateY(88deg); }
  100%{ opacity: 0; transform: rotateY(88deg); }
}
@keyframes bandMobileHoverFlipIn{
  0%{ opacity: 0; transform: rotateY(-88deg); }
  48%{ opacity: 0; transform: rotateY(-88deg); }
  58%{ opacity: 1; transform: rotateY(0deg); }
  100%{ opacity: 1; transform: rotateY(0deg); }
}
@keyframes bandDesktopSettle{
  0%{ transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,61,240,0)); }
  50%{ transform: scale(.985); filter: drop-shadow(0 0 18px rgba(255,61,240,.2)); }
  100%{ transform: scale(1.015); filter: drop-shadow(0 0 14px rgba(255,61,240,.18)); }
}
@keyframes bandDesktopHoverFlipIn{
  0%, 49.9%{ opacity: 0; transform: rotateY(-88deg); }
  50%{ opacity: 1; transform: rotateY(-88deg); }
  100%{ opacity: 1; transform: rotateY(0deg); }
}
@keyframes bandDesktopRestFlipOut{
  0%{ opacity: 1; transform: rotateY(0deg); }
  49.9%{ opacity: 1; transform: rotateY(88deg); }
  50%, 100%{ opacity: 0; transform: rotateY(88deg); }
}

/* ============ AGENDA ============ */
#agenda{
  padding: var(--pad-section) 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
#agenda .container{ position: relative; z-index: 1; }
#agenda::after{
  content:""; position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,61,240,.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift{
  0%{ transform: translate(0,0); }
  100%{ transform: translate(-3%, 2%); }
}
#agenda .head{
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
#agenda h2{
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  margin: 0; line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
#agenda h2 .accent{ color: var(--magenta); }
#agenda .head .meta{
  display: flex; flex-direction: column; gap: .5rem;
  align-items: flex-end;
}
#agenda .head .meta .year{
  font-family: var(--display); font-size: 3rem;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
#agenda .head .meta .count{
  font-family: var(--mono); font-size: .76rem; letter-spacing: .2em;
  color: var(--muted); text-transform: uppercase;
}

.toggle-past{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 2.2rem 0 1.8rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease;
}
.toggle-past:hover{
  color: var(--text);
}
.toggle-icon{
  width: 16px;
  height: 16px;
  transition: transform .3s ease;
}
.toggle-past[aria-expanded="true"] .toggle-icon{
  transform: rotate(180deg);
}

.shows-section.past-shows{
  max-height: 2000px;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 1;
}
.shows-section.past-shows.hidden{
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.gig-list{
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.1);
}
.gig{
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gig .date{
  font-family: var(--display);
  line-height: .9;
  display: flex; flex-direction: column;
  gap: .2rem;
}
.gig .date .day{
  font-size: 3rem; letter-spacing: -.03em;
}
.gig .date .mon{
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .2em; color: var(--muted);
  text-transform: uppercase;
}
.gig .info h3{
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.gig .info p{
  margin: .3rem 0 0;
  font-family: var(--mono); font-size: .76rem;
  letter-spacing: .15em; color: var(--muted);
  text-transform: uppercase;
}
.gig .badge{
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
}
.gig .badge.confirmed{
  background: rgba(255,61,240,.08);
  border-color: rgba(255,61,240,.3);
  color: #ffaaf2;
}
.gig .badge .tri-bullet{ filter: drop-shadow(0 0 4px rgba(255,61,240,.6)); width:9px; height:8px; flex:0 0 9px; }

.gig.past{
  opacity: .32;
  filter: grayscale(70%) brightness(0.85);
}
.gig.past .date{
  opacity: .6;
}
.gig.past .info h3,
.gig.past .info p{
  opacity: .65;
}
.gig.past .badge.performed{
  opacity: .5;
}

.gig .badge.performed{
  background: rgba(184,92,255,.08);
  border-color: rgba(184,92,255,.3);
  color: #d4b5ff;
}
/* arrow removed — agenda rows are not links */

/* ============ PRESSKIT ============ */
#presskit{
  padding: var(--pad-section) 0;
  background:
    linear-gradient(180deg, var(--plum) 0%, rgba(22,5,22,.92) 8%, rgba(22,5,22,.42) 18%, transparent 28%, transparent 80%, rgba(14,3,14,.78) 93%, var(--plum-deep) 100%),
    linear-gradient(135deg, rgba(255,61,240,.13) 0 2px, transparent 2px 38px),
    linear-gradient(45deg, rgba(184,92,255,.12) 0 2px, transparent 2px 38px),
    radial-gradient(52% 70% at 16% 22%, rgba(255,61,240,.24), transparent 66%),
    radial-gradient(44% 58% at 82% 76%, rgba(184,92,255,.22), transparent 70%),
    linear-gradient(180deg, var(--plum-deep), var(--plum-band));
  background-size: auto, 38px 38px, 38px 38px, auto, auto, auto;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 -1px 0 rgba(184,92,255,.14);
}
.ticket{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.ticket::before{
  content:"";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(100% - 220px);
  width: 1px;
  background-image: radial-gradient(circle, var(--plum-band) 2px, transparent 2.5px);
  background-size: 1px 12px;
}
.ticket::after{
  content:"";
  position: absolute;
  left: calc(100% - 220px);
  width: 24px; height: 24px;
  background: var(--plum-band);
  border-radius: 999px;
  top: -12px;
  box-shadow: 0 calc(100% + 24px) 0 var(--plum-band);
  transform: translateX(-50%);
}
.ticket .left{
  padding: clamp(2rem, 4vw, 3.5rem);
}
.ticket .eyebrow{ color: var(--muted-ink); }
.ticket h2{
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: .8rem 0 1rem;
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.ticket p{
  color: rgba(26,4,32,.7);
  max-width: 46ch;
  margin: 0 0 1.6rem;
}
.ticket .meta{
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 1.6rem; margin-bottom: 1.6rem;
  border-top: 1px dashed rgba(26,4,32,.25);
  padding-top: 1.2rem;
}
.ticket .meta .k{
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  color: var(--muted-ink); text-transform: uppercase;
}
.ticket .meta .v{
  font-family: var(--display); font-size: 1rem; margin-top: .2rem;
  text-transform: uppercase;
}
.ticket .right{
  width: 220px;
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 1.4rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  text-align: center;
  gap: 1rem;
}
.ticket .right .stub-num{
  font-family: var(--mono); font-size: .7rem; letter-spacing: .25em;
  color: rgba(245,236,219,.55); text-transform: uppercase;
}
.ticket .right .stub-logo{
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255,61,240,.45));
  opacity: .95;
}
.ticket .right .barcode{
  width: 100%; height: 50px;
  background:
    repeating-linear-gradient(90deg,
      var(--cream) 0 2px, transparent 2px 4px,
      var(--cream) 4px 5px, transparent 5px 8px,
      var(--cream) 8px 11px, transparent 11px 14px);
}
.ticket .dl-btn{
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ink); color: var(--cream);
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-size: .9rem;
  transition: background .35s ease, color .35s ease, box-shadow .4s ease;
}
.ticket .dl-btn:hover{
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,61,240,.4);
}
.ticket .dl-btn svg{ width: 16px; height: 16px; transition: transform .35s var(--ease-out-quart); }
.ticket .dl-btn:hover svg{ transform: translateY(2px); }

/* ============ CONTACT ============ */
#contact{
  padding: var(--pad-section) 0;
  background: var(--plum-deep);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: grid; place-items: center;
}
.contact-bg-pic{
  position: absolute; inset: 0;
  display: block;
  z-index: 0;
}
.contact-bg-pic img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .28;
  filter: saturate(1.15);
}
.contact-bg-overlay{
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 30% 70%, rgba(255,61,240,.25), transparent 60%),
    linear-gradient(180deg, rgba(20,4,26,.45), rgba(20,4,26,.85));
}

.contact-inner{
  max-width: 1100px; margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative; z-index: 2;
}
.contact-heading{
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .95;
  margin: 1.4rem 0;
  text-transform: uppercase;
  letter-spacing: -.03em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .1em .35em;
}
.contact-heading .word{
  display: inline-block;
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.contact-heading.in-view .word{ opacity: 1; transform: none; }
.contact-heading .word:nth-child(1){ transition-delay: 0s; }
.contact-heading .word:nth-child(2){ transition-delay: .1s; }
.contact-heading .word:nth-child(3){ transition-delay: .2s; }
.contact-heading .word:nth-child(4){ transition-delay: .3s; }
.contact-heading .word.accent{
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.contact-heading .stroke{
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.contact-sub{
  font-size: 1.1rem; color: var(--muted);
  max-width: 50ch; margin: 1.2rem auto 3rem;
}
.contact-cta-row{
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-cta{
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1.1rem 1.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff; text-decoration: none;
  font-size: 1rem;
  transition: background .35s ease, border-color .35s ease, color .35s ease, box-shadow .4s ease;
}
.contact-cta:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 12px 36px rgba(255,61,240,.18);
}
.contact-cta svg{ width: 22px; height: 22px; }
.contact-cta.primary{
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.contact-cta.primary:hover{
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
  box-shadow: 0 14px 40px rgba(255,61,240,.35);
}

.contact-massive{
  font-family: var(--display);
  font-size: clamp(5rem, 22vw, 22rem);
  line-height: .85;
  letter-spacing: -.04em;
  margin: 0;
  position: absolute;
  bottom: -2vw; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  color: transparent;
}

/* ============ FOOTER ============ */
footer{
  background: var(--plum-band);
  padding: 2.4rem 0 2.6rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner{
  max-width: 1280px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-inner p{
  margin: 0;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .15em;
  color: var(--muted); text-transform: uppercase;
}
.footer-inner .mini-logo{
  font-family: var(--display); font-size: 1rem;
  letter-spacing: .04em;
}

/* ============ REVEAL ============ */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out-quart), transform .9s var(--ease-out-quart);
}
.reveal.in-view{ opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.reveal[data-delay="5"]{ transition-delay: .40s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .bandgrid{ grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .over-grid{ grid-template-columns: 1fr; }
  .over-image{ max-width: 720px; margin: 0 auto; aspect-ratio: 3/2; }
}

@media (max-width: 760px){
  :root{
    --header-h: 68px;
    --pad-section: clamp(4rem, 14vw, 7rem);
  }

  .nav-list{
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    height: calc(100svh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    flex-direction: column;
    gap: 0;
    padding: 1.2rem var(--gutter) 2rem;
    overflow-y: auto;
    z-index: 999;
    background:
      linear-gradient(180deg, rgba(14,3,14,.98) 0%, rgba(22,5,22,.96) 58%, rgba(14,3,14,.92) 100%);
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header-h)));
    transition:
      opacity .28s ease,
      visibility 0s linear .42s,
      transform .48s var(--ease-out-expo);
  }
  .menu-toggle{ display: inline-flex; }
  .nav-list.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity .24s ease,
      transform .48s var(--ease-out-expo);
  }
  .nav-list li{
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .34s var(--ease-out-quart);
  }
  .nav-list.active li{
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list.active li:nth-child(1){ transition-delay: .08s; }
  .nav-list.active li:nth-child(2){ transition-delay: .12s; }
  .nav-list.active li:nth-child(3){ transition-delay: .16s; }
  .nav-list.active li:nth-child(4){ transition-delay: .20s; }
  .nav-list.active li:nth-child(5){ transition-delay: .24s; }
  .nav-list.active li:nth-child(6){ transition-delay: .28s; }
  .nav-list a{
    font-family: var(--display);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: clamp(1.45rem, 8vw, 2.05rem);
    letter-spacing: -.01em;
    padding: 1rem 0 .95rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
  }
  .nav-list a::before{ display: none; }
  .nav-list a .num{
    order: 2;
    margin: 0;
    font-family: var(--mono);
    font-size: .65rem;
    letter-spacing: .12em;
    opacity: .42;
  }

  .logo-mark .logo-img{ height: 44px; }
  .book-btn{
    flex: 0 0 auto;
    gap: .45rem;
    padding: .5rem .8rem;
    font-size: .72rem;
    white-space: nowrap;
  }
  .book-btn .arrow{ width: 14px; height: 14px; }

  .header-inner{ justify-content: flex-start; }
  nav{ display: flex; align-items: center; margin-right: .9rem; }
  .menu-toggle{ margin-right: .75rem; }
  .header-actions{ margin-left: auto; gap: .45rem; }

  .over-grid{ grid-template-columns: 1fr; }
  .over-image{ width: 100%; max-width: none; margin: 0; }
  .over-image-frame{ width: 100%; }

  .bandgrid{ grid-template-columns: 1fr; gap: 1.2rem; }

  #hero{ min-height: 100svh; }
  .hero-img{ object-position: 75% 28%; }
  .hero-tri{
    right: -20%; top: 8%;
    width: 70vw;
    opacity: .55;
  }
  .hero-content{
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 5rem;
    gap: 2rem;
  }
  .hero-mid{
    align-self: end;
    width: 100%;
  }
  #hero h1{
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.65rem, 14.6vw, 5.2rem);
    line-height: .88;
    letter-spacing: -.035em;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-bottom .loc{ text-align: left; }
  .hero-bottom .tag{ font-size: 1.2rem; }

  .scroll-hint{ display: none; }

  .marquee-track{ font-size: 1.05rem; padding: .7rem 0; }
  .tri-bullet.sep{ margin: 0 .8rem; width: 12px; height: 11px; flex: 0 0 12px;}

  .bandgrid{ grid-template-columns: 1fr; gap: 1.8rem; }
  .member{ perspective: 900px; }
  .member .photo{ aspect-ratio: 5/4; }
  .member .meta{ gap: .35rem; }
  .member .naam{ font-size: 1.35rem; }
  .member .instr{ font-size: .8rem; }

  .gig{ grid-template-columns: 1fr; gap: 1rem; padding: 1.3rem 0; }
  .gig .badge{ display: none; justify-self: start; }
  .gig .date{ flex-direction: row; align-items: baseline; gap: 1rem; }
  .gig .date .day{ font-size: 2.2rem; }
  .gig .date .mon{ font-size: .65rem; }
  .gig .info h3{ font-size: 1.25rem; }
  .gig .info p{ font-size: .68rem; }

  .member .photo{
    transform-origin: 50% 58%;
    transform-style: preserve-3d;
    will-change: transform, filter;
  }
  .member .naam{
    transition: color .7s var(--ease-out-expo), text-shadow .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
  }
  .member .instr{
    transition: color .7s var(--ease-out-expo);
  }
  .member .photo img.rest{
    opacity: 1;
    transform: rotateY(0deg);
    backface-visibility: hidden;
    transform-origin: 50% 58%;
  }
  .member .photo img.hover{
    opacity: 0;
    transform: rotateY(-88deg);
    backface-visibility: hidden;
    transform-origin: 50% 58%;
  }
  .member.is-spinning .photo{
    animation: bandMobileSettle 2.25s cubic-bezier(.16,1,.3,1) both;
  }
  .member.is-spinning .photo img.rest{
    animation: bandMobileRestFlipOut 2.25s cubic-bezier(.2,.8,.2,1) both;
  }
  .member.is-spinning .photo img.hover{
    animation: bandMobileHoverFlipIn 2.25s cubic-bezier(.2,.8,.2,1) both;
  }
  .member.mobile-revealed .photo{
    transform: scale(1.015);
    filter: drop-shadow(0 0 14px rgba(255,61,240,.18));
  }
  .member.mobile-revealed .photo img.rest{
    opacity: 0;
  }
  .member.mobile-revealed .photo img.hover{
    opacity: 1;
    transform: rotateY(0deg);
  }
  .member.mobile-revealed .naam{
    color: #ffaaf2;
    text-shadow: 0 0 18px rgba(255,61,240,.28);
    transform: translateY(-1px);
  }
  .member.mobile-revealed .instr{
    color: rgba(255,255,255,.86);
  }

  .over-content h2{ font-size: clamp(2.2rem, 9vw, 3rem); }
  .over-image .over-tri{
    width: 80px; height: 72px;
    bottom: -24px; right: -16px;
  }
  .over-image .corner-tag{ font-size: .58rem; padding: .3rem .5rem; }

  #band .head{ margin-bottom: 2.5rem; }
  #band h2, #agenda h2{ font-size: clamp(2.2rem, 10vw, 3.4rem); }
  #agenda .head .meta{ align-items: flex-start; }
  #agenda .head .meta .year{ font-size: 2.2rem; }

  .ticket{ grid-template-columns: 1fr; max-width: 100%; }
  .ticket::before{ display:none; }
  .ticket::after{ display:none; }
  .ticket .right{ width: 100%; flex-direction: row; padding: 1.4rem; gap: 1rem; }
  .ticket .right .stub-logo{ width: 70px; }
  .ticket .right .barcode{ flex: 1; height: 40px; }
  .ticket .meta{ grid-template-columns: 1fr; gap: .8rem; }
  .ticket h2{ font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .contact-heading{ font-size: clamp(1.9rem, 9.5vw, 3rem); margin: 1rem 0; }
  .contact-heading .word{ margin: 0 .1em; }
  .contact-heading .stroke{ -webkit-text-stroke-width: 0.5px; }
  .contact-sub{ font-size: .98rem; margin: 1rem auto 2.2rem; }
  .contact-cta{ width: 100%; justify-content: center; font-size: .9rem; padding: .95rem 1.4rem; }
  .contact-massive{ font-size: 5rem; }

  .footer-inner{ justify-content: center; text-align: center; }
}

@media (max-width: 480px){
  .header-inner{ gap: .5rem; }
  nav{ margin-right: .2rem; }
  .menu-toggle{ margin-right: .2rem; }
  .icon-btn{ width: 36px; height: 36px; }
  .book-btn{ padding: .45rem .68rem; font-size: .68rem; }
  .book-btn .arrow{ width: 13px; height: 13px; }
  #hero h1{ font-size: clamp(2.35rem, 13.5vw, 4rem); }

  .bandgrid{ grid-template-columns: 1fr; }
  .gig{ grid-template-columns: 1fr; gap: .8rem; }
}

@media (max-width: 360px){
  #hero h1{
    font-size: clamp(2.05rem, 12.4vw, 3rem);
    letter-spacing: -.025em;
  }
}

@media (hover: none){
  .member{ perspective: 900px; }
  .member:hover .photo img.rest,
  .member:hover .photo img.hover,
  .member:hover .naam {
    transform: none !important;
  }
  .member:hover .naam{
    background: none !important;
  }

  .member .photo{
    transform-origin: 50% 58%;
    transform-style: preserve-3d;
    will-change: transform, filter;
  }
  .member .naam{
    transition: color .7s var(--ease-out-expo), text-shadow .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
  }
  .member .instr{
    transition: color .7s var(--ease-out-expo);
  }
  .member .photo img.rest{
    opacity: 1;
    transform: rotateY(0deg);
    backface-visibility: hidden;
    transform-origin: 50% 58%;
  }
  .member .photo img.hover{
    opacity: 0;
    transform: rotateY(-88deg);
    backface-visibility: hidden;
    transform-origin: 50% 58%;
  }
  .member.is-spinning .photo{
    animation: bandMobileSettle 2.25s cubic-bezier(.16,1,.3,1) both;
  }
  .member.is-spinning .photo img.rest{
    animation: bandMobileRestFlipOut 2.25s cubic-bezier(.2,.8,.2,1) both;
  }
  .member.is-spinning .photo img.hover{
    animation: bandMobileHoverFlipIn 2.25s cubic-bezier(.2,.8,.2,1) both;
  }
  .member.mobile-revealed .photo{
    transform: scale(1.015);
    filter: drop-shadow(0 0 14px rgba(255,61,240,.18));
  }
  .member.mobile-revealed .photo img.rest{
    opacity: 0;
  }
  .member.mobile-revealed .photo img.hover{
    opacity: 1;
    transform: rotateY(0deg);
  }
  .member.mobile-revealed .naam{
    color: #ffaaf2;
    text-shadow: 0 0 18px rgba(255,61,240,.28);
    transform: translateY(-1px);
  }
  .member.mobile-revealed .instr{
    color: rgba(255,255,255,.86);
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
