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

    :root {
      --black: #000;
      --white: #fff;
      --gray: #888;
      --light-gray: #ccc;
      --border: rgba(255,255,255,0.1);
      --nav-height: 64px;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 100;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      cursor: pointer;
    }

    .nav-logo span {
      color: var(--gray);
      margin-left: 6px;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--white);
    }

    /* ─── HAMBURGER ───────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--white);
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0; bottom: 0;
      background: var(--black);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
    }

    /* ─── PAGES ───────────────────────────────────────── */
    .page { display: none; padding-top: var(--nav-height); min-height: 100vh; }
    .page.active { display: block; }
    #page-showreel { padding-top: 0; }

    /* ─── HERO REEL ───────────────────────────────────── */

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      pointer-events: none;
      text-align: center;
    }
    .hero-text-name {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5.5vw, 80px);
      color: #fff;
      letter-spacing: 0.04em;
      line-height: 1;
      text-shadow: 0 4px 32px rgba(0,0,0,0.6);
      white-space: nowrap;
    }
    .hero-text-divider {
      width: 60px;
      height: 1px;
      background: rgba(255,255,255,0.5);
      margin: 14px auto;
    }
    .hero-text-role {
      font-family: 'Inter', sans-serif;
      font-size: clamp(10px, 1.2vw, 15px);
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .hero-reel {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #000;
    }

    .hero-reel iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 177.78vh;
      height: 100%;
      min-width: 100%;
      min-height: 56.25vw;
      transform: translate(-50%, -50%);
      border: none;
      pointer-events: none;
    }

    /* ─── POSTER BANNER ─────────────────────────────── */
    /* ─── ABOUT STRIP ────────────────────────────────── */
    .about-strip {
      padding: 60px 60px 60px;
      border-top: 1px solid #1a1a1a;
    }

    .about-strip-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
    }

    .about-strip-img {
      overflow: hidden;
      margin-left: 96px;
    }

    .about-strip-img img {
      width: 80%;
      display: block;
      filter: brightness(0.92);
    }

    .about-strip-text p {
      font-size: 15px;
      line-height: 1.85;
      color: #aaa;
      margin-bottom: 20px;
    }

    .about-strip-text em {
      font-style: italic;
      color: #ccc;
    }

    .about-strip-cta {
      display: inline-block;
      margin-top: 12px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid #444;
      padding-bottom: 3px;
      transition: border-color 0.2s, color 0.2s;
    }

    .about-strip-cta:hover {
      border-color: #fff;
    }

    .pb-section {
      background: #000;
      padding: 60px 50px 80px;
      margin-top: 0;
    }

    .pb-section-title {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 28px;
      text-align: center;
    }

    .pb-posters {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      margin-bottom: 0;
      padding: 0;
    }

    .pb-col {
      padding: 0 10px;
    }

    .pb-poster {
      aspect-ratio: 2/3;
      overflow: hidden;
      transform: scale(0.75);
    }

    .pb-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: filter 0.4s;
      filter: brightness(0.88);
    }

    .pb-col:hover .pb-poster img { filter: brightness(1); }

    .pb-awards {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      padding: 0;
    }

    .pb-award-col {
      padding: 0 10px;
      padding-top: 10px;
      text-align: center;
    }

    .pb-laurel-logos {
      display: flex;
      gap: 6px;
      justify-content: center;
      align-items: center;
      margin-top: 8px;
      height: 72px;
    }

    .pb-coming-soon {
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #3a3a3a;
      text-align: center;
      font-weight: 300;
    }

    .pb-laurel-img {
      width: 47%;
      height: auto;
      display: block;
      opacity: 0.75;
      filter: grayscale(20%);
      transition: opacity 0.3s;
    }

    .pb-col:hover .pb-laurel-img {
      opacity: 1;
    }

    .pb-col-title {
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-top: 10px;
      margin-bottom: 0;
      text-align: center;
      font-weight: 500;
    }

    .pb-award-title {
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-top: 8px;
      margin-bottom: 8px;
    }

    .pb-award-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: inline-block;
      text-align: left;
    }

    .pb-award-list li {
      font-size: 10.5px;
      color: #4a4a4a;
      line-height: 1.65;
      letter-spacing: 0.01em;
      padding-left: 16px;
      position: relative;
    }

    .pb-award-list li::before {
      content: '';
      display: inline-block;
      width: 10px;
      height: 10px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath fill='%23666' d='M10 6 C8 3 4 2 2 4 C4 4 6 5 10 6Z'/%3E%3Cpath fill='%23666' d='M10 6 C12 3 16 2 18 4 C16 4 14 5 10 6Z'/%3E%3Cpath fill='%23666' d='M10 6 C7 7 3 7 2 9 C4 8 7 8 10 6Z'/%3E%3Cpath fill='%23666' d='M10 6 C13 7 17 7 18 9 C16 8 13 8 10 6Z'/%3E%3Ccircle fill='%23666' cx='10' cy='6' r='1'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      top: 3px;
      opacity: 0.7;
    }

    /* ─── HERO BYLINE ─────────────────────────────────── */
    .hero-byline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

    .hero-byline-name {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-weight: 400;
    }

    .hero-byline-divider {
      font-size: 10px;
      color: rgba(255,255,255,0.15);
      letter-spacing: 0;
    }

    .hero-byline-role {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      font-weight: 300;
    }

    /* ─── WORK GRID ───────────────────────────────────── */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      padding: 0 50px;
    }

    .project-card {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      cursor: pointer;
      background: #111;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s;
      filter: brightness(0.85);
    }

    .project-card:hover img {
      transform: scale(1.04);
      filter: brightness(0.25);
    }

    .project-card-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .card-detail {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px 22px;
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
      opacity: 0;
      transition: opacity 0.38s 0.04s;
      pointer-events: none;
    }

    .project-card:hover .card-detail { opacity: 1; }

    .cd-type {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 5px;
    }

    .cd-title {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 7px;
    }

    .cd-director {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 7px;
    }

    .cd-synopsis {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .project-card-title {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.3;
    }

    .project-card-arrow {
      margin-top: 8px;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--gray);
      text-transform: uppercase;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    .about-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px 100px;
    }

    .about-header {
      margin-bottom: 64px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 40px;
    }

    .about-header h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .about-header h1 em { font-style: italic; color: var(--light-gray); }

    .about-bio {
      font-size: 17px;
      line-height: 1.8;
      color: #ddd;
      max-width: 720px;
    }

    .about-bio p + p { margin-top: 20px; }

    .specialties {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 64px;
    }

    .specialty { border-top: 1px solid var(--border); padding-top: 24px; }

    .specialty-number {
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--gray);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .specialty h3 {
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .specialty p { font-size: 14px; line-height: 1.75; color: #aaa; }

    /* ─── SHOWREEL ────────────────────────────────────── */
    .showreel-layout {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: calc(100vh - var(--nav-height));
      padding: calc(var(--nav-height) + 12px) 60px 80px;
    }

    .showreel-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 28px;
      text-align: center;
    }

    .video-wrapper {
      width: 100%;
      max-width: 960px;
      aspect-ratio: 16/9;
      background: #111;
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }

    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }


    .showreel-section {
      width: 100%;
      max-width: 960px;
      margin-top: 60px;
    }

    .showreel-section-title {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 28px;
      text-align: center;
    }

    .showreel-section-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .showreel-section-body .video-wrapper {
      max-width: 100%;
    }

    .showreel-ig-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 9/16;
      max-height: 520px;
      overflow: hidden;
      border-radius: 4px;
    }

    .showreel-ig-wrap iframe {
      position: absolute;
      top: -88px;
      left: 0;
      width: 100%;
      height: calc(100% + 160px);
      border: none;
      display: block;
    }

    .showreel-section-text {
      font-size: 14px;
      line-height: 1.85;
      color: rgba(255,255,255,0.55);
    }

    .mc-thumb-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      width: 100%;
      margin-top: 40px;
    }

    .mc-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      cursor: pointer;
      background: #111;
    }

    .mc-thumb iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      pointer-events: none;
    }

    .mc-thumb img.mc-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .mc-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.3);
      transition: background 0.2s;
    }

    .mc-thumb:hover::after {
      background: rgba(0,0,0,0);
    }

    .mc-thumb.active::after {
      background: rgba(0,0,0,0);
      outline: 2px solid rgba(255,255,255,0.6);
      outline-offset: -2px;
    }

    .mc-thumb::before {
      content: '▶  Play';
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      z-index: 2;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .mc-thumb:hover::before,
    .mc-thumb.active::before {
      opacity: 0;
    }

    .mc-credits-title {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      width: 100%;
      max-width: 960px;
      margin: 40px auto 16px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .mc-credits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 40px;
      width: 100%;
      max-width: 960px;
      margin: 0 auto 0;
      padding-top: 0;
      box-sizing: border-box;
    }

    .mc-credits-col p {
      font-size: 12px;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      margin: 0 0 10px;
    }

    .mc-credit-type {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      margin-right: 6px;
    }

    /* ─── CONTACT ─────────────────────────────────────── */
    .contact-layout {
      max-width: 600px;
      margin: 0 auto;
      padding: 80px 40px 100px;
    }

    .contact-layout h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      margin-bottom: 12px;
    }

    .contact-sub { font-size: 14px; color: var(--gray); margin-bottom: 48px; }

    .form-group { margin-bottom: 28px; }

    .form-group label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 300;
      padding: 10px 0;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-group select option { background: #111; }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-bottom-color: var(--white); }

    .form-group textarea { resize: none; height: 100px; }

    .btn {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 14px 40px;
      border: 1px solid var(--white);
      color: var(--white);
      background: transparent;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background 0.2s, color 0.2s;
    }

    .btn:hover { background: var(--white); color: var(--black); }

    /* ─── BTS ─────────────────────────────────────────── */
    .bts-layout {
      padding: 80px 40px 100px;
    }

    .bts-layout h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      margin-bottom: 8px;
    }

    .bts-sub { font-size: 14px; color: var(--gray); margin-bottom: 48px; }
    .bts-grid {
      columns: 3;
      column-gap: 4px;
    }

    .bts-item {
      break-inside: avoid;
      margin-bottom: 4px;
      display: block;
    }

    .bts-item img {
      width: 100%;
      height: auto;
      display: block;
      filter: brightness(0.9);
      transition: filter 0.3s;
    }

    .bts-item img:hover {
      filter: brightness(1);
    }


    .bts-placeholder {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .bts-placeholder-item {
      aspect-ratio: 4/3;
      background: #0d0d0d;
      border: 1px dashed var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: #333;
      text-transform: uppercase;
    }

    /* ─── PROJECT MODAL ───────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 200;
      overflow-y: auto;
    }

    .modal-overlay.open { display: block; }

    .modal-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 40px;
    }


    .modal-close {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      background: none;
      border: none;
      cursor: pointer;
      margin-bottom: 48px;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--white); }

    .modal-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 400;
      margin-bottom: 32px;
    }

    .modal-image { width: 100%; margin-bottom: 40px; }
    .modal-image img { width: 100%; display: block; }

    /* ─── MODAL GALLERY ───────────────────────────────── */



    .modal-poster-laurels {
      width: 100%;
      margin-top: 10px;
      display: block;
    }
    .modal-type {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 12px;
    }
    .modal-laurels {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 14px 0;
    }
    .modal-laurel {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #000;
      border: 1px solid #333;
      color: #fff;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 10px 6px 8px;
      border-radius: 2px;
    }
    .modal-laurel svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }
    .modal-vimeo {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      margin-bottom: 24px;
    }
    .modal-vimeo iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .modal-video-pair {
      display: flex;
      flex-direction: row;
      gap: 12px;
      width: 100%;
      margin-bottom: 24px;
    }
    .modal-video-pair .modal-vimeo {
      flex: 1 1 0;
      min-width: 0;
      margin-bottom: 0;
    }
    .modal-gallery-columns {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
    }
    .modal-gallery-col {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .modal-gallery-col img {
      width: 100%;
      display: block;
      border-radius: 4px;
    }
    .modal-awards-row {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 8px;
      padding: 8px 0 16px;
      margin-bottom: 8px;
      align-items: center;
    }
    .modal-awards-row img {
      flex: 1 1 0;
      min-width: 0;
      width: 0;
      max-height: 80px;
      height: auto;
      object-fit: contain;
      display: block;
      border-radius: 4px;
    }
    .modal-awards-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 8px 0 16px;
      margin-bottom: 8px;
    }
    .modal-awards-grid img {
      width: 100%;
      max-height: 100px;
      object-fit: contain;
      display: block;
      border-radius: 4px;
    }


    .modal-quotes {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 8px 0 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .modal-quote {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .modal-quote-text {
      font-size: 13px;
      font-style: italic;
      line-height: 1.5;
      color: rgba(255,255,255,0.9);
      margin: 0 0 5px 0;
    }
    .modal-quote-source {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin: 0;
    }

    /* ── Interleaved quote inside gallery grid ── */
    .modal-gallery-quote {
      grid-column: 1 / -1;
      padding: 40px 60px;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }

    .modal-gallery-quote .modal-quote-text {
      font-size: 16px;
      margin-bottom: 12px;
    }

    /* ── Quote standalone hero image ── */
    .modal-quote-hero-img {
      width: 100%;
      line-height: 0;
    }
    .modal-quote-hero-img img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .modal-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3px;
    }

    .modal-gallery-hero {
      grid-column: 1 / -1;
    }

    .modal-gallery img {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
      filter: brightness(0.9);
      transition: filter 0.3s;
    }

    .modal-gallery-hero img {
      aspect-ratio: auto;
    }

    .modal-gallery img:hover { filter: brightness(1); }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--gray);
    }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    /* ─── TABLET (≤900px) ───────────────────────────────── */
    @media (max-width: 900px) {
      .specialties { grid-template-columns: 1fr; gap: 32px; }
      .bts-placeholder { grid-template-columns: repeat(2, 1fr); }
      .work-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
      .about-strip-inner { gap: 24px; }
      .showreel-section-body { gap: 24px; }
    }

    /* ─── MOBILE / 9:16 PHONE (≤640px) ─────────────────── */
    @media (max-width: 640px) {

      /* ── Global containment ── */
      *, *::before, *::after { max-width: 100%; }
      .page { overflow-x: hidden; }

      /* ── Nav ── */
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* ── Footer ── */
      footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }

      /* ── Hero reel on work page ── */
      .hero-reel { aspect-ratio: 16/9; }
      .hero-text-name { white-space: normal; font-size: clamp(28px, 9vw, 52px); }
      .hero-text-role { font-size: clamp(9px, 3vw, 13px); letter-spacing: 0.18em; }

      /* ── Work grid ── */
      .work-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 2px;
      }

      /* ── Selected works / posters ── */
      .pb-section { padding: 32px 16px 40px; }
      .pb-section-title { margin-bottom: 16px; font-size: 10px; }
      .pb-posters {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
      }
      .pb-col { padding: 0 3px; }
      .pb-poster { transform: scale(0.92); transform-origin: top center; }
      .pb-col-title { font-size: 8px; letter-spacing: 0.05em; }
      .pb-col-type  { font-size: 7px; }
      .pb-laurel-logos { height: 44px; gap: 2px; }
      .pb-laurel-img { width: 46%; }

      /* ── Awards – horizontal scroll strip ── */
      .pb-awards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
        gap: 0;
        padding-bottom: 16px;
        /* hide scrollbar visually */
        scrollbar-width: none;
      }
      .pb-awards::-webkit-scrollbar { display: none; }
      .pb-award-col {
        min-width: 150px;
        flex-shrink: 0;
        padding: 14px 12px 0;
        border-right: 1px solid #2a2a2a;
        text-align: center;
      }
      .pb-award-col:last-child { border-right: none; }
      .pb-award-title { font-size: 8px; margin-bottom: 8px; }
      .pb-award-list { text-align: left; }
      .pb-award-list li { font-size: 9px; line-height: 1.55; }

      /* ── About strip (bio section on About page) ── */
      .about-strip { padding: 36px 20px 36px; }
      .about-strip-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .about-strip-img { margin-left: 0; text-align: center; }
      .about-strip-img img { width: 65%; margin: 0 auto; display: block; }
      .about-strip-text p { font-size: 14px; line-height: 1.75; }
      .about-strip-heading { font-size: 10px; }

      /* ── Showreel / About page layout ── */
      .showreel-layout {
        padding: calc(var(--nav-height) + 16px) 16px 60px;
      }
      .showreel-label { font-size: 10px; margin-bottom: 16px; }
      .showreel-section { margin-top: 36px; }
      .showreel-section-title { font-size: 10px; margin-bottom: 16px; }
      .showreel-section-body {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .showreel-section-text { font-size: 13px; line-height: 1.75; }
      /* IG embed — constrain to screen on mobile */
      .showreel-ig-wrap { max-height: 380px; }

      /* ── Motion control thumbnails ── */
      .mc-thumb-row {
        margin-top: 16px;
        gap: 3px;
        grid-template-columns: 1fr; /* stack to single column */
      }
      .mc-thumb { aspect-ratio: 16/9; }
      .mc-thumb::before { font-size: 9px; bottom: 8px; }

      /* ── MC credits ── */
      .mc-credits-title {
        font-size: 10px;
        margin: 20px auto 10px;
        padding-top: 20px;
      }
      .mc-credits {
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
        margin-top: 0;
      }
      .mc-credits-col p { font-size: 10.5px; margin-bottom: 6px; }
      .mc-credit-type { font-size: 8.5px; }

      /* ── Contact page ── */
      .about-layout, .contact-layout, .bts-layout { padding: 36px 20px 72px; }

      /* ── Modal ── */
      .modal-inner { padding: 36px 16px 60px; }
      /* Poster (narrow) beside crew details, synopsis full-width below */
      .modal-project-header {
        flex-direction: row;
        gap: 14px;
        margin-bottom: 0;
        align-items: flex-start;
      }
      .modal-poster { flex: 0 0 100px; width: 100px; min-width: 0; }
      .modal-meta { min-width: 0; }
      .modal-meta { padding-top: 0; }
      .modal-type { font-size: 10px; margin-bottom: 8px; }
      .modal-crew li {
        font-size: 11px;
        padding: 7px 0;
        flex-wrap: wrap;
        gap: 2px;
      }
      .modal-crew li span:first-child { font-size: 9px; width: 100%; margin-bottom: 1px; }
      .modal-crew li span:last-child { font-size: 11px; color: #ddd; }
      .modal-laurels { gap: 6px; margin: 10px 0; }
      .modal-laurel { font-size: 9px; padding: 5px 8px 5px 6px; }
      .modal-laurel svg { width: 18px; height: 18px; }
      /* Synopsis below, full width, with breathing room */
      .modal-synopsis-block { margin-top: 20px; padding-top: 18px; }
      .modal-synopsis { font-size: 13px; line-height: 1.75; margin-bottom: 14px; }
      .modal-gallery { grid-template-columns: 1fr; gap: 2px; }
      .modal-gallery-hero { grid-column: 1 / -1; }
      .modal-vimeo { margin-bottom: 20px; }
      .modal-quote-text { font-size: 12px; }
      .modal-quotes { padding: 4px 0 16px; }
      .modal-quote { padding: 10px 0; }
      .modal-quote-hero-img img { max-height: 240px; object-fit: cover; }
      /* Stack side-by-side video pairs vertically */
      .modal-video-pair {
        flex-direction: column;
        gap: 8px;
      }
      /* Stack gallery columns vertically */
      .modal-gallery-columns {
        flex-direction: column;
        gap: 4px;
      }
      /* Awards row — horizontal scroll */
      .modal-awards-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
      }
      .modal-awards-row::-webkit-scrollbar { display: none; }
      .modal-awards-row img { min-width: 80px; max-height: 60px; }
      /* Awards grid — single column */
      .modal-awards-grid { grid-template-columns: 1fr; }
    }

    .modal-external-link {
      display: inline-block;
      margin-top: 32px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 13px 36px;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .modal-external-link:hover {
      background: var(--white);
      color: var(--black);
    }

    /* ─── MODAL PROJECT HEADER ─────────────────────────── */
    .modal-project-header {
      display: flex;
      flex-direction: row;
      gap: 28px;
      margin-bottom: 0;
      align-items: flex-start;
    }

    .modal-poster {
      flex: 0 0 160px;
      width: 160px;
    }

    .modal-poster img {
      width: 100%;
      display: block;
    }

    .modal-meta {
      flex: 0 1 auto;
      min-width: 200px;
      padding-top: 2px;
    }

    /* ── Synopsis block — full width below the poster/crew row ── */
    .modal-synopsis-block {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .modal-synopsis {
      font-size: 15px;
      line-height: 1.75;
      color: #ccc;
      margin-bottom: 20px;
      white-space: pre-line;
    }
    .modal-cast {
      font-size: 13px;
      color: #999;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .modal-cast-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #666;
      margin-bottom: 4px;
    }

    .modal-crew {
      list-style: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      min-width: 200px;
    }

    .modal-crew li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
    }

    .modal-crew li span:first-child {
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #555;
    }

    .modal-crew li span:last-child {
      color: #ccc;
    }

    .modal-external-link {
      display: inline-block;
      margin-top: 24px;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 12px 28px;
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .modal-external-link:hover {
      background: #fff;
      color: #000;
    }


  
    .pb-col-type {
      font-size: 8px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #555;
      text-align: center;
      margin-top: 3px;
      margin-bottom: 0;
      font-weight: 300;
    }
    
    .pb-selects-title {
      text-align: center;
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #555;
      font-weight: 300;
      padding: 0;
    }
    
    .about-strip-heading {
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #555;
      font-weight: 300;
      margin-bottom: 20px;
    }