/* =========================================
   FONTS
========================================= */
@font-face {
  font-family: 'Bamboo';
  src: url('fonts/Bamboo.woff2') format('woff2'),
       url('fonts/Bamboo.ttf') format('truetype');
  font-display: swap;
}

/* Fallback display font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

/* =========================================
   INTRO SPLASH
========================================= */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.intro-splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-splash.hidden {
  display: none;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.intro-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.intro-word {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(160, 240, 213, 0.9);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-word.show {
  opacity: 1;
  transform: translateY(0);
}

.intro-word.intro-brand {
  font-family: 'Bamboo', 'DM Serif Display', serif;
  font-size: 64px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #58e3eb;
  margin-top: 8px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor {
  position: fixed;
  width: 6px;
  height: 32px;
  background: linear-gradient(to bottom, #1a6e7a, #2ab0c2 20%, #1f8fa0 25%, #38d0e0 30%, #1f8fa0 50%, #2ab0c2 55%, #1a6e7a 80%, #145a64);
  border-radius: 3px 3px 1px 1px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(0, 0) rotate(25deg);
  transform-origin: top left;
  transition: transform 0.1s, height 0.3s;
  box-shadow: inset -1px 0 1px rgba(255,255,255,0.15), inset 1px 0 1px rgba(0,0,0,0.2);
}

.cursor::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -5px;
  width: 8px;
  height: 5px;
  background: #38d0e0;
  border-radius: 50%;
  transform: rotate(-25deg);
  opacity: 0.7;
}

.cursor::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -5px;
  width: 8px;
  height: 5px;
  background: #2ab0c2;
  border-radius: 50%;
  transform: rotate(20deg);
  opacity: 0.6;
}

.cursor.cursor-hover {
  background: linear-gradient(to bottom, #8a6d1b, #d4a820 20%, #b8912a 25%, #f0c040 30%, #b8912a 50%, #d4a820 55%, #8a6d1b 80%, #6b5515);
  box-shadow: inset -1px 0 1px rgba(255,255,255,0.25), inset 1px 0 1px rgba(0,0,0,0.2), 0 0 8px rgba(212,168,32,0.4);
}

.cursor.cursor-hover::before {
  background: #f0c040;
}

.cursor.cursor-hover::after {
  background: #d4a820;
}

.cursor-ring {
  position: fixed;
  width: 4px;
  height: 10px;
  background: rgba(42, 176, 194, 0.3);
  border-radius: 2px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) rotate(-30deg);
  transition: transform 0.18s var(--ease), opacity 0.3s;
}

/* =========================================
   TOP HEADER NAVIGATION
========================================= */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-nav .site-logo {
  position: relative;
  top: auto;
  left: auto;
  font-family: 'Bamboo', 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  color: #58e3eb;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  flex-shrink: 0;
}

/* Language Switch */
.lang-switch {
  position: fixed;
  top: 0;
  right: 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 602;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: none;
  padding: 6px 8px;
  transition: color 0.3s ease;
  position: relative;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.7);
}

.lang-btn.active {
  color: #58e3eb;
}

.lang-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: #58e3eb;
}

.lang-divider {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

.top-nav-links {
  position: fixed;
  top: 0;
  left: 190px;
  right: 130px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 601;
}

.top-nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  cursor: none;
  padding: 22px 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.top-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: #58e3eb;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.top-nav-links a:hover {
  color: #ffffff;
}

.top-nav-links a:hover::after {
  transform: scaleX(1);
}

.top-nav-links a.active {
  color: #58e3eb;
}

.top-nav-links a.active::after {
  transform: scaleX(1);
}

/* Hamburger menu toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 700;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HORIZONTAL SCROLL WRAPPER
========================================= */
.scroll-container {
  display: flex;
  width: calc(100vw * 11);
  height: 100vh;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* =========================================
   TRANSITION OVERLAY
========================================= */
#transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: none;
  overflow: hidden;
}

/* =========================================
   SECTIONS — BASE
========================================= */
.section {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   SECTION COUNTER
========================================= */
.section-counter {
  position: fixed;
  bottom: 32px;
  left: 40px;
  z-index: 500;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

#current-section {
  color: #ffffff;
  font-weight: 500;
}

/* =========================================
   SCROLL HINT
========================================= */
.scroll-hint {
  position: fixed;
  bottom: 32px;
  right: 40px;
  z-index: 500;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  mix-blend-mode: difference;
}

.scroll-arrow {
  display: inline-flex;
  gap: 3px;
}

.scroll-arrow span {
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  transform: rotate(135deg);
  animation: arrowPulse 1.5s infinite;
}

.scroll-arrow span:nth-child(2) { animation-delay: 0.15s; }
.scroll-arrow span:nth-child(3) { animation-delay: 0.3s; }

@keyframes arrowPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* =========================================
   S0: WELCOME PAGE
========================================= */
#s0 {
  background: #000000;
  color: #f0ece4;
}

.s0-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s0-video-side {
  position: relative;
  overflow: hidden;
}

.s0-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s0-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.8) 100%);
}

.s0-text-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: #000000;
}

.s0-text-content {
  max-width: 480px;
}

.s0-line {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.5;
  color: #f0ece4;
  opacity: 0;
  transform: translateY(30px);
  animation: s0FadeIn 0.8s ease forwards;
}

.s0-line-1 { animation-delay: 0.3s; }
.s0-line-2 { animation-delay: 0.7s; color: rgba(88,227,235,0.9); }
.s0-line-3 { animation-delay: 1.1s; }
.s0-line-4 { animation-delay: 1.5s; }
.s0-line-5 {
  animation-delay: 1.9s;
  color: rgba(88,227,235,0.9);
}
.s0-line-6 {
  animation-delay: 2.3s;
  margin-top: 32px;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(240,236,228,0.6);
}

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

/* =========================================
   SECTION 1 — WHO ARE WE?
========================================= */
#s1 {
  background: #FFFFFF;
  color: #111111;
  overflow: hidden;
}

.s1-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 48px;
  max-width: 1400px;
  padding: 80px 60px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

.s1-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s1-col-left {
  padding-right: 10px;
}

.s1-col-center {
  gap: 24px;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 36px;
}

.s1-col-right {
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 36px;
}

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.5;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-family: 'Audiowide', 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.95;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #58e3eb;
  margin-bottom: 40px;
}

.s1-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  max-width: 500px;
}

.s1-bio p + p { margin-top: 16px; }

/* Custom scrollbar for S1 */
#s1::-webkit-scrollbar { width: 4px; }
#s1::-webkit-scrollbar-track { background: transparent; }
#s1::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }
#s1::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.3); }

/* Stats row — horizontal on desktop */
.s1-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.s1-stat-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.s1-mv-block {
  padding-left: 20px;
  border-left: 2px solid #222222;
}

.s1-mv-title {
  font-family: 'Audiowide', 'DM Serif Display', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 8px;
}

.s1-mv-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  max-width: 460px;
}

/* Artists & Platform */
.s1-artists-platform {
  margin-bottom: 32px;
  padding: 28px;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
}

.s1-ap-title {
  font-family: 'Audiowide', 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 16px;
}

.s1-ap-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
}

.s1-ap-text + .s1-ap-text {
  margin-top: 14px;
}

.s1-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.s1-stat:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

.s1-stat-number {
  font-family: 'Bamboo', 'DM Serif Display', serif;
  font-size: 56px;
  line-height: 1;
  color: #111111;
}

.s1-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
}

/* Accent block */
.s1-red-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 60%;
  background: #222222;
}

/* =========================================
   SECTION 2 — ARTISTIC DIRECTION
========================================= */
#s2 {
  background: #000000;
  color: #f0ece4;
}

.s2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  gap: 0;
  width: 100%;
  height: 100%;
}

.s2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: #000000;
}

.s2-center {
  position: relative;
  overflow: visible;
}

.s2-vid-small {
  position: absolute;
  width: 90%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.s2-vid-2 {
  top: 8%;
  left: 5%;
  height: 45%;
  z-index: 1;
  object-fit: contain;
  object-position: top center;
}

.s2-vid-3 {
  bottom: 12%;
  right: -5%;
  height: 40%;
  z-index: 2;
}

.s2-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
}

.s2-video-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.s2-inner .section-title {
  color: #58e3eb;
  margin-bottom: 32px;
}

.section-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: inherit;
  opacity: 0.65;
  max-width: 420px;
}

/* =========================================
   SECTION 3 — PHOTO & VIDEO
========================================= */
#s3 {
  background: #FFFFFF;
  color: #111111;
}

.s3-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.s3-media-area {
  position: relative;
  overflow: hidden;
}

/* 3-lane scrolling container — horizontal rows */
.s3-lanes-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #000;
  padding: 6px 0;
}

.s3-photo-scroll.s3-lane {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.s3-photo-track {
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
  width: max-content;
}

.s3-track-1 { animation: s3scrollLeft 40s linear infinite; }
.s3-track-2 { animation: s3scrollRight 35s linear infinite; }
.s3-track-3 { animation: s3scrollLeft 45s linear infinite; }

.s3-photo-scroll:hover .s3-photo-track {
  animation-play-state: paused;
}

@keyframes s3scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes s3scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.s3-photo {
  flex: 0 0 auto;
  height: 90%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8);
  position: relative;
}

.s3-photo:hover {
  transform: scale(1.4);
  filter: brightness(1);
  z-index: 10;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.s3-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 3;
}

.s3-frame::before, .s3-frame::after {
  content: '';
  position: absolute;
  background: #333333;
}

.s3-frame::before { top: -1px; left: 20px; width: 40px; height: 1px; }
.s3-frame::after  { bottom: -1px; right: 20px; width: 40px; height: 1px; }

.s3-right {
  display: flex;
  flex-direction: column;
  padding: 50px 60px;
  background: #FFFFFF;
  color: #111111;
  position: relative;
}

.s3-right .section-title { color: #58e3eb; }

.s3-video-wrapper {
  margin-top: auto;
  border-radius: 6px;
  overflow: hidden;
  max-height: 280px;
}

.s3-promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* =========================================
   SECTION 4 — LIGHT PAINTING
========================================= */
#s4 {
  background: #000000;
  color: #f0ece4;
}

.s4-glow-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.18; }
}

.s4-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s4-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s4-left .section-title {
  color: #58e3eb;
}

.s4-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.s4-video-wrap {
  width: 100%;
  height: 45%;
  overflow: hidden;
  border-radius: 4px;
}

.s4-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s4-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background: rgba(255,255,255,0.05);
}

.s4-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: s4marquee 12s linear infinite;
}

.s4-marquee-track span {
  font-family: 'Bamboo', 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: #58e3eb;
  flex-shrink: 0;
}

@keyframes s4marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.s4-photo-grid {
  width: 100%;
  height: 45%;
  overflow: hidden;
  background: #000;
  position: relative;
}

.s4-photo-track {
  display: flex;
  gap: 12px;
  height: 100%;
  align-items: center;
  animation: s4photoScroll 35s linear infinite;
  width: max-content;
}

.s4-photo-grid:hover .s4-photo-track {
  animation-play-state: paused;
}

@keyframes s4photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.s4-photo {
  flex: 0 0 auto;
  height: 90%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8);
}

.s4-photo:hover {
  transform: scale(1.35);
  filter: brightness(1);
  z-index: 10;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* =========================================
   SECTION 5 — MAPPING & VJ
========================================= */
#s5 {
  background: #FFFFFF;
  color: #111111;
}

.s5-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.s5-left {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.s5-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s5-right {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  overflow: hidden;
}

.s5-right .section-title {
  color: #58e3eb;
}

.s5-right .section-body {
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   SECTION 6 — ARTIST CATALOGUE
========================================= */
#s6 {
  background: #000000;
  color: #f0ece4;
}

.s6-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s6-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
  color: #f0ece4;
}

.s6-left .section-title {
  color: #58e3eb;
}

.s6-right {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #000000;
  overflow: hidden;
}

/* Pulsing vertical lines */
.pulse-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pulse-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  transform-origin: center;
  animation: pulseLine var(--dur, 2s) ease-in-out infinite var(--del, 0s);
  opacity: 0.08;
}

@keyframes pulseLine {
  0%, 100% { transform: scaleY(0.2); opacity: 0.08; }
  50% { transform: scaleY(1); opacity: 0.2; }
}

.s6-artist-collage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.artist-collage-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================
   SECTION 7 — CREATIVE TOOLS
========================================= */
#s7 {
  background: #FFFFFF;
  color: #111111;
}

.s7-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.s7-left {
  background: #FFFFFF;
  color: #111111;
  padding: 80px 50px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.s7-left .section-tag {
  margin-bottom: 16px;
}

.s7-left .section-title {
  color: #58e3eb;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.15;
  margin-bottom: 32px;
}

.s7-left .section-body {
  font-size: 15px;
  line-height: 1.8;
  max-width: 440px;
  opacity: 0.65;
}

.s7-right {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 30px;
  align-items: center;
  justify-content: center;
}

.s7-video-wrap {
  min-width: 0;
  flex: 1;
  height: 85%;
  overflow: hidden;
  border-radius: 8px;
}

.s7-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* =========================================
   SECTION 8 — OUR CLIENTS
========================================= */
#s8 {
  background: #000000;
  color: #f0ece4;
}

.s8-clients-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  height: 100%;
  width: 100%;
}

.s8-clients-title {
  color: #58e3eb;
  margin-bottom: 12px;
}

.s8-clients-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.5);
  margin-bottom: 40px;
}

.s8-clients-logos {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* =========================================
   SECTION 9 — OUR TEAM
========================================= */
#s9 {
  background: #FFFFFF;
  color: #111111;
}

.s9-team-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  height: 100%;
  width: 100%;
}

.s9-team-title {
  color: #58e3eb;
  margin-bottom: 8px;
}

.s9-team-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 48px;
}

.s9-team-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  width: 100%;
}

.s9-team-card-featured {
  flex-shrink: 0;
}

.s9-extended-team {
  text-align: left;
  padding: 28px 32px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
}

.s9-extended-title {
  font-family: 'Audiowide', 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 16px;
}

.s9-extended-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #666666;
}

.s9-extended-text + .s9-extended-text {
  margin-top: 12px;
}

.s9-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s;
}

.s9-team-card:hover {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.04);
}

.s9-card-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #333333;
  flex-shrink: 0;
}

.s9-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.s9-card-info {
  text-align: center;
}

.s9-card-name {
  font-family: 'Bamboo', 'DM Serif Display', serif;
  font-size: 22px;
  color: #111111;
  margin-bottom: 4px;
}

.s9-card-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
}

/* =========================================
   SECTION 10 — CONTACT
========================================= */
#s10 {
  background: #000000;
  color: #f0ece4;
}

.s10-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
}

.contact-frame {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}

/* Corner accents */
.contact-frame::before, .contact-frame::after {
  content: '';
  position: absolute;
  border-color: rgba(255,255,255,0.4);
  border-style: solid;
  width: 30px;
  height: 30px;
}

.contact-frame::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.contact-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.contact-title {
  font-family: 'Audiowide', 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #58e3eb;
  margin-bottom: 16px;
}

.contact-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}

.contact-email {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #f0ece4;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.contact-email + .contact-social {
  margin-top: 40px;
}

.contact-email:hover { color: #ffffff; }

.contact-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f0ece4;
  transition: border-color 0.3s, background 0.3s;
}

.social-btn:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.15);
}

/* =========================================
   NAVIGATION ARROWS
========================================= */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  background: rgba(128,128,128,0.15);
  border: 1px solid rgba(128,128,128,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: none;
  transition: background 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
  mix-blend-mode: difference;
}

.nav-arrow:hover {
  background: rgba(128,128,128,0.3);
  border-color: #ffffff;
  opacity: 1;
}

.nav-arrow-left {
  left: 24px;
}

.nav-arrow-right {
  right: 24px;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS — MOBILE
========================================= */
@media (max-width: 768px) {

  /* --- Mobile: vertical scroll --- */
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
  }

  .scroll-container {
    flex-direction: column;
    width: 100vw;
    height: auto;
    transform: none !important;
    transition: none;
  }

  .section {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  #s1 {
    overflow: visible;
  }

  /* --- Top Nav (mobile) --- */
  .top-nav {
    padding: 0 16px;
    height: 56px;
    z-index: 10000;
  }

  .top-nav .site-logo {
    font-size: 14px;
  }

  .top-nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: 99999;
    flex-direction: column;
    align-items: stretch;
    background: #000000;
    padding: 30px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
    overflow-y: auto;
  }

  .top-nav-links.open {
    transform: translateX(0);
  }

  .top-nav-links a {
    font-size: 16px;
    padding: 14px 0;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
  }

  .top-nav-links a.active {
    color: #58e3eb;
  }

  .top-nav-links a::after {
    display: none;
  }

  .lang-switch {
    position: fixed;
    top: 0;
    right: 52px;
    height: 56px;
    z-index: 10001;
  }

  .lang-btn {
    font-size: 10px;
    padding: 4px 6px;
  }

  .menu-toggle {
    display: flex;
  }

  /* --- Navigation UI --- */
  .section-counter {
    font-size: 9px;
    bottom: 12px;
    left: 16px;
  }

  .scroll-hint {
    bottom: 12px;
    right: 16px;
    font-size: 8px;
  }

  /* --- Typography --- */
  .section-title {
    font-size: clamp(28px, 7vw, 42px) !important;
    line-height: 1;
    margin-bottom: 20px;
  }

  .section-tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
  }

  .section-body {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  .s1-bio {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.6;
  }

  .s1-bio p + p {
    margin-top: 10px;
  }

  /* --- S0: Welcome --- */
  .s0-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh auto;
  }

  .s0-text-side {
    padding: 40px 24px;
  }

  .s0-line {
    font-size: clamp(18px, 5vw, 24px);
  }

  .s0-line-6 {
    font-size: clamp(15px, 4vw, 20px);
    margin-top: 20px;
  }

  /* --- S1: Who We Are --- */
  .s1-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 70px 24px 40px;
    align-items: flex-start;
    height: auto;
  }

  .s1-col-center,
  .s1-col-right {
    border-left: none;
    padding-left: 0;
  }

  .s1-stats-row {
    justify-content: space-around;
  }

  .s1-mv-text {
    font-size: 13px;
  }

  .s1-artists-platform {
    padding: 20px;
    margin-bottom: 20px;
  }

  .s1-ap-title {
    font-size: 15px;
  }

  .s1-ap-text {
    font-size: 13px;
  }

  .s1-stat {
    padding: 14px 0;
  }

  .s1-stat-number {
    font-size: 28px;
  }

  .s1-stat-label {
    font-size: 10px;
  }

  /* --- S2: Artistic Direction --- */
  .s2-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s2-left {
    padding: 70px 24px 30px;
  }

  .s2-right {
    height: 250px;
  }

  .s2-vid-small {
    position: relative;
    width: 45%;
    height: 120px;
    top: auto;
    left: auto;
    bottom: auto;
  }

  /* --- S3: Photo & Video --- */
  .s3-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .s3-right {
    padding: 30px 24px;
    display: flex;
  }

  .s3-media-area {
    height: 60vh;
    min-height: 300px;
  }

  .s3-lanes-container {
    flex-direction: row;
    gap: 4px;
    padding: 0 4px;
  }

  .s3-photo-scroll.s3-lane {
    flex: 1;
    flex-direction: column;
    align-items: center;
  }

  .s3-photo-track {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    height: max-content;
    align-items: center;
  }

  .s3-track-1 { animation: s3scrollUp 40s linear infinite; }
  .s3-track-2 { animation: s3scrollDown 35s linear infinite; }
  .s3-track-3 { animation: s3scrollUp 45s linear infinite; }

  @keyframes s3scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  @keyframes s3scrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
  }

  .s3-photo {
    width: 90%;
    height: auto;
  }

  .s3-video-wrapper {
    max-height: 160px;
  }

  /* --- S4: Light Painting --- */
  .s4-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s4-left {
    padding: 70px 24px 30px;
  }

  .s4-right {
    padding: 0 24px 24px;
  }

  .s4-video-wrap {
    height: 200px;
    min-height: 150px;
  }

  .s4-photo-grid {
    height: 120px;
  }

  .s4-marquee {
    font-size: 14px;
    padding: 6px 0;
  }

  /* --- S5: Mapping & VJ --- */
  .s5-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s5-left {
    height: 250px;
  }

  .s5-right {
    padding: 30px 24px;
  }

  /* --- S6: Artist Catalogue --- */
  .s6-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s6-left {
    padding: 70px 24px 30px;
  }

  .s6-right {
    height: 300px;
  }

  /* --- S7: Creative Tools --- */
  .s7-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s7-left {
    padding: 70px 24px 30px;
  }

  .s7-left .section-title {
    font-size: clamp(28px, 7vw, 42px) !important;
  }

  .s7-left .section-body {
    font-size: 14px;
    max-width: 100%;
  }

  .s7-right {
    flex-direction: row;
    gap: 8px;
    padding: 10px 16px 16px;
    height: 250px;
  }

  .s7-video-wrap {
    height: 100%;
    flex: 1;
  }

  /* --- S8: Our Clients --- */
  .s8-clients-inner {
    padding: 70px 24px 40px;
  }

  .s8-clients-title {
    font-size: clamp(28px, 7vw, 42px) !important;
  }

  .s8-clients-sub {
    font-size: 10px;
  }

  .s8-clients-logos img {
    max-width: 100%;
    height: auto;
  }

  /* --- S9: Our Team --- */
  .s9-team-inner {
    padding: 70px 24px 40px;
  }

  .s9-team-layout {
    flex-direction: column;
    gap: 30px;
  }

  .s9-card-photo-wrap {
    width: 100px;
    height: 100px;
  }

  .s9-card-name {
    font-size: 18px;
  }

  .s9-extended-team {
    padding: 20px;
  }

  .s9-extended-text {
    font-size: 13px;
  }

  /* --- S10: Contact --- */
  .contact-title {
    font-size: clamp(28px, 7vw, 42px) !important;
  }

  .contact-social span {
    font-size: 12px !important;
  }

  /* --- Hide desktop nav arrows on mobile --- */
  .nav-arrow {
    display: none;
  }

  /* --- Intro splash --- */
  .intro-splash {
    align-items: center;
    justify-content: center;
  }

  .intro-text {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .intro-brand {
    font-size: 36px !important;
    text-align: center;
    width: 100%;
  }

  .intro-word {
    font-size: 14px;
    text-align: center;
  }
}
