/* ────────────────────────────────────────────────────────────
   STAK TUSA — Minimal Brutalist Nightlife
   Philosophy: Raw, chaotic yet structured, high-fashion editorial.
   Strict grids, extreme contrast, aggressive typography.
   ──────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Helvetica Bold CY";
  src: url("fonts/helvetica_boldcyrusbyme.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Colors */
  --bg:        #000000;
  --bg-soft:   #111111;
  --bg-hover:  #1a1a1a;
  --fg:        #F0F0F0;
  --fg-60:     rgba(240, 240, 240, 0.6);
  --fg-40:     rgba(240, 240, 240, 0.4);
  --fg-20:     rgba(240, 240, 240, 0.2);
  --line:      rgba(255, 255, 255, 0.15);
  --accent:    #FF2B2B; /* Aggressive Red */

  /* Typography */
  --sans:      "Inter", "Helvetica Neue", "Neue Haas Grotesk Text Pro", sans-serif;
  --display:   "Helvetica Bold CY", "Helvetica Neue", "Inter", sans-serif;
  --mono:      "Courier New", Courier, monospace; /* For captions/posters */

  /* Motion */
  --snappy:    cubic-bezier(0.19, 1, 0.22, 1);
  --glitch-sp: 0.1s;

  /* Layout */
  --gutter:    clamp(1rem, 2vw, 2rem);
  --edge:      clamp(1.5rem, 4vw, 4rem);
}

/* ─────────────────  Reset & Base  ─────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Make text selection aggressive red */
}
::selection {
  background: var(--accent);
  color: #fff;
}

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

h1, h2, h3, h4, p, ul, li, figure, button {
  margin: 0;
  padding: 0;
}
ul { list-style: none; }
button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
a { color: inherit; text-decoration: none; }

/* ─────────────────  Globals & Utilities  ─────────────── */

/* Noise Overlay - cinematic grain */
.noise-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glitch Hover Effect for links and buttons */
.glitch-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.glitch-hover::before {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  color: var(--accent);
  transform: translate(3px, 2px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0s;
}
.glitch-hover:hover::before {
  opacity: 1;
  animation: glitch-anim var(--glitch-sp) infinite alternate steps(2);
}
@keyframes glitch-anim {
  0% { transform: translate(2px, 1px) skewX(5deg); }
  100% { transform: translate(-2px, -1px) skewX(-5deg); }
}

/* Scroll reveal class */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--snappy), transform 0.8s var(--snappy);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────  Cursor  ──────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  display: none;
  will-change: transform;
}
.js.cursor-ok,
.js.cursor-ok body,
.js.cursor-ok * { cursor: none !important; }
.cursor-ok .cursor { display: block; }

.cursor__inner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--fg);
  border-radius: 0; /* Boxy crosshair feel */
  transform: translate(-50%, -50%);
  background: transparent;
  transition: transform 0.1s linear, background-color 0.2s;
}
.cursor__inner::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 3px;
  height: 3px;
  background: var(--fg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor--hover .cursor__inner {
  transform: translate(-50%, -50%) scale(0.5);
  background: var(--fg);
}

@media (hover: none) {
  .cursor-ok .cursor { display: none; }
  .js.cursor-ok,
  .js.cursor-ok body,
  .js.cursor-ok * { cursor: auto !important; }
}

/* ──────────────────────────  Nav  ────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 var(--edge);
  text-transform: lowercase;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-transform: none;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--snappy);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  color: var(--accent);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: transform 0.3s var(--snappy);
}
.menu--open .nav__toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu--open .nav__toggle span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--snappy);
}
.menu[hidden] { display: none; }
.menu--open .menu { opacity: 1; visibility: visible; }
.menu nav {
  display: flex; flex-direction: column; gap: 2rem;
  text-align: center;
}
.menu a { font-size: 2rem; font-weight: 300; text-transform: lowercase; letter-spacing: 0; }
.accent-link { color: var(--accent) !important; }

/* ──────────────────────────  Hero  ───────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--edge);
  padding-top: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero__placeholder {
  width: 100%; height: 100%;
  background: #0a0a0a;
  background-image: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.hero__content {
  margin-top: auto;
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: none;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--fg-60);
}
.hero__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.hero__date {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--fg-60);
}
.hero__btn {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}
.hero__btn:hover {
  background: var(--accent);
  color: var(--fg);
}

/* ─────────────────────  Section Titles  ────────────────────── */
.section-head {
  padding: var(--edge) 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0 0 1rem;
}

/* ──────────────────────────  Manifest  ───────────────────────── */
.manifest {
  position: relative;
  padding: clamp(6rem, 15vw, 10rem) var(--edge);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifest__content {
  max-width: 1400px;
  margin: 0 auto;
}
.manifest__content h2 { text-align: center; }
.manifest__tag {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: var(--edge);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}
.manifest__content h2 em {
  color: var(--accent);
  font-style: normal;
}
.manifest__content h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ──────────────────────────  Events  ───────────────────────── */
.events { padding: 0 var(--edge) clamp(5rem, 10vw, 8rem); }
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gutter);
}
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.event-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.6s var(--snappy), filter 0.5s var(--snappy);
}
.event-card__media:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1);
}

.event-card__inner {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.event-card__date {
  font-size: 0.8125rem; font-weight: 400; color: var(--fg-60);
  letter-spacing: 0.08em; text-transform: lowercase;
  margin-bottom: 0.25rem;
}
.event-card__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 0.75rem;
}
.event-card__venue, .event-card__lineup {
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.06em;
  text-transform: lowercase; color: var(--fg-40);
}
.event-card__btn {
  align-self: flex-start;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.event-card:hover .event-card__btn {
  background: var(--fg);
  color: var(--bg);
}

/* ───────────────────────────  Venue  ─────────────────────────── */
.venue { padding: 0 var(--edge) clamp(5rem, 10vw, 8rem); }
.venue__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.venue__info { display: flex; flex-direction: column; align-items: flex-start; }
.venue__name { font-family: var(--display); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; text-transform: lowercase; margin-bottom: 0.5rem; }
.venue__address { font-size: 0.875rem; font-weight: 300; color: var(--fg-60); margin-bottom: 1.25rem; }
.venue__desc {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg-80, var(--fg));
  max-width: 38ch;
  margin: 0 0 2rem;
}
.btn-outline {
  padding: 0.75rem 1.5rem; border: 1px solid var(--fg); color: var(--fg);
  font-weight: 400; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: lowercase;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.venue__media {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  aspect-ratio: 4/3;
  margin-top: clamp(0.75rem, 1.4vw, 1.25rem);
}
.venue__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.venue__photo--main {
  grid-row: span 2;
}
.venue__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: transform 0.6s var(--snappy), filter 0.4s var(--snappy);
}
.venue__photo:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.venue__photo:hover { border-color: var(--accent); }

/* ──────────────────────────  Moments  ───────────────────────── */
.moments { padding: 0 0 clamp(4rem, 8vw, 6rem); }
.moments .section-head { padding: var(--edge) var(--edge); margin-bottom: clamp(2rem, 4vw, 3rem); }

.moments__strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--edge);
  padding: 0 var(--edge) 1.5rem;
  margin-bottom: 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--fg-20) transparent;
  -webkit-overflow-scrolling: touch;
}
.moments__strip::-webkit-scrollbar { height: 4px; }
.moments__strip::-webkit-scrollbar-track { background: transparent; }
.moments__strip::-webkit-scrollbar-thumb { background: var(--fg-20); }
.moments__strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.moment {
  flex: 0 0 clamp(260px, 30vw, 400px);
  aspect-ratio: 3 / 4;
  position: relative;
  scroll-snap-align: start;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s var(--snappy), transform 0.3s var(--snappy);
}
.moment:hover { border-color: var(--accent); transform: scale(0.98); }

.moment__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #0a0a0a;
  transition: transform 0.6s var(--snappy), filter 0.4s var(--snappy);
  filter: saturate(0.95);
}
.moment:hover .moment__img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.moment figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.moment__date { color: var(--accent); }
.moment__place { color: var(--fg-60); text-align: right; }

.marquee-wrap {
  width: 100vw; margin-left: calc(-1 * var(--edge));
  background: transparent; color: var(--fg-40);
  padding: 1.5rem 0; overflow: hidden; display: flex; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 45s linear infinite;
  font-size: 0.875rem; font-weight: 300; letter-spacing: 0.1em; text-transform: none;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
  min-width: 100vw;
  justify-content: space-around;
}
.marquee .dot { width: 3px; height: 3px; background: var(--fg-40); border-radius: 50%; flex-shrink: 0; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─────────────────────────  Merch  ───────────────────────── */
.merch {
  position: relative;
  height: 220vh;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.merch__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.merch__label {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: var(--edge);
  right: var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.35s var(--snappy);
}
.merch--fullsize .merch__label {
  opacity: 0;
}
.merch__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--accent);
}
.merch__caption {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-40);
  max-width: 50%;
  text-align: right;
}

.merch__frame {
  --merch-progress: 0;
  --min-width: 32vw;
  --max-width: 100vw;
  position: relative;
  width: calc(var(--min-width) + (var(--max-width) - var(--min-width)) * var(--merch-progress));
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  background: #0a0a0a;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s var(--snappy), width 0.18s linear;
  will-change: width;
}
.merch--fullsize .merch__frame {
  border-color: var(--line);
}

.merch__track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s var(--snappy);
  will-change: transform;
}
.merch__item {
  width: calc(100% / 3);
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  flex-shrink: 0;
}
.merch__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.merch__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  border: 1px solid var(--fg);
  background: rgba(0, 0, 0, 0.6);
  color: var(--fg);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--snappy), background 0.2s, color 0.2s;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.merch__nav span { display: block; transform: translateY(-2px); }
.merch__nav--prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.merch__nav--next { right: clamp(0.75rem, 2vw, 1.5rem); }
.merch__nav:hover { background: var(--fg); color: var(--bg); }

.merch--fullsize .merch__nav {
  opacity: 1;
  pointer-events: auto;
}

.merch__counter {
  position: absolute;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fg-60);
  display: flex;
  gap: 0.25rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s var(--snappy);
}
.merch--fullsize .merch__counter { opacity: 1; }
.merch__counter-current { color: var(--accent); }

.merch__buy {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  left: 50%;
  transform: translate(-50%, 8px);
  padding: 0.875rem 2.25rem;
  border: 1px solid var(--fg);
  background: rgba(0, 0, 0, 0.6);
  color: var(--fg);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-decoration: none;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(6px);
  transition: opacity 0.4s var(--snappy), transform 0.4s var(--snappy), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.merch__buy:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
}
.merch--fullsize .merch__buy {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* ─────────────────────────  Community  ───────────────────────── */
.community {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) var(--edge);
  border-top: 1px solid var(--line);
}
.community__content {
  max-width: 1400px;
  margin: 0 auto;
}
.community__manifest { text-align: center; }
.community__tag {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: var(--edge);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}
.community__manifest {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.community__manifest a {
  color: var(--accent);
  border-bottom: none;
  transition: opacity 0.2s;
}
.community__manifest a:hover {
  opacity: 0.7;
}

/* ─────────────────────────  Services  ────────────────────── */
.services {
  position: relative;
  padding: clamp(6rem, 15vw, 10rem) var(--edge);
  border-top: 1px solid var(--line);
}
.services__tag {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: var(--edge);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}
.services__content {
  max-width: 1400px;
  margin: 0 auto;
}
.services__heading {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--fg);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.services__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
.services__item:nth-child(2n) { border-right: 0; }
.services__item:hover {
  background: var(--accent);
  color: #fff;
}
.services__item:hover .services__num,
.services__item:hover .services__price { color: #fff; }
.services__num {
  font-family: var(--mono);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: color 0.25s;
}
.services__name {
  font-family: var(--display);
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: inherit;
}
.services__price {
  font-family: var(--mono);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-60);
  white-space: nowrap;
  transition: color 0.25s;
}

/* ─────────────────────────  Collab (OVVIO × STAK)  ───────── */
.collab {
  position: relative;
  padding: clamp(6rem, 15vw, 10rem) var(--edge);
  background: var(--bg);
}
.collab__content {
  max-width: 1400px;
}
.collab__tag {
  position: absolute;
  top: calc(clamp(1.5rem, 4vw, 3rem) + 1px);
  left: var(--edge);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}
.collab__manifest {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-align: left;
  margin: 0;
}
.collab__manifest em {
  color: var(--accent);
  font-style: normal;
}

/* ─────────────────────────  Contacts  ──────────────────────── */
.contacts {
  position: relative;
  padding: clamp(6rem, 15vw, 10rem) var(--edge);
  border-top: 1px solid var(--line);
}
.contacts__tag {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: var(--edge);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}
.contacts__brand {
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  width: 100%;
  display: block;
}
.contacts__brand img {
  width: 100%;
  height: auto;
  display: block;
}
.contacts__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}
.contacts__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts__col-title {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--fg-60);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.contacts__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contacts__col-list li {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.05vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
  text-transform: lowercase;
}
.contacts__col-list a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.contacts__col-list a:hover { color: var(--accent); }

/* ─────────────────────────  Footer  ──────────────────────── */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem var(--edge); border-top: 1px solid var(--line);
  font-weight: 300; text-transform: lowercase; letter-spacing: 0.06em;
  font-size: 0.8125rem;
}
.footer__brand h2 { font-family: var(--display); font-size: 1rem; font-weight: 700; margin: 0; text-transform: none; letter-spacing: 0.02em; }
.footer__links { display: flex; gap: 2rem; }
.footer__links a { color: var(--fg-60); }
.footer__links a:hover { color: var(--fg); }
.footer__contact { color: var(--fg-60); }

/* ─────────────────  Tablet / windowed: tighter merch  ───── */
/* Keep the scroll-driven scaling animation, but shrink the section so the
   user doesn't scroll through huge empty space above/below the frame. */
@media (min-width: 769px) and (max-width: 1280px) {
  .merch { height: 170vh; }
  .merch__sticky {
    align-items: flex-start;
    height: auto;
    padding-top: clamp(7rem, 14vh, 11rem);
    padding-bottom: 1.5rem;
  }
  .merch__frame {
    --min-width: 70vw;
    max-height: 72vh;
  }
  .collab__tag { top: 12px; }
  .collab { padding-top: clamp(5rem, 8vw, 6.5rem); }
}

/* ─────────────────  Mobile merch + collab  ───────────────── */
@media (max-width: 768px) {
  /* Merch: kill the scroll-driven sticky animation, make it a regular block */
  .merch {
    height: auto;
    padding: 0 0 clamp(3rem, 8vw, 4rem);
  }
  /* Collab: pull tag closer to merch above, keep original gap to body text */
  .collab__tag {
    top: 12px;
  }
  .collab {
    padding-top: clamp(5rem, 13vw, 6.5rem);
  }
  .merch__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 1rem var(--edge) 0;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
  }
  .merch__label,
  .merch--fullsize .merch__label {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 0.5rem;
    pointer-events: auto;
    opacity: 1;
  }
  .merch__caption {
    max-width: 100%;
    text-align: left;
  }
  .merch__frame {
    width: 100%;
    aspect-ratio: auto;
    max-height: none;
    display: grid;
    grid-template-areas:
      "track track track"
      "prev  buy   next"
      "count count count";
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    row-gap: 1rem;
    padding: 0 0 1.25rem;
    background: #000;
  }
  .merch__track {
    grid-area: track;
    width: 300%;
    height: auto;
    background: #0a0a0a;
  }
  .merch__item {
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .merch__item img {
    object-fit: contain;
    object-position: center;
  }
  .merch__nav,
  .merch--fullsize .merch__nav {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    opacity: 1;
    pointer-events: auto;
    margin: 0 1rem;
  }
  .merch__nav--prev { grid-area: prev; left: auto; }
  .merch__nav--next { grid-area: next; right: auto; }
  .merch__counter,
  .merch--fullsize .merch__counter {
    grid-area: count;
    position: static;
    bottom: auto;
    right: auto;
    justify-self: center;
    opacity: 1;
  }
  .merch__buy,
  .merch--fullsize .merch__buy {
    grid-area: buy;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    justify-self: center;
    align-self: center;
    background: transparent;
    backdrop-filter: none;
  }
}

/* ─────────────────────────  Mobile  ──────────────────────── */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .venue__split { grid-template-columns: 1fr; }
  .services__list { grid-template-columns: 1fr; }
  .services__item { border-right: 0; }
  .contacts__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer { flex-direction: column; gap: 2rem; text-align: center; }
  .hero__footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
