/* CB VXUAL — Main Stylesheet */
/* cbvxual.com */

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

    :root {
      --black:     #080808;
      --surface:   #111111;
      --surface2:  #181818;
      --gold:      #C9A84C;
      --gold-dim:  #8A6E2F;
      --gold-pale: #E8D5A0;
      --cream:     #F0EAD6;
      --muted:     #888880;
      --white:     #FAFAF8;
      --rule:      rgba(201,168,76,0.25);
      --display:   'Cormorant Garamond', serif;
      --body:      'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--black); color: var(--cream);
      font-family: var(--body); font-size: 15px; line-height: 1.6;
      -webkit-font-smoothing: antialiased; overflow-x: hidden;
    }

    /* ── TOP ACCENT ── */
    .film-strip {
      position: fixed; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      z-index: 1000; opacity: 0.7;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 48px;
      background: linear-gradient(to bottom, rgba(8,8,8,0.97) 0%, transparent 100%);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px); transition: background 0.3s;
    }
    .nav-logo {
      font-family: var(--display); font-size: 22px; font-weight: 600;
      letter-spacing: 0.18em; color: var(--gold); text-decoration: none; text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--black); background: var(--gold); padding: 10px 22px;
      text-decoration: none; transition: background 0.3s; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-pale); }
    .nav-burger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 4px;
    }
    .nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--gold); }
    .mobile-nav {
      display: none; position: fixed; top: 64px; left: 0; right: 0;
      background: rgba(8,8,8,0.98); z-index: 800; padding: 32px 32px;
      flex-direction: column; gap: 20px; border-bottom: 1px solid var(--rule);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; padding: 4px 0;
    }
    .mobile-nav a:hover { color: var(--gold); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; /* fallback for older browsers */
      min-height: 100dvh; /* accounts for mobile address bar, prevents jump/cut-off */
      display: grid; grid-template-columns: 5px 1fr;
      position: relative; overflow: hidden;
    }
    .hero-rule {
      background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
      opacity: 0.6;
    }
    .hero-content {
      display: flex; flex-direction: column; justify-content: center;
      padding: 140px 80px 80px 60px; position: relative;
    }
    .hero-eyebrow {
      font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 32px;
      display: flex; align-items: center; gap: 16px;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
    .hero-headline {
      font-family: var(--display); font-size: clamp(52px, 8vw, 110px);
      font-weight: 300; line-height: 0.95; color: var(--white); margin-bottom: 40px;
    }
    .hero-headline em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: 13px; color: var(--muted); max-width: 400px;
      line-height: 1.8; margin-bottom: 56px;
    }
    .hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
    .btn-primary {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--black); background: var(--gold); padding: 16px 36px;
      text-decoration: none; transition: background 0.3s;
    }
    .btn-primary:hover { background: var(--gold-pale); }
    .btn-ghost {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); text-decoration: none;
      display: flex; align-items: center; gap: 10px; transition: gap 0.3s;
    }
    .btn-ghost:hover { gap: 16px; }
    .btn-ghost::after { content: '→'; font-size: 14px; }
    .reel-frames {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 42%; overflow: hidden; pointer-events: none;
    }
    .reel-col {
      position: absolute; top: 0; bottom: 0;
      display: flex; flex-direction: column; gap: 4px;
    }
    .reel-col:nth-child(1) { left: 0; width: 48%; }
    .reel-col:nth-child(2) { right: 0; width: 48%; top: -80px; }
    .reel-frame {
      flex-shrink: 0; background: var(--surface2);
      border: 1px solid var(--rule); aspect-ratio: 4/3;
      position: relative; overflow: hidden;
    }
    .reel-frame-inner {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #1a1a0e 0%, #0d0d0d 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .reel-icon { font-size: 28px; opacity: 0.08; color: var(--gold); font-family: var(--display); }
    .reel-frame::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(8,8,8,0.8));
    }
    .hero-scroll-hint {
      position: absolute; bottom: 40px; left: 65px;
      display: flex; align-items: center; gap: 12px;
      font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
    }
    .scroll-line { width: 40px; height: 1px; background: var(--muted); animation: scrollPulse 2s ease-in-out infinite; }
    @keyframes scrollPulse {
      0%,100% { opacity:0.3; width:40px; } 50% { opacity:1; width:60px; }
    }

    /* ── TICKER ── */
    .ticker { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
    .ticker-inner { display: inline-flex; animation: ticker 32s linear infinite; }
    .ticker-item { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); padding: 0 36px; }
    .ticker-dot { color: rgba(8,8,8,0.4); }
    @keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

    /* ── SECTION BASE ── */
    section { padding: 120px 48px; }
    .section-label {
      font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
      display: flex; align-items: center; gap: 16px;
    }
    .section-label::after { content:''; flex:1; height:1px; background:var(--rule); }
    .section-title {
      font-family: var(--display); font-size: clamp(36px, 5vw, 64px);
      font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--gold); }

    /* ── CLIENTS LOGO BAR ── */
    #clients { background: var(--surface); padding: 60px 48px; }
    .clients-inner { display: flex; align-items: center; gap: 0; }
    .clients-label {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap; margin-right: 48px; flex-shrink: 0;
    }
    .clients-logos {
      display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
    }
    .client-logo {
      font-family: var(--display); font-size: 15px; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted); opacity: 0.5; transition: opacity 0.3s;
      white-space: nowrap;
    }
    .client-logo:hover { opacity: 1; color: var(--gold-pale); }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--black); }
    .portfolio-tabs {
      display: flex; margin-bottom: 60px;
      border-bottom: 1px solid var(--rule); flex-wrap: wrap;
    }
    .tab-btn {
      font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted); background: none; border: none;
      border-bottom: 2px solid transparent; padding: 14px 28px;
      cursor: pointer; transition: color 0.3s, border-color 0.3s;
      margin-bottom: -1px; font-family: var(--body);
    }
    .tab-btn:hover { color: var(--cream); }
    .tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Masonry-style grid — vendor-prefixed for full cross-browser consistency */
    .photo-grid {
      -webkit-columns: 3; -moz-columns: 3; columns: 3;
      -webkit-column-gap: 6px; -moz-column-gap: 6px; column-gap: 6px;
    }
    .photo-item {
      position: relative; overflow: hidden; cursor: pointer;
      background: var(--surface2); margin-bottom: 6px;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid;
      display: block;
    }
    .photo-item img {
      width: 100%; height: auto; display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .photo-item:hover img { transform: scale(1.06); }

    /* Cinematic hover overlay */
    .photo-overlay {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 24px;
      background: linear-gradient(
        to top,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.4) 40%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .photo-item:hover .photo-overlay { opacity: 1; }

    /* Gold shimmer line on hover */
    .photo-item::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 3;
    }
    .photo-item:hover::before { transform: scaleX(1); }

    /* Gold corner accent on hover */
    .photo-item::after {
      content: '';
      position: absolute; top: 16px; right: 16px;
      width: 24px; height: 24px;
      border-top: 1.5px solid var(--gold);
      border-right: 1.5px solid var(--gold);
      opacity: 0; transform: translate(4px, -4px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      z-index: 3;
    }
    .photo-item:hover::after { opacity: 1; transform: translate(0, 0); }

    .photo-overlay-title {
      font-family: var(--display); font-size: 20px; font-weight: 400;
      color: var(--white); line-height: 1.2;
      transform: translateY(8px);
      transition: transform 0.4s ease;
    }
    .photo-item:hover .photo-overlay-title { transform: translateY(0); }

    .photo-overlay-sub {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-top: 4px;
      transform: translateY(8px);
      transition: transform 0.4s ease 0.05s;
      opacity: 0;
    }
    .photo-item:hover .photo-overlay-sub { transform: translateY(0); opacity: 1; }

    .photo-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(135deg, #181808 0%, #0e0e0e 100%);
      min-height: 200px;
    }
    .photo-placeholder-icon {
      font-family: var(--display); font-size: 48px; font-weight: 300;
      color: var(--gold); opacity: 0.15; line-height: 1;
    }
    .photo-placeholder-label {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--muted); margin-top: 10px;
    }

    /* ── LOAD MORE ── */
    .load-more-wrap { text-align: center; margin-top: 48px; }
    .load-more-btn {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); background: none;
      border: 1px solid var(--rule); padding: 16px 48px;
      cursor: pointer; font-family: var(--body);
      transition: border-color 0.3s, background 0.3s, color 0.3s;
    }
    .load-more-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

    /* ── VIDEOS ── */
    #videos { background: var(--surface); }
    .video-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
    .video-intro { font-size: 14px; color: var(--muted); line-height: 1.9; }
    .video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }

    /* ── PORTFOLIO MIXED VIDEO+PHOTO ROWS ── */
    .portfolio-videos-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      margin-bottom: 4px;
    }
    .portfolio-video-card {
      background: var(--black);
    }
    .portfolio-video-card .video-embed {
      position: relative; padding-bottom: 56.25%;
      background: var(--surface2); overflow: hidden;
    }
    .portfolio-video-meta {
      padding: 16px 20px;
      border-top: 1px solid var(--rule);
    }
    .portfolio-video-title {
      font-family: var(--display); font-size: 18px; font-weight: 300;
      color: var(--white); margin-bottom: 4px;
    }
    .portfolio-video-tag {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted);
    }

    /* Coming soon state for empty sections */
    .portfolio-coming-soon {
      grid-column: 1 / -1;
      padding: 64px 32px;
      text-align: center;
      border: 1px solid var(--rule);
      background: var(--surface);
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
    }
    .coming-soon-icon {
      font-size: 32px; color: var(--gold); opacity: 0.4;
    }
    .coming-soon-text {
      font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--muted);
    }
    .video-card { background: var(--black); }
    .video-card.featured { grid-column: span 2; }
    .video-embed { position: relative; padding-bottom: 56.25%; background: var(--surface2); overflow: hidden; }
    .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .video-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      background: rgba(8,8,8,0.45);
      cursor: pointer; gap: 16px; transition: background 0.3s;
    }
    .video-placeholder:hover { background: rgba(8,8,8,0.3); }
    .play-circle {
      width: 68px; height: 68px; border-radius: 50%;
      border: 1.5px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s; position: relative; z-index: 2;
    }
    .video-card:hover .play-circle { background: var(--gold); }
    .play-triangle {
      width: 0; height: 0;
      border-top: 11px solid transparent; border-bottom: 11px solid transparent;
      border-left: 18px solid var(--gold); margin-left: 4px; transition: border-left-color 0.3s;
    }
    .video-card:hover .play-triangle { border-left-color: var(--black); }
    .video-placeholder-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
    .video-meta { padding: 24px 28px; background: var(--surface); }
    .video-meta-title { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
    .video-meta-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

    /* ══════════════════════════════════════════
       STORY / ABOUT — CINEMATIC FRAME EDITION
    ══════════════════════════════════════════ */
    #story {
      background: var(--black);
      position: relative;
    }

    /* Subtle background texture for the whole section */
    #story::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(201,168,76,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(201,168,76,0.03) 0%, transparent 40%);
    }

    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }

    /* ── THE CINEMATIC FRAME ── */
    .story-visual {
      position: relative;
      /* Aspect ratio adapts to content — tall enough for portrait images */
      aspect-ratio: 4/5;
      max-height: 720px;
      /* Outer breathing room for corner ornaments */
      padding: 20px;
    }

    /* Outer decorative border */
    .story-frame-outer {
      position: absolute; inset: 0;
      border: 1px solid rgba(201,168,76,0.2);
      pointer-events: none; z-index: 3;
    }

    /* Inner border — double frame effect */
    .story-frame-inner {
      position: absolute; inset: 12px;
      border: 1px solid rgba(201,168,76,0.12);
      pointer-events: none; z-index: 3;
    }

    /* ── ORNATE CORNER PIECES — all four corners ── */
    .story-corner {
      position: absolute; width: 44px; height: 44px;
      z-index: 4; pointer-events: none;
    }
    .story-corner svg { width: 100%; height: 100%; }

    .story-corner-tl { top: 4px; left: 4px; }
    .story-corner-tr { top: 4px; right: 4px; transform: scaleX(-1); }
    .story-corner-bl { bottom: 4px; left: 4px; transform: scaleY(-1); }
    .story-corner-br { bottom: 4px; right: 4px; transform: scale(-1); }

    /* ── FILMSTRIP PERFORATIONS on sides ── */
    .story-perfs {
      position: absolute; top: 20px; bottom: 20px;
      width: 18px; z-index: 4; pointer-events: none;
      display: flex; flex-direction: column;
      justify-content: space-evenly; align-items: center;
    }
    .story-perfs-left { left: 4px; }
    .story-perfs-right { right: 4px; }
    .story-perf {
      width: 8px; height: 12px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 1px; background: rgba(201,168,76,0.06);
      flex-shrink: 0;
    }

    /* ── IMAGE AREA ── */
    .story-img-main {
      position: absolute;
      inset: 20px;
      background: #0a0a0a;
      overflow: hidden;
      z-index: 2;
    }

    /* Blurred backdrop — same image, oversized to fill, blurred */
    #storySlideshowBg {
      position: absolute;
      inset: -30px;
      width: calc(100% + 60px);
      height: calc(100% + 60px);
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      filter: blur(22px) brightness(0.35) saturate(0.6);
      will-change: opacity;
      z-index: 0;
    }

    /* Foreground image — contained, NEVER cropped, always fully visible */
    #storySlideshowImg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      will-change: opacity;
      z-index: 1;
    }

    .story-slide-overlay {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.1) 0%,
        rgba(8,8,8,0.0) 30%,
        rgba(8,8,8,0.45) 100%
      );
      pointer-events: none;
    }

    /* ── YEAR BADGE — bottom left over image ── */
    .story-year-badge {
      position: absolute;
      bottom: 36px; left: 36px;
      background: var(--gold); color: var(--black);
      padding: 16px 22px; text-align: center;
      z-index: 5;
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }
    .story-year {
      font-family: var(--display); font-size: 36px;
      font-weight: 600; line-height: 1;
    }
    .story-year-label {
      font-size: 8px; letter-spacing: 0.2em;
      text-transform: uppercase; margin-top: 4px;
    }

    /* ── ACCENT BOX — top right ── */
    .story-accent {
      position: absolute;
      top: 36px; right: 36px;
      width: 100px; height: 100px;
      border: 1px solid rgba(201,168,76,0.5);
      background: rgba(8,8,8,0.7);
      display: flex; align-items: center; justify-content: center;
      z-index: 5;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }
    .story-accent-inner {
      font-family: var(--display); font-size: 10px; font-weight: 300;
      color: var(--gold); text-transform: uppercase;
      letter-spacing: 0.15em; text-align: center; line-height: 1.8;
    }

    /* ── STORY TEXT SIDE ── */
    .story-body { font-size: 15px; color: var(--muted); line-height: 1.95; margin-bottom: 28px; }
    .story-body strong { color: var(--cream); font-weight: 400; }

    .story-pull {
      font-family: var(--display); font-size: clamp(20px, 2.5vw, 30px);
      font-weight: 300; font-style: italic; color: var(--gold);
      border-left: 2px solid var(--gold); padding-left: 28px;
      line-height: 1.5; margin: 40px 0;
      position: relative;
    }
    .story-pull::before {
      content: '❝';
      position: absolute; top: -8px; left: -12px;
      font-size: 48px; color: var(--gold); opacity: 0.15;
      font-style: normal; line-height: 1;
    }

    .story-mission {
      background: var(--surface);
      border: 1px solid var(--rule);
      border-left: 3px solid var(--gold);
      padding: 32px; margin-top: 40px;
      position: relative; overflow: hidden;
    }
    .story-mission::before {
      content: '◈';
      position: absolute; bottom: -10px; right: 16px;
      font-size: 80px; color: var(--gold); opacity: 0.04;
      line-height: 1; pointer-events: none;
    }
    .story-mission-label {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .story-mission-text { font-size: 14px; color: var(--cream); line-height: 1.8; }

    /* ── TEAM ── */
    #team { background: var(--surface); }
    .team-intro { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 600px; margin-bottom: 72px; }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .team-card { background: var(--black); overflow: hidden; }
    .team-photo {
      aspect-ratio: 3/4; background: var(--surface2);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .team-photo img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s; }
    .team-card:hover .team-photo img { transform: scale(1.04); }
    .team-photo-placeholder {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; width: 100%; height: 100%;
      background: linear-gradient(135deg, #181808, #0e0e0e);
    }
    .team-initials {
      font-family: var(--display); font-size: 64px; font-weight: 300;
      color: var(--gold); opacity: 0.2; line-height: 1;
    }
    .team-photo-label {
      font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
    }
    .team-info { padding: 28px 32px 36px; }
    .team-name {
      font-family: var(--display); font-size: 28px; font-weight: 400;
      color: var(--white); margin-bottom: 6px;
    }
    .team-role {
      font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .team-bio { font-size: 13px; color: var(--muted); line-height: 1.8; }

    /* ── TEAM ACKNOWLEDGMENT — Extended Circle ── */
    .team-acknowledgment { margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--rule); }

    .team-ack-label {
      display: flex; align-items: center; gap: 20px;
      margin-bottom: 48px;
    }
    .team-ack-line { flex: 1; height: 1px; background: var(--rule); }
    .team-ack-text {
      font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap;
    }

    .team-ack-card {
      display: grid; grid-template-columns: 280px 1fr;
      gap: 64px; align-items: center;
      background: var(--surface); border: 1px solid var(--rule);
      padding: 48px;
    }

    .team-ack-photo {
      aspect-ratio: 3/4; overflow: hidden; background: var(--surface2);
      position: relative;
    }
    .team-ack-photo img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: grayscale(20%);
      transition: filter 0.4s ease;
    }
    .team-ack-card:hover .team-ack-photo img { filter: grayscale(0%); }

    .team-ack-name {
      font-family: var(--display); font-size: 36px; font-weight: 300;
      color: var(--white); margin-bottom: 8px;
    }
    .team-ack-role {
      font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
    }
    .team-ack-bio {
      font-size: 14px; color: var(--muted); line-height: 1.95;
      max-width: 560px;
    }
    .team-ack-bio em { color: var(--cream); font-style: normal; }

    /* Responsive acknowledgment */
    @media (max-width: 960px) {
      .team-ack-card { grid-template-columns: 200px 1fr; gap: 40px; padding: 36px; }
    }
    @media (max-width: 600px) {
      .team-ack-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
      .team-ack-photo { aspect-ratio: 1/1; }
    }

    /* ── SERVICES ── */
    #services { background: var(--black); }
    .services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
    .services-intro { font-size: 14px; color: var(--muted); line-height: 1.9; }
    /* ── SERVICE & PACKAGE TABS ── */
    .service-tabs {
      display: flex; gap: 0; margin-bottom: 48px;
      border-bottom: 1px solid var(--rule); flex-wrap: wrap;
    }
    .svc-tab-btn {
      font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted); background: none; border: none;
      border-bottom: 2px solid transparent; padding: 14px 32px;
      cursor: pointer; transition: color 0.3s, border-color 0.3s;
      margin-bottom: -1px; font-family: var(--body);
    }
    .svc-tab-btn:hover { color: var(--cream); }
    .svc-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
    .svc-panel { display: none; }
    .svc-panel.active { display: block; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .service-card {
      background: var(--surface); padding: 48px 36px;
      border-bottom: 2px solid transparent; transition: border-color 0.3s, background 0.3s;
    }
    .service-card:hover { background: #0f0f0a; border-bottom-color: var(--gold); }
    .service-num { font-family: var(--display); font-size: 13px; color: var(--gold-dim); letter-spacing: 0.1em; margin-bottom: 28px; }
    .service-icon {
      font-size: 22px; margin-bottom: 20px; display: block;
      color: var(--gold); opacity: 0.7;
      letter-spacing: 0.05em;
    }
    .service-name { font-family: var(--display); font-size: 26px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
    .service-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

    /* ── PACKAGES ── */
    #packages { background: var(--surface); }
    .packages-intro { font-size: 14px; color: var(--muted); line-height: 1.9; max-width: 560px; margin-bottom: 72px; }
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .package-card {
      background: var(--black); padding: 48px 40px;
      border: 1px solid transparent; transition: border-color 0.3s;
      position: relative;
    }
    .package-card:hover { border-color: var(--rule); }
    .package-card.featured {
      background: #0f0f05; border-color: var(--gold);
    }
    .package-badge {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--black);
      font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 5px 16px; white-space: nowrap;
    }
    .package-tier {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .package-name {
      font-family: var(--display); font-size: 32px; font-weight: 300;
      color: var(--white); margin-bottom: 8px; line-height: 1;
    }
    .package-price {
      font-family: var(--display); font-size: 48px; font-weight: 300;
      color: var(--gold); line-height: 1; margin-bottom: 4px;
    }
    .package-price-note { font-size: 11px; color: var(--muted); margin-bottom: 36px; }
    .package-divider { height: 1px; background: var(--rule); margin-bottom: 32px; }
    .package-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
    .package-features li {
      font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
    }
    .package-features li::before { content: '✦'; color: var(--gold); font-size: 9px; margin-top: 3px; flex-shrink: 0; }
    .package-cta {
      display: block; text-align: center;
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--black); background: var(--gold);
      padding: 14px 24px; text-decoration: none; transition: background 0.3s;
    }
    .package-card:not(.featured) .package-cta {
      background: none; color: var(--gold); border: 1px solid var(--rule);
    }
    .package-card:not(.featured) .package-cta:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
    .package-cta:hover { background: var(--gold-pale); }
    .packages-note {
      text-align: center; font-size: 12px; color: var(--muted);
      margin-top: 48px; line-height: 1.8;
    }
    .packages-note a { color: var(--gold); text-decoration: none; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--black); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 64px;
    }
    /* Last card spans full width if it ends up alone on a row */
    .testimonials-grid .testimonial-card:last-child:nth-child(3n+1) {
      grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%;
    }
    .testimonial-card { background: var(--surface); padding: 48px 40px; }
    .testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 28px; }
    .testimonial-quote {
      font-family: var(--display); font-size: 20px; font-weight: 300; font-style: italic;
      color: var(--white); line-height: 1.6; margin-bottom: 32px;
    }
    .testimonial-quote::before { content: '"'; color: var(--gold); }
    .testimonial-quote::after { content: '"'; color: var(--gold); }
    .testimonial-divider { height: 1px; background: var(--rule); margin-bottom: 24px; }
    .testimonial-author { display: flex; align-items: center; gap: 16px; }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--surface2); border: 1px solid var(--rule);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-family: var(--display); font-size: 16px; color: var(--gold); font-weight: 300;
    }
    .testimonial-name { font-size: 13px; color: var(--white); font-weight: 400; }
    .testimonial-title { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

    /* ── PROCESS ── */
    #process { background: var(--surface); }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 72px; }
    .process-step { background: var(--black); padding: 48px 36px; }
    .step-letter { font-family: var(--display); font-size: 80px; font-weight: 300; color: var(--gold); opacity: 0.13; line-height: 1; margin-bottom: 20px; }
    .step-name { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

    /* ── FAQ ── */
    #faq { background: var(--black); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; }
    .faq-intro { font-size: 14px; color: var(--muted); line-height: 1.9; }
    .faq-intro p { margin-bottom: 20px; }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--rule); }
    .faq-question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 0; gap: 20px; text-align: left; font-family: var(--body);
    }
    .faq-question-text {
      font-size: 14px; color: var(--cream); line-height: 1.4; font-weight: 400;
      transition: color 0.3s;
    }
    .faq-item.open .faq-question-text { color: var(--gold); }
    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--gold); transition: transform 0.3s, background 0.3s;
      font-style: normal;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,0.1); }
    .faq-answer {
      font-size: 13px; color: var(--muted); line-height: 1.9;
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

    /* ── CONTACT ── */
    #contact { background: var(--surface); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
    .contact-headline {
      font-family: var(--display); font-size: clamp(40px, 5vw, 64px);
      font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 24px;
    }
    .contact-headline em { font-style: italic; color: var(--gold); }
    .contact-body { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
    .contact-detail {
      display: flex; align-items: center; gap: 16px;
      font-size: 13px; color: var(--cream); text-decoration: none; transition: color 0.3s;
    }
    .contact-detail:hover { color: var(--gold); }
    .contact-detail-icon {
      width: 36px; height: 36px; border: 1px solid var(--rule);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0; color: var(--gold);
    }
    .social-row { display: flex; gap: 12px; }
    .social-btn {
      width: 40px; height: 40px; border: 1px solid var(--rule);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
    .form-input, .form-select, .form-textarea {
      background: var(--black); border: 1px solid rgba(201,168,76,0.18);
      color: var(--cream); font-family: var(--body); font-size: 14px;
      padding: 14px 18px; outline: none; transition: border-color 0.3s; width: 100%; appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
    .form-textarea { resize: vertical; min-height: 130px; }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
    .form-select option { background: var(--black); color: var(--cream); }
    .form-note { font-size: 11px; color: var(--muted); line-height: 1.6; }
    .form-submit {
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--black); background: var(--gold); border: none;
      padding: 16px 36px; cursor: pointer; transition: background 0.3s;
      align-self: flex-start; font-family: var(--body);
    }
    .form-submit:hover { background: var(--gold-pale); }
    .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
    .form-success {
      display: none;
      margin-top: 8px;
    }
    .form-success.visible {
      display: block;
      animation: successFadeIn 0.6s ease forwards;
    }
    @keyframes successFadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .success-inner {
      position: relative;
      border: 1px solid var(--gold);
      background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(8,8,8,0.8) 100%);
      padding: 36px 32px;
      overflow: hidden;
      display: flex; align-items: center; gap: 28px;
    }

    /* Sweeping gold shimmer across on reveal */
    .success-inner::before {
      content: '';
      position: absolute; top: 0; left: -100%; bottom: 0;
      width: 60%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
      animation: successShimmer 1.2s ease 0.4s forwards;
    }
    @keyframes successShimmer {
      from { left: -100%; }
      to   { left: 150%; }
    }

    /* Top gold line that draws across */
    .success-inner::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0); transform-origin: left;
      animation: successLine 0.8s ease 0.2s forwards;
    }
    @keyframes successLine {
      to { transform: scaleX(1); }
    }

    /* SVG icon — circle draws then checkmark appears */
    .success-icon {
      flex-shrink: 0;
      width: 52px; height: 52px;
      position: relative; z-index: 1;
    }
    .success-icon svg { width: 52px; height: 52px; }

    .success-circle {
      stroke-dasharray: 138;
      stroke-dashoffset: 138;
      animation: drawCircle 0.7s ease 0.3s forwards;
    }
    @keyframes drawCircle {
      to { stroke-dashoffset: 0; }
    }

    .success-check {
      stroke-dasharray: 30;
      stroke-dashoffset: 30;
      animation: drawCheck 0.4s ease 0.9s forwards;
    }
    @keyframes drawCheck {
      to { stroke-dashoffset: 0; }
    }

    /* Text */
    .success-text { position: relative; z-index: 1; flex: 1; }
    .success-headline {
      font-family: var(--display); font-size: 28px; font-weight: 300;
      color: var(--white); line-height: 1; margin-bottom: 8px;
      opacity: 0; animation: successTextIn 0.5s ease 0.8s forwards;
    }
    .success-sub {
      font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); opacity: 0;
      animation: successTextIn 0.5s ease 1s forwards;
    }
    @keyframes successTextIn {
      from { opacity: 0; transform: translateX(-8px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* Floating diamonds */
    .success-diamonds {
      position: absolute; right: 24px; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 6px;
      align-items: center; z-index: 1;
    }
    .sd {
      color: var(--gold); font-size: 10px; opacity: 0;
      animation: sdFloat 0.4s ease forwards;
    }
    .sd1 { animation-delay: 1.1s; }
    .sd2 { animation-delay: 1.25s; font-size: 14px; }
    .sd3 { animation-delay: 1.4s; }
    @keyframes sdFloat {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 0.6; transform: translateY(0); }
    }

    .form-error {
      display: none; background: rgba(180,40,40,0.08);
      border: 1px solid rgba(180,40,40,0.3); padding: 16px 20px;
      font-size: 13px; color: #e07070;
    }

    /* ── FOOTER ── */
    footer { background: var(--black); border-top: 1px solid var(--rule); padding: 64px 48px 48px; }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px;
    }
    .footer-brand {}
    .footer-logo-text {
      font-family: var(--display); font-size: 24px; font-weight: 600;
      letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
    }
    .footer-tagline { font-size: 12px; color: var(--muted); line-height: 1.8; max-width: 240px; }
    .footer-col-title {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col-links a {
      font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.3s;
    }
    .footer-col-links a:hover { color: var(--cream); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--rule); padding-top: 28px; flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { font-size: 11px; color: var(--muted); }
    .footer-social { display: flex; gap: 12px; }
    .footer-social-btn {
      width: 36px; height: 36px; border: 1px solid var(--rule);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); text-decoration: none; transition: border-color 0.3s, color 0.3s;
    }
    .footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,0.96); align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-close {
      position: absolute; top: 24px; right: 32px; font-size: 28px;
      color: var(--muted); cursor: pointer; background: none; border: none;
      line-height: 1; transition: color 0.3s;
    }
    .lightbox-close:hover { color: var(--gold); }
    .lightbox-img { max-width: 90vw; max-height: 82vh; object-fit: contain; border: 1px solid var(--rule); display: block; }
    .lightbox-placeholder {
      border: 1px solid var(--rule); background: #181808;
      width: min(700px, 90vw); height: min(480px, 75vh);
      display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
    }
    .lightbox-placeholder-icon { font-family: var(--display); font-size: 72px; color: var(--gold); opacity: 0.1; }
    .lightbox-placeholder-text { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
    .lightbox-caption { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
    .lightbox-caption-title { font-family: var(--display); font-size: 22px; font-weight: 300; color: var(--white); }
    .lightbox-caption-sub { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: none; border: 1px solid var(--rule);
      color: var(--gold); font-size: 20px; width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: border-color 0.3s, background 0.3s;
    }
    .lightbox-nav:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════════
       RESPONSIVE — TABLET & MOBILE
    ══════════════════════════════════════════ */

    /* ── TABLET (iPad landscape ~1024px) ── */
    @media (max-width: 1100px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .packages-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .packages-grid .package-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
    }

    /* ── TABLET PORTRAIT (iPad ~768–960px) ── */
    @media (max-width: 960px) {
      nav { padding: 20px 24px; }
      .nav-links, .nav-cta { display: none; }
      .nav-burger { display: flex; }
      .top-bar { padding: 6px 24px; }
      .hero { grid-template-columns: 4px 1fr; }
      .hero-content { padding: 130px 28px 80px; }
      .reel-frames { display: none; }
      .hero-headline { font-size: clamp(48px, 10vw, 80px); }
      .hero-scroll-hint { left: 36px; }
      section { padding: 80px 28px; }
      #clients { padding: 48px 28px; }
      .clients-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
      .clients-logos { gap: 28px; }
      .photo-grid { columns: 2; column-gap: 4px; }
      .video-header { grid-template-columns: 1fr; gap: 20px; }
      .video-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
      .portfolio-videos-row { grid-template-columns: 1fr 1fr; }
      .video-card.featured { grid-column: span 2; }
      .story-grid { grid-template-columns: 1fr; gap: 56px; }
      .story-visual { aspect-ratio: 4/5; max-height: 520px; height: auto; padding: 16px; }
      .story-year-badge { bottom: 28px; left: 28px; }
      .story-accent { top: 28px; right: 28px; }
      .team-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .services-header { grid-template-columns: 1fr; gap: 16px; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .svc-tab-btn { padding: 12px 20px; font-size: 9.5px; }
      .packages-grid { grid-template-columns: 1fr; }
      .packages-grid .package-card:last-child { grid-column: span 1; max-width: 100%; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 2px; }
      .faq-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-grid { grid-template-columns: 1fr; gap: 56px; }
      .form-row { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
      #cookie-banner { padding: 20px 28px; }
      #back-to-top { bottom: 24px; right: 24px; }
    }

    /* ── MOBILE (phones ~480–600px) ── */
    @media (max-width: 600px) {
      .top-bar { padding: 4px 16px; gap: 10px; height: 34px; }
      .lang-btn { padding: 3px 6px; font-size: 8.5px; }
      .theme-btn { font-size: 8px; gap: 4px; }
      .theme-btn-label { display: none; }
      nav { padding: 16px 20px; top: 34px; }
      .mobile-nav { top: 94px; padding: 24px 20px; gap: 18px; }
      .nav-logo { font-size: 18px; }
      .hero { grid-template-columns: 3px 1fr; }
      .hero-content { padding: 110px 20px 72px; }
      .hero-headline { font-size: clamp(40px, 12vw, 64px); line-height: 1; }
      .hero-sub { font-size: 13px; max-width: 100%; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
      .btn-primary { padding: 14px 28px; font-size: 10px; }
      .hero-scroll-hint { display: none; }
      .hero-frame-counter { display: none; } /* mobile only */
      section { padding: 64px 20px; }
      #clients { padding: 40px 20px; }
      .section-title { font-size: clamp(30px, 8vw, 48px); }
      .ticker-item { padding: 0 24px; font-size: 9px; }
      .portfolio-tabs { margin-bottom: 32px; }
      .tab-btn { padding: 12px 12px; font-size: 9px; letter-spacing: 0.12em; }
      .photo-grid { columns: 1; }
      .video-grid { grid-template-columns: 1fr; }
      .portfolio-videos-row { grid-template-columns: 1fr; }
      .video-card.featured { grid-column: span 1; }
      .video-meta { padding: 18px 20px; }
      .video-meta-title { font-size: 18px; }
      .story-visual { aspect-ratio: 3/4; max-height: 400px; height: auto; padding: 12px; }
      .story-year-badge { bottom: 20px; left: 20px; padding: 12px 16px; }
      .story-accent { top: 20px; right: 20px; width: 80px; height: 80px; }
      .story-year { font-size: 28px; }
      .story-corner { width: 32px; height: 32px; }
      .story-perfs { display: none; }
      .story-year { font-size: 28px; }
      .story-pull { font-size: 20px; padding-left: 20px; }
      .story-mission { padding: 24px 20px; }
      .team-grid { grid-template-columns: 1fr; }
      .team-photo { aspect-ratio: 1/1; }
      .team-info { padding: 24px 20px 28px; }
      .team-name { font-size: 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 36px 24px; }
      .svc-tab-btn { padding: 10px 14px; font-size: 9px; letter-spacing: 0.12em; }
      .service-name { font-size: 22px; }
      .package-card { padding: 36px 24px; }
      .package-name { font-size: 26px; }
      .testimonial-card { padding: 36px 24px; }
      .testimonial-quote { font-size: 17px; }
      .process-steps { grid-template-columns: 1fr; }
      .process-step { padding: 36px 24px; }
      .step-letter { font-size: 60px; }
      .faq-question { padding: 20px 0; }
      .faq-question-text { font-size: 13px; }
      .form-row { grid-template-columns: 1fr; }
      .contact-headline { font-size: clamp(32px, 9vw, 52px); }
      .social-row { gap: 10px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      footer { padding: 48px 20px 36px; }
      #cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
      .cookie-btns { width: 100%; justify-content: flex-end; }
      .legal-modal { padding: 16px; }
      .legal-modal-header { padding: 20px 24px; }
      .legal-modal-body { padding: 24px; }
      .lightbox-prev { left: 12px; }
      .lightbox-next { right: 12px; }
      .lightbox-nav { width: 40px; height: 40px; }
      #back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
    }

    /* ── SMALL PHONES (≤380px) ── */
    @media (max-width: 380px) {
      .top-bar { gap: 6px; }
      .lang-btn { padding: 3px 5px; font-size: 8px; }
      .hero-headline { font-size: 38px; }
      .section-title { font-size: 28px; }
      .tab-btn { padding: 10px 10px; font-size: 8.5px; }
    }

    /* ── IPAD PRO / LARGE TABLET (961–1200px) ── */
    @media (min-width: 961px) and (max-width: 1200px) {
      .hero-headline { font-size: clamp(60px, 8vw, 90px); }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      section { padding: 100px 40px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .ticker-inner { animation: none; }
      .scroll-line { animation: none; }
      .photo-item { clip-path: none !important; }
      .reveal { opacity: 1 !important; transform: none !important; }
    }
    /* ── LIGHT THEME ── */
    body.light {
      --black:   #F8F6F1;
      --surface: #EEEAE0;
      --surface2: #E4DFD3;
      --cream:   #2a2a2a;
      --muted:   #6b6660;
      --white:   #1a1a1a;
      --rule:    rgba(201,168,76,0.3);
    }
    body.light .film-strip { opacity: 0.5; }
    body.light nav { background: rgba(248,246,241,0.97) !important; }
    body.light .mobile-nav { background: rgba(248,246,241,0.98); }
    body.light .hero { background: var(--black); }
    body.light .ticker { background: var(--gold); }

    /* ── THEME + LANG SWITCHER BAR ── */
    .top-bar {
      position: fixed; top: 3px; left: 0; right: 0; z-index: 950;
      display: flex; align-items: center; justify-content: flex-end;
      padding: 6px 48px; gap: 16px;
      background: rgba(8,8,8,0.85);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      height: 36px;
    }
    body.light .top-bar { background: rgba(248,246,241,0.92); }

    .top-bar-divider {
      width: 1px; height: 14px; background: var(--rule); opacity: 0.5;
    }

    /* Language switcher */
    .lang-switcher { display: flex; align-items: center; gap: 2px; }
    .lang-btn {
      font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted); background: none; border: none; cursor: pointer;
      padding: 4px 8px; font-family: var(--body);
      transition: color 0.3s; border-right: 1px solid rgba(201,168,76,0.15);
    }
    .lang-btn:last-child { border-right: none; }
    .lang-btn:hover { color: var(--gold); }
    .lang-btn.active { color: var(--gold); }


    /* ── THEME SWITCHER — elegant text pills ── */
    .theme-switcher {
      display: flex; align-items: center; gap: 6px;
    }
    .theme-btn-sep {
      color: rgba(201,168,76,0.3); font-size: 10px; user-select: none;
    }
    .theme-btn {
      display: flex; align-items: center; gap: 5px;
      background: none; border: none; cursor: pointer;
      font-family: var(--body); font-size: 9px;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted); padding: 4px 0;
      transition: color 0.3s;
      border-bottom: 1px solid transparent;
    }
    .theme-btn:hover { color: var(--cream); }
    .theme-btn.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }
    .theme-btn-icon {
      display: flex; align-items: center; justify-content: center;
      width: 10px; height: 10px; flex-shrink: 0;
    }
    .theme-btn-icon svg { width: 10px; height: 10px; }
    .theme-btn-label { line-height: 1; }

    /* ── HERO FILM FRAME COUNTER ── */
    .hero-frame-counter {
      position: absolute;
      bottom: 40px; right: 48px;
      display: flex !important; flex-direction: column; align-items: flex-end;
      gap: 2px; pointer-events: none; z-index: 10;
    }
    .frame-counter-label {
      font-size: 8px; letter-spacing: 0.4em;
      text-transform: uppercase; color: var(--gold);
      opacity: 0.75; font-family: var(--body);
    }
    .frame-counter-num {
      font-family: 'Courier New', monospace;
      font-size: 32px; font-weight: 700;
      color: var(--gold); opacity: 0.65;
      letter-spacing: 0.06em; line-height: 1;
      text-shadow: 0 0 20px rgba(201,168,76,0.4);
      font-variant-numeric: tabular-nums;
    }

    /* Push nav down to make room for top bar */
    nav { top: 36px; }
    .mobile-nav { top: 100px; }


    /* ── LOADING SCREEN ── */
    #loader {
      position: fixed; inset: 0; z-index: 99999;
      background: #050505;
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s;
    }
    #loader.hidden {
      opacity: 0; visibility: hidden; pointer-events: none;
    }

    /* Center content */
    .loader-content {
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      align-items: center;
    }

    /* Logo letters */
    .loader-logo-wrap {
      display: flex; align-items: baseline;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 9vw, 100px);
      font-weight: 300; letter-spacing: 0.28em;
      color: #C9A84C; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .ll-space { width: 0.28em; display: inline-block; }
    .ll {
      display: inline-block;
      opacity: 0; transform: translateY(28px);
      animation: llDrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .ll-0 { animation-delay: 0.15s; }
    .ll-1 { animation-delay: 0.27s; }
    .ll-2 { animation-delay: 0.42s; }
    .ll-3 { animation-delay: 0.54s; }
    .ll-4 { animation-delay: 0.66s; }
    .ll-5 { animation-delay: 0.78s; }
    .ll-6 { animation-delay: 0.90s; }
    @keyframes llDrop {
      0%   { opacity: 0; transform: translateY(28px); }
      60%  { opacity: 1; }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Gold divider line */
    .loader-line {
      width: 0; height: 1px;
      background: linear-gradient(90deg, transparent, #C9A84C, transparent);
      margin-bottom: 16px;
      animation: loaderLineGrow 0.6s ease 1.1s forwards;
    }
    @keyframes loaderLineGrow { to { width: 200px; } }

    /* Tagline */
    .loader-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
      color: #888880; opacity: 0;
      animation: loaderFadeIn 0.6s ease 1.15s forwards;
    }
    @keyframes loaderFadeIn { to { opacity: 1; } }

    /* ── CUSTOM CURSOR — 3D GOLD ARROW ── */
    * { cursor: none !important; }
    .cursor-arrow {
      position: fixed; top: 0; left: 0; z-index: 99998;
      width: 28px; height: 28px;
      pointer-events: none;
      transform-origin: top left;
      transition: transform 0.12s ease, opacity 0.3s;
      filter: drop-shadow(0 2px 6px rgba(201,168,76,0.5))
              drop-shadow(0 1px 2px rgba(0,0,0,0.8));
    }
    .cursor-arrow svg {
      width: 100%; height: 100%;
      transition: transform 0.15s ease;
    }
    .cursor-arrow.hovering {
      transform: scale(1.18);
      filter: drop-shadow(0 3px 10px rgba(201,168,76,0.7))
              drop-shadow(0 1px 3px rgba(0,0,0,0.9));
    }
    .cursor-arrow.clicking {
      transform: scale(0.88);
      filter: drop-shadow(0 1px 3px rgba(201,168,76,0.4));
    }
    @media (hover: none) {
      .cursor-arrow { display: none; }
      * { cursor: auto !important; }
    }

    /* ── SMOOTH SCROLL ── */
    html { scroll-behavior: smooth; }

    /* ── PARALLAX HERO ── */
    .hero-content { will-change: transform; }

    /* ── HERO VIDEO ── */
    .hero-video-bg {
      position: absolute; inset: 0; overflow: hidden; z-index: 0;
      pointer-events: none;
    }
    .hero-video-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.75) 50%,
        rgba(8,8,8,0.4) 100%);
    }
    .hero-video-bg iframe {
      position: absolute;
      top: 50%; left: 50%;
      width: 177.78vh; height: 100vh;
      min-width: 100%; min-height: 56.25vw;
      transform: translate(-50%, -50%);
      pointer-events: none; border: none;
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-rule { position: relative; z-index: 1; }

    /* ── IMAGE REVEAL ANIMATION ── */
    .photo-item {
      clip-path: inset(100% 0 0 0);
      transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .photo-item.revealed { clip-path: inset(0% 0 0 0); }

    /* ── BACK TO TOP ── */
    #back-to-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 800;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--gold); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s, background 0.3s;
      pointer-events: none;
    }
    #back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
    #back-to-top:hover { background: var(--gold-pale); }
    #back-to-top svg { width: 18px; height: 18px; stroke: var(--black); stroke-width: 2; fill: none; }

    /* old #frame-counter block removed */
    #back-to-top:hover { background: var(--gold-pale); }
    #back-to-top svg { width: 18px; height: 18px; stroke: var(--black); stroke-width: 2; fill: none; }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
      background: rgba(10,10,10,0.97); border-top: 1px solid var(--rule);
      padding: 20px 48px; display: flex; align-items: center;
      justify-content: space-between; gap: 24px; flex-wrap: wrap;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      transform: translateY(100%); transition: transform 0.4s ease;
    }
    #cookie-banner.visible { transform: translateY(0); }
    .cookie-text {
      font-size: 12px; color: var(--muted); line-height: 1.7; flex: 1; min-width: 240px;
    }
    .cookie-text a { color: var(--gold); text-decoration: none; }
    .cookie-text a:hover { text-decoration: underline; }
    .cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
    .cookie-accept {
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--black); background: var(--gold); border: none;
      padding: 10px 24px; cursor: pointer; font-family: var(--body);
      transition: background 0.3s;
    }
    .cookie-accept:hover { background: var(--gold-pale); }
    .cookie-decline {
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--muted); background: none;
      border: 1px solid rgba(201,168,76,0.2);
      padding: 10px 20px; cursor: pointer; font-family: var(--body);
      transition: border-color 0.3s, color 0.3s;
    }
    .cookie-decline:hover { border-color: var(--gold); color: var(--cream); }

    /* ── LEGAL MODAL ── */
    .legal-modal {
      display: none; position: fixed; inset: 0; z-index: 9500;
      background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
      padding: 24px;
    }
    .legal-modal.open { display: flex; }
    .legal-modal-box {
      background: var(--surface); border: 1px solid var(--rule);
      max-width: 760px; width: 100%; max-height: 85vh;
      display: flex; flex-direction: column; overflow: hidden;
    }
    .legal-modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 36px; border-bottom: 1px solid var(--rule); flex-shrink: 0;
    }
    .legal-modal-title {
      font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--white);
    }
    .legal-modal-close {
      background: none; border: none; color: var(--muted); font-size: 22px;
      cursor: pointer; transition: color 0.3s; line-height: 1;
    }
    .legal-modal-close:hover { color: var(--gold); }
    .legal-modal-body {
      padding: 32px 36px; overflow-y: auto; flex: 1;
      font-size: 13px; color: var(--muted); line-height: 1.9;
    }
    .legal-modal-body h3 {
      font-family: var(--display); font-size: 18px; font-weight: 400;
      color: var(--cream); margin: 28px 0 10px;
    }
    .legal-modal-body h3:first-child { margin-top: 0; }
    .legal-modal-body p { margin-bottom: 12px; }
    .legal-modal-body a { color: var(--gold); text-decoration: none; }
