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

    :root {
      --charcoal: #181818;
      --charcoal-light: #222222;
      --charcoal-mid: #1e1e1e;
      --magenta: #d930f5;
      --magenta-text: #e356ff;
      --white: #ffffff;
      --gray: #9a9a9a;
      --gray-light: #aaa;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--charcoal);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }
    /* Custom cursor only hides the native pointer once JS confirms it's running and drawing it */
    body.js-cursor-ready { cursor: none; }

    /* ── CURSOR ─────────────────────────────────── */
    #cursor {
      width: 8px; height: 8px;
      background: var(--white); border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      mix-blend-mode: difference;
    }
    #cursor-ring {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,0.4); border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
    }

    /* Touch / coarse-pointer devices: no hover-tracked cursor exists, so
       restore the native cursor instead of leaving the screen with no pointer at all. */
    @media (pointer: coarse) {
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
    }

    /* ── GRAIN ──────────────────────────────────── */
    .grain {
      position: fixed; inset: -200%;
      width: 400%; height: 400%;
      opacity: 0.025; pointer-events: none; z-index: 1;
      animation: grain 0.35s steps(1) infinite;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 300px 300px;
    }
    @keyframes grain {
      0%  { transform: translate(0,0); }
      20% { transform: translate(-4%,3%); }
      40% { transform: translate(5%,-2%); }
      60% { transform: translate(-3%,5%); }
      80% { transform: translate(4%,-4%); }
      100%{ transform: translate(-2%,2%); }
    }

    /* ── SCROLL PROGRESS ────────────────────────── */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0%;
      background: var(--magenta); z-index: 200;
      box-shadow: 0 0 8px var(--magenta);
    }

    /* ── SKIP LINK ──────────────────────────────── */
    .skip-link {
      position: absolute; top: -100px; left: 16px;
      background: var(--white); color: var(--charcoal);
      padding: 12px 20px;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      z-index: 10000;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 16px; }

    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ── NAVBAR ─────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0 48px; height: 80px;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(24,24,24,0.28);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; overflow: hidden; }
    .nav-logo img { height: 76px; width: auto; display: block; }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: var(--white); text-decoration: none;
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      position: relative;
    }
    .nav-links a.active { color: var(--magenta); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: var(--magenta);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    /* hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 6px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: var(--charcoal); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 44px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Anton', sans-serif; font-size: 3.5rem;
      color: var(--white); text-decoration: none;
      text-transform: uppercase; letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--magenta); }

    /* ── HERO ───────────────────────────────────── */
    .work-hero {
      position: relative; height: 88vh; min-height: 600px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      overflow: visible;
      z-index: 0;
    }
    .work-hero-bg {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden;
    }
    .work-hero-bg video {
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.55;
    }
    .work-hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(24,24,24,0.5) 0%, transparent 35%, transparent 60%, var(--charcoal) 100%);
    }
    .work-hero-content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
      padding: 0 48px;
    }
    .work-hero-eyebrow {
      font-size: 0.65rem; letter-spacing: 0.38em;
      text-transform: uppercase; color: var(--magenta);
      font-weight: 500; margin-bottom: 16px;
      opacity: 0; animation: fade-up 0.7s ease 0.3s both;
    }
    .work-hero-title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(4.5rem, 12vw, 10rem);
      text-transform: uppercase; letter-spacing: 0.03em;
      line-height: 0.88; color: var(--white);
      opacity: 0; animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s both;
    }
    .work-hero-title em {
      font-style: normal;
      -webkit-text-stroke: 2px rgba(255,255,255,0.35);
      color: transparent;
    }
    .work-hero-meta {
      display: flex; align-items: center; gap: 32px;
      margin-top: 28px;
      opacity: 0; animation: fade-up 0.7s ease 0.7s both;
    }
    .work-hero-count {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 0.68rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gray);
    }
    .work-hero-count span { color: var(--white); }
    .work-hero-back {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.45); text-decoration: none;
      font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
      transition: color 0.25s;
    }
    .work-hero-back:hover { color: var(--white); }
    .work-hero-back svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── FILTER BAR ──────────────────────────────── */
    .filter-bar {
      max-width: 1440px; margin: 0 auto 40px;
      padding: 16px 48px 0;
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .filter-label {
      font-size: 0.58rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gray);
      margin-right: 8px; flex-shrink: 0;
    }
    .genre-links {
      max-width: 1440px; margin: 0 auto 32px;
      padding: 0 48px;
      font-size: 0.72rem; color: var(--gray);
    }
    .genre-links a { color: var(--gray); border-bottom: 1px solid rgba(255,255,255,0.15); text-decoration: none; }
    .genre-links a:hover { color: var(--magenta-text); border-color: var(--magenta-text); }
    .filter-btn {
      padding: 8px 20px;
      border: 1px solid rgba(255,255,255,0.1);
      background: transparent; color: var(--gray-light);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem; letter-spacing: 0.18em;
      text-transform: uppercase; cursor: pointer;
      transition: border-color 0.25s, color 0.25s, background 0.25s;
    }
    .filter-btn:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
    .filter-btn.active { border-color: var(--magenta); color: var(--magenta); background: rgba(217,48,245,0.06); }

    /* ── JIGSAW GRID ─────────────────────────────── */
    .work-grid {
      max-width: 1440px; margin: 0 auto;
      padding: 0 48px 120px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 240px;
      gap: 3px;
      grid-auto-flow: dense;
    }

    /* Size variants */
    .work-card          { grid-column: span 2; grid-row: span 1; } /* default: wide */
    .work-card.c-large  { grid-column: span 2; grid-row: span 2; } /* big square */
    .work-card.c-wide   { grid-column: span 3; grid-row: span 1; } /* banner */
    .work-card.c-tall   { grid-column: span 1; grid-row: span 2; } /* portrait */
    .work-card.c-small  { grid-column: span 1; grid-row: span 1; } /* small square */

    .work-card {
      position: relative; overflow: hidden;
      background: var(--charcoal-light);
      cursor: pointer;
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease,
                  outline-color 0.3s, box-shadow 0.3s;
      outline: 1px solid rgba(255,255,255,0.03);
    }
    .work-card.visible { opacity: 1; transform: translateY(0); }
    .work-card:hover, .work-card:focus-visible {
      outline-color: var(--magenta);
      box-shadow: 0 0 40px rgba(217,48,245,0.18);
      z-index: 2;
    }
    .work-card video {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    }
    .work-card:hover video { transform: scale(1.05); filter: brightness(0.6); }

    .work-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.3) 30%, transparent 60%);
      opacity: 0; transition: opacity 0.35s ease;
    }
    .work-card:hover .work-overlay { opacity: 1; }

    .work-strip {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 32px 18px 16px;
      background: linear-gradient(to top, rgba(18,18,18,0.88) 0%, transparent 100%);
      display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
    }
    .work-name {
      font-family: 'Anton', sans-serif;
      font-size: 0.85rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--white); line-height: 1.1;
    }
    .work-card.c-large .work-name,
    .work-card.c-wide  .work-name { font-size: 1.05rem; }

    .work-actions { display: flex; gap: 8px; flex-shrink: 0; }
    .work-btn {
      width: 32px; height: 32px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.25); background: transparent;
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .work-btn:hover { background: var(--magenta); border-color: var(--magenta); transform: scale(1.1); }
    .work-btn svg { width: 10px; fill: var(--white); }
    .work-btn.fs svg { width: 12px; }

    .work-mute {
      position: absolute; top: 12px; right: 12px;
      font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
      background: rgba(18,18,18,0.85); color: var(--gray);
      padding: 4px 8px; opacity: 0; transition: opacity 0.3s;
    }
    .work-card:hover .work-mute { opacity: 1; }

    /* ── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--charcoal-light);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px 48px;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
      position: relative;
    }
    .footer-logo img { height: 28px; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.3s; }
    .footer-logo:hover img { opacity: 0.9; }
    .footer-copy {
      position: absolute; left: 50%; transform: translateX(-50%);
      text-align: center; font-size: 0.6rem;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); pointer-events: none;
    }
    .footer-copy a { color: inherit; pointer-events: auto; }
    .footer-socials { display: flex; align-items: center; gap: 20px; }
    .footer-social-icon { display: flex; align-items: center; color: var(--magenta); text-decoration: none; transition: opacity 0.2s; }
    .footer-social-icon svg { width: 16px; fill: currentColor; }
    .footer-social-icon:hover { opacity: 0.7; }
    .footer-ig { display: flex; align-items: center; gap: 7px; color: var(--magenta); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.1em; transition: opacity 0.2s; }
    .footer-ig svg { width: 16px; fill: currentColor; }
    .footer-ig:hover { opacity: 0.7; }
    .cc-handle { font-family: 'Chakra Petch', sans-serif; color: var(--magenta); font-weight: 500; letter-spacing: 0.12em; }

    /* ── REDUCED MOTION ─────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .grain { animation: none; }
      html { scroll-behavior: auto; }
    }

    /* ── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .work-hero-content { padding: 0 24px; }
      .filter-bar { padding: 32px 24px 0; }
      .work-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        padding: 0 24px 80px;
      }
      .work-card       { grid-column: span 2; grid-row: span 1; }
      .work-card.c-large { grid-column: span 2; grid-row: span 2; }
      .work-card.c-wide  { grid-column: span 2; grid-row: span 1; }
      .work-card.c-tall  { grid-column: span 1; grid-row: span 2; }
      .work-card.c-small { grid-column: span 1; grid-row: span 1; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
      .footer-copy { position: static; transform: none; }
    }
    @media (max-width: 600px) {
      .work-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
      .work-card, .work-card.c-large, .work-card.c-wide,
      .work-card.c-tall, .work-card.c-small { grid-column: span 1; grid-row: span 1; }
    }

    /* ── BOOK NOW NAV BUTTON ─────────────────────── */
    .nav-book {
      display: inline-flex; align-items: center;
      padding: 11px 26px;
      background: var(--magenta);
      color: var(--white);
      text-decoration: none;
      font-size: 0.66rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.3s, background 0.25s;
    }
    .nav-book:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(217,48,245,0.45); }

    /* ── NATIVE CURSOR AFFORDANCE (keeps custom dot, restores feel) ── */
    a, button, .work-card, .work-btn, .filter-btn, select, label { cursor: pointer; }
    input, textarea { cursor: text; }

    /* ── VIEW BADGE + ARTIST ────────────────────── */
    .work-name-wrap { display: flex; flex-direction: column; gap: 2px; }
    .work-artist { font-family: 'Chakra Petch', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--magenta-text); text-transform: uppercase; }

    /* ── CTA BAND (end-of-page conversion) ──────── */
    .cta-band {
      background: var(--charcoal-mid);
      border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 100px 48px; text-align: center;
    }
    .cta-band h2 {
      font-family: 'Anton', sans-serif; font-size: clamp(2.5rem, 7vw, 5.5rem);
      text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.95;
      color: var(--white); margin-bottom: 16px;
    }
    .cta-band h2 span { -webkit-text-stroke: 1.5px var(--magenta); color: transparent; }
    .cta-band p {
      font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gray); margin-bottom: 40px;
    }
    .cta-band-actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
    .cta-band-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 18px 48px; background: var(--white); color: var(--charcoal);
      text-decoration: none; font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      position: relative; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.3s, color 0.25s;
    }
    .cta-band-btn::before { content: ''; position: absolute; inset: 0; background: var(--magenta); transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
    .cta-band-btn:hover::before { transform: translateX(0); }
    .cta-band-btn span { position: relative; z-index: 1; }
    .cta-band-btn:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(217,48,245,0.5); }
    .cta-band-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 18px 38px; border: 1px solid rgba(255,255,255,0.2);
      color: var(--white); text-decoration: none; font-weight: 500;
      font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
      transition: border-color 0.25s, color 0.25s, transform 0.2s;
    }
    .cta-band-ghost:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-3px); }
    @media (max-width: 960px) {
      .cta-band { padding: 70px 24px; }
      .nav-book { padding: 9px 18px; }
    }
