:root {
  --blue-950: #02040d;
  --blue-900: #061131;
  --blue-800: #0a1e5c;
  --blue-700: #0f31a8;
  --blue-600: #1a49e6;
  --blue-500: #2f6bff;
  --blue-400: #6a9bff;
  --blue-300: #a9c3ff;
  --ink: #05070f;
  --paper: #f4f6ff;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --display: "Unbounded", "Space Grotesk", sans-serif;
  --text: "Space Grotesk", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--blue-950);
  color: var(--paper);
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 2px;
}

/* ===== skip link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 300;
  padding: 12px 24px;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== grain ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 28px;
  color: #fff;
  gap: 24px;
}

.nav ul a {
  mix-blend-mode: difference;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav ul a {
  opacity: .7;
  transition: opacity .2s;
  padding: 8px 4px;
}

.nav ul a:hover {
  opacity: 1;
}

/* hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 52;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: background .2s;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .3s;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger[aria-expanded="true"] span {
  background: transparent;
}

.hamburger[aria-expanded="true"] span::before {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger[aria-expanded="true"] span::after {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 860px) {
  .nav ul {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(2,4,13,.95);
    backdrop-filter: blur(20px);
    font-size: 16px;
    z-index: 51;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }

  .nav ul.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav ul a {
    opacity: 1;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== intro gate ===== */
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.gate::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(47,107,255,.22), transparent 65%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.gate.gone {
  transition: clip-path 1.1s cubic-bezier(.7,0,.2,1), opacity .6s .6s;
  clip-path: inset(50% 0 50% 0);
  opacity: 0;
  pointer-events: none;
}

.gate .wipe {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-500);
  box-shadow: 0 0 24px var(--blue-500), 0 0 60px var(--blue-500);
  top: 50%;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .5s ease, opacity .3s;
}

.gate.gone .wipe {
  transform: scaleX(1);
  opacity: 1;
  transition: transform .45s ease;
}

.gate .stamp {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  opacity: .7;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.gate .stamp .blip {
  width: 6px;
  height: 6px;
  background: #2f6bff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.gate .stamp-r {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  opacity: .5;
  z-index: 2;
}

.gate .foot {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  opacity: .5;
  z-index: 2;
}

.gate .center {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.gate .gate-logo {
  display: block;
  margin: 0 auto 24px;
  width: auto;
  max-width: min(94vw, 1600px);
  max-height: 280px;
  filter: drop-shadow(0 0 36px rgba(47,107,255,.45));
  animation: logoIn 1.2s cubic-bezier(.2,.8,.2,1) both;
  will-change: transform;
}

@keyframes logoIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(.96);
    filter: drop-shadow(0 0 0 rgba(47,107,255,0)) blur(8px);
  }
  60% {
    filter: drop-shadow(0 0 50px rgba(47,107,255,.6)) blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 36px rgba(47,107,255,.45)) blur(0);
  }
}

.gate.flying .eq,
.gate.flying .press,
.gate.flying .hint {
  opacity: 0 !important;
  transition: opacity .2s ease;
  pointer-events: none;
  animation: none !important;
}

.gate.flying::before {
  opacity: 0;
  transition: opacity .5s;
}

.gate.flying .stamp,
.gate.flying .stamp-r,
.gate.flying .foot {
  opacity: 0;
  transition: opacity .4s;
}

.gate .center .press {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  transition: all .3s;
  background: rgba(255,255,255,.02);
  color: #fff;
  animation: fadeUp .8s .4s both;
  min-height: 48px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate .center .press:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: scale(1.04);
}

.gate .center .press .tri {
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.gate .hint {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  opacity: .4;
  animation: fadeUp .8s .7s both;
}

.gate .eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin: 0 auto 30px;
  justify-content: center;
}

.gate .eq span {
  display: block;
  width: 3px;
  background: var(--blue-500);
  animation: bar 1s ease-in-out infinite;
}

.gate .eq span:nth-child(1) { animation-delay: 0s; }
.gate .eq span:nth-child(2) { animation-delay: .15s; }
.gate .eq span:nth-child(3) { animation-delay: .3s; }
.gate .eq span:nth-child(4) { animation-delay: .45s; }
.gate .eq span:nth-child(5) { animation-delay: .6s; }

@keyframes bar {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}

/* reveal intro for hero/site */
body.revealed .hero-copy,
body.revealed .hero-photo,
body.revealed .hero-logo-rail {
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) both;
}

body.revealed .hero-copy { animation-delay: .2s; }
body.revealed .hero-photo { animation-delay: .05s; }
body.revealed .hero-logo-rail { animation-delay: .35s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy,
.hero-photo,
.hero-logo-rail {
  opacity: 0;
}

body:not(.ready) .hero-copy,
body:not(.ready) .hero-photo,
body:not(.ready) .hero-logo-rail {
  opacity: 0;
}

body.revealed .hero-copy,
body.revealed .hero-photo,
body.revealed .hero-logo-rail {
  opacity: 1;
}

/* ===== mute toggle ===== */
.mute {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10,30,92,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}

.mute:hover {
  background: var(--blue-600);
  transform: scale(1.06);
}

.mute svg {
  width: 22px;
  height: 22px;
}

.mute .eq-mini {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.mute .eq-mini span {
  width: 2px;
  background: currentColor;
  animation: bar 1s infinite;
}

.mute .eq-mini span:nth-child(2) { animation-delay: .15s; }
.mute .eq-mini span:nth-child(3) { animation-delay: .3s; }

.mute.muted .eq-mini span {
  animation-play-state: paused;
  height: 6px !important;
}

/* ===== hero (poster layout) ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse 55% 70% at 62% 52%, #3d7be8 0%, #1f4fbf 22%, #103a9c 42%, #0a2472 62%, #051a55 80%, #02103a 100%);
  scroll-margin-top: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-height: 100svh;
  min-height: 100vh;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.08) saturate(1.1);
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,4,13,.15) 0%, transparent 25%, transparent 75%, rgba(2,4,13,.55) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-logo-rail {
  display: none;
}

.hero-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  min-height: auto;
  padding: 0 48px 56px;
  display: flex;
  justify-content: center;
}

.hero-copy .meta {
  display: flex;
  gap: 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding-top: 20px;
  max-width: none;
  justify-content: center;
  position: relative;
}

.hero-copy .meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

.hero-copy .meta div b {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: .1em;
}

.hero-corner-tl {
  position: absolute;
  top: 110px;
  left: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  z-index: 3;
}

.hero-corner-br {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  z-index: 3;
  text-align: right;
}

@media (max-width: 767px) {
  .hero-copy {
    padding: 0 20px 40px;
  }

  .hero-copy .meta {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .hero-corner-tl { left: 16px; top: 80px; }
  .hero-corner-br { right: 16px; bottom: 16px; }
}

/* ===== marquee ===== */
.marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(2,4,13,.4);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee .track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 40s linear infinite;
  padding-left: 40px;
}

.marquee .track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.marquee .track span .star {
  color: var(--blue-500);
  font-size: 20px;
}

.marquee .track span em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.5);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== sections ===== */
section {
  padding: 120px 28px;
  position: relative;
  scroll-margin-top: 60px;
}

@media (max-width: 767px) {
  section {
    padding: 80px 16px;
  }
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.sec-head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  margin: 12px 0 0;
  text-wrap: balance;
}

.sec-head h2 .out {
  -webkit-text-stroke: 1px rgba(255,255,255,.45);
  color: transparent;
}

.sec-head .right {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  max-width: 320px;
  text-align: right;
  line-height: 1.6;
}

/* ===== releases ===== */
.releases-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.releases.single {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.releases.single .spotify-embed {
  position: static;
  min-height: 520px;
}

.releases.single .spotify-embed iframe {
  height: 520px;
}

.spotify-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  min-height: 420px;
}

.spotify-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.spotify-follow {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .3s;
  min-height: 48px;
}

.spotify-follow:hover {
  background: #1ED760;
  color: #000;
  border-color: #1ED760;
}

.spotify-follow .arrow {
  transition: transform .3s;
}

.spotify-follow:hover .arrow {
  transform: translateX(4px);
}

/* ===== visualizer bar ===== */
.viz {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 55;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  gap: 1px;
  opacity: 0;
  transition: opacity .3s;
}

.viz.on {
  opacity: 1;
}

.viz i {
  display: block;
  flex: 1;
  height: 2px;
  background: var(--blue-400);
  transition: height .05s;
}

/* floating viz orb */
.orb {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: 220px;
  height: 64px;
  background: rgba(6,17,49,.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.orb.on {
  display: flex;
  animation: slidein .5s ease;
}

@keyframes slidein {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.orb .bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  width: 44px;
}

.orb .bars i {
  display: block;
  flex: 1;
  background: var(--blue-400);
  height: 20%;
  border-radius: 1px;
}

.orb .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

.orb .meta .tt {
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orb .meta .st {
  color: var(--blue-300);
  font-size: 9px;
}

.orb .x {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  font-size: 16px;
  background: transparent;
  border: none;
}

.orb .x:hover {
  color: #fff;
}

/* ===== shows ===== */
.shows-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.show {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: all .3s;
  position: relative;
}

.show:first-of-type {
  border-top: 1px solid rgba(255,255,255,.08);
}

.show .date {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}

.show .date span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  letter-spacing: .3em;
}

.show .venue {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -.01em;
  text-transform: none;
}

.show .city {
  color: rgba(255,255,255,.6);
}

.show .status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.show .status .d {
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
}

.show .status.sold .d {
  background: #ff4444;
}

.show .status.sold {
  color: #ff6666;
}

.show:hover {
  padding-left: 16px;
}

@media (max-width: 900px) {
  .show {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .show .status,
  .show .cta {
    grid-column: span 2;
    justify-self: start;
  }
}

/* ===== gallery ===== */
.gallery-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery .cell {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #0a1e5c;
  cursor: pointer;
}

.gallery .cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,73,230,.15), rgba(6,17,49,.4));
  mix-blend-mode: overlay;
  transition: opacity .3s;
}

.gallery .cell:hover::after {
  opacity: 0;
}

.gallery .cell .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  opacity: .7;
}

.gallery .cell img,
.gallery .cell .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.gallery .cell:hover img,
.gallery .cell:hover .ph {
  transform: scale(1.05);
}

.gallery .a { grid-column: span 3; grid-row: span 2; }
.gallery .b { grid-column: span 2; grid-row: span 1; }
.gallery .c { grid-column: span 1; grid-row: span 2; }
.gallery .d { grid-column: span 2; grid-row: span 1; }
.gallery .e { grid-column: span 2; grid-row: span 2; }
.gallery .f { grid-column: span 2; grid-row: span 1; }
.gallery .g { grid-column: span 2; grid-row: span 1; }
.gallery .h { grid-column: span 2; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery > * {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .gallery .a,
  .gallery .e {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
}

.ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 12px),
    radial-gradient(circle at 30% 30%, var(--blue-700), var(--blue-900) 70%, var(--blue-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

/* ===== videos ===== */
.videos-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .videos {
    grid-template-columns: 1fr;
  }
}

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #06112f;
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  isolation: isolate;
}

.video .thumb {
  position: absolute;
  inset: 0;
}

.video .thumb .ph {
  width: 100%;
  height: 100%;
}

.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,4,13,.85), transparent 50%);
  pointer-events: none;
}

.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(6,17,49,.5);
  backdrop-filter: blur(6px);
  transition: all .3s;
  z-index: 3;
}

.video:hover .play {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translate(-50%, -50%) scale(1.1);
}

.video .play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.video .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.video .info .t {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
}

.video .info .m {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-top: 6px;
}

/* ===== booking ===== */
.booking {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "KENLISS KENLISS KENLISS KENLISS";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -.04em;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  color: transparent;
  pointer-events: none;
  line-height: 1;
}

.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.booking h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.booking h2 em {
  font-style: italic;
  font-weight: 300;
}

.booking p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 420px;
  margin-bottom: 36px;
}

.booking .buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  transition: all .3s;
  backdrop-filter: blur(10px);
  min-height: 48px;
}

.booking .btn:hover {
  background: #fff;
  color: #0f31a8;
  border-color: #fff;
  transform: translateY(-2px);
}

.booking .btn.wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.booking .btn .l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking .btn .l b {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.01em;
}

.booking .btn .l span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
}

.booking .btn .arrow {
  font-size: 24px;
  transition: transform .3s;
}

.booking .btn:hover .arrow {
  transform: translateX(6px);
}

/* ===== footer ===== */
footer {
  background: #02040d;
  padding: 80px 28px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.foot-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .foot-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

footer .kenliss {
  grid-column: 1 / -1;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

footer .kenliss img {
  width: min(92%, 980px);
  height: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 0 30px rgba(47,107,255,.2));
}

footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin: 0 0 16px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

footer ul a:hover {
  color: var(--blue-400);
}

footer ul a .ext {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  opacity: .4;
}

.foot-bar {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 59;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,30,92,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue-600);
}
