    /* ============================================
       RESET & FOUNDATION
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --black: #000000;
      --near-black: #0a0a0a;
      --white: #ffffff;
      --cream: #E9E1D0;
      --warm-gray: #F5F2ED;
      --gold: #C9A15C;
      --gold-glow: rgba(201, 161, 92, 0.4);
      --text: #1a1a1a;
      --text-muted: #666;
    }
    
    html { 
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }
    
    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }
    
    ::selection { background: var(--gold); color: var(--black); }

    /* ============================================
       INITIAL CINEMA MODE
       Video plays, UI fades in over it
       ============================================ */
    
    /* Hide UI initially, reveal after cinema moment */
    header {
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .hero-content {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
    }
    
    .sound-toggle {
      opacity: 0;
      transition: opacity 1s ease-out 0.6s;
    }
    
    body.loaded header {
      opacity: 1;
      transform: translateY(0);
    }
    
    body.loaded .hero-content {
      opacity: 1;
      transform: translateY(0);
    }
    
    body.loaded .sound-toggle {
      opacity: 1;
    }

    /* ============================================
       HEADER — Ghost until scrolled
       ============================================ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 32px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    header.solid {
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      padding: 20px 48px;
    }
    
    .logo img {
      height: 65px;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    header.solid .logo img {
      height: 50px;
    }
    
    nav {
      display: flex;
      gap: 44px;
    }
    
    nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      opacity: 0.9;
      transition: opacity 0.3s;
    }
    
    nav a:hover { opacity: 1; }
    
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 20px;
      position: relative;
      z-index: 1001;
    }
    
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--white);
      position: absolute;
      left: 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }
    
    .menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg) translateY(-50%); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg) translateY(50%); }

    /* ============================================
       HERO — TRUE FULL BLEED
       ============================================ */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      background: var(--black);
      overflow: hidden;
    }
    
    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      object-fit: cover;
    }
    
    .hero-video-full {
      z-index: 1;
      /* No transition - instant swap at scene change */
    }
    
    /* Netflix-style gradient overlay - protects left side text area */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        /* Left side protection - strong */
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 25%, transparent 50%),
        /* Bottom protection for buttons */
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 20%, transparent 40%);
      pointer-events: none;
      z-index: 2;
    }
    
    /* Hero content — bottom left, punchy */
    .hero-content {
      position: absolute;
      bottom: 100px;
      left: 60px;
      right: 60px;
      z-index: 10;
      max-width: 800px;
    }
    
    .hero-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    
    .hero-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--white);
    }
    
    .hero-headline {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 32px;
      letter-spacing: -0.02em;
    }
    
    .hero-headline em {
      font-style: italic;
      color: var(--gold);
    }
    
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.8);
      max-width: 500px;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    
    .hero-cta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 20px 40px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .btn-gold {
      background: var(--gold);
      color: var(--black);
    }
    
    .btn-gold:hover {
      background: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
    }
    
    .btn-ghost:hover {
      background: var(--white);
      color: var(--black);
      border-color: var(--white);
    }
    
    /* Sound toggle — pulsing, seductive */
    .sound-toggle {
      position: absolute;
      bottom: 100px;
      right: 60px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      color: var(--white);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.4s;
    }
    
    .sound-toggle:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.3);
    }
    
    /* Pulse animation when muted */
    .sound-toggle.muted {
      animation: pulse 2s ease-in-out infinite;
    }
    
    .sound-toggle.muted:hover {
      animation: none;
    }
    
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
      50% { box-shadow: 0 0 0 12px transparent; }
    }
    
    .sound-icon {
      width: 20px;
      height: 20px;
      position: relative;
    }
    
    .sound-icon::before {
      content: '';
      position: absolute;
      left: 2px;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left: 7px solid currentColor;
    }
    
    .sound-icon::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 14px;
      border: 2px solid currentColor;
      border-left: none;
      border-radius: 0 50% 50% 0;
      opacity: 1;
      transition: opacity 0.3s;
    }
    
    .sound-toggle.muted .sound-icon::after {
      opacity: 0.3;
    }

    /* ============================================
       INTRO SECTION — Credentials strip
       ============================================ */
    .intro {
      background: var(--near-black);
      padding: 80px 60px;
    }
    
    .intro-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 80px;
      align-items: center;
    }
    
    .intro-text {
      max-width: 600px;
    }
    
    .intro-text p {
      font-size: 20px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
    }
    
    .intro-text strong {
      color: var(--white);
      font-weight: 500;
    }
    
    .intro-stats {
      display: flex;
      gap: 60px;
    }
    
    .stat {
      text-align: center;
    }
    
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
    }
    
    .stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 12px;
    }

    /* ============================================
       TRUSTED BY — Scrolling marquee on cream
       ============================================ */
    .trusted {
      background: var(--cream);
      padding: 70px 0;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
    }
    
    .trusted h2 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 40px;
    }
    
    .trusted-logos {
      display: flex;
      align-items: center;
      gap: 60px;
      flex-wrap: nowrap;
      width: max-content;
      animation: marquee 25s linear infinite;
    }
    
    .trusted-logos:hover {
      animation-play-state: paused;
    }
    
    .trusted-logos img {
      height: 40px;
      flex-shrink: 0;
      transition: opacity 0.3s;
    }
    
    .trusted-logos img:hover {
      opacity: 0.7;
    }
    
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ============================================
       FEATURED WORK — Immersive horizontal strips
       ============================================ */
    .work-section {
      background: var(--cream);
      padding: 120px 0 0;
    }
    
    .work-header {
      padding: 0 60px 60px;
      max-width: 800px;
    }
    
    .work-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 400;
      margin-bottom: 16px;
    }
    
    .work-header p {
      font-size: 18px;
      color: var(--text-muted);
    }
    
    /* Work items — each is a full-width immersive block */
    .work-item {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 500px;
      max-height: 800px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    
    .work-item-media {
      position: absolute;
      inset: 0;
    }
    
    .work-item-media img,
    .work-item-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .work-item:hover .work-item-media img,
    .work-item:hover .work-item-media video {
      transform: scale(1.03);
    }
    
    .work-item-media video {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
    }
    
    .work-item:hover .work-item-media video {
      opacity: 1;
    }
    
    .work-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
      transition: background 0.5s;
    }
    
    .work-item:hover::after {
      /* Keep same as non-hover - no darkening */
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    }
    
    .work-item-content {
      position: relative;
      z-index: 1;
      padding: 60px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
    }
    
    .work-item-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }
    
    .work-item-info p {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      max-width: 500px;
      line-height: 1.6;
    }
    
    .work-item-link {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: var(--gold);
      color: var(--black);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .work-item:hover .work-item-link {
      opacity: 1;
      transform: translateY(0);
    }
    
    .work-item-link:hover {
      background: var(--white);
    }
    
    /* View all work */
    .work-cta {
      padding: 80px 60px;
      text-align: center;
    }
    
    .btn-dark {
      background: var(--gold);
      color: var(--black);
    }
    .btn-dark-DISABLED {
      background: var(--text);
      color: var(--white);
    }
    
    .btn-dark:hover {
      background: var(--white);
      color: var(--black);
    }
    .btn-dark-hover-DISABLED {
      background: var(--black);
    }

    /* ============================================
       TESTIMONIAL — Full width drama
       ============================================ */
    .testimonial {
      background: var(--near-black);
      padding: 140px 60px;
      position: relative;
      overflow: hidden;
    }
    
    .testimonial::before {
      content: '"';
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 400px;
      line-height: 1;
      color: var(--gold);
      opacity: 0.06;
      pointer-events: none;
    }
    
    .testimonial-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    
    .testimonial-slider {
      min-height: 280px;
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transform: translateX(60px);
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      pointer-events: none;
      will-change: transform, opacity;
    }
    
    .testimonial-slide.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
      pointer-events: auto;
    }
    
    .testimonial-slide.exit-left {
      opacity: 0;
      transform: translateX(-60px);
    }
    
    .testimonial-slide.exit-right {
      opacity: 0;
      transform: translateX(60px);
    }
    
    .testimonial-slide.enter-left {
      transform: translateX(-60px);
      opacity: 0;
    }
    
    .testimonial-slide.enter-right {
      transform: translateX(60px);
      opacity: 0;
    }
    
    .testimonial-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 400;
      font-style: italic;
      line-height: 1.45;
      color: var(--white);
      margin-bottom: 40px;
    }
    
    .testimonial-author {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
    }
    
    .testimonial-author strong {
      color: var(--gold);
      font-weight: 600;
      display: block;
      margin-bottom: 4px;
    }
    
    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-top: 30px;
    }
    
    .testimonial-dot {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: all 0.4s;
      padding: 0;
      position: relative;
    }
    
    .testimonial-dot::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      transition: all 0.4s;
    }
    
    .testimonial-dot:hover::after {
      background: rgba(255,255,255,0.4);
      transform: translate(-50%, -50%) scale(1.3);
    }
    
    .testimonial-dot.active::after {
      background: var(--gold);
      transform: translate(-50%, -50%) scale(1.2);
    }

    /* ============================================
       PHOTOGRAPHY — Grid with hover reveals
       ============================================ */
    .photo-section {
      padding: 120px 60px;
      background: var(--cream);
    }
    
    .photo-header {
      max-width: 600px;
      margin-bottom: 60px;
    }
    
    .photo-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 400;
      margin-bottom: 16px;
    }
    
    .photo-header p {
      font-size: 18px;
      color: var(--text-muted);
    }
    
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    
    .photo-grid img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .photo-grid img:hover {
      transform: scale(1.03);
      box-shadow: 0 30px 60px rgba(0,0,0,0.2);
      z-index: 1;
      position: relative;
    }
    
    .photo-cta {
      text-align: center;
      margin-top: 60px;
    }

    /* ============================================
       FOOTER — Substantial, confident
       ============================================ */
    footer {
      background: var(--black);
      color: var(--white);
      padding: 100px 60px 50px;
    }
    
    footer::before {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: var(--gold);
      margin-bottom: 60px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1400px;
    }
    
    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 16px;
    }
    
    .footer-brand p {
      color: rgba(255,255,255,0.5);
      font-size: 15px;
      line-height: 1.7;
      max-width: 320px;
    }
    
    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 15px;
      padding: 8px 0;
      transition: color 0.3s;
    }
    
    .footer-col a:hover {
      color: var(--white);
    }
    
    .footer-bottom {
      margin-top: 80px;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }
    
    .footer-bottom a {
      color: rgba(255,255,255,0.3);
      text-decoration: none;
    }
    
    .footer-bottom a:hover {
      color: var(--gold);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1200px) {
      .intro-inner {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      
      .intro-stats {
        justify-content: flex-start;
      }
      
      .photo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    /* Desktop/Mobile video toggle */
    .hero-video-mobile { display: none; }
    .hero-video-desktop { display: block; }
    
    @media (max-width: 768px) {
      .hero-video-mobile { display: block; }
      .hero-video-desktop { display: none; }
      
      header {
        padding: 16px 12px;
      }
      
      .logo img {
        height: 45px;
      }
      
      header.solid {
        padding: 12px 12px;
      }
      
      header.solid .logo img {
        height: 40px;
      }
      
      /* Header background gradient - visible until scroll */
      header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.7) 0%,
          rgba(0,0,0,0.4) 50%,
          transparent 100%
        );
        z-index: -1;
        opacity: 1;
        transition: opacity 0.4s ease;
        pointer-events: none;
      }
      
      header.solid::before {
        opacity: 0;
      }
      
      .menu-toggle {
        display: block;
        z-index: 1003;
      }
      
      nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: var(--black) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 1002 !important;
        padding: 0 !important;
      }
      
      nav.open {
        opacity: 1 !important;
        visibility: visible !important;
      }
      
      nav a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 26px !important;
        padding: 18px !important;
        margin: 0 !important;
        opacity: 1 !important;
      }
      
      /* Mobile hero - height and layout handled by enhanced mobile section below */
      .hero {
        background: var(--black);
      }
      
      /* Hero video styles now in the enhanced mobile section below */
      
      .hero::after {
        display: none; /* No overlay needed - using ::before in enhanced section */
      }
      
      /* Hero content styles handled by enhanced mobile section below */
      
      .btn {
        padding: 14px 24px;
        font-size: 12px;
      }
      
      .sound-toggle {
        right: 20px;
        bottom: 32px;
        padding: 8px 14px;
        font-size: 10px;
        display: none; /* Hide on mobile - too cluttered */
      }
      
      .intro {
        padding: 50px 20px;
      }
      
      .intro-inner {
        gap: 32px;
      }
      
      .intro-text p {
        font-size: 16px;
      }
      
      .intro-stats {
        flex-wrap: wrap;
        gap: 32px;
      }
      
      .stat-number {
        font-size: 36px;
      }
      
      .stat-label {
        font-size: 10px;
      }
      
      .trusted {
        padding: 40px 20px;
      }
      
      .trusted-logos img {
        height: 30px;
      }
      
      .work-section {
        padding-top: 60px;
      }
      
      .work-header {
        padding: 0 20px 40px;
      }
      
      .work-header h2 {
        font-size: 32px;
      }
      
      .work-cta {
        padding: 50px 20px;
      }
      
      /* Work items - use natural 16:9 aspect ratio */
      .work-item {
        height: auto;
        min-height: auto;
        aspect-ratio: 16/9;
      }
      
      .work-item-media img,
      .work-item-media video {
        object-fit: cover;
        object-position: center center;
      }
      
      .work-item-content {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      
      .work-item-info h3 {
        font-size: 22px;
      }
      
      .work-item-info p {
        font-size: 13px;
      }
      
      .work-item-link {
        opacity: 1;
        transform: none;
        padding: 10px 18px;
        font-size: 11px;
      }
      
      .photo-section {
        padding: 60px 20px;
      }
      
      .photo-header h2 {
        font-size: 32px;
      }
      
      .photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      
      .photo-cta {
        margin-top: 40px;
      }
      
      .testimonial {
        padding: 70px 20px;
      }
      
      .testimonial::before {
        font-size: 150px;
        top: 30px;
      }
      
      .testimonial-quote {
        font-size: 20px;
      }
      
      .testimonial-slider {
        min-height: 220px;
      }
      
      footer {
        padding: 50px 20px 30px;
      }
      
      footer::before {
        width: 50px;
        margin-bottom: 40px;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      
      .footer-brand h3 {
        font-size: 20px;
      }
      
      .footer-bottom {
        margin-top: 40px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
      
      .cinema-overlay { display: none; }
      header, .hero-content, .sound-toggle { opacity: 1; }
    }

    /* ==========================================
       MOBILE HOMEPAGE ENHANCEMENTS
       ========================================== */
    @media (max-width: 768px) {
      
      /* HERO — Full screen vertical video */
      .hero {
        position: relative !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 600px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        overflow: hidden !important;
      }
      
      .hero-video-desktop { display: none !important; }
      .hero-video-mobile { 
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        z-index: 0 !important;
      }
      
      .hero-video-mobile.hero-video-full {
        z-index: 1 !important;
        /* No transition - instant swap at scene change */
      }
      
      /* Bottom gradient for text */
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top, 
          rgba(0,0,0,0.85) 0%, 
          rgba(0,0,0,0.4) 25%,
          rgba(0,0,0,0.1) 45%,
          transparent 60%
        );
        z-index: 1;
        pointer-events: none;
      }
      
      .hero-content {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        max-width: 100% !important;
        z-index: 2 !important;
        padding: 0 24px 40px !important;
        text-align: center !important;
      }
      
      /* More space above "Documentary Filmmaker" label */
      .hero-label {
        font-size: 10px !important;
        margin-bottom: 16px !important;
        margin-top: 24px !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroIn 0.8s 0.3s forwards;
        justify-content: center !important;
        text-align: center !important;
      }
      
      .hero-label::before {
        display: none !important;
      }
      
      .hero-headline {
        font-size: 32px !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroIn 0.8s 0.5s forwards;
      }
      
      .hero-sub {
        font-size: 14px !important;
        margin-bottom: 24px !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.5 !important;
        text-align: center !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroIn 0.8s 0.7s forwards;
      }
      
      .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        opacity: 0;
        transform: translateY(20px);
        animation: heroIn 0.8s 0.9s forwards;
        align-items: center !important;
      }
      
      .hero-cta .btn {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        padding: 14px !important;
        font-size: 13px !important;
      }
      
      .hero-cta .btn-ghost {
        background: rgba(255,255,255,0.1) !important;
        backdrop-filter: blur(8px);
      }
      
      .sound-toggle { display: none !important; }
      
      @keyframes heroIn {
        to { opacity: 1; transform: translateY(0); }
      }
      
      /* INTRO & STATS */
      .intro {
        padding: 48px 24px;
      }
      
      .intro-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
      }
      
      .intro-text p {
        font-size: 16px;
        text-align: center;
      }
      
      .intro-stats {
        display: flex;
        justify-content: center;
        gap: 48px;
      }
      
      .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        line-height: 1;
      }
      
      .stat-label {
        font-size: 11px;
        margin-top: 8px;
      }
      
      /* TRUSTED LOGOS — Single row marquee */
      .trusted {
        padding: 24px 0;
        overflow: hidden;
        background: var(--cream);
      }
      
      .trusted h2 {
        font-size: 10px;
        text-align: center;
        margin-bottom: 16px;
        letter-spacing: 0.1em;
      }
      
      .trusted-logos {
        display: flex;
        flex-wrap: nowrap;
        gap: 48px;
        width: max-content;
        animation: marquee 20s linear infinite;
        animation-delay: 0.5s;
      }
      
      .trusted-logos img {
        height: 32px;
        width: auto;
        opacity: 0.7;
        flex-shrink: 0;
      }
      
      @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      
      /* FEATURED WORK — Swipe Carousel */
      .work-section {
        padding: 56px 0;
      }
      
      .work-header {
        padding: 0 24px 28px;
      }
      
      .work-header h2 {
        font-size: 30px;
        margin-bottom: 8px;
      }
      
      .work-header p {
        font-size: 14px;
      }
      
      /* Work items hidden via JavaScript after carousel creation */
      
      /* Mobile carousel */
      .mobile-work-carousel {
        display: flex;
        gap: 16px;
        padding: 0 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      
      .mobile-work-carousel::-webkit-scrollbar { display: none; }
      
      .mobile-work-card {
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: center;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: var(--black);
        aspect-ratio: 3/4;
      }
      
      .mobile-work-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .mobile-work-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 70%);
        pointer-events: none;
      }
      
      .mobile-work-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 24px;
        z-index: 1;
      }
      
      .mobile-work-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 400;
        color: var(--white);
        margin-bottom: 8px;
      }
      
      .mobile-work-card p {
        font-size: 13px;
        color: rgba(255,255,255,0.75);
        line-height: 1.5;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      
      .mobile-work-card a {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        text-decoration: none;
      }
      
      .mobile-work-card a::after {
        content: ' →';
      }
      
      /* Carousel dots */
      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-top: 24px;
      }
      
      .carousel-dot {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
      }
      
      .carousel-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0,0,0,0.2);
        transition: all 0.3s;
      }
      
      .carousel-dot.active::after {
        background: var(--gold);
        transform: translate(-50%, -50%) scale(1.25);
      }
      
      .work-cta {
        padding: 32px 24px 0;
        text-align: center;
      }
      
      .work-cta .btn { width: 100%; max-width: 280px; }
      
      /* TESTIMONIALS */
      .testimonial {
        padding: 56px 24px;
      }
      
      .testimonial-quote {
        font-size: 22px;
        line-height: 1.4;
      }
      
      .testimonial-quote::before {
        font-size: 48px;
        margin-bottom: 16px;
      }
      
      /* FINAL CTA */
      .cta-final h2 {
        font-size: 28px;
      }
      
      .cta-final .btn {
        width: 100%;
        max-width: 280px;
      }
      
      /* PHOTOGRAPHY SECTION */
      .photo-section {
        padding: 48px 24px;
      }
      
      .photo-header h2 {
        font-size: 28px;
        margin-bottom: 8px;
      }
      
      .photo-header p {
        font-size: 14px;
        margin-bottom: 24px;
      }
      
      .photo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }
      
      .photo-grid img {
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 8px;
      }
      
      .photo-cta {
        text-align: center;
        margin-top: 24px;
      }
      
      /* FOOTER — Compact for mobile */
      footer {
        padding: 40px 24px 24px;
        background: var(--near-black);
      }
      
      .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
      }
      
      .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 8px;
      }
      
      .footer-brand h3 {
        font-size: 18px;
        margin-bottom: 8px;
      }
      
      .footer-brand p {
        font-size: 13px;
        line-height: 1.5;
        opacity: 0.7;
      }
      
      .footer-col h4 {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        opacity: 0.5;
      }
      
      .footer-col a {
        display: block;
        font-size: 14px;
        padding: 6px 0;
        opacity: 0.8;
      }
      
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        margin-top: 32px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 12px;
        opacity: 0.5;
      }
    }
