/* ─── variables ───────────────────────────────────────── */
:root {
  --bg:        #07070a;
  --bg-events: #07070d;
  --text:      #f0ede8;
  --muted:     #5c5a58;
  --dim:       rgba(240,237,232,0.4);
  --teal:      #5aa8c0;
  --border:    rgba(255,255,255,0.09);
}

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

html { scroll-behavior: smooth; }

body {
  background:
    url('images/641884985_18565755475061570_5965357756669548293_n.jpg') center -23% / 68% auto no-repeat fixed,
    url('images/641884985_18565755475061570_5965357756669548293_n.jpg') center top / cover no-repeat fixed;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(74, 152, 180, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
  will-change: left, top;
}

/* ─── scanlines ───────────────────────────────────────── */
.overlay-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 4px
  );
}

/* ─── nav ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  transition: background 0.5s, backdrop-filter 0.5s;
}

.circle-fixed {
  position: fixed;
  top: 9rem;
  width: clamp(80px, 10vw, 140px);
  height: auto;
  filter: invert(1);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.circle-fixed--left  { left:  2vw; }
.circle-fixed--right { right: 2vw; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.nav-links a:hover { color: #fff; }

/* ─── hero ────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(7,7,10,0.25) 0%,
      transparent       22%,
      transparent       50%,
      rgba(7,7,10,0.8)  100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-logo-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
  width: clamp(140px, 16vw, 220px);
  height: auto;
  filter: invert(1);
  z-index: 11;
}

.hero-logo-wordmark {
  position: absolute;
  left: 0;
  top: 9rem;
  width: 58%;
  left: 21%;
  height: auto;
  filter: invert(1);
  display: block;
  z-index: 10;
  pointer-events: none;
}

/* animated scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, var(--muted));
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1);    }
  50%     { opacity: 1;   transform: scaleY(0.55); }
}

/* ─── video teaser ────────────────────────────────────── */
.video-teaser {
  width: 100%;
}

.video-teaser__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(10, 9, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-teaser__inner:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 9, 14, 0.85);
}

.video-teaser__play {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.video-teaser__inner:hover .video-teaser__play {
  border-color: rgba(255, 255, 255, 0.7);
}

.video-teaser__play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent rgba(255,255,255,0.7);
  margin-left: 4px;
}

.video-teaser__label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ─── sections ────────────────────────────────────────── */
.section {
  padding: 11rem 0;
  border-top: 1px solid var(--border);
  background: rgba(6, 5, 6, 0.78);
  position: relative;
  z-index: 1;
}

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

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3rem;
  display: block;
}

/* ─── fade-in ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── about ───────────────────────────────────────────── */
#video { border-top: none; }
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
}

.section-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  user-select: none;
  margin-top: -0.1em;
}

.body-large {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 680px;
}

/* ─── section header ──────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-header .section-index {
  margin-top: 0;
}
.section-header .section-label {
  margin-bottom: 0;
}

/* ─── gallery ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 32vw;
  gap: 0.4rem;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.gallery-img:hover { opacity: 0.75; }

.gallery-img--wide {
  grid-column: span 2;
}

/* ─── music ───────────────────────────────────────────── */
.spotify-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 8px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(90, 168, 192, 0.06);
  transition: box-shadow 0.4s ease;
}
.spotify-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 8px 60px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(90, 168, 192, 0.1);
}
.spotify-wrap iframe {
  display: block;
  border-radius: 0 !important;
}

/* ─── 444 events ──────────────────────────────────────── */
.section--events {
  background: rgba(6, 5, 7, 0.82);
  position: relative;
  overflow: hidden;
}

.events-top {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
}

.events-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 24vw, 22rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
}

.events-desc {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.65;
  color: var(--text);
  opacity: 0.7;
  padding-bottom: 1rem;
}

.events-list {
  border-top: 1px solid var(--border);
}

.event-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.event-date {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--dim);
  min-width: 50px;
}

.event-name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  flex: 1;
}

.event-status {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ─── contact ─────────────────────────────────────────── */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clink {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.15;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  transition: color 0.2s, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.clink:first-child { border-top: 1px solid var(--border); }
.clink:hover {
  color: var(--text);
  padding-left: 0.8rem;
}

/* ─── footer ──────────────────────────────────────────── */
footer {
  padding: 3.5rem 3.5rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 10, 0.88);
}

/* ─── mobile ──────────────────────────────────────────── */
@media (max-width: 680px) {
  #nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.4rem; }

  .section { padding: 6rem 0; }
  .container { padding: 0 1.5rem; }

  #hero { min-height: 100svh; }
  .hero-logo-wordmark { top: 22%; }
  .hero-logo-circle { width: clamp(60px, 14vw, 90px); top: 1.5rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .section-index { display: none; }

.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 48vw;
  }
  .gallery-img--wide { grid-column: span 2; }

  .events-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-row { flex-wrap: wrap; gap: 0.5rem; }

  .cursor { display: none; }
}

@media (max-width: 400px) {
  .clink { font-size: 2rem; }
}
