      :root {
        --bg: #000000;
        --bg-soft: #141414;
        --bg-card: #1a1510;
        --line: rgba(245, 235, 215, 0.12);
        --line-soft: rgba(245, 235, 215, 0.06);
        --text: #f5ebd7;
        --text-60: rgba(245, 235, 215, 0.6);
        --text-40: rgba(245, 235, 215, 0.4);
        --accent: #4f9fe0;
        --rust: #c2602a;
        --font: "Inter Tight", system-ui, sans-serif;
        --container: 1280px;
        --pad: 32px;
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 92px;
        overflow-x: hidden;
        max-width: 100%;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font);
        font-size: 16px;
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        max-width: 100%;
        touch-action: pan-y;
      }
      img,
      video {
        display: block;
        max-width: 100%;
        height: auto;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font-family: inherit;
        cursor: pointer;
        border: 0;
        background: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      .container {
        width: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 var(--pad);
      }
      .section {
        padding: 100px 0;
        position: relative;
        z-index: 1;
        background: var(--bg);
      }
      #about.section {
        padding-top: 160px;
      }

      h1,
      h2 {
        font-weight: 400;
        letter-spacing: -0.04em;
        line-height: 0.95;
      }
      h1 {
        font-size: clamp(56px, 9vw, 144px);
      }
      h2 {
        font-size: clamp(44px, 6.5vw, 96px);
      }

      .header-xl {
        font-size: clamp(40px, 5vw, 64px);
        font-weight: 400;
        letter-spacing: -0.03em;
        line-height: 1;
      }
      .header-md {
        font-size: clamp(22px, 2.2vw, 28px);
        font-weight: 400;
        letter-spacing: -0.02em;
        line-height: 1.2;
      }
      .header-md.is-bold {
        font-weight: 600;
      }

      .body-base {
        font-size: clamp(15px, 1.1vw, 17px);
        line-height: 1.65;
      }
      .body-sm {
        font-size: 13px;
        line-height: 1.5;
      }
      .body-xs {
        font-size: 12px;
        line-height: 1.4;
      }
      .all-caps {
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      .color-white-0-6 {
        color: var(--text-60);
      }

      .event-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .circle-div {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        flex-shrink: 0;
      }
      .text-tag {
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-60);
        font-weight: 500;
      }

      /* NAVBAR */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 18px 0;
        background: #000000;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s ease;
      }
      .navbar.scrolled {
        border-bottom-color: var(--line);
      }
      .nav-container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 var(--pad);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      /* Fan icon and wordmark share the exact same center point so one visually
   replaces the other in place, rather than sitting side by side. */
      .nav-logo-link {
        position: relative;
        display: inline-block;
        width: 90px;
        height: 34px;
      }
      .nav-fan-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 28px;
        aspect-ratio: 900 / 512;
      }
      .nav-logo-link .nav-wordmark {
        position: absolute;
        left: 50%;
        top: 50%;
        height: 24px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
        pointer-events: none;
      }
      .nav-logo-link .nav-wordmark.visible {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }

      /* FAN OPEN/CLOSE (conic-gradient wipe from the pivot at bottom-center: one
   side stays anchored while the reveal sweeps across to the other side). */
      .fan-anim {
        --spread: 0deg;
        display: block;
        width: 100%;
        height: 100%;
      }
      .fan-anim img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        /* Hints the browser to give this its own compositing layer, so
   repainting the mask every animation frame doesn't force a repaint of
   surrounding page content too — this is what was showing up as jank on
   desktop, where a wider viewport has more on-screen content competing
   for the same repaint work. */
        will-change: -webkit-mask-image, mask-image;
        -webkit-mask-image: conic-gradient(
          from 270deg at 50% 100%,
          #000 0deg,
          #000 var(--spread),
          transparent var(--spread),
          transparent 180deg
        );
        mask-image: conic-gradient(
          from 270deg at 50% 100%,
          #000 0deg,
          #000 var(--spread),
          transparent var(--spread),
          transparent 180deg
        );
      }
      /* When fully open, drop the mask entirely so nothing gets clipped by
   anti-aliasing at the gradient's hard edge — guarantees a crisp, complete fan. */
      .fan-anim.is-full img {
        -webkit-mask-image: none;
        mask-image: none;
      }
      .nav-menu-items {
        display: flex;
        align-items: center;
        gap: 36px;
      }
      .nav-link {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: var(--text);
        position: relative;
        padding: 6px 0;
        transition: color 0.25s ease;
      }
      .nav-link:hover {
        color: var(--accent);
      }
      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 100%;
        bottom: 0;
        height: 1px;
        background: var(--accent);
        transition: right 0.3s ease;
      }
      .nav-link:hover::after {
        right: 0;
      }
      .nav-menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 50%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0;
      }
      .nav-menu-button div {
        width: 16px;
        height: 1px;
        background: var(--text);
      }

      /* HERO */
      .hero {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
        z-index: 0;
      }
      .hero-canvas {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .hero-bg-wrapper {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
      }
      .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
      }
      .hero-bg-scrim {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            60% 50% at 50% 48%,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0) 100%
          ),
          linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.6) 75%,
            var(--bg) 100%
          );
        z-index: 1;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 var(--pad);
        width: 100%;
        transform: translateY(-14%);
      }
      .hero-eyebrow {
        font-size: 13px;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--text-60);
        margin-bottom: 28px;
        animation: fade-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
      }
      .hero-logo-img,
      .hero-logo-wrapper {
        display: block;
        width: 62%;
        max-width: 540px;
        height: auto;
        filter: drop-shadow(0 4px 50px rgba(0, 0, 0, 0.75));
        animation: fade-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
      }
      /* Animated WEBP with real, chroma-keyed alpha transparency — replaces
   the old video + mix-blend-mode:screen trick. Mobile browsers often play
   <video> through a hardware-accelerated compositor layer that bypasses
   CSS blend modes entirely, which is why the black background kept
   coming back on phones no matter what the CSS did; a plain <img> doesn't
   get that special treatment, so the transparency just works everywhere. */
      #heroFanImg {
        display: block;
        width: 100%;
        height: auto;
      }
      .hero-tagline-img {
        display: block;
        margin-top: -130px;
        width: clamp(240px, 26vw, 380px);
        height: auto;
        animation: fade-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
        position: relative;
        z-index: 1;
      }
      .hero-bottom-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
        z-index: 1;
        pointer-events: none;
      }
      @keyframes fade-up {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ABOUT */
      .about-grid {
        display: grid;
        grid-template-columns: 55fr 45fr;
        gap: 60px;
        align-items: start;
        overflow: hidden;
      }
      .about-grid > * {
        min-width: 0;
      }
      .about-photo-col {
        position: sticky;
        top: 120px;
      }
      .feature-img-wrapper {
        aspect-ratio: 4/5;
        overflow: hidden;
        border-radius: 12px;
      }
      .feature-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .about-text-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
      }
      .about-text-col h1 {
        font-size: clamp(32px, 4vw, 48px);
        margin: 0 0 32px;
        text-align: center;
      }

      .about-artists-marquee {
        overflow: hidden;
        margin-top: 28px;
        margin-bottom: 28px;
        mask-image: linear-gradient(
          to right,
          transparent,
          #000 8%,
          #000 92%,
          transparent
        );
        -webkit-mask-image: linear-gradient(
          to right,
          transparent,
          #000 8%,
          #000 92%,
          transparent
        );
      }
      .about-artists-track {
        display: flex;
        gap: 12px;
        width: max-content;
        animation: marquee-scroll 22s linear infinite;
      }
      .about-artists-track span {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-40);
        white-space: nowrap;
      }
      .about-artists-track .artist-dot {
        color: var(--accent);
        opacity: 0.5;
      }
      @keyframes marquee-scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .about-divider {
        width: 60px;
        height: 1px;
        background: var(--text-40);
        margin: 36px auto;
      }

      .about-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
      }
      .about-stat {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
      }
      .about-stat-number {
        font-size: clamp(24px, 2.5vw, 36px);
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--accent);
      }
      .about-stat-label {
        font-size: 13px;
        color: var(--text-40);
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      /* PRIMARY BUTTON */
      .primary-button {
        display: inline-flex;
        flex-direction: column;
        gap: 8px;
        padding-bottom: 8px;
        position: relative;
        transition: transform 0.3s ease;
      }
      .btn-text-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .btn-text-wrapper .body-base {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.01em;
      }
      .button-icon-wrapper {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          background 0.3s ease,
          border-color 0.3s ease;
      }
      .button-icon-wrapper svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
      }
      .primary-button:hover .button-icon-wrapper {
        background: var(--accent);
        border-color: var(--accent);
      }
      .primary-button:hover .button-icon-wrapper svg {
        color: var(--bg);
        transform: translate(2px, -2px);
      }
      .button-line {
        width: 100%;
        height: 1px;
        background: var(--line);
        overflow: hidden;
        position: relative;
      }
      .button-line-div {
        position: absolute;
        inset: 0;
        background: var(--accent);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
      }
      .primary-button:hover .button-line-div {
        transform: translateX(0);
      }

      /* EVENT CARDS */
      .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
      .event-card-wrapper {
        display: block;
        border-top: 1px solid var(--line);
        padding-top: 40px;
      }
      .event-card {
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      .event-card > .primary-button {
        margin-top: auto;
      }
      .event-card-img-wrapper {
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 4px;
        margin-bottom: 28px;
        order: -1;
        background: var(--bg-soft);
      }
      .event-card-coming-soon {
        cursor: default;
      }
      .event-card-coming-soon-badge {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.55);
        color: var(--text);
        font-size: clamp(22px, 3vw, 32px);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .event-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
      }
      .event-card-wrapper:hover .event-card-img {
        transform: scale(1.04);
      }
      .event-card-title {
        margin: 16px 0 10px;
      }
      .event-card-date {
        color: var(--text-60);
        margin-bottom: 24px;
      }
      /* MARQUEE + VISUAL */
      .image-grow-sticky-wrapper {
        background: var(--bg);
        padding: 80px 0 100px;
        overflow: hidden;
      }
      .image-grow-scroll-wrapper {
        position: relative;
      }
      .right-marquee,
      .left-marquee {
        overflow: hidden;
        white-space: nowrap;
        padding: 16px 0;
      }
      .image-grow-text {
        display: inline-block;
        font-size: clamp(48px, 9vw, 140px);
        font-weight: 400;
        letter-spacing: -0.04em;
        line-height: 0.95;
        padding-right: 60px;
      }
      .right-marquee .image-grow-text {
        animation: marquee-right 32s linear infinite;
      }
      .left-marquee .image-grow-text {
        animation: marquee-left 32s linear infinite;
        color: var(--text-60);
        font-style: italic;
        font-weight: 300;
      }
      .left-marquee {
        text-align: right;
      }
      @keyframes marquee-right {
        from {
          transform: translateX(-50%);
        }
        to {
          transform: translateX(0);
        }
      }
      @keyframes marquee-left {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      .image-grow-wrapper {
        margin: 40px auto 0;
        width: 70%;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 4px;
        position: relative;
        background: #000;
        transition: width 0.1s linear;
      }
      .image-grow-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* GALLERY */
      .section.gallery-section {
        padding: 60px 0 100px;
        overflow: hidden;
      }
      .section.bio-section {
        padding: 140px 0 120px;
      }
      .bio-text {
        max-width: 880px;
        margin: 0 auto;
        text-align: center;
        color: #ffffff;
        font-family: var(--font);
        font-weight: 400;
        font-size: clamp(15px, 1.35vw, 18px);
        line-height: 1.75;
        letter-spacing: 0.015em;
      }
      .bio-text p {
        margin: 0 0 28px;
      }
      .bio-text p:last-child {
        margin-bottom: 0;
      }
      .bio-text .word {
        display: inline-block;
        opacity: 0;
        transform: translateY(0.45em);
        filter: blur(6px);
        transition:
          opacity 0.65s ease,
          transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
          filter 0.65s ease;
        will-change: opacity, transform, filter;
      }
      .bio-text .word.in {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
      .bio-text .word + .word {
        margin-left: 0.28em;
      }
      .bio-text .word.brand-emph.in {
        color: var(--accent);
        font-weight: 700;
        transition:
          opacity 0.65s ease,
          transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
          filter 0.65s ease,
          color 0.45s ease 0.55s,
          font-weight 0s linear 0.55s;
      }
      .bio-caret {
        display: inline-block;
        width: 2px;
        height: 1em;
        background: #ffffff;
        margin-left: 6px;
        vertical-align: -0.15em;
        animation: bio-caret-blink 1.1s steps(2) infinite;
      }
      @keyframes bio-caret-blink {
        0%,
        49% {
          opacity: 1;
        }
        50%,
        100% {
          opacity: 0;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .bio-text .word {
          opacity: 1;
          transform: none;
          filter: none;
          transition: none;
        }
        .bio-caret {
          animation: none;
          opacity: 0.6;
        }
      }

      .gallery-scroll-wrapper {
        position: relative;
      }
      .gallery-grid {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
      }
      .gallery-grid::-webkit-scrollbar {
        display: none;
      }
      .gallery-img-wrapper {
        flex: 0 0 auto;
        width: clamp(190px, 21vw, 270px);
        aspect-ratio: 3/4;
        position: relative;
        perspective: 1200px;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        scroll-snap-align: start;
        /* Forces each card onto its own compositing layer. Without this,
   3D-transformed children inside a scrolling ancestor can lose correct
   hover/repaint tracking after the strip scrolls — a known Chromium/WebKit
   quirk that shows up as "hover stops flipping some cards" and moves to a
   different set of cards after every scroll. */
        transform: translateZ(0);
      }
      .gallery-img-wrapper._02 {
        aspect-ratio: 3/4.4;
        margin-top: 30px;
      }
      .gallery-img-wrapper._03 {
        aspect-ratio: 3/4.2;
        margin-top: -10px;
      }
      .gallery-img-wrapper._04 {
        aspect-ratio: 3/4.3;
        margin-top: 40px;
      }
      .gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition:
          background 0.25s ease,
          border-color 0.25s ease;
      }
      .gallery-nav-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
      }
      .gallery-nav-btn svg {
        width: 18px;
        height: 18px;
      }
      .gallery-nav-prev {
        left: -24px;
      }
      .gallery-nav-next {
        right: -24px;
      }
      @media (max-width: 1024px) {
        .gallery-nav-prev {
          left: 8px;
        }
        .gallery-nav-next {
          right: 8px;
        }
      }
      .gallery-img-side {
        position: absolute;
        inset: 0;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .gallery-img-side.is-back {
        transform: rotateY(180deg);
      }
      .gallery-img-wrapper:hover .gallery-img-side.is-front,
      .gallery-img-wrapper.flipped .gallery-img-side.is-front {
        transform: rotateY(-180deg);
      }
      .gallery-img-wrapper:hover .gallery-img-side.is-back,
      .gallery-img-wrapper.flipped .gallery-img-side.is-back {
        transform: rotateY(0);
      }
      .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* FOOTER */
      .footer {
        background: var(--bg);
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
      }
      .footer-logo-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0 auto 60px;
        opacity: 0.95;
      }
      .footer-fan-icon {
        width: clamp(180px, 22vw, 300px);
        aspect-ratio: 900 / 512;
      }
      .footer-wordmark {
        width: clamp(140px, 18vw, 220px);
        height: auto;
        filter: brightness(0) invert(1);
      }
      .contact-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        padding: 40px 0;
      }
      .contact-title {
        font-size: clamp(56px, 9vw, 128px);
        font-weight: 400;
        letter-spacing: -0.04em;
        line-height: 0.95;
        color: var(--text);
        margin: 0;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .contact-line {
        font-size: clamp(17px, 1.5vw, 22px);
        font-weight: 400;
        color: var(--text);
        letter-spacing: -0.005em;
        transition: color 0.25s ease;
      }
      .contact-line:hover {
        color: var(--accent);
      }
      .footer-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 28px;
        margin-top: 8px;
      }
      .footer-socials a {
        display: inline-flex;
        width: 26px;
        height: 26px;
        color: #ffffff;
        transition:
          color 0.25s ease,
          transform 0.25s ease,
          opacity 0.25s ease;
      }
      .footer-socials a:hover {
        color: var(--accent);
        transform: translateY(-2px);
      }
      .footer-socials svg {
        width: 100%;
        height: 100%;
        display: block;
      }
      .footer-copyright-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 48px;
        padding-top: 28px;
        border-top: 1px solid var(--line);
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-copyright-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        color: var(--text-40);
      }
      .footer-copyright-left {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .footer-link-copyright {
        color: var(--text-60);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.25s ease;
      }
      .footer-link-copyright:hover {
        color: var(--accent);
      }

      /* REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
          transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
        will-change: opacity, transform;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* RESPONSIVE */
      @media (max-width: 1024px) {
        .events-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .nav-menu-items {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: var(--bg);
          padding: 24px var(--pad);
          border-bottom: 1px solid var(--line);
          gap: 16px;
          align-items: center;
          text-align: center;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-12px);
          transition:
            opacity 0.32s ease,
            transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0.36s;
        }
        .nav-menu-items.open {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
          transition:
            opacity 0.32s ease,
            transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0s;
        }
        .nav-menu-button {
          display: flex;
        }
        .section {
          padding: 60px 0;
        }
        #about.section {
          padding-top: 110px;
          padding-bottom: 100px;
        }
        .hero-content {
          transform: translateY(-24%);
        }
        .hero-logo-img,
        .hero-logo-wrapper {
          width: 68%;
        }
        .hero-tagline-img {
          margin-top: 12px;
        }
        .events-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .gallery-grid {
          gap: 12px;
          padding: 0 6vw;
        }
        .gallery-img-wrapper {
          width: 72vw;
        }
        .gallery-nav-btn {
          display: none;
        }
        .footer-copyright-wrapper {
          flex-direction: column;
          align-items: flex-start;
        }
        .container,
        .nav-container {
          padding: 0 24px;
        }
        .about-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .about-photo-col {
          position: static;
        }
        .feature-img-wrapper {
          aspect-ratio: 3/4;
        }
        .about-stats {
          gap: 24px;
        }
        .gallery-img-wrapper:hover .gallery-img-side.is-front {
          transform: none;
        }
        .gallery-img-wrapper:hover .gallery-img-side.is-back {
          transform: rotateY(180deg);
        }
      }

/* ===== SPONSORS (homepage) ===== */
.section.sponsors-section { padding: 80px 0 100px; }
.sponsors-header { text-align: center; margin-bottom: 56px; }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sponsor-logo {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  min-height: 96px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text);
}
.sponsor-logo img {
  max-width: 180px;
  max-height: 56px;
  width: auto;
  height: auto;
}

/* ===== EVENT DETAIL PAGE ===== */
.event-hero {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000000;
}
.event-hero-img { width: 100%; height: 100%; object-fit: contain; }
.event-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 40%, var(--bg) 100%);
}
.event-hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--pad) 48px;
}
.event-hero-inner { max-width: var(--container); margin: 0 auto; }
.event-hero-tag { margin-bottom: 20px; }
.event-hero-title { font-size: clamp(40px, 7vw, 96px); }

.event-hero-buttons {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  margin-top: 28px;
}

.buy-tickets-btn,
.book-table-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; min-width: 176px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em; border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.buy-tickets-btn {
  background: var(--accent); color: var(--bg);
  border: 1px solid var(--accent);
}
.buy-tickets-btn svg { width: 16px; height: 16px; }
.buy-tickets-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 159, 224, 0.35);
}

.book-table-btn {
  background: rgba(255, 255, 255, 0.75); color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.book-table-btn svg { width: 16px; height: 16px; }
.book-table-btn:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.event-info-item { display: flex; flex-direction: column; gap: 8px; }
.event-info-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-40);
}
.event-info-value { font-size: 17px; color: var(--text); }

.directions-dropdown { position: relative; margin-top: 2px; }
.directions-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: -0.005em;
  background: none; border: none; padding: 0; cursor: pointer;
}
.directions-trigger svg {
  width: 12px; height: 12px; transition: transform 0.25s ease;
}
.directions-dropdown.open .directions-trigger svg { transform: rotate(180deg); }
.directions-menu {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 20;
  display: flex; flex-direction: column; min-width: 190px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 6px; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.directions-dropdown.open .directions-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.directions-menu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-family: var(--font); font-size: 14px; color: var(--text);
  transition: background 0.2s ease;
}
.directions-menu a:hover { background: rgba(255, 255, 255, 0.06); }

.event-section-title { margin-bottom: 32px; }

.event-lineup { display: flex; flex-direction: column; margin-bottom: 80px; }
.lineup-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.lineup-row:last-child { border-bottom: 1px solid var(--line); }
.lineup-name { font-size: 20px; }
.lineup-time { font-size: 14px; color: var(--text-40); font-variant-numeric: tabular-nums; white-space: nowrap; }

.event-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 80px;
}
.event-gallery-grid img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px;
}

.partners-section { border-top: 1px solid var(--line); padding-top: 64px; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.partner-card {
  background: var(--bg-soft); border-radius: 8px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.partner-kicker {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.partner-name { font-size: 22px; }
.partner-desc { color: var(--text-60); font-size: 14px; line-height: 1.6; flex-grow: 1; }
.partner-card .primary-button { align-self: flex-start; }

.map-embed-wrapper {
  border-radius: 8px; overflow: hidden; margin-top: 14px;
  aspect-ratio: 4/3; border: 1px solid var(--line); filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.map-embed-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 1024px) {
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .event-info-grid { grid-template-columns: repeat(2, 1fr); }
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .event-info-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0; margin-bottom: 40px; }
  .event-gallery-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .event-lineup { margin-bottom: 56px; }
  .lineup-row { flex-direction: column; gap: 4px; }

  /* On narrow viewports the 16:9 banner is too short to hold the tag,
     title and buttons stacked on top of it — they'd overflow the top of
     the image and get clipped/hidden under the fixed navbar. Drop the
     overlay and flow them in normal document order right below the
     image instead. */
  .event-hero-scrim { display: none; }
  .event-hero-content {
    position: static;
    padding: 28px var(--pad) 0;
    background: var(--bg);
  }
  /* .event-hero itself still had aspect-ratio:16/9 + overflow:hidden from
     the desktop rule — with .event-hero-content now flowing as a normal
     child, that combination silently clipped away the tag/title/buttons
     entirely (the box's height was locked to the image's ratio, and
     anything after it inside was cut off). Give the ratio to the image
     itself instead, and let the hero's own height be content-based. */
  .event-hero { aspect-ratio: unset; overflow: visible; margin-top: 70px; }
  .event-hero-img { aspect-ratio: 16/9; width: 100%; height: auto; display: block; }
  .event-hero-buttons { align-items: center; width: 100%; }
  .buy-tickets-btn, .book-table-btn { width: 100%; max-width: 320px; }
  /* Location sits in the right column of the 2-col info grid on mobile —
     the menu opening from its left edge (left:0) pushed past the right
     side of the screen. Hang it off the trigger's right edge instead. */
  .directions-menu { left: auto; right: 0; min-width: 170px; }
}

/* ===== PAST EVENTS ARCHIVE ===== */
.past-events-header { text-align: center; margin-bottom: 24px; }
.past-events-intro {
  text-align: center; max-width: 640px; margin: 0 auto 80px;
  color: var(--text-60);
}
.past-event-block {
  border-top: 1px solid var(--line);
  padding: 64px 0;
}
.past-event-block:first-of-type { padding-top: 0; border-top: none; }
.past-event-title { margin: 16px 0 20px; }
.past-event-desc {
  max-width: 720px; color: var(--text-60); margin-bottom: 40px;
}
.past-event-desc p { margin-bottom: 18px; }
.past-event-desc p:last-child { margin-bottom: 0; }
.past-event-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px;
}
.past-event-gallery img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px;
}
@media (max-width: 768px) {
  .past-event-gallery { grid-template-columns: 1fr 1fr; }
}

/* ===== REMIND ME MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.modal-box {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 44px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--text-60);
  transition: color 0.2s ease, background 0.2s ease;
}
.modal-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.modal-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.modal-icon svg {
  width: 100%;
  height: 100%;
}
.modal-box h3 {
  margin-bottom: 10px;
}
.modal-box > p {
  margin-bottom: 26px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-form input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
}
.modal-form input::placeholder {
  color: var(--text-40);
}
.modal-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.modal-form button {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.modal-form button:hover {
  transform: translateY(-2px);
}
.modal-success p {
  color: var(--accent);
  font-weight: 500;
}
