/* =========================================================
   RAW VISION COLLECTIVE — Home page
   ========================================================= */

   @font-face {
    font-family: 'Menlo';
    src: url('../assets/fonts/Menlo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Helvetica';
    src: url('../assets/fonts/Helvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Helvetica';
    src: url('../assets/fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Helvetica';
    src: url('../assets/fonts/Helvetica-Oblique.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Helvetica';
    src: url('../assets/fonts/Helvetica-BoldOblique.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  
  :root {
    --color-black: #1e1e1e;
    --color-black-2: #161616;
    --color-cream: #f3f1ea;
    --color-cream-dim: #cfcdc4;
    --color-muted-bg: #b3b2ad;
    --color-card-bg: #d9d9d9;
    --color-line: rgba(243, 241, 234, 0.22);
    --color-white: #ffffff;
  
    --font-display: 'Menlo', monospace;
    --font-mono: 'Menlo', monospace;
    --font-body: 'Menlo', monospace;
  
    --fluid-pad: clamp(20px, 4.5vw, 72px);
  
    /* Durasi morph header — lebih lambat biar smooth */
    --header-dur: 1.2s;
    --header-ease: cubic-bezier(0.22, 1, 0.36, 1);
  
    /*
      Logo besar; tepi band hitam memotong di tengah teks "COLLECTIVE"
      (COLLECTIVE ≈ 2/3–1 dari tinggi logo → tengah ≈ 83% dari tinggi logo)
    */
    --header-pad: clamp(18px, 2.8vw, 32px);
    --logo-expanded: clamp(280px, 48vw, 560px);
    --logo-compact: clamp(40px, 5vw, 56px);
    --header-band: calc(var(--header-pad) + var(--logo-expanded) * 0.83);
  }
  
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--color-black);
    color: var(--color-cream);
    font-family: var(--font-body);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
  }
  body.is-loading {
    overflow: hidden;
  }
  
  /* Page transition — fade lambat, preloader tetap terlihat */
  .site-header,
  main,
  .site-footer {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.is-page-ready .site-header,
  body.is-page-ready main,
  body.is-page-ready .site-footer {
    opacity: 1;
  }
  body.is-page-exit .site-header,
  body.is-page-exit main,
  body.is-page-exit .site-footer {
    opacity: 0;
    pointer-events: none;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .site-header,
    main,
    .site-footer {
      transition: none;
      opacity: 1;
    }
  }
  
  /* =========================================================
     PRELOADER
     ========================================================= */
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #1e1e1e;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(28px, 5vh, 64px) var(--fluid-pad) clamp(40px, 6vh, 80px);
    transition: opacity 0.65s ease, visibility 0.65s ease;
  }
  .preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .preloader__inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 4.5vh, 48px);
    padding-top: clamp(8px, 2vh, 24px);
  }
  
  .preloader__logo {
    display: block;
    width: min(96vw, 1320px);
    height: auto;
    max-height: min(72vh, 720px);
    object-fit: contain;
    object-position: left top;
  }
  
  .preloader__track {
    position: relative;
    width: 100%;
    height: 36px;
  }
  
  .preloader__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #ffffff;
  }
  
  .preloader__badge {
    position: absolute;
    top: 1px; /* tepat di bawah garis */
    left: 0;
    transform: translate(0, 0);
    background: #ffffff;
    color: #111111;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-size: clamp(10px, 1.1vw, 24px);
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 0.45em 0.55em;
    white-space: nowrap;
    will-change: left;
  }

  
  .moodymann-promo__bg.banner-promo-mobile {
    display: none;
  }
  @media (max-width: 720px) {
    .preloader__logo {
      width: min(96vw, 640px);
      max-height: 52vh;
    }
    .preloader__inner {
      gap: 24px;
    }

    .moodymann-promo__bg.banner-promo-desktop {
      display: none;
  }
  .moodymann-promo__bg.banner-promo-mobile {
    display: block;
  }
  }
  
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { margin: 0; padding: 0; list-style: none; }
  h1, h2, h3, p { margin: 0; }
  
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-cream);
    color: var(--color-black);
    padding: 8px 16px;
    z-index: 1000;
  }
  .skip-link:focus { left: 8px; top: 8px; }
  
  /* Full-width fluid container */
  .container-fluid {
    width: 100%;
    padding-left: var(--fluid-pad);
    padding-right: var(--fluid-pad);
  }
  
  .section-label-wrap {
    padding-top: clamp(20px, 3vw, 36px);
    padding-bottom: clamp(14px, 2vw, 20px);
  }
  .section-label {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-black);
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 0.02em;
    padding: 0.3em 0.6em 0.35em;
  }
  
  /* ---------- Nav ---------- */
  .main-nav {
    display: flex;
    gap: clamp(18px, 3vw, 100px);
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    transition: transform var(--header-dur) var(--header-ease);
  }
  .main-nav a {
    transition: opacity 0.2s ease;
    opacity: 0.9;
  }
  .main-nav a:hover,
  .main-nav a:focus-visible { opacity: 1; }
  
  /* ---------- Site header (morphs on scroll) ---------- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    overflow: visible;
    padding: var(--header-pad) 0 0;
    background: transparent;
    transition:
      padding var(--header-dur) var(--header-ease),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
    will-change: transform, opacity;
  }
  
  .site-header.is-hidden,
  body.is-page-ready .site-header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }
  
  body.is-page-exit .site-header.is-hidden {
    opacity: 0;
  }
  
  /* Solid black band — bottom edge cuts mid-"COLLECTIVE" */
  .site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-band);
    background: #1e1e1e;
    z-index: -1;
    transition:
      height var(--header-dur) var(--header-ease),
      opacity calc(var(--header-dur) * 0.85) ease;
  }
  .site-header.is-compact {
    padding: clamp(14px, 1.8vw, 20px) 0;
  }
  .site-header.is-compact::before {
    height: 0;
    opacity: 0;
  }
  
  .site-header__inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 30px);
    /* Inner height = black band minus top padding — keeps menu inside band */
    height: calc(var(--header-band) - var(--header-pad));
    transition:
      align-items var(--header-dur) var(--header-ease),
      height var(--header-dur) var(--header-ease);
  }
  .site-header.is-compact .site-header__inner {
    align-items: center;
    height: auto;
  }
  
  .site-header__logo {
    display: block;
    line-height: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .site-header__logo img {
    display: block;
    width: auto;
    height: var(--logo-expanded);
    max-width: min(85vw, 1320px);
    object-fit: contain;
    object-position: top left;
    transform-origin: top left;
    transition:
      height var(--header-dur) var(--header-ease),
      max-width var(--header-dur) var(--header-ease);
  }
  .site-header.is-compact .site-header__logo img {
    height: var(--logo-compact);
    max-width: 200px;
  }
  
  /* Tagline + nav: locked inside the black band (no overlap onto hero) */
  .site-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
    flex-shrink: 0;
    align-self: stretch;
    height: 100%;
    max-height: 100%;
    gap: 12px;
    padding-bottom: clamp(10px, 1.6vh, 18px);
    overflow: hidden; /* prevent menu from spilling past band */
    transition:
      height var(--header-dur) var(--header-ease),
      padding var(--header-dur) ease,
      gap var(--header-dur) var(--header-ease);
  }
  .site-header.is-compact .site-header__right {
    align-self: center;
    height: auto;
    max-height: none;
    overflow: visible;
    justify-content: center;
    gap: 0;
    padding-bottom: 0;
  }
  
  .brand-tagline {
    color: var(--color-cream-dim);
    max-width: 350px;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    text-align: left;
    overflow: hidden;
    opacity: 1;
    max-height: 96px;
    transform: translateY(0);
    transition:
      opacity calc(var(--header-dur) * 0.8) ease,
      max-height var(--header-dur) var(--header-ease),
      transform var(--header-dur) var(--header-ease),
      margin var(--header-dur) ease;
  }
  .site-header.is-compact .brand-tagline {
    opacity: 0;
    max-height: 0;
    margin: 0;
    transform: translateY(-18px);
    pointer-events: none;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-top: 8px;
  }
  .site-header.is-compact .nav-toggle {
    margin-top: 0;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 190;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #000000;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vh, 48px);
    padding: 32px var(--fluid-pad);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(1rem, 4.2vw, 1.35rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .mobile-nav a {
    opacity: 1;
    text-align: center;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    opacity: 0.7;
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  /* =========================================================
     HERO BANNER — sits BELOW the black header band (expanded)
     ========================================================= */
  .hero {
    position: relative;
    width: 100%;
    /* Push hero below solid black header; logo overlaps into this area */
    margin-top: var(--header-band);
    min-height: calc(100vh - var(--header-band));
    min-height: calc(100svh - var(--header-band));
    min-height: calc(100dvh - var(--header-band));
    overflow: hidden;
    background: #0a0a0a;
    color: var(--color-white);
    transition:
      margin-top var(--header-dur) var(--header-ease),
      min-height var(--header-dur) var(--header-ease);
  }
  
  /* When header is compact: hero goes full-bleed under transparent header */
  .site-header.is-compact ~ main .hero {
    margin-top: 0;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }
  
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero__content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: clamp(46px, calc(14vh - 50px), 110px) var(--fluid-pad) clamp(24px, 4vh, 48px);
    box-sizing: border-box;
  }
  
  /* YE — stadium — LIVE row (true horizontal center) */
  .hero__stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    margin-top: 110px;
  }
  
  .hero__side {
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(40px, 6.5vw, 93px);
    line-height: 100%;
    letter-spacing: 0.08em; /* Figma: 8% */
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
  }
  .hero__side--left {
    justify-self: center;
    padding-right: 250px;
  }
  .hero__side--right {
    justify-self: center;
    padding-left: 250px;
  }
  
  .hero__core {
    position: relative;
    width: clamp(220px, 32vw, 420px);
    aspect-ratio: 1 / 1;
    margin: 0;
    pointer-events: none;
  }
  
  .hero__date, .hero__venue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    font-family: Menlo;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 7%;
  }
  .hero__date { top: 30%; }
  .hero__venue { bottom: 30%; }
  
  /* Buy tickets + countdown — centered under stadium */
  .hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vh, 48px);
    margin-top: clamp(16px, 3.5vh, 36px);
    width: 100%;
  }
  
  .btn-buy {
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    text-transform: uppercase;
    padding: 0.95em 3.2em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    font-family: Menlo;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 350px;
    height: 67px;
    opacity: 1;
    border-width: 1px;
    gap: 10px;
    padding-top: 16px;
    padding-right: 12px;
    padding-bottom: 16px;
    padding-left: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-buy:hover,
  .btn-buy:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
  }
  
  .countdown {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    font-family: var(--font-mono);
    margin-top: 40px;
  }
  .countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 2.8em;
  }
  .countdown__num {
    color: var(--color-white);
    font-family: Menlo;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 5%;
    text-align: center;
  }
  
  .countdown__label {
    text-transform: uppercase;
    color: #ffffff;
    font-family: Menlo;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 5%;
  }
  .countdown__sep {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-10px);
    font-family: Menlo;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 5%;
    text-align: center;
  }
  
  /* ---------- Moodymann featured promo ---------- */
  .moodymann-promo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .moodymann-promo__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .moodymann-promo__bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  /* .moodymann-promo__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.72) 100%),
      radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.45) 100%);
  } */

  .moodymann-promo__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
  }

  .moodymann-promo__grid {
    display: grid;
    /* grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr) minmax(0, 1fr); */
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    width: 100%;
  }

  .moodymann-promo__poster {
    margin: 0;
    width: 100%;
    justify-self: center;
    overflow: hidden;
    background: #111;
    margin-top: -100px;
  }

  .moodymann-promo__poster img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 819 / 1024;
    object-fit: cover;
    object-position: center center;
  }

  .moodymann-promo__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(8px, 1.5vw, 20px);
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    gap: 100px;
}

  .moodymann-promo__title {
    margin: 0;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 75px;
    line-height: 100%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
}
.moodymann-promo__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: Menlo, var(--font-mono), monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.moodymann-promo__btn {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(20, 20, 20, 0.35);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 0.95em 3.2em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: Menlo;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  width: 350px;
  height: 67px;
  opacity: 1;
  border-width: 1px;
  gap: 10px;
  padding-top: 16px;
  padding-right: 12px;
  padding-bottom: 16px;
  padding-left: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .moodymann-promo__btn:hover,
  .moodymann-promo__btn:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    outline: none;
  }

  .moodymann-promo__countdown {
    margin-top: clamp(8px, 1.5vh, 16px);
    justify-content: center;
  }

  @media (max-width: 900px) {
    .moodymann-promo__poster {
      margin-top: 0;
    }

    .moodymann-promo__inner {
      padding-top: clamp(40px, 7vh, 64px);
      padding-bottom: clamp(32px, 5vh, 48px);
    }

    .moodymann-promo__grid {
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 420px;
      margin: 0 auto;
      justify-items: center;
    }

    /* Flatten center so title/meta/btn/countdown can be reordered */

    .moodymann-promo__title {
      order: 1;
      font-size: 38px;
      text-align: center;
    }

    .moodymann-promo__meta {
      order: 2;
      font-size: 22px;
    }

    .moodymann-promo__countdown {
      order: 3;
      margin-top: 0;
    }

    .moodymann-promo__poster:first-of-type {
      order: 4;
    }

    .moodymann-promo__poster:last-of-type {
      order: 5;
    }

    .moodymann-promo__poster {
      max-width: 360px;
      width: min(100%, 360px);
    }

    .moodymann-promo__btn {
      order: 6;
      width: min(280px, 100%);
      height: 56px;
      font-size: 14px;
      margin-top: 4px;
    }
  }

  /* ---------- About ---------- */
  .about {
    position: relative;
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  
  .about__hit {
    position: relative;
    display: block;
    width: 100%;
    color: inherit;
    cursor: pointer;
  }
  
  .about__visual {
    width: 100%;
    aspect-ratio: 1482 / 553;
    max-height: 560px;
    overflow: hidden;
    background: #111;
  }
  .about__visual img,
  .about__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) contrast(1.05);
    pointer-events: none;
  }
  
  /* ---------- Shared section button (About Us / Events) ---------- */
  .section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    width: 238px;
    height: 67px;
    padding: 16px 12px;
    background: #ffffff;
    color: #111111;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: none;
    opacity: 1;
    overflow: hidden;
    transition:
      width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .section-btn__text {
    display: inline-block;
    white-space: nowrap;
  }
  .section-btn__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 33px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
    transform: translate(-6px, 4px);
    transition:
      width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .section-btn__arrow img {
    display: block;
    width: 33px;
    height: 33px;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  /* About: positioned on image; hover via section */
  .about__btn {
    position: absolute;
    top: clamp(16px, 2.5vw, 28px);
    left: var(--fluid-pad);
    z-index: 2;
  }
  .about:hover .about__btn,
  .about__hit:hover .about__btn,
  .about__hit:focus-visible .about__btn,
  .events__btn:hover,
  .events__btn:focus-visible {
    width: 281px;
    gap: 10px;
  }
  .about:hover .section-btn__arrow,
  .about__hit:hover .section-btn__arrow,
  .about__hit:focus-visible .section-btn__arrow,
  .events__btn:hover .section-btn__arrow,
  .events__btn:focus-visible .section-btn__arrow {
    width: 33px;
    max-width: 33px;
    opacity: 1;
    transform: translate(0, 0);
  }
  
  @media (max-width: 720px) {
    .about__visual {
      max-height: auto;
      aspect-ratio: 9 / 16;
    }
  
    .join-form__actions {
      margin-top: 10px !important;
    }
  
    .events-list__item.is-open .events-list__copy {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      justify-self: unset !important;
      min-width: 100% !important;
    }
  
    .event-detail__copy {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      justify-self: unset !important;
      min-width: 100% !important;
    }
    .section-btn {
      width: auto;
      height: 48px;
      padding: 10px 8px;
      font-size: 28px;
      gap: 8px;
    }
    .events__btn {
      width: auto !important;
    }
    .section-btn__arrow {
      width: 22px;
      max-width: 22px;
      height: 22px;
      opacity: 1;
      transform: translate(0, 0);
    }
    .section-btn__arrow img {
      width: 22px;
      height: 22px;
    }
    .about:hover .about__btn,
    .about__hit:hover .about__btn,
    .about__hit:focus-visible .about__btn,
    .events__btn:hover,
    .events__btn:focus-visible {
      width: auto;
    }
    .events__btn:hover,
    .events__btn:focus-visible {
      width: auto;
    }
  }
  
  /* ---------- Events ---------- */
  .events {
    background: var(--color-muted-bg);
    color: var(--color-black);
    padding-top: 25px;
    padding-bottom: clamp(32px, 5vw, 56px);
  }
  
  .events__head {
    width: 100%;
    margin: 0 0 clamp(18px, 3vw, 30px);
    padding: 0;
    /* Garis hanya selebar container-fluid, nempel di atas button */
    border-top: 1px solid #d9d9d9;
  }
  
  .events__btn {
    width: 182px;
    background: #d9d9d9;
    margin-top: 0;
    vertical-align: top;
  }
  .events__btn:hover,
  .events__btn:focus-visible {
    width: 228px;
  }
  
  .events__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
  }
  
  .event-card {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 186px;
    grid-template-rows: auto 186px;
    column-gap: clamp(12px, 1.5vw, 20px);
    row-gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
    background: #D9D9D9;
    padding: clamp(13px, 2vw, 13px);
    color: #111111;
    cursor: pointer;
    transition:
      background 0.35s ease,
      color 0.35s ease,
      border-color 0.35s ease;
  }
  
  .event-card__title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  
  .event-card__meta {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin: 0;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: inherit;
  }
  
  .event-card__thumb {
    grid-column: 2;
    grid-row: 2;
    width: 186px;
    height: 186px;
    overflow: hidden;
    background: #0e0e0e;
    flex-shrink: 0;
  }
  .event-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s ease;
  }
  .event-card__thumb--empty {
    width: 186px;
    height: 186px;
  }
  
  /* Card hover: bg hitam, text putih, gambar berwarna */
  .event-card:hover,
  .event-card:focus-within {
    background: #111111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
  }
  .event-card:hover .event-card__thumb img,
  .event-card:focus-within .event-card__thumb img {
    filter: grayscale(0);
  }
  
  @media (max-width: 1400px) {
    .event-card {
      grid-template-columns: minmax(0, 1fr) minmax(120px, 186px);
      grid-template-rows: auto auto;
    }
    .event-card__thumb,
    .event-card__thumb--empty {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      max-width: 186px;
      justify-self: end;
    }
    .event-card__title {
      font-size: clamp(18px, 2.2vw, 32px);
      line-height: 1;
    }
  }
  
  @media (max-width: 1100px) {
    .events__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 600px) {
    .events__grid {
      grid-template-columns: 1fr;
    }
    .event-card {
      grid-template-columns: minmax(0, 1fr) 140px;
      grid-template-rows: auto 140px;
    }
    .event-card__thumb,
    .event-card__thumb--empty {
      width: 140px;
      height: 140px;
      max-width: 140px;
    }
    .event-card__title {
      font-size: 22px;
      line-height: 22px;
    }
  }
  
  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--color-black);
    padding-top: clamp(20px, 3vw, 32px);
  }
  .footer__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    color: var(--color-cream-dim);
    padding-bottom: clamp(18px, 3vw, 28px);
    font-family: Menlo;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 8%;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
  }
  .footer__contact {
    justify-self: start;
  }
  .footer__social {
    justify-self: center;
    text-align: center;
  }
  .footer__copy {
    justify-self: end;
    text-align: right;
  }
  .footer__contact:hover,
  .footer__social:hover { color: var(--color-cream); text-decoration: underline; }
  
  .footer__wordmark {
    padding: clamp(10px, 2vw, 20px) var(--fluid-pad) clamp(16px, 3vw, 28px);
    line-height: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer__wordmark img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .hero__side {
      font-size: clamp(36px, 7vw, 72px);
    }
    .hero__side--left { padding-right: clamp(8px, 2vw, 20px); }
    .hero__side--right { padding-left: clamp(8px, 2vw, 20px); }
    .hero__core {
      width: clamp(180px, 36vw, 300px);
    }
  }
  
  @media (max-width: 720px) {
    :root {
      --header-pad: 14px;
      --logo-compact: 40px;
    }
  
    /* Mobile: header selalu mode compact — transparan, logo kecil */
    .site-header {
      padding: 14px 0;
    }
    .site-header::before {
      height: 0 !important;
      opacity: 0 !important;
    }
    .site-header__inner {
      align-items: center;
      height: auto;
    }
    .site-header__logo img {
      height: 40px !important;
      max-width: 180px;
    }
    .brand-tagline {
      display: none !important;
    }
    .site-header__right {
      display: none;
    }
    .nav-toggle {
      display: flex;
      margin-top: 0;
      margin-left: auto;
    }
  
    .hero {
      margin-top: 0;
      min-height: 100vh;
      min-height: 100svh;
      min-height: 100dvh;
      height: 100vh;
      height: 100svh;
      height: 100dvh;
    }
  
    .hero__content {
      padding: clamp(56px, 10vh, 80px) var(--fluid-pad) 28px;
    }
    .hero__stage {
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
      justify-content: center;
      justify-items: center;
      align-items: center;
      column-gap: 0.28em;
      row-gap: clamp(14px, 3vh, 24px);
      margin-top: -55px;
    }
    .hero__side--left {
      grid-column: 1;
      grid-row: 1;
      justify-self: end;
      text-align: right;
      padding: 0;
    }
    .hero__side--right {
      grid-column: 2;
      grid-row: 1;
      justify-self: start;
      text-align: left;
      padding: 0;
    }
    .hero__side {
      font-size: clamp(28px, 9vw, 44px);
      letter-spacing: 0.06em;
    }
    .hero__core {
      grid-column: 1 / -1;
      grid-row: 2;
      order: unset;
      width: min(260px, 70vw);
    }
    .hero__date { top: 28%; }
    .hero__venue { bottom: 28%; }
    .hero__bottom {
      margin-top: 18px;
      gap: 22px;
    }
  }
  
  @media (max-width: 600px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
  }
  
  @media (max-width: 720px) {
    .footer__row {
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      align-items: start;
      column-gap: 12px;
      row-gap: 8px;
    }
  
    .footer__contact {
      grid-column: 1;
      grid-row: 1;
      justify-self: start;
    }
  
    .footer__social {
      grid-column: 1;
      grid-row: 2;
      justify-self: start;
      text-align: left;
    }
  
    .footer__copy {
      grid-column: 2;
      grid-row: 2;
      justify-self: end;
      align-self: center;
      text-align: right;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header::before,
    .site-header__logo img,
    .site-header__right,
    .brand-tagline,
    .main-nav,
    .hero {
      transition: none !important;
    }
  }
  
  
  /* MacBook / laptop mid-width — header seperti referensi Figma */
  @media screen and (min-width: 1280px) and (max-width: 1600px) {
    :root {
      --header-pad: 18px;
      /*
        Tinggi logo dipilih supaya width (rasio ~2.39) muat di viewport,
        jadi height nyata = --logo-expanded (tidak ter-crop max-width).
        0.853 = tengah tepat garis "COLLECTIVE" di asset logo-rvc.png
      */
      --logo-expanded: clamp(360px, 30vw, 480px);
      --header-band: calc(var(--header-pad) + var(--logo-expanded) * 0.80);
      --fluid-pad: clamp(28px, 3.8vw, 56px);
    }
  
    .site-header__inner {
      gap: clamp(16px, 2vw, 36px);
    }
  
    .site-header__logo {
      flex-shrink: 0;
      min-width: 0;
      max-width: 74%;
    }
  
    .site-header__logo img {
      height: var(--logo-expanded);
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: top left;
    }
  
    .site-header__right {
      flex: 0 1 auto;
      flex-shrink: 1;
      min-width: 0;
      max-width: min(340px, 30%);
      height: 100%;
      align-self: stretch;
      justify-content: space-between;
      padding-bottom: 8px;
      overflow: visible;
    }
  
    .brand-tagline {
      max-width: 300px;
      width: 100%;
      font-size: 11px;
      line-height: 15px;
      max-height: none;
    }
  
    .main-nav {
      gap: clamp(24px, 2.8vw, 56px);
      font-size: 13px;
    }
  
    .site-header.is-compact .site-header__logo {
      max-width: none;
    }
    .site-header.is-compact .site-header__right {
      max-width: none;
      overflow: visible;
      padding-bottom: 0;
    }
  
    .hero__stage {
      margin-top: 35px;
    }
  
    .hero__bottom {
      margin-top: 0px;
    }
    .event-card__title {
      font-size: 30px;
    }
  
    .preloader__logo {
      display: block;
      width: min(84vw, 1100px);
      height: auto;
      max-height: min(62vh, 620px);
      object-fit: contain;
      object-position: left top;
    }

    .moodymann-promo__title {
      font-size: 65px;
    }

    .moodymann-promo__center {
      gap: 100px;
      margin-top: 70px;
    }
  }
  
  /* =========================================================
     ABOUT PAGE — full-bleed, header always compact
     ========================================================= */
  body.page-about {
    background: #0a0a0a;
    min-height: 100vh;
    min-height: 100dvh;
  }
  
  /* Header langsung compact: logo kecil + transparan */
  body.page-about .site-header,
  body.page-events .site-header,
  body.page-event-detail .site-header,
  body.page-join .site-header {
    padding: clamp(14px, 1.8vw, 20px) 0;
  }
  body.page-about .site-header::before,
  body.page-events .site-header::before,
  body.page-event-detail .site-header::before,
  body.page-join .site-header::before {
    height: 0 !important;
    opacity: 0 !important;
  }
  body.page-about .site-header__inner,
  body.page-events .site-header__inner,
  body.page-event-detail .site-header__inner,
  body.page-join .site-header__inner {
    align-items: center;
    height: auto;
  }
  body.page-about .site-header__logo img,
  body.page-events .site-header__logo img,
  body.page-event-detail .site-header__logo img,
  body.page-join .site-header__logo img {
    height: var(--logo-compact);
    max-width: 200px;
  }
  body.page-about .brand-tagline,
  body.page-events .brand-tagline,
  body.page-event-detail .brand-tagline,
  body.page-join .brand-tagline {
    display: none !important;
  }
  body.page-about .site-header__right,
  body.page-events .site-header__right,
  body.page-event-detail .site-header__right,
  body.page-join .site-header__right {
    align-self: center;
    height: auto;
    max-height: none;
    overflow: visible;
    justify-content: center;
    gap: 0;
    padding-bottom: 0;
  }
  body.page-about .nav-toggle,
  body.page-events .nav-toggle,
  body.page-event-detail .nav-toggle,
  body.page-join .nav-toggle {
    margin-top: 0;
  }
  
  .about-page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    overflow: hidden;
  }
  
  .about-page__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .about-page__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) blur(22px) brightness(0.32) contrast(1.1);
    transform: scale(1.12);
  }
  .about-page__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.42);
  }
  
  .about-page__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:
      clamp(100px, 16vh, 160px)
      var(--fluid-pad)
      clamp(32px, 5vh, 56px);
  }
  
  .about-page__text {
    max-width: 1100px;
    width: 100%;
    margin: 0;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0;
    color: #ffffff;
    text-align: left;
  }

  .about-page__text p {
    margin: 0;
  }

  .about-page__text p + p {
    margin-top: 1.15em;
  }

  .about-page__text strong {
    font-weight: 700;
  }
  
  .about-page__footer {
    position: relative;
    z-index: 1;
    padding: clamp(18px, 3vh, 28px) 0;
  }
  
  .about-page__footer-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px 24px;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-size: clamp(11px, 1vw, 14px);
    line-height: 1;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .about-page__footer-row > :nth-child(1) {
    justify-self: start;
  }
  
  .about-page__footer-row > :nth-child(2) {
    justify-self: center;
    text-align: center;
  }
  
  .about-page__footer-row > :nth-child(3) {
    justify-self: end;
    text-align: right;
  }
  
  .about-page__link:hover,
  .about-page__link:focus-visible {
    color: #ffffff;
    text-decoration: underline;
  }
  
  @media (max-width: 720px) {
    .about-page__body {
      padding-top: 96px;
      align-items: flex-start;
    }
    .about-page__text {
      font-size: 20px;
      line-height: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .about-page__footer-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .about-page__footer-row > :nth-child(1),
    .about-page__footer-row > :nth-child(2),
    .about-page__footer-row > :nth-child(3) {
      justify-self: start;
      text-align: left;
    }
  
    .about-page__text {
      font-size: 18px;
      line-height: 26px;
    }
  }
  
  /* =========================================================
     ABOUT / JOIN MODALS — full-screen glass overlay
     ========================================================= */
  .site-modal {
    --modal-dur: 0.75s;
    --modal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed;
    inset: 0;
    z-index: 180;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(8, 8, 8, 0);
    -webkit-backdrop-filter: blur(0) saturate(1);
    backdrop-filter: blur(0) saturate(1);
    transition:
      opacity var(--modal-dur) var(--modal-ease),
      visibility var(--modal-dur) var(--modal-ease),
      background var(--modal-dur) var(--modal-ease),
      -webkit-backdrop-filter var(--modal-dur) var(--modal-ease),
      backdrop-filter var(--modal-dur) var(--modal-ease);
  }
  
  .site-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(8, 8, 8, 0.42);
    -webkit-backdrop-filter: blur(22px) saturate(1.05);
    backdrop-filter: blur(22px) saturate(1.05);
  }
  
  .site-modal__close {
    position: absolute;
    top: 120px;
    right: var(--fluid-pad);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 51px;
    height: 35px;
    padding-top: 16px;
    padding-right: 12px;
    padding-bottom: 16px;
    padding-left: 12px;
    gap: 10px;
    transition: all 0.5s;
  }
  
  .site-modal__close img {
    display: block;
    width: 20px;
    height: 17px;
    object-fit: cover;
    filter: none;
    transition: filter 0.5s ease;
  }
  
  .site-modal__close:hover,
  .site-modal__close:focus-visible {
    background: #888888;
    opacity: 1;
  }

  .site-modal__close:hover img,
  .site-modal__close:focus-visible img {
    filter: brightness(0) invert(1);
  }
  
  .site-modal__close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }
  
  @media (max-width: 720px) {
    .site-modal__close {
      top: auto;
      bottom: clamp(18px, 3vh, 28px);
      right: var(--fluid-pad);
    }
  }
  
  .site-modal .about-page,
  .site-modal .join-page {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: transparent;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity calc(var(--modal-dur) * 0.9) var(--modal-ease),
      transform calc(var(--modal-dur) * 0.9) var(--modal-ease);
  }
  
  .site-modal.is-open .about-page,
  .site-modal.is-open .join-page {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
  }
  
  .site-modal .about-page__bg {
    display: none;
  }
  
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-modal.is-open {
      background: rgba(12, 12, 12, 0.88);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .site-modal,
    .site-modal .about-page,
    .site-modal .join-page {
      transition: none;
    }
  
    .site-modal .about-page,
    .site-modal .join-page {
      transform: none;
    }
  }
  
  body.modal-open {
    overflow: hidden;
  }
  
  body.modal-open .site-header {
    z-index: 200;
    padding: clamp(14px, 1.8vw, 20px) 0;
  }
  
  body.modal-open .site-header::before {
    height: 0 !important;
    opacity: 0 !important;
  }
  
  body.modal-open .site-header__logo img {
    height: var(--logo-compact);
    max-width: 200px;
  }
  
  body.modal-open .brand-tagline {
    display: none !important;
  }
  
  /* =========================================================
     EVENTS PAGE — accordion list
     ========================================================= */
  body.page-events {
    background: #1e1e1e;
    min-height: 100vh;
    color: #ffffff;
  }
  
  .events-page {
    padding-top: 150px;
    padding-bottom: clamp(24px, 4vh, 48px);
  }
  
  .events-page__inner {
    max-width: 100%;
  }
  
  .events-page__head {
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(20px, 3vw, 36px);
  }
  
  .events-page__title {
    display: inline-block;
    margin: 0;
    padding: 10px 14px;
    background: #ffffff;
    color: #111111;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: 0;
  }
  
  .events-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
  
  .events-list__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  
  .events-list__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 40px);
    padding: 15px 0;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    text-align: left;
  }
  
  .events-list__name {
    color: #ffffff;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .events-list__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #ffffff;
    color: #000;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: Menlo;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  
  .events-list__item.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 350px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(16px, 2.5vw, 40px);
    row-gap: clamp(20px, 3vw, 32px);
    padding-bottom: clamp(28px, 4vw, 48px);
    align-items: start;
  }
  
  .events-list__item.is-open .events-list__trigger {
    display: contents;
  }
  
  .events-list__item.is-open .events-list__name {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    max-width: 100%;
    padding-top: 15px;
    padding-right: 8px;
  }
  
  .events-list__item.is-open .events-list__badge {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
  }
  
  .events-list__panel {
    display: none;
  }
  
  .events-list__panel[hidden] {
    display: none !important;
  }
  
  .events-list__item.is-open .events-list__panel {
    display: contents;
    animation: none;
  }
  
  .events-list__item.is-open .events-list__copy {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: start;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-top: 15px;
    text-align: left;
    animation: events-panel-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .events-list__item.is-open .events-list__gallery {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
    animation: events-panel-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  @keyframes events-panel-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .events-list__copy p {
    margin: 0 0 1em;
    color: rgba(255, 255, 255, 0.72);
    font-family: Menlo;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
  }
  .events-list__copy p:last-child {
    margin-bottom: 0;
  }
  
  .events-list__gallery {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(10px, 1.4vw, 16px);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
  }
  .events-list__gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
    width: 0;
    height: 0;
  }
  
  .events-list__gallery.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  
  .events-list__shot {
    margin: 0;
    flex: 0 0 auto;
    height: clamp(180px, 28vw, 320px);
    width: auto;
    overflow: hidden;
    background: #111111;
    scroll-snap-align: start;
  }
  
  .events-list__shot img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    filter: grayscale(1);
    transition: filter 0.35s ease;
    pointer-events: none; /* biar drag tidak nyangkut di img */
    user-select: none;
    -webkit-user-drag: none;
  }
  
  .events-list__item.is-open .events-list__shot img:hover {
    filter: grayscale(0);
  }
  
  .events-list__shot--empty {
    width: clamp(140px, 22vw, 240px);
    background: #1a1a1a;
  }
  
  .events-page__footer {
    margin-top: clamp(24px, 4vw, 48px);
    border-top: none;
  }
  
  .events-page__footer::before {
    content: "";
    display: block;
    margin: 0 var(--fluid-pad);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 25px;
  }
  
  .events-page__footer .footer__row {
    color: rgba(255, 255, 255, 0.85);
  }
  
  @media (max-width: 900px) {
    .events-list__item.is-open {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
    }
    .events-list__item.is-open .events-list__trigger {
      display: flex;
      grid-column: 1;
      grid-row: 1;
      padding-bottom: 0;
    }
    .events-list__item.is-open .events-list__name,
    .events-list__item.is-open .events-list__badge {
      padding-top: 0;
      margin-top: 0;
      max-width: none;
      justify-self: auto;
    }
    .events-list__item.is-open .events-list__panel {
      display: block;
      grid-column: 1;
      grid-row: 2;
    }
    .events-list__item.is-open .events-list__copy {
      grid-column: 1;
      grid-row: auto;
      justify-self: center;
      width: min(350px, 100%);
      max-width: 350px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 12px;
    }
    .events-list__item.is-open .events-list__gallery {
      grid-column: auto;
      grid-row: auto;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 720px) {
    .events-list__trigger {
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 12px;
    }
    .events-list__badge {
      white-space: normal;
      text-align: left;
    }
    .events-list__shot {
      height: clamp(140px, 42vw, 200px);
    }
  }
  
  /* =========================================================
     EVENT DETAIL PAGE
     ========================================================= */
  body.page-event-detail {
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
  }
  
  .event-detail {
    padding-bottom: 0;
    background: #1e1e1e;
  }
  
  .event-detail__hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
  }
  
  .event-detail__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) contrast(1.05);
  }
  
  .event-detail__hero-labels {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 var(--fluid-pad);
    pointer-events: none;
  }
  
  .event-detail__banner {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  
  .event-detail__title-chip {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin: 0;
    max-width: min(58vw, 480px);
    padding: 12px 16px;
    background: #ffffff;
    color: #000000;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3.2vw, 40px);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 65px;
  }
  
  .event-detail__banner-trail {
    flex: 1 1 auto;
    position: relative;
    height: 1px;
    min-width: 40px;
    align-self: center;
  }
  
  .event-detail__banner-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #ffffff;
  }
  
  .event-detail__meta-chip {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    display: inline-block;
    padding: 8px 12px;
    background: #ffffff;
    color: #000000;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-size: clamp(10px, 1vw, 12px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .event-detail__intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 350px) minmax(0, 1fr);
    gap: clamp(16px, 2.5vw, 40px);
    align-items: start;
    padding-top: clamp(36px, 5vw, 64px);
    padding-bottom: clamp(36px, 5vw, 64px);
  }
  
  .event-detail__type {
    margin: 0;
    display: inline-block;
    grid-column: 1;
    justify-self: start;
    align-self: start;
    padding: 8px 12px;
    background: #ffffff;
    color: #000000;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-size: clamp(10px, 1vw, 12px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .event-detail__copy {
    grid-column: 2;
    justify-self: center;
    align-self: start;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .event-detail__copy p {
    margin: 0;
    color: #ffffff;
    text-align: left;
    font-family: Menlo;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
  }
  
  .event-detail__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 440px;
    gap: 15px;
    padding-bottom: clamp(28px, 4vw, 48px);
  }
  
  .event-detail__cell {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 0;
    height: 440px;
  }
  
  .event-detail__cell img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: none;
  }
  
  .event-detail__cell--a,
  .event-detail__cell--b {
    grid-column: span 2;
  }
  
  .event-detail__cell--c {
    grid-column: span 2;
  }
  
  .event-detail__cell--d,
  .event-detail__cell--e,
  .event-detail__cell--f,
  .event-detail__cell--h {
    grid-column: span 1;
  }
  
  .event-detail__cell--g {
    grid-column: span 2;
  }
  
  .event-detail__footer {
    border-top: none;
    margin-top: 0;
  }
  
  .event-detail__footer::before {
    content: "";
    display: block;
    margin: 0 var(--fluid-pad);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 25px;
  }
  
  .event-detail__footer .footer__row {
    color: rgba(255, 255, 255, 0.88);
  }
  
  .events-list__item.is-open {
    cursor: pointer;
  }
  
  .events-list__item.is-open .events-list__gallery {
    cursor: grab;
  }
  
  .events-list__item.is-open .events-list__gallery.is-dragging {
    cursor: grabbing;
  }
  
  @media (max-width: 900px) {
    .event-detail__intro {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .event-detail__type {
      grid-column: 1;
      justify-self: start;
    }
  
    .event-detail__copy {
      grid-column: 1;
      justify-self: center;
      width: min(350px, 100%);
      max-width: 350px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .event-detail__gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 440px;
    }
  
    .event-detail__cell--a,
    .event-detail__cell--b,
    .event-detail__cell--c,
    .event-detail__cell--g {
      grid-column: span 2;
    }
  
    .event-detail__cell--d,
    .event-detail__cell--e,
    .event-detail__cell--f,
    .event-detail__cell--h {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 720px) {
    .event-detail__hero {
      min-height: 70vh;
    }
  
    .event-detail__title-chip {
      max-width: min(55vw, 220px);
      padding: 10px 12px;
      font-size: 18px;
    }
  
    .event-detail__meta-chip {
      padding: 7px 10px;
      font-size: 10px;
      white-space: normal;
      max-width: 42vw;
      text-align: right;
    }
  
    .event-detail__gallery {
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      grid-template-columns: none;
      grid-auto-rows: auto;
      cursor: grab;
    }
  
    .event-detail__gallery::-webkit-scrollbar {
      display: none;
    }
  
    .event-detail__gallery.is-dragging {
      cursor: grabbing;
    }
  
    .event-detail__cell,
    .event-detail__cell--a,
    .event-detail__cell--b,
    .event-detail__cell--c,
    .event-detail__cell--d,
    .event-detail__cell--e,
    .event-detail__cell--f,
    .event-detail__cell--g,
    .event-detail__cell--h {
      flex: 0 0 auto;
      grid-column: auto;
      width: auto;
      height: clamp(220px, 58vw, 320px);
      scroll-snap-align: start;
    }
  
    .event-detail__cell img {
      width: auto;
      height: 100%;
      max-width: none;
      object-fit: cover;
    }
  }
  
  /* =========================================================
     JOIN PAGE
     ========================================================= */
  body.page-join {
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    min-height: 100dvh;
  }
  
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .join-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  
  .join-page__body {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: clamp(96px, 14vh, 140px);
    padding-bottom: clamp(48px, 8vh, 80px);
  }
  
  .join-form {
    width: 100%;
  }
  
  .join-form__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .join-form__title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    margin: 0;
    flex-shrink: 0;
    color: #ffffff;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
    letter-spacing: 0;
  }
  
  .join-form__field {
    position: relative;
    z-index: 0;
    flex: 0 0 auto;
    width: min(560px, 52vw);
    min-width: 0;
    display: block;
  }
  
  .join-form__input {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px 18px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #000000;
    font-family: 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.2;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .join-form__input::placeholder {
    color: #1a1a1a;
    opacity: 0.85;
  }
  
  .join-form__input:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }
  
  .join-form__rule {
    width: 100%;
    height: 1px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.55);
  }
  
  .join-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  
  .join-form__send {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    text-transform: uppercase;
    font-family: Menlo;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 83px;
    height: 35px;
    opacity: 1;
    padding-top: 16px;
    padding-right: 12px;
    padding-bottom: 24px;
    padding-left: 12px;
    gap: 10px;
    transition: all 0.5s;
  }
  
  .join-form__send:hover,
  .join-form__send:focus-visible {
    background: #888888;
    opacity: 1;
    color: #ffffff;
  }
  
  .join-form__send:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }
  
  .join-page__footer {
    padding: clamp(18px, 3vh, 28px) 0;
  }
  
  .join-page__footer-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px 24px;
    font-family: Menlo, var(--font-mono), monospace;
    font-weight: 400;
    font-size: clamp(11px, 1vw, 14px);
    line-height: 1;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .join-page__footer-row > :nth-child(1) {
    justify-self: start;
  }
  
  .join-page__footer-row > :nth-child(2) {
    justify-self: center;
    text-align: center;
  }
  
  .join-page__footer-row > :nth-child(3) {
    justify-self: end;
    text-align: right;
  }
  
  .join-page__link:hover,
  .join-page__link:focus-visible {
    color: #ffffff;
    text-decoration: underline;
  }
  
  @media (max-width: 720px) {
    .join-form__top {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
      min-height: 0;
    }
  
    .join-form__title {
      position: static;
      transform: none;
    }
  
    .join-form__field {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .join-page__footer-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .join-page__footer-row > :nth-child(1),
    .join-page__footer-row > :nth-child(2),
    .join-page__footer-row > :nth-child(3) {
      justify-self: start;
      text-align: left;
    }
  
    .preloader {
      align-items: center;
      justify-content: center;
      padding: clamp(24px, 4vh, 40px) var(--fluid-pad);
    }
  
    .preloader__inner {
      position: static;
      height: auto;
      min-height: 0;
      padding-top: 0;
      width: 100%;
      align-items: flex-start;
      gap: clamp(20px, 4vh, 32px);
    }
  
    .preloader__logo {
      width: min(92vw, 420px);
      max-height: 36vh;
      object-position: left center;
    }
  
    .preloader__track {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      transform: none;
      width: 100%;
    }
  
    .about-page__body {
        padding-top: 96px;
        align-items: center;
    }
  
    .events-list__name {
      font-size: 16px;
    }
  
    .events-list__trigger {
      align-items: center;
    }
  
    .events-list__badge {
      font-size: 10px;
    }
  
    .events-list__item.is-open .events-list__panel {
      overflow-x: hidden;
    }
  
    .events-list__item.is-open .events-list__badge {
      padding-top: 8px;
    }
  
    .event-detail__title-chip {
      margin-bottom: 38px;
    }
  }