/* ---------- FESTIVAL HERO EXTRAS ---------- */
/* diagonal stripe watermark, like a festival wristband, behind the wordmark */
.fest-stripes{
  position:absolute;
  inset:-10% -10%;
  z-index:0;
  opacity:0.05;
  background:repeating-linear-gradient(
    -35deg,
    var(--paper) 0px,
    var(--paper) 3px,
    transparent 3px,
    transparent 46px
  );
  pointer-events:none;
}

.fest-meta{
  margin-top:2.6rem;
  display:flex;
  justify-content:center;
  gap:2.6rem;
  flex-wrap:wrap;
}

.fest-meta-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.35rem;
}

.fest-meta-label{
  font-family:'JetBrains Mono',monospace;
  font-size:0.65rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--acid);
}

.fest-meta-value{
  font-family:'Manrope',sans-serif;
  font-weight:600;
  font-size:0.95rem;
  color:var(--ink);
}

.fest-cta{
  margin-top:2.6rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.4rem;
  flex-wrap:wrap;
}

.fest-cta .btn-primary{
  text-decoration:none;
  display:inline-block;
}

.fest-ticket-tag{
  font-family:'JetBrains Mono',monospace;
  font-size:0.68rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-dim);
  border:1px dashed rgba(238,234,221,0.35);
  padding:0.6rem 1rem;
  border-radius:100px;
}

@media (max-width:600px){
  .fest-meta{gap:1.6rem 2rem;}
}

/* ---------- LINEUP MARQUEE (festival wristband) ---------- */
.marquee{
  position:relative;
  background:var(--paper);
  overflow:hidden;
  white-space:nowrap;
  padding:1.1rem 0;
  border-top:1px dashed rgba(26,24,18,0.25);
  border-bottom:1px dashed rgba(26,24,18,0.25);
}

.marquee-track{
  display:inline-flex;
  align-items:center;
  animation:marquee-scroll 34s linear infinite;
}

.marquee-group{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}

.marquee-group p{
  font-family:'Manrope',sans-serif;
  font-weight:800;
  font-size:1rem;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:#1a1812;
  margin:0;
  padding:0 0.5rem;
}

/* the wristband fastener/clasp, breaking up each loop */
.clasp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:58px;height:28px;
  margin:0 1.6rem;
  background:#c7c2b2;
  border-radius:7px;
  box-shadow:inset 0 0 0 1px rgba(26,24,18,0.2), 0 2px 3px rgba(26,24,18,0.15);
  position:relative;
}
.clasp::before{
  content:"";
  width:9px;height:9px;
  border-radius:50%;
  background:#1a1812;
}
.clasp::after{
  content:"";
  position:absolute;
  top:50%;
  left:6px;right:6px;
  height:1px;
  background:rgba(26,24,18,0.25);
  transform:translateY(-50%);
  z-index:-1;
}

@keyframes marquee-scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

@media (max-width:600px){
  .marquee-group p{font-size:0.82rem;}
  .clasp{margin:0 1rem;}
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{animation:none;}
}

/* ---------- LINEUP ---------- */
.lineup{
  position:relative;
  background:var(--bg-soft);
  color:var(--ink);
  padding:7rem clamp(1.2rem, 6vw, 4rem) 8rem;
  overflow:hidden;
}

.lineup::before{
  content:"";
  position:absolute;
  top:-39px;
  left:0;right:0;
  height:40px;
  background:var(--bg-soft);
  z-index:2;
  clip-path:polygon(0% 100%, 3% 45%, 6% 90%, 9% 30%, 12% 80%, 15% 20%, 18% 95%,
    21% 35%, 24% 85%, 27% 15%, 30% 70%, 33% 25%, 36% 90%, 39% 40%, 42% 80%,
    45% 20%, 48% 95%, 51% 30%, 54% 85%, 57% 15%, 60% 75%, 63% 25%, 66% 90%,
    69% 35%, 72% 80%, 75% 20%, 78% 95%, 81% 30%, 84% 85%, 87% 15%, 90% 75%,
    93% 25%, 96% 90%, 100% 40%, 100% 100%);
}

.lineup-inner{
  max-width:980px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.lineup .eyebrow{color:var(--acid);text-align:left;margin-bottom:1rem;}
.lineup .eyebrow::before, .lineup .eyebrow::after{content:none;}

.lineup h2{
  font-family:'Anton',sans-serif;
  font-size:clamp(2.2rem, 5.5vw, 4rem);
  text-transform:uppercase;
  line-height:0.95;
  margin-bottom:1rem;
  color:var(--paper);
}

.lineup-intro{
  font-size:clamp(1rem,1.6vw,1.15rem);
  max-width:60ch;
  line-height:1.6;
  color:var(--ink-dim);
  margin-bottom:4.5rem;
}

.lineup-list{position:relative;}

.lineup-list::before{
  content:"";
  position:absolute;
  top:0; bottom:0; left:50%;
  width:0;
  border-left:1px dashed rgba(238,234,221,0.15);
  transform:translateX(-50%);
  z-index:0;
}

.artist-row{
  position:relative;
  display:grid;
  grid-template-columns:1fr 50px 1fr;
  margin-bottom:4.2rem;
}
.artist-row:last-child{margin-bottom:0;}

.artist-card{
  position:relative;
  max-width:320px;
  z-index:1;
  background:#000;
  border:1px solid rgba(238,234,221,0.18);
  padding:1.8rem 1.6rem 1.5rem;
  box-shadow:0 22px 40px rgba(0,0,0,0.5);
  transition:transform 1s cubic-bezier(.16,.8,.24,1), opacity 1s ease;
  text-align:center;
  opacity:0;
}

.artist-row:nth-child(odd) .artist-card{
  grid-column:1;
  margin-left:auto;
  transform:translateX(140vw) rotate(-2deg);
}
.artist-row:nth-child(even) .artist-card{
  grid-column:3;
  margin-right:auto;
  transform:translateX(-140vw) rotate(2deg);
}

.artist-row.in-view:nth-child(odd) .artist-card{transform:translateX(0) rotate(-1.4deg); opacity:1;}
.artist-row.in-view:nth-child(even) .artist-card{transform:translateX(0) rotate(1.4deg); opacity:1;}

.flyer-roundel{
  width:158px;height:158px;
  margin:0 auto 1.3rem;
  border-radius:50%;
  background:repeating-radial-gradient(circle, var(--paper) 0 2px, transparent 2px 12px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.flyer-photo{
  position:relative;
  width:62%;height:62%;
  border-radius:50%;
  overflow:hidden;
  background:#000;
  border:2px solid var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
}
.flyer-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.flyer-photo.no-photo::before{
  content:attr(data-initial);
  font-family:'Anton',sans-serif;
  font-size:2.6rem;
  color:var(--paper);
}

.artist-name{
  font-family:'Anton',sans-serif;
  text-transform:uppercase;
  font-size:1.5rem;
  letter-spacing:0.02em;
  margin-bottom:0.7rem;
  color:var(--paper);
}

.artist-infoline{
  border-top:1px dashed rgba(238,234,221,0.3);
  border-bottom:1px dashed rgba(238,234,221,0.3);
  padding:0.55rem 0;
  margin-bottom:0.9rem;
}
.artist-role{
  font-family:'JetBrains Mono',monospace;
  font-size:0.7rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--magenta);
}
.artist-row:nth-child(even) .artist-role{color:var(--uv);}

.artist-bio{
  font-size:0.85rem;
  line-height:1.55;
  color:var(--ink-dim);
  max-width:none;
}

/* social links, mirrored on the other side of the centre line */
.artist-links{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0.7rem;
  height:100%;
  opacity:0;
  transition:opacity .5s ease;
}
.artist-row.in-view .artist-links{
  opacity:1;
  transition-delay:0.85s;
}

.artist-row:nth-child(odd) .artist-links{
  grid-column:3;
  margin-right:auto;
  align-items:flex-start;
  text-align:left;
}
.artist-row:nth-child(even) .artist-links{
  grid-column:1;
  margin-left:auto;
  align-items:flex-end;
  text-align:right;
}

.artist-link{
  font-family:'JetBrains Mono',monospace;
  font-size:0.78rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--ink-dim);
  text-decoration:none;
  border-bottom:1px solid rgba(238,234,221,0.25);
  padding-bottom:2px;
  transition:color .2s ease, border-color .2s ease;
}
.artist-link:hover{
  color:var(--acid);
  border-color:var(--acid);
}

.artist-photo{
  position:relative;
  aspect-ratio:4/5;
  border-radius:4px;
  overflow:hidden;
  background:linear-gradient(150deg, #1c1b20, var(--bg-soft));
  margin-bottom:1.1rem;
}
.artist-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.artist-photo.no-photo::before{
  content:attr(data-initial);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Anton',sans-serif;
  font-size:5rem;
  color:rgba(238,234,221,0.14);
}

.artist-name{
  font-family:'Anton',sans-serif;
  text-transform:uppercase;
  font-size:1.4rem;
  letter-spacing:0.01em;
  margin-bottom:0.3rem;
  color:var(--paper);
}

.artist-role{
  font-family:'JetBrains Mono',monospace;
  font-size:0.7rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--magenta);
  display:block;
  margin-bottom:0.7rem;
}
.artist-row:nth-child(even) .artist-role{color:var(--uv);}

.artist-bio{
  font-size:0.9rem;
  line-height:1.6;
  color:var(--ink-dim);
  max-width:34ch;
}
.artist-row:nth-child(even) .artist-bio{margin-left:auto;}

@media (max-width:700px){
  .artist-row{grid-template-columns:1fr 24px 1fr;margin-bottom:3.2rem;}
  .artist-row:nth-child(odd) .artist-card{transform:translateX(120vw) rotate(-2deg);}
  .artist-row:nth-child(even) .artist-card{transform:translateX(-120vw) rotate(2deg);}
  .artist-card{max-width:none;}
  .artist-bio{max-width:none;}
  .artist-link{font-size:0.68rem;}
}

@media (prefers-reduced-motion: reduce){
  .artist-card{
    transform:translateX(0) !important;
    opacity:1 !important;
    transition:none !important;
  }
  .artist-links{
    opacity:1 !important;
    transition:none !important;
  }
}

/* ---------- AGED / CREASED PAPER OVERLAY ---------- */
/* jagged fractal crack lines, like ink that flaked off along old fold lines.
   Positioned absolute (not fixed) so different cracks appear at different
   scroll depths, instead of the same lines pinned to the screen. */
.crack-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5200px;
  z-index:6;
  pointer-events:none;
}
.lulteam-page .crack-overlay{display:none;}

.crease{
  position:fixed;
  inset:0;
  z-index:6;
  pointer-events:none;
}

.crease-highlight{
  mix-blend-mode:multiply;
  opacity:0.35;
  background:radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%);
}

.crease-scratches{
  mix-blend-mode:screen;
  opacity:0.08;
  background:
    repeating-linear-gradient(78deg, transparent 0 140px, rgba(238,234,221,0.7) 140px 141px, transparent 141px 340px),
    repeating-linear-gradient(-63deg, transparent 0 220px, rgba(238,234,221,0.5) 220px 221px, transparent 221px 480px);
}

.fest-wordmark{
  font-size:clamp(3rem, 15vw, 11rem);
}

/* ---------- FEST STICKER ---------- */
.sticker-fest{
  position:absolute;
  top:78%;
  left:52%;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.5rem 1.6rem;
  border-radius:8px;
  background:var(--acid);
  border:3px solid var(--paper);
  box-shadow:0 10px 22px rgba(0,0,0,0.45);
  transform-origin:50% 50%;
  animation:sticker-slam 0.45s cubic-bezier(.22,1,.36,1) 0.5s both;
}

.sticker-text{
  font-family:'Anton',sans-serif;
  font-size:clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing:0.02em;
  color:#050505;
  white-space:nowrap;
}

@keyframes sticker-slam{
  0%{   transform:translate(-50%, calc(-50% - 420px)) rotate(-42deg) scale(1.4); opacity:0; }
  100%{ transform:translate(-50%, -50%)                rotate(-7deg) scale(1);   opacity:1; }
}

@media (max-width:600px){
  .sticker-fest{left:54%; top:82%;}
}

@media (prefers-reduced-motion: reduce){
  .sticker-fest{
    animation:none;
    transform:translate(-50%,-50%) rotate(-7deg) scale(1);
    opacity:1;
  }
}

/* ---------- LUL'TEAM 2027: coming soon ---------- */
#lineup[hidden]{display:none!important;}
.construction{
  min-height:0;
  aspect-ratio:1380 / 923;
  padding:clamp(2rem,7vw,7rem) clamp(1.2rem,7vw,6rem);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  background:linear-gradient(rgba(11,11,13,.35),rgba(11,11,13,.7)),url('image/underconstruction.png') center/cover;
  color:var(--paper);
  position:relative;
  overflow:hidden;
}
.construction::before{
  content:"EN CONSTRUCTION /// EN CONSTRUCTION /// EN CONSTRUCTION /// EN CONSTRUCTION /// ";
  position:absolute;
  left:-5%;right:-5%;top:64%;
  padding:.45rem 0;
  background:repeating-linear-gradient(90deg,var(--acid) 0 268px,#111 268px 281px);
  color:#111;
  font:700 clamp(1.1rem,2.4vw,2.5rem)/1 'Anton',sans-serif;
  letter-spacing:.06em;
  white-space:nowrap;
  transform:rotate(-7deg) scale(1.1);
  box-shadow:0 12px 0 rgba(0,0,0,.22), 0 -2px 0 #111;
}
.construction-kicker,.construction-sign{
  font:700 .72rem 'JetBrains Mono',monospace;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--magenta);
}
.construction h2{
  margin:.8rem 0 1rem;
  font:400 clamp(3.6rem,11vw,10rem)/.78 'Anton',sans-serif;
  letter-spacing:.01em;
  color:var(--paper);
  position:relative;
  z-index:1;
}
.construction-message{max-width:36rem;line-height:1.6;color:var(--ink-dim);position:relative;z-index:1;}
.construction-sign{margin-top:4rem;color:var(--acid);}
@media(max-width:650px){
  .construction{aspect-ratio:1.12;padding:2.5rem 1.4rem;}
  .construction-kicker,.construction-sign{font-size:.58rem;}
  .construction-sign{margin-top:1.3rem;}
  .construction::before{top:66%;}
}
