:root {
  --bg: #080808;
  --surface: #101010;
  --surface-2: #151515;
  --text: #f5f3ee;
  --muted: #9b9b96;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d8ff3e;
  --accent-soft: rgba(216, 255, 62, 0.12);
  --max-width: 1420px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 50;
  padding: 0 clamp(24px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, height 0.35s;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 14px;
}
.logo-image {
  width: 150px;
  height: auto;
  display: block;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a,
.cart-button {
  font-size: 13px;
  color: #d7d7d2;
  transition: color 0.25s;
}

.desktop-nav a:hover,
.cart-button:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cart-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button span {
  margin-left: 5px;
  color: var(--accent);
}

.menu-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: none;
  place-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  padding: 120px 28px 40px;

  display: none;
  justify-content: space-between;
  flex-direction: column;

  transform: translateY(-105%);
  transition: transform 0.55s cubic-bezier(.77, 0, .18, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 12vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
@media (max-width: 640px) {
  .logo-image {
    width: 125px;
  }
}
.mobile-menu p {
  color: var(--muted);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px clamp(24px, 6vw, 100px) 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
}

.glow-one {
  width: 420px;
  height: 420px;
  background: #a7ff3f;
  top: 18%;
  right: 6%;
}

.glow-two {
  width: 280px;
  height: 280px;
  background: #5e3cff;
  bottom: 5%;
  left: 20%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(62px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 600;
  margin: 26px 0 38px;
}

.hero h1 span {
  display: block;
  margin-left: clamp(0px, 13vw, 190px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 243, 238, 0.65);
}

.hero-description {
  max-width: 510px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: #c5c5bf;
  margin-left: clamp(0px, 13vw, 190px);
}

.hero-actions {
  margin: 44px 0 0 clamp(0px, 13vw, 190px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-button,
.checkout-button {
  background: var(--accent);
  color: #0a0a0a;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.primary-button:hover,
.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(216, 255, 62, .18);
}

.text-link {
  color: #d0d0cb;
  font-size: 14px;
}

.text-link span,
.ticket-button span,
.newsletter button span {
  color: var(--accent);
}

.hero-footer {
  position: absolute;
  bottom: 34px;
  left: clamp(24px, 6vw, 100px);
  right: clamp(24px, 6vw, 100px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-pad {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 100px);
}

.statement {
  max-width: var(--max-width);
  margin: auto;
}

.statement h2,
.section-heading h2,
.about-title h2,
.newsletter h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.statement h2 {
  font-size: clamp(42px, 7vw, 104px);
  line-height: 1.02;
  margin: 30px 0 42px;
}

.statement h2 span {
  color: #6f6f6b;
}

.statement-copy {
  max-width: 610px;
  margin-left: auto;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
}

.events {
  background: #0c0c0c;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto 52px;
  gap: 40px;
}

.section-heading h2 {
  font-size: clamp(42px, 6vw, 82px);
  margin-top: 20px;
}

.section-heading > p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
}

.event-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px;
  transition: transform .35s, border-color .35s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,255,62,.42);
}

.event-visual {
  min-height: 480px;
  position: relative;
  padding: 28px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.event-visual::before,
.gallery-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(255,255,255,.16), transparent 32%);
}

.visual-one {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.05)),
    url("../assets/PIANOLAND\ S2\ E4.png");

  background-size: cover;
  background-position: center;
}

.visual-two {
  background:
    radial-gradient(circle at 32% 40%, rgba(111,74,255,.5), transparent 25%),
    linear-gradient(145deg, #1b1729 0%, #100e15 50%, #050505 100%);
}

.event-status,
.event-number {
  position: absolute;
  top: 24px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .17em;
}

.event-status {
  left: 24px;
  background: var(--accent);
  color: #080808;
  padding: 8px 10px;
  font-weight: 700;
}

.event-status.muted {
  background: rgba(255,255,255,.12);
  color: var(--text);
}

.event-number {
  right: 24px;
  color: rgba(255,255,255,.48);
}

.event-art-text {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4.5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: .92;
}

.event-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 12px 22px;
}

.event-date {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.event-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.event-info p:not(.event-date) {
  color: var(--muted);
  font-size: 14px;
}

.event-price {
  text-align: right;
}

.event-price small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  margin-bottom: 7px;
}

.event-price strong {
  font-size: 19px;
}

.ticket-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background .25s, color .25s;
}

.ticket-button:hover {
  background: var(--text);
  color: var(--bg);
}

.ticket-button.secondary {
  color: #c4c4bf;
}

.about {
  max-width: var(--max-width);
  margin: auto;
}

.about-title h2 {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1;
  margin: 26px 0 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-feature {
  padding: 38px 38px 20px 0;
  border-right: 1px solid var(--line);
}

.about-feature + .about-feature {
  padding-left: 38px;
}

.about-feature:last-child {
  border-right: 0;
}

.about-feature span {
  color: var(--accent);
  font-size: 11px;
}

.about-feature h3 {
  font-size: 22px;
  margin: 50px 0 18px;
}

.about-feature p {
  color: var(--muted);
  line-height: 1.7;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 20s linear infinite;
}

.marquee span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 70px);
  letter-spacing: -0.04em;
  color: #d9d9d4;
}

.marquee i {
  color: var(--accent);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.gallery {
  max-width: calc(var(--max-width) + 200px);
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}

.gallery-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  align-items: end;
  background-color: var(--surface);
}

.gallery-panel span {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
}

.newsletter-card {
  max-width: var(--max-width);
  margin: auto;
  padding: clamp(45px, 7vw, 100px);
  background: var(--accent);
  color: #090909;
  position: relative;
  overflow: hidden;
}

.newsletter-logo{
    width:250px;
    height:auto;
    display:block;
    margin:0 auto 20px;

    filter:drop-shadow(0 8px 20px rgba(0,0,0,.18));

    transition:all .35s ease;

    user-select:none;
    -webkit-user-drag:none;
}

.newsletter-logo:hover{
    transform:translateY(-3px) scale(1.05);
    filter:drop-shadow(0 14px 28px rgba(0,0,0,.28));
}

.newsletter .section-label {
  color: #090909;
}

.newsletter h2 {
  font-size: clamp(48px, 8vw, 110px);
  margin: 20px 0 18px;
}

.newsletter-card > p:not(.section-label):not(.form-message) {
  max-width: 510px;
  font-size: 18px;
  line-height: 1.6;
}

.newsletter form {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  display: flex;
  max-width: 720px;
  border-bottom: 1px solid rgba(0,0,0,.45);
}

.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #090909;
  padding: 18px 0;
  outline: none;
  font-size: 16px;
}

.newsletter input::placeholder {
  color: rgba(0,0,0,.58);
}

.newsletter button {
  background: #090909;
  color: #fff;
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.form-message {
  margin-top: 14px;
  min-height: 22px;
  font-size: 14px;
}

.site-footer {
  padding: 80px clamp(24px, 6vw, 100px) 30px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 90px;
}

.footer-brand .brand-mark {
  margin-bottom: 28px;
}

.footer-brand h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(55px, 10vw, 145px);
  letter-spacing: -0.075em;
  line-height: .8;
}

.footer-brand p {
  margin-top: 28px;
  color: var(--muted);
}
.footer-logo{
    display:block;

    width:260px;      /* Adjust size here */

    height:auto;

    margin-bottom:18px;

    transition:transform .35s ease;
}

.footer-logo:hover{
    transform:scale(1.03);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-left: auto;
  gap: 35px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .17em;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.ticket-modal {
  width: min(520px, calc(100% - 30px));
  margin: auto;
  background: #111;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 42px;
}

.ticket-modal::backdrop {
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(10px);
}

.ticket-modal h2 {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  letter-spacing: -.04em;
  margin: 18px 0 8px;
}

.ticket-modal > p:not(.section-label) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.ticket-row,
.modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-row {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-row strong,
.ticket-row span {
  display: block;
}

.ticket-row span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  color: var(--text);
  margin: 0;
  min-width: 15px;
  text-align: center;
}

.modal-total {
  padding: 25px 0;
}

.modal-total strong {
  font-size: 24px;
}

.checkout-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.ticket-modal small {
  display: block;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 span,
  .hero-description,
  .hero-actions {
    margin-left: 0;
  }

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

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

  .about-feature,
  .about-feature + .about-feature {
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-feature h3 {
    margin-top: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 360px);
  }

  }@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .mobile-menu {display: flex;
}
  .hero h1 span,
  .hero-description,
  .hero-actions { margin-left: 0; }
  .event-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-feature,
  .about-feature + .about-feature {
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-feature h3 { margin-top: 28px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 360px);
  }
  }

@media (max-width: 640px) {
  .site-header { height: 72px; padding-inline: 20px; }
  .brand-name { font-size: 12px; }
  .hero { padding-inline: 20px; }
  .hero h1 { font-size: clamp(58px, 22vw, 105px); }
  .hero-description { font-size: 17px; max-width: 90%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-footer span:first-child { display: none; }
  .hero-footer { justify-content: flex-end; }
  .section-pad { padding-inline: 20px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .event-visual { min-height: 380px; }
  .event-info { flex-direction: column; }
  .event-price { text-align: left; }
  .about-title h2 { margin-bottom: 55px; }
  .newsletter form { flex-direction: column; border: 0; gap: 12px; }
  .newsletter input { border-bottom: 1px solid rgba(0,0,0,.45); }
  .newsletter button { min-height: 52px; }
  .footer-links { grid-template-columns: 1fr 1fr; margin-left: 0; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .ticket-modal { padding: 35px 22px; }
}

/* ========================================
   PIANOLAND INTRO OVERLAY
======================================== */
body.intro-active {
  overflow: hidden;
}

.site-intro[hidden] {
  display: none;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080808;
  opacity: 1;
  visibility: visible;
  transition: opacity .8s cubic-bezier(.65,0,.35,1), visibility .8s;
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  animation: introGrid 5s linear infinite;
}

.site-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.2) 56%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
}

.site-intro.intro-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 44px));
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.intro-logo {
  width: min(430px, 78vw);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(.94);
  animation: introLogo 1.2s cubic-bezier(.16,1,.3,1) .12s forwards;
}

.intro-tagline {
  margin-top: 27px;
  color: rgba(245,243,238,.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .32em;
  opacity: 0;
  transform: translateY(8px);
  animation: introText .7s ease .78s forwards;
}

.intro-loader {
  width: min(260px, 62vw);
  height: 1px;
  margin-top: 31px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  opacity: 0;
  animation: introText .5s ease .96s forwards;
}

.intro-loader span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  animation: introLoad 1.35s cubic-bezier(.65,0,.35,1) 1s forwards;
}

.intro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(115px);
  opacity: .34;
}

.intro-glow-one {
  width: 420px;
  height: 420px;
  top: 10%;
  right: 8%;
  background: rgba(216,255,62,.38);
}

.intro-glow-two {
  width: 320px;
  height: 320px;
  left: 10%;
  bottom: 8%;
  background: rgba(94,60,255,.34);
}

@keyframes introLogo {
  from { opacity: 0; transform: translateY(18px) scale(.94); filter: blur(8px); }
  70% { opacity: 1; transform: translateY(0) scale(1.025); filter: blur(0) drop-shadow(0 0 30px rgba(216,255,62,.15)); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 0 18px rgba(216,255,62,.1)); }
}

@keyframes introText {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introLoad {
  to { transform: translateX(100%); }
}

@keyframes introGrid {
  to { transform: translateY(80px); }
}

/* ========================================
   PIANOLAND BRAND LOGO MARQUEE
======================================== */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: brandMarquee 32s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(44px, 6vw, 94px);
  padding-right: clamp(44px, 6vw, 94px);
}

.logo-marquee-group img {
  display: block;
  width: auto;
  height: 74px;
  max-width: 330px;
  object-fit: contain;
  opacity: .78;
  filter: grayscale(1) brightness(1.1);
  transition: opacity .3s ease, transform .3s ease, filter .3s ease;
}

.logo-marquee-group img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.2);
  transform: translateY(-2px) scale(1.035);
}

.logo-marquee-group .brand-logo-curated { height: 88px; max-width: 300px; }
.logo-marquee-group .brand-logo-jashmir { height: 60px; max-width: 300px; }
.logo-marquee-group .brand-logo-pianoair { height: 72px; max-width: 280px; }
.logo-marquee-group .brand-logo-pianotv { height: 65px; max-width: 285px; }

.logo-marquee-group i {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
  opacity: .8;
}

.logo-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(50px, 8vw, 145px);
  pointer-events: none;
}
.logo-marquee-fade-left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logo-marquee-fade-right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

@keyframes brandMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 640px) {
  .intro-logo { width: min(310px, 78vw); }
  .intro-tagline { font-size: 8px; letter-spacing: .24em; }
  .logo-marquee { padding: 27px 0; }
  .logo-marquee-track { animation-duration: 23s; }
  .logo-marquee-group { gap: 34px; padding-right: 34px; }
  .logo-marquee-group .brand-logo-curated { height: 58px; max-width: 205px; }
  .logo-marquee-group .brand-logo-jashmir { height: 40px; max-width: 190px; }
  .logo-marquee-group .brand-logo-pianoair { height: 47px; max-width: 185px; }
  .logo-marquee-group .brand-logo-pianotv { height: 43px; max-width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro::before,
  .intro-logo,
  .intro-tagline,
  .intro-loader,
  .intro-loader span { animation-duration: .01ms !important; animation-delay: 0ms !important; }
  .logo-marquee { overflow-x: auto; }
  .logo-marquee-track { animation: none; }
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
    overflow-y: auto;
    padding-top: 95px;
    padding-bottom: 30px;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }

  .mobile-menu nav a {
    font-size: clamp(30px, 8vw, 46px);
    line-height: 1;
    padding: 9px 0;
  }

  .mobile-menu p {
    margin-top: 28px;
    flex-shrink: 0;
  }
}

/* ==========================================
   FINAL FOUR-VIDEO GALLERY
========================================== */
.gallery {
  width: 100%;
  max-width: calc(var(--max-width) + 200px);
  margin: 0 auto;
}

.gallery-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, 340px) !important;
  gap: 18px !important;
}

.gallery-panel,
.gallery-panel:nth-child(1),
.gallery-panel:nth-child(2),
.gallery-panel:nth-child(3),
.gallery-panel:nth-child(4) {
  position: relative !important;
  display: block !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  height: 340px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--line);
  background: #111;
  padding: 0 !important;
}

.gallery-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform .8s ease;
}

.gallery-panel:hover .gallery-video {
  transform: scale(1.05);
}

.gallery-panel::before {
  content: none !important;
  display: none !important;
}

.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.04));
  pointer-events: none;
}

.gallery-panel span {
  position: absolute !important;
  left: 22px !important;
  bottom: 22px !important;
  z-index: 2 !important;
  color: #fff;
  font-size: 12px;
  letter-spacing: .18em;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 250px) !important;
  }

  .gallery-panel,
  .gallery-panel:nth-child(1),
  .gallery-panel:nth-child(2),
  .gallery-panel:nth-child(3),
  .gallery-panel:nth-child(4) {
    height: 250px !important;
  }
}


/* ==========================================
   ABOUT FUTURISTIC PARTICLE BACKGROUND
========================================== */

.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .9;
}

.about-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 30%, rgba(216, 255, 62, .075), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(94, 60, 255, .055), transparent 36%),
    linear-gradient(180deg, rgba(8, 8, 8, .05), rgba(8, 8, 8, .32));
}


/* ==========================================
   RESTORED STATEMENT BACKGROUND VIDEO
========================================== */

.statement {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 700px;
  margin: 0;
  display: flex;
  align-items: center;
}

.statement-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .62;
  filter: brightness(.46) contrast(1.08) saturate(1.12);
  pointer-events: none;
}

.statement-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,8,8,.84) 0%, rgba(8,8,8,.48) 52%, rgba(8,8,8,.32) 100%),
    linear-gradient(180deg, rgba(8,8,8,.18) 0%, rgba(8,8,8,.18) 55%, rgba(8,8,8,.76) 100%);
}

.statement-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ==========================================
   RESTORED EVENT POSTER SUPPORT
========================================== */

.event-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-visual > .event-status,
.event-visual > .event-number {
  z-index: 3;
}

.event-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.02) 55%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .statement {
    min-height: 620px;
  }
}


/* ==========================================
   FINAL STATEMENT VIDEO FIX
========================================== */

.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 700px;
  margin: 0;
  display: flex;
  align-items: center;
}

.statement-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .68;
  filter: brightness(.48) contrast(1.08) saturate(1.14);
  pointer-events: none;
}

.statement-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, .86) 0%,
      rgba(8, 8, 8, .48) 48%,
      rgba(8, 8, 8, .28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 8, .12) 0%,
      rgba(8, 8, 8, .15) 55%,
      rgba(8, 8, 8, .76) 100%
    );
}

.statement-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 640px) {
  .statement {
    min-height: 620px;
  }
}

/* ==========================================
   FOOTER STRUCTURE FIX
========================================== */

.footer-logo {
  display: block;
  width: min(320px, 80vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 20px rgba(216, 255, 62, .08));
  transition: transform .35s ease, filter .35s ease;
}

.footer-logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 0 30px rgba(216, 255, 62, .16));
}

.footer-links > div {
  min-width: 0;
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Dynamic published event lineups */
.public-event-visual{background-size:cover;background-position:center}.public-event-info{align-items:flex-start}.public-lineup{margin-top:20px;padding-top:16px;border-top:1px solid rgba(255,255,255,.12)}.public-lineup-label{display:block;margin-bottom:10px;font-size:.66rem;letter-spacing:.18em;color:rgba(255,255,255,.52)}.public-dj-list{display:flex;flex-wrap:wrap;gap:8px}.public-dj-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(255,255,255,.04);font-size:.78rem}.public-dj-chip img{width:24px;height:24px;border-radius:50%;object-fit:cover}.public-dj-chip b{font-weight:600}.public-verified{display:inline-grid;place-items:center;width:16px;height:16px;border-radius:50%;background:#1687ff;color:#fff;font-size:10px;font-weight:900;line-height:1;box-shadow:0 0 0 2px rgba(22,135,255,.13)}
.public-hosts{border-top-color:rgba(157,102,255,.22)}.public-dj-chip small{font-size:.62rem;color:rgba(255,255,255,.48);text-transform:uppercase;letter-spacing:.08em}
