:root {
      --bg: #050507;
      --panel: rgba(15, 16, 23, .82);
      --panel-2: rgba(8, 9, 14, .94);
      --line: rgba(255,255,255,.12);
      --text: #fff;
      --muted: rgba(255,255,255,.66);
      --cyan: #5cecff;
      --pink: #ff5fc4;
      --gold: #ffd06a;
      --max: 1120px;
      --radius-lg: 24px;
      --radius-md: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 2%, rgba(0,220,255,.12), transparent 25rem),
        radial-gradient(circle at 82% 9%, rgba(255,58,181,.12), transparent 27rem),
        #050507;
      font-family: "Montserrat", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; }

    /* ---------- NAV ---------- */
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 9px 14px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(5,5,8,.78);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      width: min(100%, 560px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .nav-link {
      position: relative;
      min-width: 0;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 13px;
      opacity: .78;
      transition: .18s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
      opacity: 1;
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.09);
      transform: translateY(-1px);
    }

    .nav-link.active {
      opacity: 1;
      border-color: rgba(92,236,255,.35);
      background: linear-gradient(145deg, rgba(92,236,255,.14), rgba(255,95,196,.08));
      box-shadow: 0 0 20px rgba(92,236,255,.08);
    }

    .nav-link img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      border-radius: 0;
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      isolation: isolate;
      min-height: 590px;
      display: grid;
      place-items: center;
      overflow: hidden;
      padding: 118px 22px 72px;
      text-align: center;
      background:
        linear-gradient(to bottom, rgba(5,5,7,.20), rgba(5,5,7,.74) 68%, #050507 100%),
        linear-gradient(110deg, rgba(0,0,0,.52), rgba(0,0,0,.10)),
        url("../images/gallery/pep-9-23.jpg") center 34% / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 190px;
      background: linear-gradient(to bottom, transparent, #050507);
    }

    .hero-content {
      width: min(860px, 100%);
      margin: 0 auto;
    }

    .eyebrow,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 26px;
      height: 1px;
      background: currentColor;
      opacity: .65;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(44px, 8vw, 86px);
      line-height: .94;
      letter-spacing: -.055em;
      font-weight: 800;
      text-shadow: 0 8px 30px rgba(0,0,0,.55);
    }

    .hero h1 span {
      display: block;
      margin-top: 9px;
      background: linear-gradient(90deg, #fff 12%, #aef5ff 48%, #ffc7e9 88%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      width: min(650px, 100%);
      margin: 22px auto 0;
      color: rgba(255,255,255,.78);
      font-size: clamp(15px, 2vw, 19px);
      line-height: 1.65;
    }

    .hero-pills {
      margin: 25px auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 9px;
    }

    .hero-pill {
      padding: 9px 13px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      color: rgba(255,255,255,.86);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(7,7,12,.50);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }

    .hero-actions {
      margin-top: 29px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 11px;
    }

    .hero-btn {
      min-width: 180px;
      padding: 13px 18px;
      border-radius: 13px;
      border: 1px solid rgba(255,255,255,.16);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: .18s ease;
    }

    .hero-btn.primary {
      color: #061014;
      background: linear-gradient(100deg, #83f2ff, #ff9ed9);
      border-color: transparent;
      box-shadow: 0 10px 32px rgba(91,231,255,.16);
    }

    .hero-btn.secondary {
      background: rgba(7,7,12,.58);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }

    .hero-btn:hover { transform: translateY(-2px); }

    /* ---------- LAYOUT ---------- */
    .section {
      width: min(var(--max), calc(100% - 36px));
      margin: 0 auto;
      padding: 72px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 28px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      margin-bottom: 7px;
    }

    .section h2 {
      margin: 0;
      font-size: clamp(30px, 5vw, 52px);
      line-height: 1.04;
      letter-spacing: -.04em;
      font-weight: 800;
    }

    .section-head p {
      margin: 13px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* ---------- FEATURED WEEKEND ---------- */
    .featured-event {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
      overflow: hidden;
      border: 1px solid rgba(92,236,255,.25);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(21,24,34,.88), rgba(7,8,13,.94));
      box-shadow:
        0 28px 70px rgba(0,0,0,.40),
        0 0 40px rgba(92,236,255,.06);
    }

    .featured-art {
      position: relative;
      min-height: 440px;
      overflow: hidden;
      background: #09090d;
    }

    .featured-art img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .featured-art::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 68%, rgba(7,8,13,.78));
      pointer-events: none;
    }

    .featured-badge {
      position: absolute;
      top: 17px;
      left: 17px;
      z-index: 2;
      padding: 8px 11px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      background: rgba(5,7,11,.70);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .featured-body {
      padding: 30px 27px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-body h3 {
      margin: 0;
      font-size: 31px;
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    .featured-body > p {
      margin: 9px 0 22px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    /* ---------- DATE ROWS ---------- */
    .date-stack {
      display: grid;
      gap: 10px;
    }

    .date-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 11px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 15px;
      background: rgba(255,255,255,.035);
    }

    .date-main {
      min-width: 0;
      display: grid;
      grid-template-columns: 39px 36px 42px 1fr;
      gap: 6px;
      align-items: baseline;
    }

    .weekday {
      color: var(--cyan);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .09em;
    }

    .month {
      color: rgba(255,255,255,.58);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .07em;
    }

    .daynum {
      font-size: 25px;
      line-height: 1;
      font-weight: 800;
    }

    .time {
      color: rgba(255,255,255,.70);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .date-actions {
      display: flex;
      gap: 7px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 11px;
      border-radius: 9px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: .16s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-ghost {
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.035);
    }

    .btn-solid {
      color: #081013;
      border: 1px solid transparent;
      background: var(--cyan);
    }

    /* ---------- EVENT GRID ---------- */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .event-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 21px;
      background: linear-gradient(155deg, rgba(18,19,27,.90), rgba(7,8,12,.96));
      box-shadow: 0 20px 44px rgba(0,0,0,.30);
      transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
    }

    .event-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 26px 55px rgba(0,0,0,.40);
    }

    .event-card.accent-cyan { border-color: rgba(92,236,255,.25); }
    .event-card.accent-pink { border-color: rgba(255,95,196,.25); }
    .event-card.accent-gold { border-color: rgba(255,208,106,.25); }

    .event-art {
      position: relative;
      aspect-ratio: 16 / 8.8;
      overflow: hidden;
      background: #0a0a0e;
    }

    .event-art::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 38%;
      background: linear-gradient(to bottom, transparent, rgba(7,8,12,.80));
    }

    .event-art img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .event-card:hover .event-art img {
      transform: scale(1.025);
    }

    .event-tag {
      position: absolute;
      top: 13px;
      right: 13px;
      z-index: 2;
      padding: 7px 9px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 8px;
      color: #fff;
      background: rgba(5,5,9,.68);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .10em;
    }

    .event-body {
      padding: 20px;
    }

    .event-body h3 {
      margin: 0;
      font-size: 23px;
      line-height: 1.08;
      letter-spacing: -.025em;
    }

    .event-body > p {
      margin: 7px 0 17px;
      min-height: 39px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .event-card.accent-pink .weekday { color: var(--pink); }
    .event-card.accent-gold .weekday { color: var(--gold); }
    .event-card.accent-pink .btn-solid { background: var(--pink); color: #14070f; }
    .event-card.accent-gold .btn-solid { background: var(--gold); color: #151005; }

    /* ---------- INFO STRIP ---------- */
    .info-strip {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 17px;
      background: rgba(255,255,255,.025);
    }

    .info-item {
      padding: 15px 18px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.09);
    }

    .info-item:last-child { border-right: 0; }

    .info-item strong {
      display: block;
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .info-item span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 11px;
    }

    /* ---------- THEME ARCHIVE ---------- */
    .archive-wrap {
      margin-top: 26px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 24px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    }

    .theme-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 9px;
    }

    .theme-tile {
      margin: 0;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 10px;
      background: #101016;
      box-shadow: 0 8px 20px rgba(0,0,0,.25);
      content-visibility: auto;
      contain-intrinsic-size: 160px 160px;
    }

    .theme-tile img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .24s ease, opacity .24s ease;
    }

    .theme-tile:hover img {
      transform: scale(1.055);
      opacity: .92;
    }

    .archive-note {
      width: min(680px, 100%);
      margin: 18px auto 0;
      color: rgba(255,255,255,.54);
      font-size: 11px;
      line-height: 1.65;
      text-align: center;
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 32px 20px 46px;
      border-top: 1px solid rgba(255,255,255,.07);
      color: rgba(255,255,255,.46);
      text-align: center;
      font-size: 11px;
    }

    footer a {
      color: rgba(255,255,255,.72);
    }



    /* ---------- TICKET PRICE ---------- */
    .btn-ticket {
      min-height: 44px;
      flex-direction: column;
      gap: 2px;
      padding: 6px 11px;
      line-height: 1.05;
      white-space: nowrap;
    }

    .btn-ticket .ticket-label {
      display: block;
    }

    .btn-ticket .ticket-price {
      display: block;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .01em;
      text-transform: none;
      opacity: .88;
    }

    /* ---------- MOBILE ---------- */
    @media (max-width: 860px) {
      .featured-event {
        grid-template-columns: 1fr;
      }

      .featured-art {
        min-height: 0;
        aspect-ratio: 16 / 9;
      }

      .featured-art::after {
        background: linear-gradient(to bottom, transparent 72%, rgba(7,8,13,.70));
      }

      .events-grid {
        grid-template-columns: 1fr;
      }

      .theme-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .site-nav {
        padding: 7px 8px;
      }

      .nav-inner {
        gap: 4px;
      }

      .nav-link {
        height: 42px;
        border-radius: 10px;
      }

      .nav-link img {
        width: 31px;
        height: 31px;
      }

      .hero {
        min-height: 555px;
        padding: 104px 18px 60px;
        background-position: center top;
      }

      .hero h1 {
        font-size: clamp(43px, 14vw, 63px);
      }

      .hero-copy {
        font-size: 14px;
      }

      .hero-btn {
        min-width: 0;
        flex: 1 1 155px;
      }

      .section {
        width: min(100% - 24px, var(--max));
        padding: 54px 0;
      }

      .featured-body {
        padding: 21px 15px 18px;
      }

      .featured-body h3 {
        font-size: 25px;
      }

      .event-body {
        padding: 17px 14px;
      }

      .date-row {
        grid-template-columns: 1fr;
        gap: 9px;
      }

      .date-main {
        grid-template-columns: 38px 34px 42px 1fr;
      }

      .date-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .btn {
        min-height: 38px;
      }

      .info-strip {
        grid-template-columns: 1fr;
      }

      .info-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }

      .info-item:last-child {
        border-bottom: 0;
      }

      .archive-wrap {
        padding: 10px;
        border-radius: 17px;
      }

      .theme-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
      }

      .theme-tile {
        border-radius: 7px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
    }
