
    :root {
      --ds-primary: #2ea3f2;
      --ds-secondary: #ff3366;
      --ds-accent: #00ff88;
      --ds-bg: #0a0a0a;
      --ds-surface: #111111;
      --ds-text: #ffffff;
      --ds-text-dim: rgba(255,255,255,0.5);
      --ds-border: rgba(255,255,255,0.08);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--ds-bg);
      color: var(--ds-text);
      font-family: 'Space Grotesk', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Flowing Background Gradient */
    .flow-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(46,163,242,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255,51,102,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0,255,136,0.04) 0%, transparent 40%);
    }

    /* Minimal Fixed Logo */
    .logo {
      position: fixed;
      left: clamp(20px, 4vw, 50px);
      top: clamp(20px, 4vw, 40px);
      z-index: 1000;
      mix-blend-mode: difference;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(14px, 2vw, 18px);
      letter-spacing: 0.3em;
      color: var(--ds-text);
    }

    /* Floating Nav Dots */
    .nav-dots {
      position: fixed;
      right: clamp(20px, 4vw, 50px);
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 20px;
      mix-blend-mode: difference;
    }

    .nav-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: transparent;
      border: 1px solid var(--ds-text-dim);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .nav-dot::after {
      content: attr(data-label);
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s ease;
      color: var(--ds-text);
    }

    .nav-dot:hover::after {
      opacity: 1;
    }

    .nav-dot:hover,
    .nav-dot.active {
      background: var(--ds-text);
      transform: scale(1.3);
    }

    /* Main Content Flow */
    .content-flow {
      position: relative;
      z-index: 1;
    }

    /* Opening Video Hero - Stacked Layout */
    .hero {
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, 
        rgba(10,10,10,0) 0%, 
        rgba(10,10,10,0) 70%,
        var(--ds-bg) 100%
      );
      pointer-events: none;
    }

    .hero-video {
      width: 100%;
      height: auto;
      display: block;
      background: var(--ds-bg);
    }

    /* Content below video - tight spacing */
    .hero-content {
      padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 80px) clamp(60px, 10vw, 120px);
      background: var(--ds-bg);
      position: relative;
      z-index: 5;
      margin-top: -2px;
    }

    .hero-title-wrap {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hero-visual-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 18vw, 250px);
      line-height: 0.85;
      letter-spacing: -0.02em;
      color: var(--ds-text);
    }

    .hero-storyteller {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 18vw, 250px);
      line-height: 0.85;
      letter-spacing: -0.02em;
      color: transparent;
      -webkit-text-stroke: 1px var(--ds-text);
    }

    .hero-subtitle {
      font-size: clamp(12px, 2vw, 16px);
      color: var(--ds-text-dim);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      max-width: 400px;
      margin-top: clamp(30px, 5vw, 60px);
    }

    .sound-toggle {
      position: fixed;
      bottom: clamp(20px, 5vw, 40px);
      right: clamp(20px, 5vw, 50px);
      z-index: 1000;
      width: 50px;
      height: 50px;
      border: 1px solid var(--ds-border);
      border-radius: 50%;
      background: rgba(10,10,10,0.6);
      backdrop-filter: blur(10px);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .sound-toggle:hover {
      border-color: var(--ds-primary);
      background: rgba(46,163,242,0.1);
    }

    .sound-toggle svg {
      width: 18px;
      height: 18px;
      fill: var(--ds-text);
    }

    .sound-toggle .sound-on { display: none; }
    .sound-toggle.unmuted .sound-off { display: none; }
    .sound-toggle.unmuted .sound-on { display: block; }

    /* Scroll Indicator */
    .scroll-line {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: clamp(40px, 8vw, 80px);
    }

    .scroll-line span {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ds-text-dim);
    }

    .scroll-line-bar {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--ds-text-dim), transparent);
      position: relative;
      overflow: hidden;
    }

    .scroll-line-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 20px;
      background: var(--ds-primary);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { transform: translateY(-100%); opacity: 0; }
      50% { transform: translateY(200%); opacity: 1; }
    }

    /* Film Work - Continuous Flow */
    .films {
      padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px);
      position: relative;
    }

    .films::before {
      content: 'CINEMA';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 25vw, 300px);
      letter-spacing: -0.02em;
      color: transparent;
      -webkit-text-stroke: 1px var(--ds-border);
      pointer-events: none;
      white-space: nowrap;
      z-index: 0;
    }

    .film-item {
      position: relative;
      margin-bottom: clamp(60px, 15vh, 150px);
    }

    .film-item:nth-child(odd) {
      margin-left: auto;
      margin-right: 5%;
      width: clamp(300px, 70vw, 900px);
    }

    .film-item:nth-child(even) {
      margin-right: auto;
      margin-left: 5%;
      width: clamp(280px, 60vw, 800px);
    }

    .film-video-wrap {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--ds-surface);
    }

    .film-video-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid var(--ds-border);
      pointer-events: none;
      z-index: 2;
      transition: border-color 0.6s ease;
    }

    .film-item:hover .film-video-wrap::before {
      border-color: var(--ds-primary);
    }

    .film-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .film-item:hover .film-video-wrap video {
      transform: scale(1.03);
    }

    .film-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 20px;
      gap: 20px;
    }

    .film-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(24px, 4vw, 48px);
      letter-spacing: 0.05em;
      line-height: 1;
    }

    .film-info {
      text-align: right;
    }

    .film-category {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ds-primary);
      margin-bottom: 5px;
    }

    .film-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: transparent;
      -webkit-text-stroke: 1px var(--ds-border);
      line-height: 1;
    }

    /* Connecting Line Elements */
    .flow-connector {
      width: 1px;
      height: clamp(80px, 15vh, 150px);
      background: linear-gradient(to bottom, var(--ds-border), transparent);
      margin: 0 auto;
    }

    /* Photography - Organic Flow Grid */
    .photography {
      padding: clamp(80px, 15vh, 150px) clamp(20px, 5vw, 80px);
      position: relative;
    }

    .photo-intro {
      text-align: center;
      margin-bottom: clamp(60px, 10vh, 120px);
    }

    .photo-intro h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 15vw, 180px);
      letter-spacing: -0.02em;
      line-height: 0.9;
      background: linear-gradient(180deg, var(--ds-text) 0%, var(--ds-text-dim) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .photo-intro p {
      font-size: clamp(11px, 1.5vw, 14px);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ds-text-dim);
      margin-top: 20px;
    }

    .photo-river {
      display: flex;
      flex-direction: column;
      gap: clamp(20px, 4vw, 40px);
    }

    .photo-row {
      display: flex;
      gap: clamp(15px, 3vw, 30px);
      align-items: flex-start;
    }

    .photo-row:nth-child(odd) {
      justify-content: flex-start;
      padding-left: 5%;
    }

    .photo-row:nth-child(even) {
      justify-content: flex-end;
      padding-right: 5%;
    }

    .photo-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      flex-shrink: 0;
    }

    .photo-item.small { width: clamp(150px, 20vw, 280px); }
    .photo-item.medium { width: clamp(200px, 30vw, 400px); }
    .photo-item.large { width: clamp(280px, 45vw, 600px); }

    .photo-item img {
      width: 100%;
      height: auto;
      display: block;
      filter: grayscale(40%) contrast(1.1);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .photo-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      transition: border-color 0.4s ease;
    }

    .photo-item:hover img {
      filter: grayscale(0%) contrast(1);
      transform: scale(1.02);
    }

    .photo-item:hover::after {
      border-color: var(--ds-accent);
    }

    /* About - Minimal & Integrated */
    .about {
      padding: clamp(100px, 20vh, 200px) clamp(20px, 5vw, 80px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 8vw, 120px);
      align-items: center;
      position: relative;
    }

    .about-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 80px);
      line-height: 1.1;
      margin-bottom: clamp(20px, 4vw, 40px);
    }

    .about-text h2 .dim {
      color: var(--ds-text-dim);
    }

    .about-text p {
      font-size: clamp(14px, 1.8vw, 18px);
      color: var(--ds-text-dim);
      line-height: 1.8;
      max-width: 500px;
    }

    .about-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .about-img {
      overflow: hidden;
    }

    .about-img:first-child {
      grid-row: span 2;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%);
      transition: all 0.6s ease;
    }

    .about-img:hover img {
      filter: grayscale(0%);
      transform: scale(1.03);
    }

    /* Contact - Clean & Direct */
    .contact {
      padding: clamp(80px, 15vh, 150px) clamp(20px, 5vw, 80px);
      text-align: center;
      position: relative;
    }

    .contact h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 12vw, 150px);
      line-height: 0.9;
      margin-bottom: 40px;
    }

    .contact h2 span {
      display: block;
      color: transparent;
      -webkit-text-stroke: 1px var(--ds-text);
    }

    .contact-links {
      display: flex;
      justify-content: center;
      gap: clamp(30px, 6vw, 80px);
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .contact-link {
      text-decoration: none;
      color: var(--ds-text);
    }

    .contact-link-label {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ds-text-dim);
      display: block;
      margin-bottom: 8px;
    }

    .contact-link-value {
      font-size: clamp(16px, 2.5vw, 24px);
      transition: color 0.3s ease;
    }

    .contact-link:hover .contact-link-value {
      color: var(--ds-primary);
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .social-row a {
      width: 50px;
      height: 50px;
      border: 1px solid var(--ds-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ds-text);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 1px;
      transition: all 0.4s ease;
    }

    .social-row a:hover {
      border-color: var(--ds-primary);
      background: var(--ds-primary);
      color: var(--ds-bg);
    }

    /* Footer */
    footer {
      padding: 40px clamp(20px, 5vw, 80px);
      border-top: 1px solid var(--ds-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--ds-text-dim);
      letter-spacing: 2px;
    }

    /* Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* Responsive */
    @media (max-width: 900px) {
      .nav-dots {
        display: none;
      }

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

      .about-text {
        order: 2;
        text-align: center;
      }

      .about-text p {
        margin: 0 auto;
      }

      .about-images {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
      }

      .film-item:nth-child(odd),
      .film-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
      }

      .photo-row {
        flex-wrap: wrap;
        justify-content: center !important;
        padding: 0 !important;
      }

      .photo-item.small,
      .photo-item.medium,
      .photo-item.large {
        width: calc(50% - 10px);
      }

      .hero-visual-text,
      .hero-storyteller {
        font-size: clamp(50px, 14vw, 150px);
      }
    }

    @media (max-width: 600px) {
      .film-meta {
        flex-direction: column;
        gap: 10px;
      }

      .film-info {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .film-number {
        font-size: 32px;
      }

      .photo-item.small,
      .photo-item.medium,
      .photo-item.large {
        width: 100%;
      }

      .contact-links {
        flex-direction: column;
        gap: 30px;
      }

      footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }
  