
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&family=Instrument+Serif:ital@1&display=swap');




    .home-section, .home-section { background: #000000 !important; color: #ffffff; }

    .home-section {
      --bg: #000000;
      --text: #ffffff;
      --muted: #9a9a9a;
      --stat: #d8d8d8;
      --border: rgba(255, 255, 255, 0.16);
      --border-soft: rgba(255, 255, 255, 0.12);
      --logo: 15.5px;
      --logo-mark: 22px;
      --nav: 14px;
      --nav-h: 40px;
      --btn: 13.5px;
      --btn-h: 40px;
      --hero-btn-h: 42px;
      --h1: 48px;
      --lede: 15.5px;
      --badge: 12.5px;
      --stat-size: 13.5px;
      --header-y: 22px;
      --header-x: 40px;
      --stats-x: 72px;
      --stats-y: 36px;
      --hero-gap: 85px;
      --copy-max: 860px;
      --lede-max: 470px;
    }

    .home-section *, .home-section *::before, .home-section *::after { box-sizing: border-box; margin: 0; padding: 0; }
    .home-section { scroll-behavior: smooth; }
    .home-section, .home-section {
      background: #000000;
      background: var(--bg, #000000);
      color: #ffffff;
      color: var(--text, #ffffff);
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      position: relative;
    }
    .home-section a { color: inherit; text-decoration: none; }
    .home-section button { font-family: inherit; }

    @media (min-width: 901px) {
      .home-section, .home-section { height: 100%; overflow: hidden; }
      .home-section .page { height: 100vh; height: 100dvh; overflow: hidden; }
    }

    .home-section .grain {
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    .home-section .hero-photo {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .home-section .hero-photo video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
    }
    .home-section .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 100%),
                  linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.85) 100%);
      pointer-events: none;
    }

    .home-section .page {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-height: 100vh;
      min-height: 100dvh;
    }

    .home-section header.header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: var(--header-y) var(--header-x) 10px;
      z-index: 50;
      position: relative;
    }

    .home-section a.logo {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      justify-self: start;
      font-size: var(--logo);
      font-weight: 600;
      letter-spacing: -0.03em;
      color: #fff;
    }
    .home-section .logo-mark {
      width: var(--logo-mark);
      height: var(--logo-mark);
    }
    .home-section .logo-suffix { font-weight: 400; }

    .home-section #site-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-self: center;
    }
    .home-section .nav-link {
      height: var(--nav-h);
      padding: 0 18px;
      border-radius: 7px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(198,198,198,0.55);
      background: linear-gradient(105deg, #050505 0%, #2a2a2a 48%, #4a4a4a 100%);
      color: #f3f3f3;
      font-size: var(--nav);
      font-weight: 400;
      letter-spacing: -0.01em;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    .home-section .nav-link::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
      transform: translateX(-120%);
      transition: transform 0.6s ease;
    }
    .home-section .nav-link:hover::before {
      transform: translateX(120%);
    }
    .home-section .nav-link:hover {
      border-color: rgba(235,235,235,0.9);
      background: linear-gradient(105deg, #111 0%, #3a3a3a 45%, #6a6a6a 100%);
      box-shadow: 0 0 18px rgba(200,210,230,0.18);
    }

    .home-section .header-cta { justify-self: end; }

    .home-section .burger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: rgba(8,8,8,0.55);
      z-index: 60;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 0;
    }
    .home-section .burger span {
      display: block;
      width: 16px;
      height: 1.5px;
      background: #fff;
      border-radius: 1px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .home-section .burger:hover {
      border-color: rgba(255,255,255,0.32);
      background: rgba(255,255,255,0.05);
    }
    body.menu-open .home-section .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    body.menu-open .home-section .burger span:nth-child(2) { opacity: 0; }
    body.menu-open .home-section .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .home-section .menu-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 40;
      background: rgba(8,8,8,0.42);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    body.menu-open .home-section .menu-backdrop {
      opacity: 1;
      visibility: visible;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
    }

    .home-section .btn {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: var(--btn-h);
      padding: 0 16px;
      border-radius: 6px;
      font-size: var(--btn);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, filter 0.35s ease;
    }
    .home-section .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.45) 48%, transparent 76%);
      transform: translateX(-130%);
      transition: transform 0.65s ease;
    }
    .home-section .btn:hover::after {
      transform: translateX(130%);
    }

    .home-section .btn-solid {
      background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 48%, #cfcfcf 100%);
      color: #111;
      border: 1px solid #fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
    }
    .home-section .btn-solid:hover {
      background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 42%, #d5def2 100%);
      border-color: #f2f6ff;
      box-shadow: inset 0 1px 0 #fff, 0 0 22px rgba(186,208,255,0.35), 0 8px 18px rgba(255,255,255,0.12);
    }

    .home-section .hero-actions .btn-solid:hover {
      box-shadow: inset 0 1px 0 #fff, 0 0 26px rgba(186,208,255,0.4), 0 8px 18px rgba(255,255,255,0.14);
    }

    .home-section .btn-ghost {
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.45) 50%, rgba(160,175,200,0.08));
      color: #fff;
      border: 1px solid rgba(198,198,198,0.45);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .home-section .btn-ghost:hover {
      background: linear-gradient(135deg, rgba(210,225,255,0.18), rgba(0,0,0,0.35) 48%, rgba(180,195,220,0.16));
      border-color: rgba(220,230,255,0.75);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 20px rgba(170,200,255,0.22);
    }

    .home-section .hero-actions .btn-ghost {
      background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,0,0,0.5) 46%, rgba(150,170,200,0.1));
      border: 1px solid rgba(198,198,198,0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .home-section .hero-actions .btn-ghost:hover {
      border-color: rgba(220,230,255,0.8);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 24px rgba(170,200,255,0.28);
    }

    .home-section .hero-actions .btn {
      height: var(--hero-btn-h);
      padding: 0 18px;
    }

    .home-section .hero {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 8px 24px var(--hero-gap);
      min-height: 0;
    }
    .home-section .hero-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: var(--copy-max);
      width: 100%;
    }

    .home-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      padding: 9px 15px;
      border: 0;
      border-radius: 5px;
      background: linear-gradient(90deg, #7d7d7d 0%, #2a2a2a 52%, #0a0a0a 100%);
      color: #f2f2f2;
      font-size: var(--badge);
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .home-section .badge-star {
      filter: drop-shadow(0 0 3px rgba(255,255,255,0.45));
      animation: in-star 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
    }

    .home-section .hero h1 {
      font-size: var(--h1);
      font-weight: 500;
      letter-spacing: -0.045em;
      line-height: 1.12;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .home-section .headline-line {
      display: block;
      overflow: hidden;
      padding: 0.06em 0.15em 0.14em;
    }
    .home-section .hero h1 em {
      font-family: "Instrument Serif", "Times New Roman", Times, serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.08em;
      letter-spacing: -0.03em;
      color: #9a9a9a;
      animation: in-em 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
    }

    .home-section .lede {
      max-width: var(--lede-max);
      margin-top: 18px;
      color: var(--muted);
      font-size: var(--lede);
      font-weight: 400;
      line-height: 1.55;
      letter-spacing: -0.015em;
    }

    .home-section .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 26px;
    }

    .home-section .stats {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 var(--stats-x) var(--stats-y);
      padding-bottom: max(var(--stats-y), env(safe-area-inset-bottom));
      color: var(--stat);
    }
    .home-section .stat {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: var(--stat-size);
      letter-spacing: -0.015em;
      white-space: nowrap;
    }
    .home-section .stat-icon { width: 20px; height: 20px; }
    .home-section .stat-icon-wide { width: 38px; height: 21.1px; }

    .home-section .appear {
      opacity: 1;
      animation-duration: 1.05s;
      animation-fill-mode: both;
      animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
      animation-delay: var(--d, 0.08s);
    }
    .home-section .appear.is-in, .home-section .hero-photo.is-in {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
      clip-path: none !important;
      filter: none !important;
    }

    .home-section .appear--scale { animation-name: in-scale; }
    .home-section .appear--soft { animation-name: in-soft; }
    .home-section .appear--mask { animation-name: in-mask; }
    .home-section .appear--pop { animation-name: in-pop; }
    .home-section .appear--btn { animation-name: in-btn; }
    .home-section .appear--side { animation-name: in-side; }
    .home-section .appear--stat { animation-name: in-stat; }

    .home-section .logo { --d: 0.08s; }
    .home-section #site-nav a:nth-child(1) { --d: 0.16s; }
    .home-section #site-nav a:nth-child(2) { --d: 0.28s; }
    .home-section #site-nav a:nth-child(3) { --d: 0.40s; }
    .home-section #site-nav a:nth-child(4) { --d: 0.52s; }
    .home-section .header-cta, .home-section .burger { --d: 0.34s; }
    .home-section .badge { --d: 0.22s; }
    .home-section .h1-line-1 { --d: 0.42s; }
    .home-section .h1-line-2 { --d: 0.62s; }
    .home-section .lede { --d: 0.82s; animation-duration: 1.25s; }
    .home-section .btn-solid.hero-btn { --d: 0.96s; }
    .home-section .btn-ghost.hero-btn { --d: 1.10s; }
    .home-section .stat:nth-child(1) { --d: 1.12s; }
    .home-section .stat:nth-child(2) { --d: 1.28s; }
    .home-section .stat:nth-child(3) { --d: 1.44s; }

    @keyframes in-scale {
      0% { opacity: 0; transform: scale(0.84); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes in-soft {
      0% { opacity: 0; transform: translateY(14px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes in-mask {
      0% { opacity: 0; transform: translateY(40%); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes in-pop {
      0% { opacity: 0; transform: scale(0.9); }
      70% { transform: scale(1.03); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes in-btn {
      0% { opacity: 0; transform: translateY(18px) scale(0.94); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes in-side {
      0% { opacity: 0; transform: translateX(22px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes in-stat {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes in-star {
      0% { opacity: 0; transform: scale(0.2) rotate(-50deg); }
      65% { transform: scale(1.2) rotate(8deg); }
      100% { opacity: 1; transform: scale(1) rotate(0deg); }
    }
    @keyframes in-em {
      0% { opacity: 0.35; filter: blur(4px); }
      100% { opacity: 1; filter: blur(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .home-section *, .home-section *::before, .home-section *::after {
        transition: none !important;
        animation: none !important;
      }
      .home-section .appear, .home-section .hero-photo, .home-section .hero h1 em, .home-section .badge-star {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        filter: none !important;
      }
    }

    @media (min-width: 1600px) {
      .home-section {
        --logo: 17px; --logo-mark: 24px; --nav: 15px; --nav-h: 44px; --btn: 15px; --btn-h: 44px;
        --hero-btn-h: 48px; --h1: 64px; --lede: 18px; --badge: 13.5px; --stat-size: 15px;
        --header-y: 28px; --header-x: 64px; --stats-x: 96px; --stats-y: 44px; --copy-max: 980px; --lede-max: 540px;
      }
      .home-section .nav-link { padding: 0 20px; }
      .home-section .badge { margin-bottom: 26px; }
      .home-section .lede { margin-top: 22px; }
      .home-section .hero-actions { margin-top: 30px; gap: 12px; }
      .home-section .stat-icon { width: 22px; height: 22px; }
      .home-section .stat-icon-wide { width: 45px; height: 24px; }
    }

    @media (min-width: 1920px) {
      .home-section {
        --logo: 18px; --logo-mark: 26px; --nav: 16px; --nav-h: 48px; --btn: 16px; --btn-h: 48px;
        --hero-btn-h: 52px; --h1: 76px; --lede: 20px; --badge: 14.5px; --stat-size: 16px;
        --header-y: 32px; --header-x: 80px; --stats-x: 120px; --stats-y: 52px; --copy-max: 1120px; --lede-max: 620px;
      }
      .home-section #site-nav { gap: 10px; }
      .home-section .nav-link { padding: 0 22px; }
      .home-section .btn { padding: 0 22px; }
      .home-section .badge { padding: 10px 15px; }
      .home-section .stat-icon-wide { width: 48px; height: 26px; }
    }

    @media (min-width: 2560px) {
      .home-section {
        --h1: 88px; --lede: 22px; --header-x: 120px; --stats-x: 160px; --copy-max: 1280px; --lede-max: 680px;
      }
    }

    @media (min-width: 1280px) and (max-width: 1599px) {
      .home-section {
        --h1: 54px; --lede: 16px; --header-x: 48px; --stats-x: 80px; --copy-max: 900px;
      }
    }

    @media (min-width: 901px) and (max-width: 1279px) {
      .home-section {
        --logo: 15px; --nav: 13px; --nav-h: 36px; --btn: 13px; --btn-h: 38px; --hero-btn-h: 40px;
        --h1: 42px; --lede: 15px; --badge: 12px; --stat-size: 12.5px; --header-y: 16px; --header-x: 28px;
        --stats-x: 36px; --stats-y: 28px; --hero-gap: 64px; --copy-max: 760px; --lede-max: 440px;
      }
      .home-section .nav-link { padding: 0 14px; }
      .home-section .badge { margin-bottom: 16px; }
      .home-section .lede { margin-top: 14px; }
      .home-section .hero-actions { margin-top: 20px; }
    }

    @media (min-width: 901px) and (max-height: 850px) {
      .home-section {
        --header-y: 14px; --stats-y: 24px; --hero-gap: 48px; --h1: 40px;
      }
      .home-section .badge { margin-bottom: 12px; }
      .home-section .lede { margin-top: 12px; }
      .home-section .hero-actions { margin-top: 16px; }
    }

    @media (min-width: 901px) and (max-height: 720px) {
      .home-section {
        --h1: 34px; --lede: 14px; --hero-gap: 32px; --stats-y: 18px; --nav-h: 30px; --btn-h: 34px; --hero-btn-h: 36px;
      }
      .home-section .badge { margin-bottom: 8px; }
    }

    @media (max-width: 900px) {
      .home-section, .home-section { height: auto; overflow-y: auto; }
      .home-section header.header {
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
      }
      .home-section a.logo, .home-section .header-cta, .home-section .burger { z-index: 80; }
      .home-section .burger { display: flex; }

      .home-section #site-nav {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 45;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: max(96px, calc(env(safe-area-inset-top) + 88px)) 22px 32px;
        background: transparent;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
      }

      body.menu-open .home-section #site-nav {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
      }

      .home-section .nav-link {
        width: 100%;
        height: 56px;
        font-size: 19px;
        border-radius: 10px;
        justify-content: center;
      }

      .home-section .menu-backdrop { display: block; }

      .home-section .hero {
        padding: 20px 20px 64px;
        align-items: flex-end;
      }

      .home-section .hero-copy, .home-section .lede { max-width: 100%; }

      .home-section .stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        white-space: normal;
      }

      .home-section {
        --logo: 16px; --btn: 15px; --btn-h: 46px; --hero-btn-h: 48px; --h1: 36px;
        --lede: 16.5px; --badge: 13.5px; --stat-size: 15px; --header-y: 16px; --header-x: 18px;
        --stats-x: 20px; --stats-y: 28px; --hero-gap: 36px;
      }
    }

    @media (max-width: 560px) {
      .home-section {
        --h1: 34px; --lede: 16px; --header-x: 16px;
      }
      .home-section .hero-actions {
        flex-direction: column;
        width: 100%;
      }
      .home-section .hero-actions .btn { width: 100%; }
    }
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
.showroom-section *{box-sizing:border-box;margin:0;padding:0}.showroom-section{scroll-behavior:smooth}.showroom-section{background:#08090b;color:#eeedf2;font:14px/1.6 Inter,"PingFang SC",Arial,sans-serif}.showroom-section a{color:inherit;text-decoration:none}.showroom-section button,.showroom-section input{font:inherit}.showroom-section button{cursor:pointer}.showroom-section button,.showroom-section a,.showroom-section input{ -webkit-tap-highlight-color:transparent}.showroom-section a:focus-visible,.showroom-section button:focus-visible,.showroom-section input:focus-visible{outline:2px solid #f29a56;outline-offset:5px}.showroom-section header{height:92px;margin:0 5vw;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #ffffff22;position:relative;z-index:3}.showroom-section header b{font-size:22px;font-weight:500;letter-spacing:-1px}.showroom-section header b:before{content:'✳';margin-right:13px;color:#d8b28c}.showroom-section nav{display:flex;gap:30px;color:#a4a4af;font-size:12px}.showroom-section .opening{position:relative;isolation:isolate;overflow:hidden;min-height:650px;height:83vh;max-height:960px;display:flex;align-items:center;padding:65px 7vw 100px}.showroom-section .opening canvas{position:absolute;inset:0;width:100%;height:100%;z-index:-2}.showroom-section .opening:after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,#08090bd9,transparent 78%),linear-gradient(0deg,#08090b,transparent 30%)}.showroom-section .intro{max-width:780px}.showroom-section .eyebrow{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:#aba7ba}.showroom-section h1{font-size:clamp(44px,5.9vw,90px);line-height:1.28;letter-spacing:-3px;font-weight:400;max-width:780px;margin:32px 0}.showroom-section .intro p{max-width:440px;color:#92929d;line-height:2;font-size:14px}.showroom-section .scroll-cue{position:absolute;bottom:38px;left:7vw;display:flex;align-items:center;gap:22px;color:#93929c;font-size:11px}.showroom-section .scroll-cue:before{content:'↓';display:grid;place-items:center;border:1px solid #ffffff30;border-radius:50%;width:35px;height:35px}.showroom-section .section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px;border-top:1px solid #ffffff22;padding-top:24px}.showroom-section .section-head .index{color:#66626f;font-size:12px}.showroom-section section.block{padding:30px 7vw 100px}.showroom-section .featured-card{display:block;position:relative;width:100%;aspect-ratio:2.05;border:0;background:#131317;color:#fff;overflow:hidden;text-align:left}.showroom-section .featured-card .art{height:100%;aspect-ratio:auto}.showroom-section .featured-caption{position:absolute;inset:auto 0 0;padding:65px 38px 32px;background:linear-gradient(transparent,#000c);display:flex;align-items:flex-end;justify-content:space-between;gap:20px}.showroom-section .featured-caption h2{font-size:clamp(25px,3.6vw,52px);font-weight:400;letter-spacing:-1px}.showroom-section .featured-caption p{font-size:11px;color:#b5b1c2;margin-top:8px}.showroom-section .round-arrow{display:grid;place-items:center;border:1px solid #ffffff70;border-radius:50%;width:56px;height:56px;font-size:20px;flex:none}.showroom-section .tools{display:flex;justify-content:space-between;align-items:center;gap:25px;margin:18px 0 40px}.showroom-section .filters{display:flex;gap:23px;overflow:auto;scrollbar-width:none}.showroom-section .filters button{white-space:nowrap;padding:13px 0;border:0;border-bottom:1px solid transparent;background:none;color:#767582;font-size:12px}.showroom-section .filters button.on{border-color:#ded8eb;color:#fff}.showroom-section .tools input{width:190px;min-width:150px;background:transparent;border:0;border-bottom:1px solid #ffffff25;padding:12px 0;color:#ddd;font-size:12px;outline-offset:0}.showroom-section .grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:56px 28px;align-items:start}.showroom-section .card{grid-column:span 6;background:none;color:#fff;border:0;text-align:left;min-width:0}.showroom-section .card:nth-child(4n+2){margin-top:110px}.showroom-section .card:nth-child(4n+3){grid-column:span 5}.showroom-section .card:nth-child(4n+4){grid-column:7/span 6;margin-top:80px}.showroom-section .art{aspect-ratio:16/10;position:relative;overflow:hidden;background:#15151c}.showroom-section .portrait .art{aspect-ratio:3/4}.showroom-section .square .art{aspect-ratio:1}.showroom-section .art img{width:100%;height:100%;object-fit:cover;transition:transform .8s}.showroom-section .card:hover img,.showroom-section .featured-card:hover img{transform:scale(1.03)}.showroom-section .meta{display:flex;justify-content:space-between;align-items:center;margin-top:18px;gap:12px}.showroom-section .meta h2{font-size:19px;font-weight:400}.showroom-section .meta span,.showroom-section .caption{font-size:10px;color:#87818f}.showroom-section .caption{margin-top:6px}.showroom-section .art-badge{position:absolute;top:18px;left:18px;font-size:9px;letter-spacing:2px;color:#d7d0e1;z-index:2}.showroom-section .play{position:absolute;right:18px;bottom:18px;border-radius:50%;border:1px solid #ffffff50;width:36px;height:36px;display:grid;place-items:center;background:#0002}.showroom-section .duration{position:absolute;left:18px;bottom:18px;font-size:10px;color:#eee}.showroom-section .concept-art{background:radial-gradient(ellipse at 65% 65%,var(--tone,#483c39),transparent 70%),#111216}.showroom-section .concept-art:after{content:'';position:absolute;inset:0;opacity:.2;background:repeating-linear-gradient(0deg,transparent 0 3px,#ffffff09 4px)}.showroom-section .sculpture{position:absolute;left:24%;top:12%;width:52%;height:77%;border-radius:4px;background:linear-gradient(112deg,#ddd4c78c,#5e53463d 15%,#e9e0d573 23%,#221e1f 37%,#9e8e7950 70%,#e2d6c970);box-shadow:20px 30px 50px #0008,inset 1px 0 1px #fff8;transform:perspective(800px) rotateY(-24deg) rotateZ(12deg)}.showroom-section .sculpture:before{content:'';position:absolute;inset:17% -25%;border:1px solid #c2b2c060;border-radius:50%;transform:rotate(-36deg);box-shadow:0 0 50px #e3c7ff0d}.showroom-section .motif-1 .sculpture{border-radius:50% 50% 4% 4%;width:56%;height:82%;left:22%;top:16%;transform:rotate(-14deg);background:repeating-linear-gradient(100deg,#15131b,#9b8f9d 3px,#332e39 5px,#a89aaf50 8px)}.showroom-section .motif-2 .sculpture{height:42%;width:80%;left:10%;top:27%;transform:perspective(700px) rotateX(50deg) rotateZ(-26deg);background:repeating-linear-gradient(90deg,#15171b,#858e98 2px,#222934 7px,#15191c 13px)}.showroom-section .motif-3 .sculpture{border-radius:47% 47% 40% 40%;height:60%;width:43%;top:18%;left:29%;background:linear-gradient(110deg,#bfc1d377,#2c293b 35%,#77758d99 72%,#13121d);transform:rotate(-9deg)}.showroom-section .motif-4 .sculpture{border-radius:2px;width:32%;left:34%;height:58%;top:21%;transform:rotate(10deg);background:linear-gradient(95deg,#736244,#e0c79a66 12%,#322c23 42%,#b8a582 85%,#443b2b);box-shadow:30px 30px 20px #0008}.showroom-section .motif-5 .sculpture{width:70%;height:70%;left:15%;top:15%;border-radius:50%;transform:rotate(-32deg);background:repeating-radial-gradient(ellipse,#141017 0 12px,#b4a4b4 14px,#302235 16px,#17101b 26px)}.showroom-section .actors{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:40px}.showroom-section .actors .card{margin:0;grid-column:auto}.showroom-section .actors .art{aspect-ratio:3/4}.showroom-section .section-title{font-size:clamp(30px,4vw,56px);font-weight:400;line-height:1.4;letter-spacing:-1.5px;margin:30px 0 15px}.showroom-section .section-description{max-width:620px;color:#8b8795;line-height:1.9}.showroom-section .info{padding:70px 7vw;border-top:1px solid #ffffff18}.showroom-section .services{display:grid;grid-template-columns:repeat(3,1fr);gap:42px;margin-top:45px}.showroom-section .services article{padding-top:22px;border-top:1px solid #ffffff20}.showroom-section .services h3{font-size:17px;font-weight:400;margin-bottom:12px}.showroom-section .services p{color:#85818e;line-height:1.9;font-size:12px}.showroom-section #contact{padding-top:100px;padding-bottom:110px;background:radial-gradient(ellipse at 90% 100%,#24203155,transparent 60%)}.showroom-section .contact-value{display:inline-block;margin-top:32px;border-bottom:1px solid #a9a2b7;padding:12px 0;font-size:21px}.showroom-section footer{padding:28px 7vw;border-top:1px solid #ffffff18;color:#66616e;font-size:11px}.showroom-section .empty{padding:50px 0;color:#777;grid-column:1/-1}.showroom-section dialog{margin:auto;padding:30px;width:min(1000px,94vw);max-height:92dvh;background:#111116;color:#eee;border:1px solid #ffffff25;overflow:auto}.showroom-section dialog::backdrop{background:#000d;backdrop-filter:blur(15px)}.showroom-section .dialog-top{display:flex;justify-content:space-between;align-items:center;color:#aaa;font-size:12px}.showroom-section .dialog-top button{border:1px solid #ffffff30;background:transparent;color:#ddd;padding:9px 16px}.showroom-section dialog h2{font-size:32px;font-weight:400;margin:24px 0}.showroom-section dialog p{line-height:1.9;color:#96909f}.showroom-section dialog img,.showroom-section dialog video{width:100%;max-height:60vh;object-fit:contain;margin:24px 0;background:#050507}.showroom-section .no-media{padding:65px 20px;margin:24px 0;text-align:center;background:#0a0a0d;color:#716a7d}.showroom-section [hidden]{display:none!important}@media(max-width:900px){.showroom-section .tools{flex-direction:column;align-items:stretch}.showroom-section .tools input{width:100%;max-width:280px}.showroom-section .opening{min-height:590px}.showroom-section .services{grid-template-columns:repeat(2,1fr)}.showroom-section .actors{grid-template-columns:repeat(2,1fr)}.showroom-section nav{gap:18px}.showroom-section .featured-card{aspect-ratio:1.6}}@media(max-width:560px){.showroom-section header{height:74px;margin:0 6vw}.showroom-section header b{font-size:18px}.showroom-section nav a:nth-child(2),.showroom-section nav a:nth-child(3){display:none}.showroom-section .opening{height:70svh;min-height:510px;max-height:650px;padding:65px 6vw 100px;align-items:flex-start}.showroom-section .opening:after{background:linear-gradient(0deg,#08090b,transparent 50%),linear-gradient(90deg,#08090b90,transparent)}.showroom-section h1{font-size:43px;line-height:1.35;letter-spacing:-2px;max-width:350px;margin:28px 0 20px}.showroom-section .intro p{font-size:12px;max-width:280px}.showroom-section .eyebrow{font-size:9px;letter-spacing:2px}.showroom-section .scroll-cue{left:6vw;bottom:28px}.showroom-section section.block{padding:25px 6vw 65px}.showroom-section .featured-card{aspect-ratio:4/5}.showroom-section .featured-caption{padding:60px 22px 24px}.showroom-section .featured-caption h2{font-size:29px}.showroom-section .round-arrow{width:42px;height:42px}.showroom-section .grid{gap:32px 14px}.showroom-section .card,.showroom-section .card:nth-child(4n+3),.showroom-section .card:nth-child(4n+4){grid-column:span 6;margin-top:0}.showroom-section .card.wide{grid-column:1/-1}.showroom-section .card:nth-child(4n+2){margin-top:0}.showroom-section .meta{align-items:flex-start;flex-direction:column;gap:4px}.showroom-section .meta h2{font-size:17px}.showroom-section .card.wide .meta{flex-direction:row}.showroom-section .caption{font-size:9px}.showroom-section .tools{margin:0 0 28px;gap:12px}.showroom-section .filters{gap:20px}.showroom-section .filters button{font-size:11px}.showroom-section .info{padding:55px 6vw}.showroom-section .services{grid-template-columns:1fr;gap:24px}.showroom-section .actors{gap:16px}.showroom-section .actors .card .meta h2{font-size:16px}.showroom-section .section-title{font-size:32px}.showroom-section .section-description{font-size:13px}.showroom-section .featured-card .sculpture{width:56%;left:22%}.showroom-section .art-badge{left:13px;top:13px;font-size:8px}.showroom-section dialog{padding:20px}.showroom-section dialog h2{font-size:25px}.showroom-section #contact{padding:65px 6vw}.showroom-section footer{padding:24px 6vw}.showroom-section .actors .caption{line-height:1.6}}@media(prefers-reduced-motion:reduce){.showroom-section{scroll-behavior:auto}.showroom-section *{transition:none!important}}
.showroom-section .featured-card .play{display:none}
/* Readable categories and a shareable black / white gallery theme. */
.showroom-section .filters{gap:28px}.showroom-section .filters button{font-size:17px;font-weight:500;color:#b3afbf;min-height:48px;border-bottom-width:2px}.showroom-section .filters button.on{color:#fff;border-color:#fff}.showroom-section .tools input{font-size:15px;min-height:48px;color:#ddd}.showroom-section .tools input::placeholder{color:#9994a5;opacity:1}.showroom-section .theme-toolbar{position:relative;z-index:4;margin:18px 5vw 0;display:flex;align-items:center;justify-content:flex-end;gap:14px;flex-wrap:wrap;font-size:12px}.showroom-section .theme-options{display:flex;border:1px solid #ffffff30;padding:3px;border-radius:30px}.showroom-section .theme-options button{border:0;border-radius:30px;color:#aaa4b8;background:transparent;min-width:58px;min-height:36px}.showroom-section .theme-options button[aria-pressed=true]{color:#17151d;background:#eeeaf4}.showroom-section #share-link{background:transparent;border:1px solid #ffffff30;color:#ccc5d9;padding:10px 16px;border-radius:30px;min-height:42px}.showroom-section #share-status{flex-basis:100%;text-align:right;color:#ada5bb;font-size:12px;max-width:100%}.showroom-section #share-status:empty{display:none}.showroom-section #share-fallback{width:min(600px,100%);padding:10px;border:1px solid #aaa;background:#fff;color:#111}html[data-theme=light] .showroom-section,html[data-theme=light] .showroom-section{background:#f7f7f4;color:#202129}html[data-theme=light] .showroom-section header{border-color:#2222}html[data-theme=light] .showroom-section header b:before{color:#585365}html[data-theme=light] .showroom-section nav{color:#585562}html[data-theme=light] .showroom-section .opening:after{background:linear-gradient(90deg,#f7f7f4d9,transparent 78%),linear-gradient(0deg,#f7f7f4,transparent 30%)}html[data-theme=light] .showroom-section #fluid{filter:invert(1)}html[data-theme=light] .showroom-section .eyebrow,html[data-theme=light] .showroom-section .intro p,html[data-theme=light] .showroom-section .scroll-cue,html[data-theme=light] .showroom-section .section-description{color:#625c6d}html[data-theme=light] .showroom-section .scroll-cue:before,html[data-theme=light] .showroom-section .section-head,html[data-theme=light] .showroom-section .info,html[data-theme=light] .showroom-section .services article,html[data-theme=light] .showroom-section footer{border-color:#28213225}html[data-theme=light] .showroom-section .filters button{color:#696372}html[data-theme=light] .showroom-section .filters button.on{color:#14121a;border-color:#14121a}html[data-theme=light] .showroom-section .tools input{color:#25212e;border-color:#2224}html[data-theme=light] .showroom-section .tools input::placeholder{color:#746f7d}html[data-theme=light] .showroom-section .card{color:#25212e}html[data-theme=light] .showroom-section .meta span,html[data-theme=light] .showroom-section .caption,html[data-theme=light] .showroom-section .services p,html[data-theme=light] .showroom-section footer{color:#6d6776}html[data-theme=light] .showroom-section #contact{background:radial-gradient(ellipse at 90% 100%,#dfdce970,transparent 65%)}html[data-theme=light] .showroom-section .theme-options,html[data-theme=light] .showroom-section #share-link{border-color:#24202e35;color:#494251}html[data-theme=light] .showroom-section .theme-options button{color:#625c6d}html[data-theme=light] .showroom-section .theme-options button[aria-pressed=true]{background:#bf5414;color:#fff}html[data-theme=light] .showroom-section #share-status{color:#625c6d}html[data-theme=light] .showroom-section dialog{background:#f7f7f4;color:#24202c;border-color:#aaa}html[data-theme=light] .showroom-section dialog p,html[data-theme=light] .showroom-section .dialog-top{color:#625c6d}html[data-theme=light] .showroom-section .dialog-top button{color:#25212e;border-color:#2224}html[data-theme=light] .showroom-section .no-media{background:#eae8ed;color:#625c6d}html[data-theme=light] .showroom-section .art-badge,html[data-theme=light] .showroom-section .duration,html[data-theme=light] .showroom-section .play{color:#eee}html[data-theme=light] .showroom-section .art img{filter:none}@media(max-width:560px){.showroom-section .filters{gap:24px}.showroom-section .filters button{font-size:16px}.showroom-section .tools input{font-size:15px}.showroom-section .theme-toolbar{margin:14px 6vw 0;gap:10px}.showroom-section .theme-options button{min-height:38px}.showroom-section .theme-toolbar #share-status{font-size:11px}html[data-theme=light] .showroom-section .opening:after{background:linear-gradient(0deg,#f7f7f4,transparent 50%),linear-gradient(90deg,#f7f7f490,transparent)}}
/* Compact gallery: aligned rows, wrapped categories, reduced section spacing. */
.showroom-section header{height:74px}.showroom-section .theme-toolbar{margin-top:12px;gap:10px}.showroom-section .opening{height:48vh;min-height:350px;max-height:480px;padding:38px 5vw 60px}.showroom-section .intro{max-width:860px}.showroom-section h1{font-size:clamp(38px,4.5vw,64px);margin:18px 0 14px;max-width:860px}.showroom-section .intro p{max-width:580px}.showroom-section .scroll-cue{bottom:18px;left:5vw;gap:12px}.showroom-section .scroll-cue:before{width:28px;height:28px}.showroom-section section.block{padding:18px 5vw 38px}.showroom-section .section-head{padding-top:18px;margin-bottom:18px}.showroom-section .featured-card{aspect-ratio:2.9;max-height:360px}.showroom-section .featured-caption{padding:40px 26px 23px}.showroom-section .featured-caption h2{font-size:clamp(26px,3vw,40px)}.showroom-section .tools{display:grid;grid-template-columns:minmax(0,1fr) 210px;align-items:start;gap:14px;margin:0 0 22px;padding:14px 0;border-bottom:1px solid #ffffff20}.showroom-section .filters{display:flex;flex-wrap:wrap;gap:6px 10px;overflow:visible}.showroom-section .filters button{font-size:16px;min-height:42px;padding:8px 12px;border:1px solid transparent;border-radius:5px;color:#bab5c5}.showroom-section .filters button.on{border-color:#ffffff40;background:#ffffff0d;color:white}.showroom-section .tools input{width:100%;max-width:none;min-width:0;min-height:42px;padding:9px 12px;border:1px solid #ffffff25;border-radius:5px;font-size:14px}.showroom-section .grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:25px 18px;align-items:start}.showroom-section .grid .card,.showroom-section .grid .card:nth-child(n){grid-column:auto;margin-top:0}.showroom-section .grid .art,.showroom-section .grid .portrait .art,.showroom-section .grid .square .art{aspect-ratio:4/3}.showroom-section .grid .portrait img{object-fit:contain;background:#121217}.showroom-section .meta{margin-top:10px;gap:8px}.showroom-section .meta h2{font-size:17px;line-height:1.5}.showroom-section .caption{margin-top:3px;font-size:10px}.showroom-section .art-badge{top:11px;left:12px;letter-spacing:1px;font-size:8px}.showroom-section .section-title{font-size:clamp(27px,3vw,42px);margin:18px 0 12px}.showroom-section .actors{gap:18px;margin-top:24px;grid-template-columns:repeat(4,minmax(0,1fr))}.showroom-section .info{padding:38px 5vw}.showroom-section .services{gap:24px;margin-top:25px}.showroom-section .services article{padding-top:16px}.showroom-section .services h3{margin-bottom:8px}.showroom-section #contact{padding:45px 5vw}.showroom-section .contact-value{margin-top:18px;padding:8px 0}.showroom-section footer{padding:20px 5vw}html[data-theme=light] .showroom-section .tools{border-color:#28213225}html[data-theme=light] .showroom-section .filters button.on{background:#bf5414;color:#fff;border-color:#bf5414}html[data-theme=light] .showroom-section .tools input{border-color:#24202e30}html[data-theme=light] .showroom-section .grid .portrait img{background:#e9e7eb}
@media(max-width:1100px){.showroom-section .tools{grid-template-columns:1fr}.showroom-section .tools input{width:260px;justify-self:end}.showroom-section .filters{gap:5px 9px}.showroom-section .grid{grid-template-columns:repeat(2,minmax(0,1fr))}.showroom-section .actors{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:560px){.showroom-section header{height:64px;margin:0 5vw}.showroom-section .theme-toolbar{margin:10px 5vw 0}.showroom-section .opening{height:auto;min-height:320px;max-height:none;padding:38px 5vw 60px;align-items:center}.showroom-section h1{font-size:35px;line-height:1.3;letter-spacing:-1.5px;margin:15px 0 12px;max-width:360px}.showroom-section .intro p{font-size:12px;max-width:330px;line-height:1.8}.showroom-section .scroll-cue{left:5vw;bottom:16px}.showroom-section .eyebrow{letter-spacing:1.5px}.showroom-section section.block{padding:14px 5vw 28px}.showroom-section .section-head{padding-top:15px;margin-bottom:14px}.showroom-section .featured-card{aspect-ratio:1.65;max-height:none}.showroom-section .featured-caption{padding:40px 16px 16px}.showroom-section .featured-caption h2{font-size:25px}.showroom-section .featured-caption p{margin-top:3px}.showroom-section .round-arrow{width:35px;height:35px}.showroom-section .tools{padding:8px 0 14px;gap:10px;margin-bottom:17px}.showroom-section .filters{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:5px;width:100%}.showroom-section .filters button{font-size:14px;font-weight:500;min-height:42px;padding:8px 3px;white-space:nowrap}.showroom-section .tools input{width:100%;justify-self:stretch;min-height:42px;font-size:14px}.showroom-section .grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 12px}.showroom-section .grid .card.wide{grid-column:auto}.showroom-section .grid .art{aspect-ratio:4/3}.showroom-section .meta,.showroom-section .card.wide .meta{flex-direction:column;align-items:flex-start;gap:2px;margin-top:8px}.showroom-section .meta h2{font-size:15px}.showroom-section .meta span{font-size:10px}.showroom-section .caption{font-size:9px;line-height:1.5}.showroom-section .art-badge{font-size:7px;left:8px;top:8px;letter-spacing:0}.showroom-section .play{width:27px;height:27px;right:8px;bottom:8px}.showroom-section .actors{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px}.showroom-section .info{padding:30px 5vw}.showroom-section .section-title{font-size:27px;letter-spacing:-1px}.showroom-section .services{gap:20px;margin-top:20px;grid-template-columns:1fr}.showroom-section .services article{padding-top:12px}.showroom-section #contact{padding:34px 5vw}.showroom-section .contact-value{font-size:18px}.showroom-section footer{padding:18px 5vw}}
/* AI application cards: CSS perspective geometry, touch expansion, themed surfaces. */
.showroom-section #services{position:relative;background:radial-gradient(ellipse at 50% 0,#65361520,transparent 70%)}.showroom-section #services>.section-title{max-width:820px}.showroom-section #services>.section-description{max-width:740px;font-size:15px}.showroom-section .services{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:30px;perspective:1400px;align-items:start}.showroom-section .services .application-card{position:relative;min-width:0;padding:20px;border:1px solid #ffffff20;border-radius:14px;background:linear-gradient(145deg,#202027,#111217);transform:rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg));transition:transform .3s ease,border-color .3s;box-shadow:0 8px 24px #0002;overflow:hidden}.showroom-section .application-card:before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at var(--light-x,30%) var(--light-y,0%),#ffffff0d,transparent 60%)}.showroom-section .application-visual{height:130px;position:relative;display:grid;place-items:center;border-radius:8px;background:radial-gradient(ellipse at 50% 80%,#c37f381c,transparent 65%);perspective:650px;overflow:hidden;margin-bottom:16px}.showroom-section .application-visual:after{content:'';position:absolute;bottom:9px;left:28%;width:44%;height:10px;background:#0003;filter:blur(7px);border-radius:50%}.showroom-section .application-core{position:relative;width:68px;height:68px;transform-style:preserve-3d;transform:rotateX(55deg) rotateZ(-30deg)}.showroom-section .application-core i{position:absolute;inset:0;display:block;border:1px solid #deb79299;background:linear-gradient(135deg,#eed6ba3d,#6d452615);box-shadow:inset 0 1px 1px #fff8;transform:translateZ(0)}.showroom-section .application-core i:nth-child(2){transform:translateZ(19px)}.showroom-section .application-core i:nth-child(3){transform:translateZ(38px)}.showroom-section .shape-1 .application-core i{border-radius:50%;background:transparent;border-width:2px}.showroom-section .shape-2 .application-core{transform:rotateX(-15deg) rotateY(-35deg) rotateZ(15deg)}.showroom-section .shape-2 .application-core i{height:85px;border-radius:4px}.showroom-section .shape-3 .application-core i{clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%);background:linear-gradient(135deg,#ddd6eb99,#65527e44);border:0}.showroom-section .application-index{position:absolute;top:8px;left:2px;color:#8c8299;font-size:11px;letter-spacing:2px}.showroom-section .application-label{font-size:10px;letter-spacing:2px;color:#c39a77}.showroom-section .services .application-card h3{font-size:21px;font-weight:500;margin:8px 0 12px}.showroom-section .services .application-card p{font-size:14px;line-height:1.85;color:#b6afc0;margin:0}.showroom-section .application-summary{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.showroom-section .expanded .application-summary{display:block;overflow:visible}.showroom-section .application-toggle,.showroom-section .application-explore{position:relative;font-size:12px;min-height:42px;border:0;border-top:1px solid #ffffff20;background:transparent;color:#f6d9bf;text-align:left;padding:12px 0 0;margin-top:18px;width:100%;cursor:pointer}.showroom-section .application-toggle:after{content:'+';float:right;font-size:18px;line-height:1}.showroom-section .expanded .application-toggle:after{content:'−'}.showroom-section .application-explore{margin-top:6px;padding-top:8px;border-top:0;color:#e8a56b}.showroom-section .in-view .application-core{animation:application-float 8s ease-in-out infinite}.showroom-section .application-card:nth-child(2n) .application-core{animation-delay:-3s}@keyframes application-float{0%,100%{translate:0 0}50%{translate:0 -8px}}html[data-theme=light] .showroom-section #services{background:radial-gradient(ellipse at 50% 0,#edcfb255,transparent 70%)}html[data-theme=light] .showroom-section .services .application-card{background:linear-gradient(140deg,#fff,#eeedf1);border-color:#dccfc3;box-shadow:0 7px 22px #52301609}html[data-theme=light] .showroom-section .application-card:before{background:radial-gradient(circle at var(--light-x,30%) var(--light-y,0%),#fff9,transparent 65%)}html[data-theme=light] .showroom-section .application-visual{background:radial-gradient(ellipse at 50% 70%,#e5c2a088,transparent 70%)}html[data-theme=light] .showroom-section .application-core i{border-color:#ae783eaa;background:linear-gradient(135deg,#fff9,#ac743d30)}html[data-theme=light] .showroom-section .shape-1 .application-core i{background:transparent}html[data-theme=light] .showroom-section .shape-3 .application-core i{background:linear-gradient(135deg,#cead89,#83542d55)}html[data-theme=light] .showroom-section .services .application-card p{color:#68606f}html[data-theme=light] .showroom-section .application-label{color:#9b6032}html[data-theme=light] .showroom-section .application-toggle,html[data-theme=light] .showroom-section .application-explore{color:#91491b;border-color:#decdbd}@media(max-width:1050px){.showroom-section .services{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:560px){.showroom-section .services{grid-template-columns:1fr;gap:12px}.showroom-section .services .application-card{padding:18px 18px 14px;display:grid;grid-template-columns:1fr 86px;column-gap:14px}.showroom-section .application-visual{grid-column:2;grid-row:1/4;height:110px;width:86px;margin:0;align-self:center}.showroom-section .application-core{width:46px;height:46px}.showroom-section .application-core i:nth-child(2){transform:translateZ(13px)}.showroom-section .application-core i:nth-child(3){transform:translateZ(26px)}.showroom-section .shape-2 .application-core i{height:65px}.showroom-section .application-label,.showroom-section .services .application-card h3,.showroom-section .application-summary{grid-column:1}.showroom-section .services .application-card h3{font-size:20px;margin:6px 0 9px}.showroom-section .services .application-card p{font-size:13px}.showroom-section .application-toggle,.showroom-section .application-explore{grid-column:1/-1;margin-top:12px}.showroom-section .application-index{display:none}.showroom-section .expanded .application-summary{grid-column:1/-1}.showroom-section .expanded .application-visual{grid-row:1/3;height:76px}.showroom-section #services>.section-description{font-size:14px}}@media(prefers-reduced-motion:reduce){.showroom-section .application-card,.showroom-section .application-core{animation:none!important;transform:none!important;translate:none!important}}
/* Clear hierarchy and explicit entry points. */
.showroom-section .opening{min-height:390px;height:auto;padding-top:44px;padding-bottom:65px}.showroom-section .opening .intro{max-width:900px}.showroom-section .opening h1{font-weight:600;font-size:clamp(36px,4.3vw,62px);line-height:1.3;letter-spacing:-1.7px;max-width:850px;color:#f4f1fa;border-left:4px solid #e87924;padding-left:20px}.showroom-section .opening .intro>p{font-size:16px;line-height:1.9;color:#bab3c8;max-width:690px;padding-left:24px}.showroom-section .hero-entry{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px;padding-left:24px}.showroom-section .hero-entry a{padding:13px 22px;min-height:48px;border-radius:6px;font-size:15px;font-weight:500;display:inline-flex;align-items:center;gap:18px}.showroom-section .hero-entry a:after{content:'↗'}.showroom-section .browse-primary{background:#ef822c;color:#241208;box-shadow:0 4px 20px #d66b2022}.showroom-section .browse-secondary{border:1px solid #c96a2860;color:#ffe1c7;background:#21140c70}.showroom-section .opening>.scroll-cue{display:none}.showroom-section .actor-tools{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-top:24px}.showroom-section .actor-tools input{width:min(460px,75%);min-height:44px;padding:10px 14px;background:transparent;color:inherit;border:1px solid #ffffff30;border-radius:5px}.showroom-section .actor-tools span{color:#aaa1b6;font-size:12px}.showroom-section .actor-more{display:block;margin:24px auto 0;padding:12px 25px;background:transparent;color:inherit;border:1px solid #cf782e77;border-radius:5px;min-height:46px}.showroom-section .actors{grid-template-columns:repeat(4,minmax(0,1fr))}.showroom-section .actors .caption{display:none}html[data-theme=light] .showroom-section .opening h1{color:#26212e;border-color:#ce641f}html[data-theme=light] .showroom-section .opening .intro>p{color:#5f566a}html[data-theme=light] .showroom-section .browse-primary{background:#bd5010;color:white}html[data-theme=light] .showroom-section .browse-secondary{background:#ffffff99;border-color:#d49a70;color:#9b4314}html[data-theme=light] .showroom-section .actor-tools input{border-color:#33224440}html[data-theme=light] .showroom-section .actor-tools span{color:#655b70}@media(max-width:760px){.showroom-section .actors{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:560px){.showroom-section .opening{padding-top:30px;padding-bottom:32px;min-height:0;max-height:none}.showroom-section .opening h1{font-size:33px;padding-left:14px;border-left-width:3px;line-height:1.35;letter-spacing:-1px}.showroom-section .opening .intro>p{font-size:14px;padding-left:17px;line-height:1.85}.showroom-section .hero-entry{padding-left:17px;gap:8px;margin-top:20px}.showroom-section .hero-entry a{font-size:13px;padding:12px 14px;gap:9px}.showroom-section .actors{grid-template-columns:repeat(2,minmax(0,1fr))}.showroom-section .actor-tools{align-items:flex-start;flex-direction:column}.showroom-section .actor-tools input{width:100%}}

/* Featured section heading emphasis, editable through works.featuredLabel. */
.showroom-section #featured .section-head{padding-top:20px;margin-bottom:20px;align-items:center}
.showroom-section #featured .section-head .eyebrow{font-size:26px;font-weight:600;letter-spacing:1px;line-height:1.4;color:#ffb16a;padding-left:14px;border-left:4px solid #e87924;text-transform:none}
.showroom-section #featured .section-head .index{font-size:22px;color:#ffad65}
html[data-theme=light] .showroom-section #featured .section-head .eyebrow{color:#a94710;border-color:#d8661c}
html[data-theme=light] .showroom-section #featured .section-head .index{color:#b55015}
@media(max-width:560px){.showroom-section #featured .section-head .eyebrow{font-size:22px;letter-spacing:.5px;padding-left:11px;border-left-width:3px}.showroom-section #featured .section-head{margin-bottom:16px}}

/* Warm orange identity; readable in light and dark modes. */
.showroom-section .filters button.on,html[data-theme=light] .showroom-section .filters button.on{background:#c65b19;border-color:#c65b19;color:#fff}
.showroom-section .browse-primary,html[data-theme=light] .showroom-section .browse-primary{background:#c65b19;color:#fff;box-shadow:0 4px 18px #d7752422}
.showroom-section .theme-options button[aria-pressed=true]{background:#e8873c;color:#201106}
html[data-theme=light] .showroom-section .theme-options button[aria-pressed=true]{background:#c65b19;color:#fff}
.showroom-section #featured .section-head .eyebrow,.showroom-section #featured .section-head .index{color:#ffaf6b;border-color:#e87924}
html[data-theme=light] .showroom-section #featured .section-head .eyebrow,html[data-theme=light] .showroom-section #featured .section-head .index{color:#ad4c12;border-color:#df7429}
.showroom-section .opening h1{border-color:#e87924}html[data-theme=light] .showroom-section .opening h1{border-color:#d6691e}
.showroom-section #contact{background:radial-gradient(ellipse at 90% 100%,#57321544,transparent 65%)}html[data-theme=light] .showroom-section #contact{background:radial-gradient(ellipse at 90% 100%,#edd1b670,transparent 65%)}
.showroom-section .application-visual{filter:sepia(.25)}
@media(max-width:560px){.showroom-section .filters{grid-template-columns:repeat(2,minmax(0,1fr))}.showroom-section .filters button{font-size:14px}}

.showroom-section .actor-development{display:inline-block;margin-top:20px;padding:9px 18px;border:1px solid #d57a37;border-radius:6px;background:#e8792415;color:#e99758;font-size:15px;font-weight:500}.showroom-section .category-status{display:block;font-size:10px;line-height:1.3;color:#db955f;margin-top:3px}html[data-theme=light] .showroom-section .actor-development,html[data-theme=light] .showroom-section .category-status{color:#a14c16}.showroom-section #actors{border-top:1px solid #ffffff20;padding-top:30px}html[data-theme=light] .showroom-section #actors{border-color:#28213225}
/* Raised work cards: visible surfaces in both gallery themes. */
.showroom-section #collection{background:#111214;border-top:1px solid #ffffff14;border-bottom:1px solid #ffffff14;padding-top:28px;padding-bottom:40px}
.showroom-section #collection .section-head{border-top:0;padding-top:0}
.showroom-section #collection .grid{gap:24px 18px;align-items:stretch}
.showroom-section #collection .grid .card{display:flex;flex-direction:column;align-self:stretch;padding:10px 10px 16px;background:linear-gradient(145deg,#2a2b2e,#212225);border:1px solid #ffffff26;border-radius:14px;box-shadow:0 7px 18px #0004,inset 0 1px 0 #ffffff0a;overflow:hidden;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.showroom-section #collection .card .art{width:100%;flex:none;border-radius:8px;border:1px solid #ffffff12}
.showroom-section #collection .card .meta{width:100%;padding:0 5px;margin:13px 0 0;align-items:flex-start;flex-wrap:wrap}
.showroom-section #collection .card .meta h2{color:#faf8f5}
.showroom-section #collection .card .meta span{color:#c2bdb6}
.showroom-section #collection .card .caption{color:#aaa59f;margin:6px 5px 0}
.showroom-section #featured-content{padding:10px;border:1px solid #ffffff24;border-radius:16px;background:#232426;box-shadow:0 9px 25px #0003,inset 0 1px 0 #ffffff0a}
.showroom-section #featured-content .featured-card{border-radius:9px}
html[data-theme=light] .showroom-section #collection{background:#eeede9;border-color:#dcd9d2}
html[data-theme=light] .showroom-section #collection .grid .card{background:linear-gradient(145deg,#fff,#fdfcfa);border-color:#d8d4cd;box-shadow:0 6px 15px #39302612,0 1px 2px #3930260a,inset 0 1px 0 #fff}
html[data-theme=light] .showroom-section #collection .card .art{border-color:#0000000d}
html[data-theme=light] .showroom-section #collection .card .meta h2{color:#27231e}
html[data-theme=light] .showroom-section #collection .card .meta span{color:#6d6459}
html[data-theme=light] .showroom-section #collection .card .caption{color:#7b746b}
html[data-theme=light] .showroom-section #featured-content{background:#fff;border-color:#d8d4cd;box-shadow:0 8px 22px #39302612}
@media(hover:hover) and (pointer:fine){.showroom-section #collection .grid .card:hover{transform:translateY(-4px);border-color:#ca7d42;box-shadow:0 13px 25px #0005}html[data-theme=light] .showroom-section #collection .grid .card:hover{border-color:#d18d56;box-shadow:0 12px 25px #69402020}}
.showroom-section #collection .grid .card:active{transform:translateY(-1px)}
@media(max-width:560px){.showroom-section #collection{padding-top:22px;padding-bottom:28px}.showroom-section #collection .grid{gap:16px 12px}.showroom-section #collection .grid .card{padding:7px 7px 12px;border-radius:11px}.showroom-section #collection .card .art{border-radius:6px}.showroom-section #collection .card .meta{padding:0 3px;margin-top:10px;gap:4px}.showroom-section #collection .card .meta h2{font-size:15px;line-height:1.45}.showroom-section #collection .card .caption{margin:5px 3px 0}.showroom-section #featured-content{padding:7px;border-radius:12px}}
@media(prefers-reduced-motion:reduce){.showroom-section #collection .grid .card{transition:none!important;transform:none!important}}

/* A single warm, flowing atmosphere connects the studio story and prices. */
.showroom-section #studio-lower{position:relative;isolation:isolate;overflow:hidden;background:#101112}.showroom-section #studio-flow{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:-1}.showroom-section #studio-lower>.info,.showroom-section #studio-lower>#actors{position:relative;background:transparent;padding:48px 5vw;border-color:#ffffff15}.showroom-section .studio-kicker{font-size:12px;font-weight:600;letter-spacing:2px;color:#eaaa77;display:block}.showroom-section .studio-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:40px}.showroom-section .studio-heading>div{flex:1}.showroom-section .studio-heading>p{max-width:340px;font-size:12px}.showroom-section #studio-lower .section-title{font-size:clamp(27px,3vw,42px);font-weight:500;letter-spacing:-1px;margin:12px 0 15px}.showroom-section #studio-lower .section-description{font-size:14px;max-width:760px;color:#aaa6a0}
.showroom-section #services .services{grid-template-columns:repeat(4,minmax(0,1fr));gap:0;border:1px solid #ffffff25;border-radius:16px;overflow:hidden;background:#18191be6;perspective:none;margin-top:25px}.showroom-section #services .process-card{padding:25px 22px;border:0;border-right:1px solid #ffffff18;position:relative;background:transparent}.showroom-section #services .process-card:last-child{border-right:0}.showroom-section .process-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:38px}.showroom-section .process-number{font-size:40px;color:#dba16e;line-height:1;font-weight:500;letter-spacing:-2px}.showroom-section .process-symbol{font-size:23px;color:#827260}.showroom-section #services .process-card h3{font-size:19px;font-weight:600;margin:0 0 13px}.showroom-section #services .process-card p{font-size:13px;color:#b7b0a8;line-height:1.85}
.showroom-section .brand-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;margin-top:26px}.showroom-section .brand-cell{min-height:94px;display:flex;align-items:center;justify-content:center;padding:20px 12px;border:1px solid #ffffff1c;border-radius:10px;background:#252526a8;box-shadow:inset 0 1px 0 #ffffff06}.showroom-section .brand-wordmark{font-size:24px;font-weight:700;letter-spacing:-1px;text-align:center;color:#dfdad4}.showroom-section .brand-0{font-style:italic}.showroom-section .brand-1{font-family:serif;letter-spacing:3px}.showroom-section .brand-4,.showroom-section .brand-6{letter-spacing:2px}.showroom-section .brand-cell img{width:100%;height:48px;object-fit:contain}.showroom-section .plans-label{font-size:14px;font-weight:500;color:#c1b8ad;margin:28px 0 15px}.showroom-section .price-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.showroom-section .price-card{position:relative;display:flex;flex-direction:column;padding:25px 22px;border:1px solid #ffffff26;border-radius:14px;background:linear-gradient(145deg,#292a2ced,#1d1e20ed);box-shadow:0 8px 24px #0002;min-width:0}.showroom-section .price-card.recommended{border-color:#d77c35;background:linear-gradient(145deg,#423021f0,#25201ced)}.showroom-section .plan-tag{font-size:11px;letter-spacing:1px;color:#eaaa77}.showroom-section .price-card h3{font-size:21px;font-weight:500;margin:9px 0 22px}.showroom-section .plan-price{display:flex;align-items:baseline;flex-wrap:wrap;column-gap:4px;line-height:1.05;color:#ffae67}.showroom-section .plan-price>span{font-size:22px}.showroom-section .plan-price strong{font-size:clamp(38px,3.7vw,57px);font-weight:600;letter-spacing:-2px}.showroom-section .plan-price small{font-size:12px;color:#c3b09c;margin-top:8px;width:100%;letter-spacing:0}.showroom-section .plan-summary{font-size:12px;color:#aaa49c;line-height:1.7;margin:18px 0}.showroom-section .price-card ul{list-style:none;border-top:1px solid #ffffff1a;padding-top:17px;margin-bottom:20px}.showroom-section .price-card li{font-size:13px;margin:0 0 10px;padding-left:17px;position:relative;line-height:1.65}.showroom-section .price-card li:before{content:'+';position:absolute;left:0;color:#e49350}.showroom-section .plan-note{font-size:11px;line-height:1.75;color:#99928a;margin-top:auto;margin-bottom:18px}.showroom-section .plan-link,.showroom-section .quote-link{display:inline-flex;align-items:center;justify-content:center;min-height:45px;padding:10px 18px;border:1px solid #b36c35;border-radius:6px;font-size:13px;color:#ffceaa}.showroom-section .recommended .plan-link{background:#c65b19;color:#fff}.showroom-section .pricing-note{color:#948d84;font-size:12px;line-height:1.9;margin:18px 0 26px;max-width:1100px}.showroom-section .custom-film{display:grid;grid-template-columns:1.3fr 1fr;border:1px solid #b8764380;border-radius:16px;background:linear-gradient(115deg,#34251bdb,#191a1be6);overflow:hidden}.showroom-section .film-main{padding:35px}.showroom-section .film-main h3{font-size:clamp(22px,2.7vw,34px);font-weight:500;margin:17px 0 22px}.showroom-section .film-price{color:#ffae67;display:flex;align-items:baseline;flex-wrap:wrap;gap:6px;line-height:1.15}.showroom-section .film-price strong{font-size:clamp(38px,4.9vw,70px);font-weight:600;letter-spacing:-2px}.showroom-section .film-price>span:first-child{font-size:24px}.showroom-section .film-price>span:last-child{font-size:14px}.showroom-section .film-main>p{font-size:13px;line-height:1.9;color:#baafa4;max-width:620px;margin:20px 0}.showroom-section .film-main .quote-link{background:#c65b19;color:#fff}.showroom-section .film-detail{padding:35px;border-left:1px solid #ba895236}.showroom-section .cost-factor{position:relative;padding-left:34px;margin-bottom:20px}.showroom-section .cost-factor>span{position:absolute;left:0;top:2px;color:#c18857;font-size:12px}.showroom-section .cost-factor h4{font-size:15px;font-weight:500;margin-bottom:6px}.showroom-section .cost-factor p,.showroom-section .documentary-note{font-size:12px;color:#aea498;line-height:1.85}.showroom-section .documentary-note{padding-top:17px;border-top:1px solid #ffffff1c}.showroom-section .bespoke{display:flex;align-items:center;gap:30px;margin-top:14px;padding:24px 30px;border:1px solid #ffffff20;border-radius:12px;background:#1d1e20a8}.showroom-section .bespoke>div{min-width:190px}.showroom-section .bespoke h3{font-size:25px;font-weight:500;margin-top:6px}.showroom-section .bespoke>p{font-size:13px;color:#afa69c;line-height:1.85;flex:1}.showroom-section .bespoke>a{flex:none}.showroom-section #studio-lower #about{display:grid;grid-template-columns:1fr 1.3fr;gap:45px;align-items:center}.showroom-section #studio-lower #about h2{font-size:29px;margin:0}.showroom-section #studio-lower #contact{padding-top:40px;padding-bottom:40px}.showroom-section #contact .contact-value{margin-top:8px}.showroom-section #contact .eyebrow{margin-top:18px!important}
html[data-theme=light] .showroom-section #studio-lower{background:#f2f0eb}html[data-theme=light] .showroom-section #studio-lower>.info,html[data-theme=light] .showroom-section #studio-lower>#actors{border-color:#3d2c1d20}html[data-theme=light] .showroom-section .studio-kicker{color:#a34d19}html[data-theme=light] .showroom-section #studio-lower .section-description{color:#6d655b}html[data-theme=light] .showroom-section #services .services{background:#fffcf5d6;border-color:#d8cec0;box-shadow:0 10px 24px #5e3c1410}html[data-theme=light] .showroom-section #services .process-card{border-color:#d8cec0}html[data-theme=light] .showroom-section #services .process-card p{color:#6e665c}html[data-theme=light] .showroom-section .process-number{color:#b65c24}html[data-theme=light] .showroom-section .brand-cell{background:#fffcf9ba;border-color:#d6cfc4;box-shadow:0 3px 9px #50311605}html[data-theme=light] .showroom-section .brand-wordmark{color:#4b4035}html[data-theme=light] .showroom-section .plans-label{color:#6a5d4f}html[data-theme=light] .showroom-section .price-card{background:#fffdf9f5;border-color:#d5cbbd;box-shadow:0 8px 22px #51381e0b}html[data-theme=light] .showroom-section .price-card.recommended{border-color:#c65b19;background:linear-gradient(145deg,#fff5e5,#fffdf8)}html[data-theme=light] .showroom-section .plan-tag{color:#9e4c19}html[data-theme=light] .showroom-section .plan-price,html[data-theme=light] .showroom-section .film-price{color:#b54d0d}html[data-theme=light] .showroom-section .plan-price small{color:#826348}html[data-theme=light] .showroom-section .plan-summary,html[data-theme=light] .showroom-section .plan-note,html[data-theme=light] .showroom-section .pricing-note{color:#776b5e}html[data-theme=light] .showroom-section .price-card ul{border-color:#e4dacb}html[data-theme=light] .showroom-section .plan-link,html[data-theme=light] .showroom-section .quote-link{color:#a54e17}html[data-theme=light] .showroom-section .recommended .plan-link,html[data-theme=light] .showroom-section .film-main .quote-link{color:#fff}html[data-theme=light] .showroom-section .custom-film{background:linear-gradient(120deg,#f6e5ceeb,#fffaf3ed);border-color:#d3b189}html[data-theme=light] .showroom-section .film-main>p,html[data-theme=light] .showroom-section .film-detail p,html[data-theme=light] .showroom-section .bespoke>p{color:#706152}html[data-theme=light] .showroom-section .documentary-note{border-color:#c6ac8f66}html[data-theme=light] .showroom-section .bespoke{background:#fffaf2bd;border-color:#d6c5af}
@media(max-width:1050px){.showroom-section #services .services,.showroom-section .price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.showroom-section #services .process-card:nth-child(2){border-right:0}.showroom-section #services .process-card:nth-child(-n+2){border-bottom:1px solid #b58c6433}.showroom-section .process-top{margin-bottom:24px}.showroom-section .plan-price strong{font-size:53px}.showroom-section .brand-wordmark{font-size:20px}.showroom-section .custom-film{grid-template-columns:1fr}.showroom-section .film-detail{border-left:0;border-top:1px solid #ba895236}.showroom-section .cost-factors{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.showroom-section .bespoke{flex-wrap:wrap}.showroom-section .bespoke>a{width:100%}}
@media(max-width:560px){.showroom-section #studio-lower>.info,.showroom-section #studio-lower>#actors{padding:30px 5vw}.showroom-section .studio-kicker{font-size:11px;letter-spacing:1.2px}.showroom-section #studio-lower .section-title{font-size:27px}.showroom-section #studio-lower .section-description{font-size:13px}.showroom-section .studio-heading{display:block}.showroom-section .studio-heading>p{max-width:none}.showroom-section #services .services{grid-template-columns:1fr;border-radius:12px;margin-top:20px}.showroom-section #services .process-card{padding:20px;display:grid;grid-template-columns:44px 1fr;gap:7px 16px;border-right:0;border-bottom:1px solid #b58c6433}.showroom-section #services .process-card:last-child{border-bottom:0}.showroom-section .process-top{grid-row:1/3;margin:0;align-items:flex-start}.showroom-section .process-number{font-size:30px}.showroom-section .process-symbol{display:none}.showroom-section #services .process-card h3{font-size:18px;margin:0}.showroom-section #services .process-card p{font-size:12px;grid-column:2}.showroom-section .brand-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-top:20px}.showroom-section .brand-cell{min-height:70px;padding:15px 8px}.showroom-section .brand-wordmark{font-size:22px}.showroom-section .price-grid{gap:10px}.showroom-section .price-card{padding:18px 13px;border-radius:11px}.showroom-section .price-card h3{font-size:17px;margin:9px 0 17px}.showroom-section .plan-price strong{font-size:39px}.showroom-section .plan-price>span{font-size:17px}.showroom-section .plan-price small{font-size:10px}.showroom-section .plan-summary,.showroom-section .plan-note{font-size:11px}.showroom-section .price-card li{font-size:12px;padding-left:12px}.showroom-section .plan-link{font-size:11px;padding:8px;min-height:42px}.showroom-section .pricing-note{font-size:11px}.showroom-section .film-main,.showroom-section .film-detail{padding:24px 20px}.showroom-section .film-main h3{font-size:23px}.showroom-section .film-price strong{font-size:40px;letter-spacing:-1.8px}.showroom-section .film-price>span:last-child{font-size:12px;width:100%;margin-top:5px}.showroom-section .cost-factors{grid-template-columns:1fr;gap:0}.showroom-section .bespoke{padding:22px;gap:14px}.showroom-section .bespoke>p{flex-basis:100%}.showroom-section #studio-lower #about{display:block}.showroom-section #studio-lower #about h2{font-size:25px;margin-bottom:14px}}
.showroom-section .brand-cell:has(img){background:#faf8f4;padding:18px 24px}.showroom-section .brand-cell img{max-width:150px;height:52px}@media(max-width:560px){.showroom-section .brand-cell:has(img){padding:12px 20px}.showroom-section .brand-cell img{height:42px;max-width:120px}}
.showroom-section .brand-cell img[src$="/cctv.png"]{filter:brightness(.28)}

/* Reference adaptation: expansive typography, rolling images and stacked projects.
   Scope deliberately starts after .opening; the accepted intro remains intact. */
.showroom-section .editorial{--paper:#151515;--ink:#e5e5e0;--muted:#a5a49f;--line:#ffffff24;--accent:#f19550;--panel:#222220;color:var(--ink);background:#0c0c0c;overflow:clip;border-radius:48px 48px 0 0;position:relative}
html[data-theme=light] .showroom-section .editorial{--paper:#eeece7;--ink:#232421;--muted:#706e68;--line:#24251f29;--accent:#b94f14;--panel:#faf9f5;background:#f0eee9}
.showroom-section .editorial section{scroll-margin-top:22px}.showroom-section .editorial .mega-word,.showroom-section .editorial .section-mega{display:block;font-family:Impact,'Arial Narrow',Arial,sans-serif;font-size:clamp(55px,10.9vw,166px);font-weight:900;line-height:.94;letter-spacing:-.055em;overflow-wrap:anywhere;background:linear-gradient(180deg,#69737d,#d6e0e5);-webkit-background-clip:text;background-clip:text;color:transparent}
html[data-theme=light] .showroom-section .editorial .mega-word,html[data-theme=light] .showroom-section .editorial .section-mega{background:linear-gradient(180deg,#242923,#778074);-webkit-background-clip:text;background-clip:text;color:transparent}
.showroom-section .editorial #featured{padding:38px 4vw 55px;background:transparent}.showroom-section .editorial #featured>.section-head{padding:0;border:0;margin:0 0 25px}.showroom-section .editorial #featured .section-head .eyebrow{font-size:12px;letter-spacing:2px;border:0;padding:0;color:var(--accent)}.showroom-section .editorial #featured .section-head .index{font-size:20px;color:var(--accent)}.showroom-section .editorial-heading{margin:0 0 32px}.showroom-section .heading-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-top:22px}.showroom-section .heading-bottom h2{font-size:clamp(27px,3.1vw,44px);font-weight:600;line-height:1.2;letter-spacing:-1px}.showroom-section .heading-bottom p{font-size:14px;line-height:1.8;max-width:360px;color:var(--muted)}
.showroom-section .editorial #featured-content{padding:0;border:0;border-radius:0;box-shadow:none;background:transparent;display:block}.showroom-section .project-stage{position:relative;margin-bottom:28px}.showroom-section .project-stage:not(:last-child){padding-bottom:80px}.showroom-section .stack-project{position:sticky;top:calc(25px + var(--order)*14px);background:var(--paper);border:1px solid var(--line);border-radius:34px;padding:25px;box-shadow:0 15px 35px #0002;transform-origin:center top;will-change:scale}.showroom-section .project-heading{display:grid;grid-template-columns:100px 1fr auto;align-items:center;gap:22px;margin-bottom:22px}.showroom-section .project-number{font-size:76px;line-height:1;font-weight:800;font-family:Arial,sans-serif;letter-spacing:-6px;color:var(--accent)}.showroom-section .project-category{font-size:12px;color:var(--muted);letter-spacing:1px}.showroom-section .project-name h3{font-size:clamp(24px,3vw,40px);font-weight:500;line-height:1.3;margin-top:6px}.showroom-section .project-open,.showroom-section .editorial-action{border-radius:50px;padding:13px 24px;color:var(--ink);border:1px solid var(--line);background:transparent;font-size:13px;min-height:46px;cursor:pointer}.showroom-section .project-open:hover{background:var(--accent);color:#fff;border-color:var(--accent)}.showroom-section .project-image{display:block;width:100%;border:0;border-radius:22px;overflow:hidden;cursor:pointer;background:#181918}.showroom-section .project-image .art{aspect-ratio:2.2;height:auto;max-height:530px;width:100%;border-radius:0}.showroom-section .project-image .art img{height:100%;width:100%;object-fit:cover}.showroom-section .project-image .play{display:none}.showroom-section .editorial .art-badge{border-radius:50px;padding:6px 10px;background:#0009;color:white;letter-spacing:.5px;font-size:10px;top:14px;left:14px}.showroom-section .project-foot{display:flex;justify-content:space-between;gap:15px;font-size:11px;color:var(--muted);padding-top:16px}.showroom-section .project-foot span:last-child{color:var(--accent)}
@media(min-width:900px) and (min-height:650px){.showroom-section #featured-content{position:relative}.showroom-section .project-stage{display:contents}.showroom-section .stack-project{margin-bottom:45px}.showroom-section .stack-project:not(:last-child){margin-bottom:45px}}
.showroom-section .visual-marquee{margin:52px -4vw 0}.showroom-section .marquee-top{display:flex;justify-content:space-between;align-items:center;margin:0 4vw 18px;color:var(--muted);font-size:11px;letter-spacing:1px}.showroom-section .marquee-top button{color:var(--ink);border:1px solid var(--line);border-radius:30px;background:transparent;padding:8px 15px;font-size:11px}.showroom-section .marquee-window{overflow:hidden;display:grid;gap:12px;mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}.showroom-section .marquee-track{display:flex;width:max-content;gap:12px;animation:editorial-roll 55s linear infinite;will-change:transform}.showroom-section .marquee-track:nth-child(2){animation-direction:reverse;animation-duration:65s}.showroom-section .marquee-group{display:flex;gap:12px}.showroom-section .marquee-tile{width:clamp(210px,30vw,420px);height:clamp(140px,19vw,270px);border-radius:20px;overflow:hidden;padding:0;border:0;background:#202020;flex:none}.showroom-section .marquee-tile img{width:100%;height:100%;object-fit:cover}.showroom-section .is-paused .marquee-track,.showroom-section .marquee-window:focus-within .marquee-track,.showroom-section .marquee-window:hover .marquee-track{animation-play-state:paused}@keyframes editorial-roll{to{transform:translateX(calc(-33.333333% - 4px))}}
.showroom-section .editorial #collection{background:var(--panel);border:0;border-radius:44px 44px 0 0;padding:45px 4vw 55px}.showroom-section .editorial #collection>.section-head{padding:0;margin-bottom:23px}.showroom-section .editorial #collection .section-head .eyebrow{color:var(--accent)}.showroom-section .editorial #collection .mega-word{font-size:clamp(45px,8.8vw,128px)}.showroom-section .editorial #collection .tools{border-color:var(--line);margin:30px 0 25px}.showroom-section .editorial .filters{gap:6px}.showroom-section .editorial .filters button{border:1px solid var(--line);border-radius:30px;padding:11px 15px;font-size:13px;color:var(--muted);line-height:1.4;min-height:44px}.showroom-section .editorial .filters button.on{color:white;border-color:#c65b19}.showroom-section .editorial #collection .tools input{border:1px solid var(--line);border-radius:30px;padding:12px 17px;color:var(--ink);width:220px}.showroom-section .editorial #collection .grid{gap:26px 18px}.showroom-section .editorial #collection .grid .card{background:var(--paper);border-color:var(--line);border-radius:22px;padding:9px 9px 18px;box-shadow:0 6px 16px #0000000a}.showroom-section .editorial #collection .card .art{border-radius:15px;aspect-ratio:4/3}.showroom-section .editorial #collection .card .meta{padding:0 8px;gap:6px}.showroom-section .editorial #collection .card .meta h2{color:var(--ink);font-size:19px;font-weight:500}.showroom-section .editorial #collection .card .meta span,.showroom-section .editorial #collection .card .caption{color:var(--muted)}.showroom-section .editorial #collection .card .caption{margin-left:8px}
.showroom-section .editorial #studio-lower{background:var(--paper);overflow:clip}.showroom-section .editorial #studio-flow{opacity:.55}.showroom-section .editorial #studio-lower>.info{padding:60px 4vw;border-top:1px solid var(--line)}.showroom-section .editorial #studio-lower .section-mega{font-size:clamp(46px,8.8vw,130px);margin-bottom:30px;position:relative}.showroom-section .editorial #studio-lower .studio-kicker{font-size:11px;color:var(--accent)}.showroom-section .editorial #studio-lower .section-title{font-size:clamp(27px,3.7vw,50px);line-height:1.35;font-weight:500;max-width:900px;color:var(--ink)}.showroom-section .editorial #studio-lower .section-description{color:var(--muted)}
.showroom-section .editorial #studio-lower #services{background:#f7f7f2;border-radius:44px 44px 0 0;color:#1b1c19;padding-bottom:70px}.showroom-section .editorial #services .section-mega{background:none!important;color:#171c16!important;-webkit-text-fill-color:initial}.showroom-section .editorial #studio-lower #services .section-title{color:#24271f}.showroom-section .editorial #studio-lower #services .section-description{color:#717269}.showroom-section .editorial #services .services{display:block;background:transparent;border:0;box-shadow:none;border-radius:0;margin:30px 0 0}.showroom-section .editorial #services .process-card{display:grid;grid-template-columns:110px 1fr 1.1fr;gap:32px;align-items:center;border:0;border-top:1px solid #262b212a;padding:30px 0}.showroom-section .editorial #services .process-card:last-child{border-bottom:1px solid #262b212a}.showroom-section .editorial .process-top{margin:0}.showroom-section .editorial .process-number{font-size:80px;letter-spacing:-5px;color:#20271c;font-weight:800}.showroom-section .editorial .process-symbol{display:none}.showroom-section .editorial #services .process-card h3{font-size:25px;font-weight:500;line-height:1.3;margin:0;color:#24271f}.showroom-section .editorial #services .process-card p{font-size:14px;color:#727469;line-height:1.9;margin:0}
.showroom-section .editorial #studio-lower #partners{border-radius:44px 44px 0 0;margin-top:-32px;background:var(--paper);border-top:0}.showroom-section .editorial .brand-cell{border-radius:20px;background:var(--panel);border-color:var(--line);min-height:110px}.showroom-section .editorial .brand-wordmark{color:var(--ink)}.showroom-section .editorial .brand-cell:has(img){background:#f7f7f2}.showroom-section .editorial .brand-grid{gap:12px}.showroom-section .editorial #studio-lower #pricing{background:var(--panel);border-radius:44px 44px 0 0;border-top:0}.showroom-section .editorial .price-grid{gap:14px}.showroom-section .editorial .price-card{border-radius:26px;padding:28px 22px;background:var(--paper);border-color:var(--line);box-shadow:none}.showroom-section .editorial .price-card.recommended{background:#c65b19;border-color:#c65b19;color:#fff}.showroom-section .editorial .price-card.recommended :is(.plan-tag,.plan-price,.plan-price small,.plan-summary,.plan-note){color:#fff}.showroom-section .editorial .price-card.recommended ul{border-color:#ffffff4a}.showroom-section .editorial .price-card.recommended li:before{color:white}.showroom-section .editorial .price-card.recommended .plan-link{background:#fff;color:#9f430e;border-color:white}.showroom-section .editorial .plan-price strong{font-size:clamp(44px,4.5vw,68px);letter-spacing:-3px}.showroom-section .editorial .plan-link,.showroom-section .editorial .quote-link{border-radius:50px}.showroom-section .editorial .custom-film{border-radius:32px;margin-top:35px}.showroom-section .editorial .film-main{padding:40px 30px}.showroom-section .editorial .film-price strong{font-size:clamp(40px,4.8vw,72px)}.showroom-section .editorial .bespoke{border-radius:25px}.showroom-section .editorial #studio-lower #about{position:relative;display:flex;flex-direction:column;gap:25px;align-items:center;text-align:center;min-height:580px;padding:85px 15vw;isolation:isolate}.showroom-section .editorial #studio-lower #about .section-mega{font-size:clamp(45px,8vw,112px);margin:0;z-index:1}.showroom-section .editorial #studio-lower #about .section-title{font-size:clamp(25px,3.8vw,48px);margin:0;z-index:1}.showroom-section .editorial #about .section-description{max-width:680px;font-size:17px;line-height:2;z-index:1}.showroom-section .editorial-action{position:relative;background:linear-gradient(130deg,#914118,#e78636);color:white!important;border:0;margin-top:8px;box-shadow:inset 0 2px 1px #ffffff65,0 8px 25px #6f391530;padding:16px 28px}.showroom-section .about-sculpture{position:absolute;inset:0;z-index:-1;overflow:hidden;opacity:.3;pointer-events:none}.showroom-section .about-sculpture i{position:absolute;width:230px;height:230px;border-radius:50%;border:24px solid #cd9b65;box-shadow:inset 8px 4px 15px #fff8,8px 12px 20px #0003;transform:rotateX(45deg) rotateY(-25deg);left:-50px;top:50px;animation:editorial-orbit 12s ease-in-out infinite}.showroom-section .about-sculpture i:nth-child(2){left:auto;right:-80px;top:90px;border-radius:25%;rotate:30deg;animation-delay:-4s}.showroom-section .about-sculpture i:nth-child(3){left:75%;top:360px;width:110px;height:110px;border-width:12px;animation-delay:-7s}@keyframes editorial-orbit{50%{translate:0 -18px;rotate:12deg}}
.showroom-section .editorial #studio-lower #contact{background:#c65b19;color:#fff;padding:60px 5vw;border-radius:44px 44px 0 0;border:0}.showroom-section .editorial #contact .section-mega{background:none!important;color:#fff!important;-webkit-text-fill-color:initial;font-size:clamp(55px,13vw,180px);letter-spacing:-.065em}.showroom-section .editorial #studio-lower #contact .section-title,.showroom-section .editorial #studio-lower #contact .section-description,.showroom-section .editorial #contact .eyebrow{color:#fff}.showroom-section .editorial #contact .contact-value{color:#fff;border-color:#fffc;font-size:26px;max-width:100%;overflow-wrap:anywhere}.showroom-section .editorial #studio-lower #actors{padding:36px 5vw;background:var(--paper);border:0}.showroom-section .editorial #actors .section-mega{font-size:clamp(34px,5vw,70px);margin:0 0 20px}.showroom-section .editorial #actors .section-head{display:none}.showroom-section .editorial #actors .section-title{font-size:26px!important;margin:0 0 8px!important}.showroom-section #dialog-description{white-space:pre-line}
@media(max-width:1050px){.showroom-section .editorial #collection .tools{display:flex;align-items:stretch;gap:14px}.showroom-section .editorial #collection .tools input{width:100%;max-width:none}.showroom-section .editorial .filters{flex-wrap:wrap}.showroom-section .project-heading{grid-template-columns:70px 1fr auto}.showroom-section .project-number{font-size:60px}.showroom-section .editorial .price-card{padding:25px}.showroom-section .editorial #services .process-card{grid-template-columns:80px 1fr;gap:15px 25px}.showroom-section .editorial #services .process-card p{grid-column:2}.showroom-section .editorial .process-top{grid-row:1/3}.showroom-section .editorial .process-number{font-size:70px}}
@media(max-width:600px){.showroom-section .editorial{border-radius:28px 28px 0 0}.showroom-section .editorial #featured{padding:27px 5vw 34px}.showroom-section .editorial .mega-word{font-size:16vw;line-height:1;letter-spacing:-.06em}.showroom-section .editorial #featured>.section-head{margin-bottom:20px}.showroom-section .heading-bottom{display:block;margin-top:16px}.showroom-section .heading-bottom h2{font-size:27px}.showroom-section .heading-bottom p{font-size:12px;margin-top:12px;max-width:100%}.showroom-section .editorial-heading{margin-bottom:22px}.showroom-section .project-stage{margin-bottom:18px}.showroom-section .project-stage:not(:last-child){padding-bottom:0}.showroom-section .stack-project{position:relative;top:0!important;padding:14px;border-radius:23px;scale:1!important;box-shadow:0 8px 22px #0002}.showroom-section .project-heading{grid-template-columns:44px 1fr auto;gap:10px;margin-bottom:14px}.showroom-section .project-number{font-size:40px;letter-spacing:-3px}.showroom-section .project-category{font-size:9px;letter-spacing:0}.showroom-section .project-name h3{font-size:19px;margin-top:4px}.showroom-section .project-open{font-size:10px;min-height:38px;padding:8px 10px}.showroom-section .project-image{border-radius:15px}.showroom-section .project-image .art{aspect-ratio:1.3;max-height:none}.showroom-section .editorial .art-badge{font-size:8px;top:9px;left:9px;padding:4px 8px;letter-spacing:0}.showroom-section .project-foot{font-size:9px;gap:8px;padding-top:12px}.showroom-section .visual-marquee{margin:32px -5vw 0}.showroom-section .marquee-top{margin:0 5vw 14px;font-size:9px;letter-spacing:0}.showroom-section .marquee-top button{padding:7px 11px;font-size:10px}.showroom-section .marquee-tile{width:220px;height:146px;border-radius:14px}.showroom-section .marquee-window,.showroom-section .marquee-track,.showroom-section .marquee-group{gap:9px}.showroom-section .editorial #collection{padding:30px 5vw 35px;border-radius:28px 28px 0 0}.showroom-section .editorial #collection .mega-word{font-size:12vw}.showroom-section .editorial #collection .tools{margin:20px 0}.showroom-section .editorial .filters{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}.showroom-section .editorial .filters button{font-size:12px;padding:9px 8px;min-height:42px}.showroom-section .editorial #collection .grid{gap:17px 10px}.showroom-section .editorial #collection .grid .card{padding:6px 6px 12px;border-radius:15px}.showroom-section .editorial #collection .card .art{border-radius:10px}.showroom-section .editorial #collection .card .meta{padding:0 3px}.showroom-section .editorial #collection .card .meta h2{font-size:14px}.showroom-section .editorial #collection .card .caption{font-size:8px;margin-left:3px}.showroom-section .editorial #collection .art-badge{max-width:calc(100% - 12px);font-size:6px;top:6px;left:6px;padding:4px}.showroom-section .editorial #studio-lower>.info{padding:34px 5vw}.showroom-section .editorial #studio-lower .section-mega{font-size:12vw;margin-bottom:22px}.showroom-section .editorial #studio-lower .section-title{font-size:27px;line-height:1.4}.showroom-section .editorial #studio-lower .section-description{font-size:13px}.showroom-section .editorial #studio-lower #services{border-radius:28px 28px 0 0;padding-bottom:52px}.showroom-section .editorial #services .process-card{grid-template-columns:55px 1fr;gap:10px 18px;padding:24px 0}.showroom-section .editorial .process-number{font-size:51px;letter-spacing:-3px}.showroom-section .editorial #services .process-card h3{font-size:20px}.showroom-section .editorial #services .process-card p{font-size:12px}.showroom-section .editorial #studio-lower #partners{border-radius:28px 28px 0 0;margin-top:-24px}.showroom-section .editorial .brand-cell{border-radius:14px;min-height:80px}.showroom-section .editorial #studio-lower #pricing{border-radius:28px 28px 0 0}.showroom-section .editorial .price-card{padding:19px 13px;border-radius:19px}.showroom-section .editorial .price-grid{gap:10px}.showroom-section .editorial .plan-price strong{font-size:41px}.showroom-section .editorial .custom-film{border-radius:23px;margin-top:24px}.showroom-section .editorial .film-main,.showroom-section .editorial .film-detail{padding:24px 19px}.showroom-section .editorial .film-price strong{font-size:39px}.showroom-section .editorial .bespoke{border-radius:20px;padding:22px}.showroom-section .editorial #studio-lower #about{min-height:470px;padding:52px 7vw;gap:20px}.showroom-section .editorial #studio-lower #about .section-mega{font-size:12vw}.showroom-section .editorial #studio-lower #about .section-title{font-size:29px}.showroom-section .editorial #about .section-description{font-size:14px}.showroom-section .about-sculpture{opacity:.16}.showroom-section .editorial #studio-lower #contact{border-radius:28px 28px 0 0;padding:35px 5vw}.showroom-section .editorial #contact .section-mega{font-size:15vw!important}.showroom-section .editorial #contact .contact-value{font-size:22px}.showroom-section .editorial #studio-lower #actors{padding:30px 5vw}.showroom-section .editorial #actors .section-mega{font-size:10vw}}
@media(prefers-reduced-motion:reduce){.showroom-section .marquee-track,.showroom-section .about-sculpture i{animation:none!important}.showroom-section .stack-project{scale:1!important;will-change:auto}}

.showroom-section #featured-content>.stack-project{margin-bottom:28px}.showroom-section #featured-content>.stack-project:last-child{margin-bottom:0}
html[data-theme] .showroom-section .editorial #featured-content{background:transparent;border:0;box-shadow:none;padding:0;border-radius:0}
@media(min-width:601px) and (max-width:899px){.showroom-section .stack-project{position:relative;top:0!important;scale:1!important}}
@media(max-width:600px){.showroom-section .marquee-track{animation-name:editorial-roll-mobile}@keyframes editorial-roll-mobile{to{transform:translateX(calc(-33.333333% - 3px))}}}
html[data-theme] .showroom-section .editorial .price-card.recommended{background:#c65b19;border-color:#c65b19;color:#fff}
html[data-theme] .showroom-section .editorial .price-card.recommended :is(.plan-tag,.plan-price,.plan-price small,.plan-summary,.plan-note){color:#fff}
html[data-theme] .showroom-section .editorial .price-card.recommended .plan-link{background:#fff;color:#9f430e;border-color:#fff}
html[data-theme] .showroom-section .editorial #services .process-card{background:transparent}
/* Keep anchor jumps immediate; visual motion belongs to artwork and cards. */
.showroom-section{scroll-behavior:auto}
/* Studio information sections: tactile cards with a clear hierarchy. */
.showroom-section .editorial #studio-lower>.info{position:relative;padding:72px 4vw 78px;overflow:hidden}
.showroom-section .editorial #studio-lower>.info:before{content:'';position:absolute;inset:16px 3vw;pointer-events:none;border:1px solid var(--line);border-radius:34px;background:linear-gradient(145deg,#ffffff08,transparent 45%,#00000008);box-shadow:inset 0 1px 0 #ffffff10,0 20px 50px #00000012}
html[data-theme=light] .showroom-section .editorial #studio-lower>.info:before{background:linear-gradient(145deg,#ffffffaa,transparent 48%,#d2c5b422);box-shadow:inset 0 1px 0 #fff,0 20px 50px #684a2810}
.showroom-section .editorial #studio-lower>.info>*{position:relative;z-index:1}
.showroom-section .editorial #services .services{padding:10px 18px;border:1px solid var(--line);border-radius:26px;background:linear-gradient(145deg,#ffffff10,#00000012);box-shadow:inset 0 1px 0 #ffffff16,0 18px 35px #0003}
html[data-theme=light] .showroom-section .editorial #services .services{background:linear-gradient(145deg,#fff,#ede9e0);box-shadow:inset 0 1px 0 #fff,0 18px 35px #75523112}
.showroom-section .editorial #services .process-card{margin:0 0;border-top:1px solid var(--line);padding:29px 14px}
.showroom-section .editorial #services .process-card:first-child{border-top:0}
.showroom-section .editorial #partners .brand-grid{position:relative;padding:14px;border:1px solid var(--line);border-radius:26px;background:linear-gradient(145deg,#ffffff0c,#00000012);box-shadow:inset 0 1px 0 #ffffff16,0 18px 35px #0003}
html[data-theme=light] .showroom-section .editorial #partners .brand-grid{background:linear-gradient(145deg,#fff,#ece9e2);box-shadow:inset 0 1px 0 #fff,0 18px 35px #75523112}
.showroom-section .editorial #partners .brand-cell{box-shadow:0 9px 15px #0003,inset 0 1px 0 #ffffff16;transform:translateZ(0);transition:transform .25s ease,box-shadow .25s ease}
html[data-theme=light] .showroom-section .editorial #partners .brand-cell{box-shadow:0 8px 15px #6d4d2a12,inset 0 1px 0 #fff}
.showroom-section .editorial #partners .brand-cell:hover{transform:translateY(-4px);box-shadow:0 15px 24px #0005,inset 0 1px 0 #ffffff20}
.showroom-section .editorial #pricing .price-grid{position:relative;padding:14px;border:1px solid var(--line);border-radius:26px;background:linear-gradient(145deg,#ffffff0b,#00000012);box-shadow:inset 0 1px 0 #ffffff14,0 18px 35px #0003}
html[data-theme=light] .showroom-section .editorial #pricing .price-grid{background:linear-gradient(145deg,#fff,#ece9e2);box-shadow:inset 0 1px 0 #fff,0 18px 35px #75523112}
.showroom-section .editorial #pricing .price-card{box-shadow:0 12px 25px #0004,inset 0 1px 0 #ffffff12;transition:transform .25s ease,box-shadow .25s ease}
html[data-theme=light] .showroom-section .editorial #pricing .price-card{box-shadow:0 10px 20px #73512d12,inset 0 1px 0 #fff}
.showroom-section .editorial #pricing .price-card:hover{transform:translateY(-5px);box-shadow:0 18px 30px #0005,inset 0 1px 0 #ffffff1e}
.showroom-section .editorial #pricing .custom-film,.showroom-section .editorial #pricing .bespoke{box-shadow:0 16px 32px #0004,inset 0 1px 0 #ffffff18}
.showroom-section .editorial #partners .brand-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.showroom-section .editorial .visual-marquee{padding:18px 0 8px;border:1px solid var(--line);border-radius:30px;background:linear-gradient(145deg,#ffffff08,#00000016);box-shadow:inset 0 1px 0 #ffffff10,0 16px 30px #0003}
html[data-theme=light] .showroom-section .editorial .visual-marquee{background:linear-gradient(145deg,#fff,#e9e6df);box-shadow:inset 0 1px 0 #fff,0 16px 30px #76533212}
.showroom-section .editorial .marquee-top{font-size:clamp(16px,2.2vw,28px);font-weight:600;letter-spacing:.02em;color:var(--ink)}
.showroom-section .editorial .marquee-top span{font-size:inherit}
.showroom-section .editorial .marquee-tile{box-shadow:0 10px 18px #0005}
.showroom-section .editorial .contact-value{display:inline-flex!important;align-items:center;gap:10px;color:inherit!important}
.showroom-section .editorial .contact-value:after{content:'↗';font-size:.8em;opacity:.8}
@media(max-width:600px){.showroom-section .editorial #studio-lower>.info{padding:46px 5vw 50px}.showroom-section .editorial #studio-lower>.info:before{inset:12px 3vw;border-radius:24px}.showroom-section .editorial #services .services{padding:7px 12px;border-radius:21px}.showroom-section .editorial #services .process-card{padding:23px 7px}.showroom-section .editorial #partners .brand-grid,.showroom-section .editorial #pricing .price-grid{padding:8px;border-radius:21px}.showroom-section .editorial #partners .brand-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.showroom-section .editorial .visual-marquee{border-radius:22px;padding:12px 0 6px}.showroom-section .editorial .marquee-top{font-size:16px}}

.showroom-section .editorial .brand-cell img{max-width:150px;height:52px;object-fit:contain}.showroom-section .editorial .brand-cell img[src*="huaxi"],.showroom-section .editorial .brand-cell img[src*="shudao"],.showroom-section .editorial .brand-cell img[src*="yangpu"]{filter:brightness(.7)}
/* Clearly distinguish playable work from still photography. */
.showroom-section .editorial .art.is-video,.showroom-section .editorial .marquee-tile{position:relative}.showroom-section .editorial .video-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:76px;height:76px;padding-left:5px;border-radius:50%;background:#15151588;border:2px solid #ffffffe6;color:#fff;font-size:27px;box-shadow:0 8px 30px #0006;backdrop-filter:blur(10px);pointer-events:none;z-index:3}.showroom-section .editorial .media-kind{position:absolute;bottom:16px;left:16px;padding:7px 12px;border-radius:20px;color:white;background:#171717b8;font-size:12px;z-index:2}.showroom-section .editorial .media-section-title{grid-column:1/-1;font-size:25px;color:var(--ink);margin:20px 0 0;padding:0 0 16px;border-bottom:1px solid var(--line)}.showroom-section .editorial :is(.project-image,.card,.marquee-tile):active{filter:brightness(.85)}.showroom-section .editorial button:focus-visible{outline:3px solid #c65b19;outline-offset:4px}@media(max-width:600px){.showroom-section .editorial .video-play{width:52px;height:52px;font-size:20px}.showroom-section .editorial .media-kind{font-size:10px;bottom:9px;left:9px}.showroom-section .editorial .media-section-title{font-size:22px}}
.showroom-section .editorial .media-section-title.video{border-left:4px solid #c65b19;padding:14px 18px;color:#d87a39;background:linear-gradient(90deg,#c65b191a,transparent);border-radius:0 12px 12px 0}.showroom-section .editorial .media-section-title.image{border-left:4px solid #638f90;padding:14px 18px;color:#739fa0;background:linear-gradient(90deg,#638f901a,transparent);border-radius:0 12px 12px 0}html[data-theme=light] .showroom-section .editorial .media-section-title.video{color:#a84b15}html[data-theme=light] .showroom-section .editorial .media-section-title.image{color:#416e70}

html{scroll-behavior:smooth}body{margin:0;background:#000;font-family:Inter,"PingFang SC",Arial,sans-serif}a{color:inherit}.home-section{position:relative;isolation:isolate;min-height:100svh;height:auto!important;overflow:clip!important}.home-section .page{height:auto!important;min-height:100svh;overflow:visible!important}.home-section .hero-photo,.home-section .grain{position:absolute}.home-section .header{height:auto;margin:0;border:0}.home-section .stats{margin:0}.home-section .hero{max-width:none}.showroom-section{position:relative;isolation:isolate;min-height:60vh;overflow:clip}.showroom-section .opening[hidden]{display:none!important}.showroom-section .theme-toolbar{position:relative;padding:20px 0;margin-top:0}.showroom-section section{scroll-margin-top:24px}.showroom-section .legal-footer{color:inherit}.home-section .page{background:transparent}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
