@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.01);
  --panel-soft: rgba(255, 255, 255, 0.02);
  --text: rgba(244, 241, 234, 0.85);
  --muted: rgba(244, 241, 234, 0.45);
  --accent: #6b5d45;
  --accent-soft: rgba(107, 93, 69, 0.1);
  --line: rgba(244, 241, 234, 0.04);
  --page-pad: clamp(12px, 2vw, 28px);
  --section-gap: clamp(32px, 4vw, 56px);
  --content-max: 1600px;
  --header-height: 96px;
  --font-sans: "Space Mono", "Courier New", Courier, monospace;
  --font-serif: "Space Mono", "Courier New", Courier, monospace;
  --radius-card: 12px;
  --radius-pill: 12px;
  --shadow-float: none;
  --shadow-hover: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: #000000;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

* {
  text-transform: lowercase !important;
}

/* Organic Metaballs */
.metaballs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #000000;
}

.metaballs::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at -50% 20%, rgba(255, 210, 160, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 150% 35%, rgba(255, 190, 110, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 175%, rgba(255, 230, 190, 0.09) 0%, transparent 60%);
  filter: blur(36px);
  opacity: 0.95;
  animation: bgFlow 42s infinite linear, bgFlicker 7s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.95;
  animation: orbit 20s infinite linear, pulse 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 100vw;
  height: 100vw;
  background: radial-gradient(circle at 40% 40%, rgba(255, 220, 160, 0.22) 0%, rgba(255, 210, 140, 0.08) 24%, rgba(0, 0, 0, 0) 58%);
  top: -85vw;
  left: -85vw;
  animation-duration: 25s;
}

.orb-2 {
  width: 110vw;
  height: 110vw;
  background: radial-gradient(circle at 45% 40%, rgba(255, 205, 120, 0.18) 0%, rgba(255, 190, 100, 0.06) 24%, rgba(0, 0, 0, 0) 60%);
  top: 10vh;
  right: -95vw;
  animation-duration: 32s;
  animation-direction: reverse;
}

.orb-3 {
  width: 90vw;
  height: 90vw;
  background: radial-gradient(circle at 30% 40%, rgba(255, 195, 100, 0.18) 0%, rgba(255, 170, 80, 0.05) 24%, rgba(0, 0, 0, 0) 60%);
  bottom: -75vh;
  left: -70vw;
  animation-duration: 28s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translate(8vw) rotate(0deg) scale(1);
  }

  33% {
    transform: rotate(120deg) translate(12vw) rotate(-120deg) scale(1.15);
  }

  66% {
    transform: rotate(240deg) translate(8vw) rotate(-240deg) scale(0.85);
  }

  100% {
    transform: rotate(360deg) translate(8vw) rotate(-360deg) scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.22;
  }
}

@keyframes bgFlow {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(-52%, -48%) scale(1.02) rotate(0.8deg);
  }

  50% {
    transform: translate(-48%, -52%) scale(0.98) rotate(-0.8deg);
  }

  75% {
    transform: translate(-51%, -49%) scale(1.01) rotate(0.5deg);
  }

  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

@keyframes bgFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  33% {
    transform: translate(-49%, -50%) rotate(0.5deg);
  }

  66% {
    transform: translate(-51%, -50%) rotate(-0.5deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes bgFlicker {

  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.28;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: 100%;
  position: relative;
  z-index: 1;
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -60px;
  /* Bleed downwards for a soft edge */
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
  backdrop-filter: blur(32px);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  width: min(calc(100% - (var(--page-pad) * 2)), calc(var(--content-max) + 64px));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-word {
  color: rgba(179, 159, 121, 0.9);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.1em;
  font-weight: 300;
  text-shadow: 0 0 12px rgba(179, 159, 121, 0.15);
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: none;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 12px 16px 10px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.04);
}

.page-main {
  width: 100%;
}

.hero {
  width: 100%;
  padding: 48px var(--page-pad) 28px;
}

.hero-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 0 16px rgba(244, 241, 234, 0.1);
}

.hero-title-subtle {
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.hero-copy {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.quick-links {
  width: min(100%, var(--content-max));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-link {
  padding: 24px 20px;
  min-height: 142px;
  border: none;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-float);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(179, 159, 121, 0.55);
  background: rgba(179, 159, 121, 0.08);
  box-shadow: var(--shadow-hover);
}

.quick-link strong {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-link span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 0 var(--page-pad);
  margin: 0 auto var(--section-gap);
}

.section-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 0 12px rgba(244, 241, 234, 0.1);
}

.section-blurb {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.media-breakout {
  display: flow-root;
  width: calc(100vw - (var(--page-pad) * 2));
  margin-left: calc(50% - 50vw + var(--page-pad));
  overflow: visible;
}

#music-live .media-breakout,
#concept .media-breakout,
#all-videos .media-breakout {
  padding-bottom: clamp(28px, 3vw, 48px);
}

#music-live {
  margin-bottom: calc(var(--section-gap) + 16px);
}

.video-widget {
  position: relative;
  z-index: 0;
  width: min(100%, 1720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 24vw, 400px);
  gap: clamp(14px, 1.6vw, 24px);
  align-items: start;
}

.video-player {
  position: relative;
  z-index: 0;
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: clamp(240px, 42vw, 760px);
  max-height: 76vh;
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.video-actions-inline {
  padding: 0 18px 16px;
  justify-content: flex-start;
}

.button,
.button-subtle {
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.button {
  background: var(--accent);
  color: #060606;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #c8b58e;
}

.button-subtle {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-subtle:hover,
.button-subtle:focus-visible {
  box-shadow: 0 0 20px rgba(179, 159, 121, 0.2);
  color: var(--accent);
}

.video-list {
  border: none;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  min-width: 0;
}

.video-list-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: none;
}

.video-list-header strong {
  display: block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-current-title {
  margin-top: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 28ch;
}

.video-count {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.video-items {
  display: grid;
  max-height: 336px;
  /* Shows 3.5 videos so it's obviously scrollable */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 159, 121, 0.6) transparent;
}

.video-items::-webkit-scrollbar {
  width: 6px;
}

.video-items::-webkit-scrollbar-track {
  background: transparent;
}

.video-items::-webkit-scrollbar-thumb {
  background-color: rgba(179, 159, 121, 0.6);
  border-radius: 6px;
}

.video-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

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

.video-item:hover,
.video-item:focus-visible,
.video-item.is-active {
  background: rgba(179, 159, 121, 0.08);
  transform: translateX(4px);
}

.video-item img {
  width: 112px;
  height: 72px;
  object-fit: cover;
  border-radius: 0px;
}

.video-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.video-item span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  width: 100%;
}

.gallery-grid {
  column-count: var(--gallery-columns, 4);
  column-gap: var(--gallery-gap, 16px);
}

.gallery-card {
  break-inside: avoid;
  margin: 0 0 var(--gallery-gap, 16px);
  overflow: hidden;
  background: #0a0a0a;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.page-intro {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 56px var(--page-pad) 18px;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.page-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.gear-grid {
  width: min(100%, 1320px);
  margin: 0 auto var(--section-gap);
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gear-card {
  border: none;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  padding: 24px 22px;
  display: grid;
  gap: 18px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gear-card h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gear-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.gear-card li {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  width: 100%;
  border-top: none;
  box-shadow: none;
  background: #090909;
}

.footer-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.footer-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-copy-social {
  max-width: 760px;
}

.footer-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-copy-social h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.footer-copy-social h2 span {
  color: rgba(244, 241, 234, 0.28);
}

.footer-copy-social h2 a,
.footer-copy-social p a {
  color: var(--text);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 50px;
  height: 50px;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(179, 159, 121, 0.35);
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-bottom {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 var(--page-pad) 28px;
  color: rgba(244, 241, 234, 0.48);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {

  .hero-inner,
  .footer-grid,
  .video-widget {
    grid-template-columns: 1fr;
  }

  .quick-links,
  .gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-list {
    order: 2;
  }
}

@media (min-width: 1650px) {
  .video-widget {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 84px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--page-pad) 18px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quick-links,
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .media-breakout {
    width: calc(100vw - 16px);
    margin-left: calc(50% - 50vw + 8px);
  }
}

@media (max-width: 560px) {
  .brand-word {
    font-size: 2.15rem;
  }

  .video-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .video-item img {
    width: 88px;
    height: 58px;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 8px;
  }

  .gallery-card {
    margin-bottom: 8px;
  }
}

/* Gallery Scatter — flex-wrap so every photo stays visible */
.gallery-scatter {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns-fixed, 4), minmax(0, 1fr));
  align-items: start;
  gap: 0;
  padding: 4vh 2vw;
}

.gallery-scatter-item {
  width: 100%;
  max-width: none;
  margin: -12px;
  transition: transform 0.4s ease, z-index 0s;
  z-index: 1;
}

.gallery-scatter-item:hover {
  z-index: 10;
}

/* Video Scatter — flex-wrap with size hierarchy */
.video-scatter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 560px;
  padding: 32px 2vw 88px;
  position: relative;
  max-width: none;
  overflow-x: clip;
  overflow-y: visible;
}

.video-scatter .video-scatter-item {
  flex: 0 0 auto;
  margin: -8px;
  position: absolute;
  max-width: min(54vw, 700px);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease, opacity 420ms ease;
}

.video-scatter .video-scatter-item.is-featured {
  filter: brightness(1.18) saturate(1.12);
}

.video-scatter .video-scatter-item.is-featured .scatter-inner {
  box-shadow: none;
  border-color: rgba(179, 159, 121, 0.42);
}

.video-scatter-header {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  margin-bottom: 20px;
}

.video-orb-slider {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vh, 36px);
  transform: translateX(-50%);
  z-index: 100;
  width: min(720px, calc(100% - 32px));
  padding: 18px 20px 20px;
  border-radius: var(--radius-card);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

@media (max-width: 900px) {
  .video-scatter {
    min-height: 480px;
    padding: 24px 2vw 78px;
  }
}

.video-orb-slider label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.slider-hint {
  position: absolute;
  top: 100px;
  left: 50%;
  font-size: clamp(0.6rem, 2.5vw, 0.85rem);
  font-weight: 800;
  color: var(--accent);
  text-transform: lowercase;
  letter-spacing: 0.15em;
  background: transparent;
  pointer-events: none;
  opacity: 0.5;
  white-space: nowrap;
  animation: hover-bob 2s ease-in-out infinite alternate;
}

@keyframes hover-bob {
  from {
    transform: translateX(-50%) translateY(0);
  }

  to {
    transform: translateX(-50%) translateY(-4px);
  }
}

.video-orb-slider label strong {
  color: var(--text);
  text-align: right;
  max-width: 48ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-orb-slider input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  accent-color: var(--accent);
  cursor: pointer;
  outline: none;
  box-shadow: none;
  border: 0;
}

.video-orb-slider input[type="range"]:focus,
.video-orb-slider input[type="range"]:focus-visible {
  outline: none;
  box-shadow: none;
}

.video-orb-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 999px;
}

.video-orb-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

.video-orb-slider input[type="range"]::-moz-range-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 999px;
}

.video-orb-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

/* Scatter Layout */
.scatter-container {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 10vh 5vw;
}

.scatter-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.95;
}

.scatter-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(0, 0, 0, 1);
}

.scatter-header p {
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.scatter-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: 300px;
  height: auto;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: z-index 0s 0.2s;
}

.scatter-item:hover {
  z-index: 10;
  transition: z-index 0s;
}

.scatter-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scatter-inner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scatter-inner:hover img {
  opacity: 1;
}

.scatter-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.scatter-inner:hover .scatter-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  z-index: 999999;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.video-modal-close:hover {
  opacity: 1;
}

/* Amorphous Background Video */
.amorphous-bg {
  position: fixed;
  top: 100%;
  left: 100%;
  transform: translate(-20%, -20%);
  width: 150vw;
  height: 150vh;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px) saturate(1.5) opacity(0.05);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 50%);
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 50%);
  animation: bgFloat 38s infinite linear, bgFlicker 9s ease-in-out infinite alternate;
}

.amorphous-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(1.5);
}

@media (max-width: 700px) {
  .video-scatter {
    min-height: 720px;
    padding-top: 72px;
  }

  .video-scatter .video-scatter-item {
    max-width: 72vw;
  }

  .video-orb-slider label {
    display: grid;
    gap: 6px;
  }

  .video-orb-slider label strong {
    text-align: left;
    max-width: 100%;
  }
}