/* ============================================================
   oumahi.art — shared stylesheet
   Extracted from the inline <style> blocks of index.html,
   about.html, cutout-citizens.html and contact.html.

   Structure:
     1. Truly page-independent rules: @font-face, :root vars,
        the html/body base reset, and the universal '*' reset.
     2. Per-page rules, scoped with a body class, each page's
        rules kept in their original relative order so
        specificity/cascade behaves exactly as before:
          index.html            -> <body class="page-index">
          about.html            -> <body class="page-about">
          cutout-citizens.html  -> <body class="page-cutout">
          contact.html          -> <body class="page-contact">
   ============================================================ */



/* ---------- fonts ---------- */

@font-face{font-family:"Eurostile MN Extended";
    src:url("../font/EurostileMNExtendedBold.ttf") format("truetype");
    font-weight:700;
    font-style:normal;
    font-display:swap;}


/* ---------- root variables (union of all pages' :root blocks) ---------- */

:root{
  --bg: #0a0a0b;
  --paper: #e8e6de;
  --dim: #83817a;
  --hairline: rgba(232,230,222,0.14);
  --alert: #ff3b1f;
  --panel: #111110;
  --dur: 0.62s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cyan: #00e5ff;
}


/* ---------- base reset (shared) ---------- */

html, body{
  width:100%;
  height:100%;
  background:var(--bg);
  overflow:hidden;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
}

/* index.html-only additions to html, body */
body.page-index{
  color:var(--paper);
  -webkit-user-select:none;
  user-select:none;
}


/* ---------- keyframes (shared) ---------- */

@keyframes blink{0%,45%{opacity:1;} 50%,95%{opacity:0.15;} 100%{opacity:1;}}

@keyframes marchingAnts{to{ background-position:8px 0, -8px 100%, 0 -8px, 100% 8px; }}

@keyframes thumbLoaderSlide{0%{ left:-40%; }
    100%{ left:100%; }}

@keyframes marchAntsX{to{ transform:translateX(-10px); }}

@keyframes marchAntsY{to{ transform:translateY(-10px); }}

@keyframes mnDotSpin{to{ transform:rotate(360deg); }}

@keyframes mnDotSpinCCW{to{ transform:rotate(-360deg); }}

@keyframes skeletonShimmer{0%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }}


/* ---------- universal reset (shared, zero-specificity, safe everywhere) ---------- */

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



/* ================================================================
   INDEX (gallery / home) — page-specific rules (scoped to body.page-index)
   ================================================================ */

.page-index #coverScreen { position:fixed; inset:0; z-index:9999;
    background:#0a0a0b;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden; 
    cursor:none; 
    transition:opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1); }

.page-index #coverScreen.leaving { opacity:0; pointer-events:none; }

.page-index #coverImgWrap { position:relative; }

.page-index #coverCanvas { display:block; }

.page-index #coverEnterMask { position:fixed; top:0; left:0; z-index:10000;
    width:92px; height:92px; 
    border-radius:50%;
    overflow:hidden;
    transform:translate(-50%, -50%);
    pointer-events:none; 
    opacity:0;
    transition:opacity 0.3s ease; }

.page-index #coverEnterMask.show { opacity:1; }

.page-index #coverEnterPill { position:absolute; top:50%; left:50%;
    transform:translate(-50%, -50%);
    display:inline-flex; align-items:center; justify-content:center;
    width:100%;
    color:#fff;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:24px; letter-spacing:0.08em;
    text-transform:uppercase;
    white-space:nowrap; }

.page-index #coverEnterImg { position:absolute; top:50%; left:50%;
    width:80px; height:80px;
    transform:translate(-50%, -50%);
    opacity:0; }

.page-index .scene, .page-index .node, .page-index .node img { -webkit-user-drag:none;
    user-drag:none;
    -webkit-touch-callout:none; }

.page-index .atmosphere { position:fixed; inset:0; pointer-events:none; z-index:5;
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
      repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.025) 0px,
        rgba(255,255,255,0.025) 1px,
        transparent 1px,
        transparent 3px
      ); }

.page-index .footer-bar { position:fixed; left:0; right:0; bottom:0; z-index:56;
    height:64px;
    background:#0a0a0b;
    overflow:hidden;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 32px; }

.page-index .footer-link { position:relative; z-index:1;
    display:flex; align-items:center;
    height:64px; 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:0.02em;
    text-transform:uppercase;
    color:var(--paper);
    text-shadow:0 1px 3px rgba(0,0,0,0.5);
    text-decoration:none; }

.page-index .footer-link-mask { display:block;
    height:100%;
    overflow:hidden; }

.page-index .footer-link-track { display:block;
    transition:transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }

.page-index .footer-link-track span { display:flex; align-items:center;
    height:64px; }

.page-index .footer-link:hover .footer-link-track { transform:translateY(-64px); }

.page-index .footer-right { position:relative; z-index:1;
    display:flex; align-items:center; gap:16px; }

.page-index .footer-instagram { display:flex; align-items:center; justify-content:center;
    color:var(--paper);
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-index .footer-instagram:hover { opacity:0.6; }

.page-index .footer-instagram svg { width:20px; height:20px; display:block; }

.page-index .footer-tokonoma { display:flex; align-items:center; justify-content:center;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-index .footer-tokonoma:hover { opacity:0.6; }

.page-index .footer-tokonoma img { width:20px; height:20px; object-fit:contain; display:block; }

.page-index .top-logo { position:fixed; top:32px; left:32px;
    z-index:57;
    width:min(60vw, 200px);
    height:auto;
    user-select:none; }

.page-index .top-logo img { display:block; width:100%; height:auto; will-change:transform; }

.page-index .top-logo-marquee { position:absolute; top:-8px; left:-8px; right:-8px; bottom:-8px;
    overflow:hidden;
    opacity:0;
    transition:opacity 0.25s ease;
    pointer-events:none; }

.page-index .top-logo:hover .top-logo-marquee { opacity:1; }

.page-index .tlm-edge { position:absolute; will-change:transform; }

.page-index .tlm-top, .page-index .tlm-bottom { left:0; width:200%; height:2px;
    background-image:linear-gradient(90deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 2px;
    animation:marchAntsX 0.4s linear infinite; }

.page-index .tlm-top { top:0; }

.page-index .tlm-bottom { bottom:0; }

.page-index .tlm-left, .page-index .tlm-right { top:0; height:200%; width:2px;
    background-image:linear-gradient(0deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-y; background-size:2px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-index .tlm-left { left:0; }

.page-index .tlm-right { right:0; }

.page-index .hud { position:fixed; z-index:6; font-size:11px; letter-spacing:0.14em;
    text-transform:uppercase; color:var(--dim); font-weight:400; }

.page-index .hud b { color:var(--paper); font-weight:700; }

.page-index .hud.top-left { top:46px; left:24px; line-height:1.6; }

.page-index .hud.top-right { top:46px; right:24px; text-align:right; line-height:1.6; }

.page-index .hud.bottom-left { bottom:46px; left:24px; }

.page-index .hud.bottom-right { bottom:46px; right:24px; text-align:right; }

.page-index .live-clock-text { position:fixed; top:50%; right:32px; z-index:15; 
    transform:translateY(-50%) rotate(90deg);
    transform-origin:center; 
    pointer-events:none;
    white-space:nowrap;
    display:flex; align-items:baseline; gap:10px; 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:16px; letter-spacing:0.04em;
    color:var(--paper);
    opacity:1;
    transition:opacity 0.2s ease; }

.page-index .live-clock-text.hide { opacity:0; }

.page-index .live-clock-text > span { display:inline-block; }

.page-index #liveClockHH, .page-index .live-clock-mask { display:inline-block;
    width:28px; 
    text-align:center; }

.page-index .live-clock-mask { display:inline-block;
    overflow:hidden;
    height:24px; 
    vertical-align:top; }

.page-index .live-clock-inner { display:block;
    text-align:right; }

.page-index .rec { display:inline-block; width:7px; height:7px; border-radius:50%;
    background:var(--alert); margin-right:8px; vertical-align:middle;
    animation:blink 1.6s infinite; }

.page-index .scene { position:fixed; top:0; left:0; right:0; bottom:64px;
    display:flex; align-items:center; justify-content:center;
    perspective:1400px;
    cursor:grab; }

.page-index .scene.grabbing { cursor:grabbing; }

.page-index .world { position:relative;
    width:1px; height:1px;
    transform-style:preserve-3d;
    will-change:transform; }

.page-index .node { position:absolute; top:0; left:0;
    transform-style:preserve-3d;
    cursor:pointer;
    opacity:1;
    transition:opacity 0.3s ease, transform 0.6s var(--ease); }

.page-index .node.dimmed { opacity:1; }

.page-index .node.gathered { cursor:pointer;
    position:absolute;
    transform-style:flat;
    align-self:flex-end;
    transition:opacity 0.3s ease, transform 0.6s var(--ease), left 0.28s var(--ease), width 0.28s var(--ease), height 0.28s var(--ease); }

.page-index .node.gathered .frame::after { display:none; }

.page-index .node.gathered .tag { display:none; }

.page-index .node.gathered:hover { opacity:1; z-index:60; }

.page-index .node.gathered.active-thumb { opacity:1;
    z-index:2; }

.page-index .node.gathered.active-thumb::after { content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background-image:
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:8px 1px, 8px 1px, 1px 8px, 1px 8px;
    background-position:0 0, 0 100%, 0 0, 100% 0;
    animation:marchingAnts 0.4s linear infinite; }

.page-index .filmstrip { position:fixed; inset:0; z-index:55;
    pointer-events:none; }

.page-index .filmstrip .node { pointer-events:auto; }

.page-index .wire { position:absolute; top:0; left:0;
    height:1px;
    background:rgba(255,255,255,0.55);
    transform-origin:0 50%;
    pointer-events:none; }

.page-index .center-emblem { position:absolute; top:0; left:0;
    pointer-events:none;
    user-select:none;
    opacity:0.92;
    transform-style:preserve-3d;
    filter:
      drop-shadow(0 1px 0 rgba(255,255,255,0.10))
      drop-shadow(0 2px 0 rgba(0,0,0,0.35))
      drop-shadow(0 4px 0 rgba(0,0,0,0.30))
      drop-shadow(0 7px 10px rgba(0,0,0,0.55))
      drop-shadow(0 0 22px rgba(0,0,0,0.6)); }

.page-index .node .frame { position:relative; width:100%; height:100%;
    overflow:hidden;
    background:#000; }

.page-index .frame-dither-canvas { position:absolute; inset:0; z-index:2;
    opacity:0;
    pointer-events:none; }

.page-index .frame-dither-canvas.show { opacity:1; }

.page-index .thumb-loader { position:absolute; top:50%; left:50%; z-index:3;
    transform:translate(-50%, -50%);
    width:34px; height:2px;
    background:rgba(255,255,255,0.15);
    overflow:hidden;
    pointer-events:none; }

.page-index .thumb-loader-bar { position:absolute; top:0; left:-40%;
    height:100%; width:40%;
    background:var(--cursor-color, #ffe000);
    animation:thumbLoaderSlide 1s ease-in-out infinite; }

.page-index .node .frame::after { content:"";
    position:absolute; top:50%; left:50%;
    width:5px; height:5px;
    background:var(--paper);
    border-radius:50%;
    transform:translate(-50%, -50%);
    box-shadow:
      0 0 0 3px rgba(10,10,11,0.65),
      0 0 6px rgba(232,230,222,1),
      0 0 16px rgba(232,230,222,0.6);
    z-index:2;
    pointer-events:none;
    transition:background 0.25s ease, box-shadow 0.25s ease, width 0.25s ease, height 0.25s ease; }

.page-index .node img { width:100%; height:100%; object-fit:contain;
    filter:grayscale(35%) contrast(1.05) brightness(0.9);
    transition:filter 0.25s ease, transform 0.4s ease;
    display:block; }

.page-index .node.gathered img { object-fit:contain; }

.page-index .node:hover .frame::after { width:7px; height:7px;
    background:var(--alert);
    box-shadow:
      0 0 0 3px rgba(10,10,11,0.65),
      0 0 10px rgba(255,59,31,1),
      0 0 22px rgba(255,59,31,0.55); }

.page-index .node:hover img { filter:grayscale(0%) contrast(1.05) brightness(1); transform:scale(1.06); }

.page-index .node .tag { position:absolute; left:0; bottom:0; right:0;
    padding:5px 7px;
    font-size:9px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--paper);
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    opacity:0; transform:translateY(4px);
    transition:opacity 0.25s ease, transform 0.25s ease;
    pointer-events:none;
    font-weight:700; }

.page-index .node:hover .tag { opacity:1; transform:translateY(0); }

.page-index .lightbox { position:fixed; inset:0; z-index:20;
    background:rgba(10,10,11,0.92); 
    pointer-events:none;
    transform:translateY(100%);
    transition:transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.page-index .lightbox.open { transform:translateY(0); pointer-events:auto; }

.page-index .scene.lightbox-open { z-index:30; }

.page-index .scene.lightbox-open .center-emblem { opacity:0; }

.page-index .scene.lightbox-open #world > .node:not(.gathered) { visibility:hidden; }

.page-index .scene.lightbox-open .wire { opacity:0; visibility:hidden; }

.page-index .wire { transition:opacity 0.3s ease; }

.page-index .scene.lightbox-open .wire { opacity:0; }

.page-index .expand-wrap img { position:fixed;
    object-fit:cover;
    display:block;
    will-change:top, left, width, height, opacity, transform;
    transition:
      top var(--dur) var(--ease),
      left var(--dur) var(--ease),
      width var(--dur) var(--ease),
      height var(--dur) var(--ease),
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style:preserve-3d; }

.page-index .expand-full { perspective:760px; }

.page-index .expand-thumb { z-index:51; transition:opacity 0.35s ease; filter:url(#ditherFilter); }

.page-index .expand-back { z-index:50;
    opacity:0.5;
    filter:saturate(0.6) brightness(0.7);
    transform:translate(16px, 16px);
    transition:
      top var(--dur) var(--ease),
      left var(--dur) var(--ease),
      width var(--dur) var(--ease),
      height var(--dur) var(--ease),
      opacity 0.35s ease;
    pointer-events:none; }

.page-index .expand-full { z-index:52;
    object-fit:contain;
    background:#000;
    opacity:0;
    box-shadow:0 0 0 rgba(0,0,0,0);
    transition:
      top var(--dur) var(--ease),
      left var(--dur) var(--ease),
      width var(--dur) var(--ease),
      height var(--dur) var(--ease),
      opacity 0.35s ease,
      box-shadow 0.3s ease; }

.page-index .expand-full.show { opacity:1; }

.page-index .expand-full:hover { box-shadow:0 26px 70px rgba(0,0,0,0.55), 0 8px 22px rgba(0,0,0,0.35); }

.page-index .expand-marquee { position:fixed; z-index:53;
    pointer-events:none;
    opacity:0;
    overflow:hidden; 
    transition:top var(--dur) var(--ease), left var(--dur) var(--ease), width var(--dur) var(--ease), height var(--dur) var(--ease), opacity 0.35s ease; }

.page-index .expand-marquee.show { opacity:1; }

.page-index .expand-marquee .em-edge { position:absolute; will-change:transform; }

.page-index .expand-marquee .em-top, .page-index .expand-marquee .em-bottom { left:0; width:200%; height:2px;
    background-image:linear-gradient(90deg, #000 50%, #fff 50%);
    background-repeat:repeat-x;
    background-size:10px 2px;
    animation:marchAntsX 0.4s linear infinite; }

.page-index .expand-marquee .em-top { top:0; }

.page-index .expand-marquee .em-bottom { bottom:0; }

.page-index .expand-marquee .em-left, .page-index .expand-marquee .em-right { top:0; height:200%; width:2px;
    background-image:linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-y;
    background-size:2px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-index .expand-marquee .em-left { left:0; }

.page-index .expand-marquee .em-right { right:0; }

.page-index .sweep-canvas { position:fixed; z-index:53;
    pointer-events:none;
    display:none; }

.page-index .sweep-canvas.active { display:block; }

.page-index .expand-close { position:fixed; z-index:53;
    top:32px; right:36px;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.08em; line-height:1;
    text-transform:uppercase;
    color:var(--dim); background:none; border:none;
    cursor:pointer; padding:8px 4px;
    opacity:0; transform:translateY(-6px);
    transition:opacity 0.3s ease, transform 0.3s ease, color 0.2s ease; }

.page-index .expand-close.show { opacity:1; transform:translateY(0); }

.page-index .expand-close:hover { color:var(--alert); }

.page-index .expand-nav { display:none; }

.page-index .hover-nav-dot { position:fixed; top:0; left:0; z-index:53; 
    width:96px; height:96px;
    border-radius:50%;
    background:var(--cursor-color, #ffe000); 
    display:flex; align-items:center; justify-content:center; gap:6px;
    opacity:0; pointer-events:none; }

.page-index .hover-nav-dot.show { opacity:1; }

.page-index .hover-nav-dot .hover-nav-dot-mask:nth-child(1) { order:2; }

.page-index .hover-nav-dot .hover-nav-dot-mask:nth-child(2) { order:1; }

.page-index .hover-nav-dot.prev .hover-nav-dot-mask:nth-child(1) { order:1; }

.page-index .hover-nav-dot.prev .hover-nav-dot-mask:nth-child(2) { order:2; }

.page-index .hover-nav-dot-mask { position:relative; z-index:1;
    overflow:hidden;
    height:20px;
    display:flex; align-items:center; }

.page-index .hover-nav-dot-inner { display:flex; align-items:center; gap:6px;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:16px; letter-spacing:0.02em;
    color:#0a0a0b; 
    white-space:nowrap; }

.page-index .custom-cursor { position:fixed; top:0; left:0; z-index:998;
    box-sizing:border-box;
    width:78px; height:78px; border-radius:50%;
    background:var(--cursor-color, #ffe000);
    border:2px solid transparent;
    display:flex; align-items:center; justify-content:center;
    text-align:center; line-height:1; padding:6px;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.04em;
    white-space:nowrap;
    text-transform:uppercase;
    color:#0a0a0b;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%, -50%) scale(0.5);
    transition:opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1), height 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.18s ease, color 0.18s ease;
    will-change:transform, opacity, width, height; }

.page-index .custom-cursor.show { opacity:1; transform:translate(-50%, -50%) scale(1); }

.page-index .custom-cursor--icon { font-size:26px; font-weight:400; letter-spacing:0; }

.page-index .custom-cursor--close { width:40px; height:40px; font-size:15px; font-weight:400; letter-spacing:0; padding:0; }

.page-index .custom-cursor--outline { background:transparent;
    border-color:var(--cursor-color, #ffe000);
    color:var(--cursor-color, #ffe000); }

.page-index .custom-cursor-dot { display:none; }

.page-index .custom-cursor--outline .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:var(--cursor-color, #ffe000);
    transform:translate(-50%, -50%); }

.page-index .custom-cursor--small { width:32px; height:32px; padding:0; }

.page-index .custom-cursor--small .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b;
    transform:translate(-50%, -50%); }

.page-index .custom-cursor--pill { width:46px; height:46px; padding:0; }

.page-index .custom-cursor--pill .custom-cursor-dot, .page-index .custom-cursor--blank .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b;
    transform:translate(-50%, -50%); }

.page-index .custom-cursor--word { font-size:19px; letter-spacing:0.05em; }

.page-index .custom-cursor--xray { width:32px; height:32px; padding:0; 
    background:#0a0a0b; }

.page-index .custom-cursor-plus { position:fixed; top:0; left:0; z-index:999;
    width:14px; height:14px; 
    transform:translate(-50%, -50%);
    pointer-events:none;
    opacity:0;
    transition:opacity 0.22s ease; }

.page-index .custom-cursor-plus.show { opacity:1; }

.page-index .custom-cursor-plus::before, .page-index .custom-cursor-plus::after { content:"";
    position:absolute;
    background:#fff; }

.page-index .custom-cursor-plus::before { top:50%; left:0; width:100%; height:2px; 
    transform:translateY(-50%); }

.page-index .custom-cursor-plus::after { left:50%; top:0; width:2px; height:100%; 
    transform:translateX(-50%); }

@media (max-width:820px) {
  .page-index .custom-cursor { display:none !important; }
  .page-index .live-clock-text { display:none !important; }
}

body.page-index.cc-active, body.page-index.cc-active * { cursor:none !important; }

.page-index .filmstrip-edge { position:fixed; z-index:57;
    bottom:64px; height:100px; 
    width:56px;
    display:flex; align-items:center; justify-content:center;
    background:none;
    border:none; cursor:none;
    opacity:0; pointer-events:none;
    transition:opacity 0.25s ease; }

.page-index .filmstrip-edge.show { opacity:1; pointer-events:auto; }

.page-index .filmstrip-edge-dot { display:none; }

.page-index .filmstrip-edge-left { left:8px; }

.page-index .filmstrip-edge-right { right:8px; }

@media (max-width:820px) {
  .page-index .filmstrip-edge { display:none; }
}

.page-index .mobile-nav { display:none;
    position:fixed; top:0; left:0; right:0; z-index:60;
    height:60px;
    align-items:center; justify-content:space-between;
    padding:0 16px;
    
    background:linear-gradient(to bottom, #0a0a0b 0%, rgba(10,10,11,0) 100%);
    overflow:hidden; }

.page-index .mobile-nav-logo { height:26.4px; width:auto; position:relative; z-index:1; filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

.page-index .mobile-nav-burger { width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer;
    position:relative; z-index:1; }

.page-index .mobile-nav-burger span { position:absolute; left:7px; width:20px; height:2px;
    background:var(--paper);
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
    transition:transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }

.page-index .mobile-nav-burger span:nth-child(1) { top:12px; }

.page-index .mobile-nav-burger span:nth-child(2) { top:20px; }

.page-index .mobile-nav-burger.open span:nth-child(1) { top:16px; transform:rotate(45deg); }

.page-index .mobile-nav-burger.open span:nth-child(2) { top:16px; transform:rotate(-45deg); }

.page-index .mobile-menu { display:none;
    position:fixed; top:60px; left:0; right:0; bottom:0; z-index:59;
    background:#e8e6de;
    color:#0a0a0b;
    flex-direction:column; align-items:center; justify-content:center;
    gap:28px;
    
    transform:translateY(calc(-100% - 60px));
    transition:transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.page-index .mobile-menu.open { transform:translateY(0); }

.page-index .mobile-menu a { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:26px; letter-spacing:0.04em;
    text-transform:uppercase;
    color:#0a0a0b; text-decoration:none; }

.page-index .mobile-menu a:active { opacity:0.6; }

.page-index .mobile-menu-contact-row { display:flex; flex-direction:column; align-items:center; gap:16px; }

.page-index .mobile-menu-social-row { display:flex; flex-direction:row; align-items:center; gap:24px; }

.page-index .mobile-menu-instagram { display:flex; align-items:center; justify-content:center;
    color:#0a0a0b; }

.page-index .mobile-menu-instagram svg { width:44px; height:44px; display:block; }

.page-index .mobile-menu-instagram:active { opacity:0.6; }

.page-index .mobile-menu-tokonoma { display:flex; align-items:center; justify-content:center; }

.page-index .mobile-menu-tokonoma img { width:44px; height:44px; object-fit:contain; display:block; }

.page-index .mobile-menu-tokonoma:active { opacity:0.6; }

.page-index .mobile-category-nav { display:none;
    position:fixed; bottom:0; left:0; right:0; z-index:59;
    height:64px;
    align-items:center; gap:10px;
    padding:0 16px;
    background:#0a0a0b; 
    overflow-x:auto; overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
    white-space:nowrap;
    scrollbar-width:none; }

.page-index .mobile-category-nav::-webkit-scrollbar { display:none; }

.page-index .mobile-category-fade { display:none;
    position:fixed; bottom:64px; left:0; right:0; z-index:58;
    height:80px;
    background:linear-gradient(to top, #0a0a0b 0%, rgba(10,10,11,0) 100%);
    pointer-events:none; }

.page-index .mobile-category-pill { flex:0 0 auto;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.06em;
    color:var(--paper);
    background:transparent;
    border:1.5px solid rgba(232,230,222,0.5);
    border-radius:999px;
    padding:13px 20px; 
    white-space:nowrap; }

.page-index .mobile-category-pill--active { color:#0a0a0b;
    background:var(--paper);
    border-color:var(--paper); }

.page-index .mobile-category-pill:active { opacity:0.7; }

@media (max-width:820px) {
  .page-index .mobile-nav { display:flex; }
  .page-index .mobile-menu { display:flex; }
  .page-index .mobile-category-nav { display:flex; }
  .page-index .mobile-category-fade { display:block; }
  .page-index .top-logo { display:none; }
  .page-index .footer-bar { display:none; }
  .page-index .scene { top:60px; bottom:0; }
  .page-index .hud.bottom-left, .page-index .hud.top-left { display:none; }
}

.page-index .expand-text { position:fixed; z-index:53;
    pointer-events:none; }

.page-index .expand-text .eyebrow-row { display:flex; align-items:baseline;
    margin-bottom:12px; }

.page-index .expand-text .eyebrow { font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
    color:var(--alert); font-weight:700;
    opacity:0; transform:translateY(8px);
    transition:opacity 0.4s ease, transform 0.4s ease; }

.page-index .expand-text .count { margin-left:12px;
    font-size:11px; letter-spacing:0.1em;
    color:#fff; font-weight:700;
    white-space:nowrap;
    opacity:0; transform:translateY(8px);
    transition:opacity 0.4s ease, transform 0.4s ease; }

.page-index .expand-text.show .count { opacity:1; transform:translateY(0); transition-delay:0s; }

.page-index .expand-text h2 { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:clamp(22px, 2.6vw, 30px);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-0.01em;
    text-transform:uppercase;
    margin-bottom:16px;
    opacity:0; transform:translateY(34px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }

.page-index .expand-text p { font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:20px; font-weight:400; line-height:24px;
    color:var(--paper); 
    white-space:pre-line;
    opacity:0; transform:translateY(16px);
    transition:opacity 0.5s ease, transform 0.5s ease; }

.page-index .expand-meta { display:none;
    margin-top:20px;
    opacity:0; transform:translateY(16px);
    transition:opacity 0.5s ease, transform 0.5s ease; }

.page-index .expand-meta.has-data { display:block; }

.page-index .expand-meta-divider { width:32px; height:1px;
    background:var(--dim); 
    margin:14px 0; }

.page-index .expand-meta-row { font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:16px; line-height:1.3; 
    color:var(--dim); }

.page-index .expand-meta-row + .expand-meta-row { margin-top:4px; }

.page-index .expand-buy-btn { position:relative;
    overflow:hidden; 
    display:flex; align-items:center; justify-content:center;
    width:100%; 
    margin-top:22px; 
    padding:12px 32px;
    border-radius:999px;
    background:#ffcc00; 
    border:1.5px solid transparent; 
    text-decoration:none;
    pointer-events:auto; }

.page-index .expand-buy-btn:hover { border-color:#ffcc00; }

.page-index .expand-buy-btn-fill { position:absolute; top:0; left:0; bottom:0;
    width:0%;
    background:#0a0a0b;
    transition:width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events:none; }

.page-index .expand-buy-btn:hover .expand-buy-btn-fill { width:100%; }

.page-index .expand-buy-btn-label { position:relative; z-index:1;
    color:#ffcc00; 
    mix-blend-mode:difference;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    pointer-events:none; }

.page-index .expand-enquire-btn { display:flex; align-items:center; justify-content:center;
    width:100%;
    margin-top:24px; 
    padding:12px 32px;
    border-radius:999px;
    background:transparent;
    border:1.5px solid var(--cursor-color, #ffe000); 
    color:var(--cursor-color, #ffe000); 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    text-decoration:none; 
    cursor:pointer;
    pointer-events:auto; 
    transition:background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease; }

.page-index .expand-enquire-btn:hover { background-color:var(--cursor-color, #ffe000); 
    color:#0a0a0b; }

.page-index .expand-enquire-btn.expand-enquire-btn--primary { background:var(--cursor-color, #ffe000); 
    border-color:var(--cursor-color, #ffe000);
    color:#0a0a0b; }

.page-index .expand-enquire-btn.expand-enquire-btn--primary:hover { background-color:var(--cursor-color, #ffe000); 
    color:#0a0a0b;
    opacity:0.85; }

.page-index .expand-text.show .eyebrow { opacity:1; transform:translateY(0); transition-delay:0s; }

.page-index .expand-text.show h2 { opacity:1; transform:translateY(0); transition-delay:0.16s; }

.page-index .expand-text.show p { opacity:1; transform:translateY(0); transition-delay:0.32s; }

.page-index .expand-text.show .expand-meta { opacity:1; transform:translateY(0); transition-delay:0.44s; }

@media (max-width:820px) {
  .page-index .hud.top-right, .page-index .hud.bottom-right { display:none; }
  .page-index .node { width:110px; height:110px; margin:-55px 0 0 -55px; }
  .page-index .expand-close { top:76px; right:20px; }
}

.page-index .mobile-browser { display:none;
    position:fixed; top:60px; left:0; right:0; bottom:0; z-index:10;
    overflow:hidden;
    background:var(--bg); }

.page-index .mobile-browser-panel { display:flex;
    flex-direction:column;
    width:100%; height:100%;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    padding:0 20px 170px; 
    transform:translateX(0);
    transition:transform 0.32s var(--ease), opacity 0.32s var(--ease); }

.page-index .mobile-browser-img-wrap { position:relative;
    margin-bottom:22px;
    background:#000; }

.page-index .mobile-browser-img { display:block;
    width:100%; height:auto; 
    aspect-ratio:1086 / 1448; 
    background:#000;
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mn-rect { position:absolute; inset:0;
    overflow:hidden;
    pointer-events:none; }

.page-index .mobile-nav-hint { position:absolute; inset:0;
    display:flex;
    overflow:hidden; 
    opacity:1;
    transition:opacity 0.6s ease; }

.page-index .mobile-nav-hint.hide { opacity:0; }

.page-index .mn-edge { position:absolute; will-change:transform; }

.page-index .mn-top, .page-index .mn-bottom { left:0; width:200%; height:1px;
    background-image:linear-gradient(90deg, #000 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 1px;
    animation:marchAntsX 0.4s linear infinite; }

.page-index .mn-top { top:0; }

.page-index .mn-bottom { bottom:0; }

.page-index .mn-left, .page-index .mn-right, .page-index .mn-mid { top:0; height:200%; width:1px;
    background-image:linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-y; background-size:1px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-index .mn-left { left:0; }

.page-index .mn-right { right:0; }

.page-index .mn-mid { left:50%; margin-left:-0.5px; }

.page-index .entry-sweep { position:absolute; inset:0;
    width:100%; height:100%;
    z-index:3;
    pointer-events:none; }

.page-index .mobile-nav-half { flex:1 1 50%;
    display:flex; align-items:center; justify-content:center;
    background:transparent;
    border:none;
    padding:0;
    margin:0;
    color:#fff;
    font-family:inherit;
    font-size:26px;
    line-height:1;
    -webkit-tap-highlight-color:transparent; }

.page-index .mobile-nav-dot { position:relative;
    width:52px; height:52px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center; }

.page-index .mobile-nav-dot::before { content:"";
    position:absolute; inset:0;
    border-radius:50%;
    border:1px dashed rgba(255,255,255,0.85); }

.page-index .mobile-nav-half-left .mobile-nav-dot::before { animation:mnDotSpinCCW 3s linear infinite; }

.page-index .mobile-nav-half-right .mobile-nav-dot::before { animation:mnDotSpin 3s linear infinite; }

.page-index .mobile-nav-dot-arrow { position:relative; z-index:1;
    font-size:20px; }

.page-index .mobile-scroll-hint { position:absolute; top:50%; left:50%; z-index:3;
    transform:translate(-50%, -50%);
    background:#ffe000;
    color:#0a0a0b;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    padding:14px 28px;
    border-radius:999px;
    white-space:nowrap;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.4s ease; }

.page-index .mobile-scroll-hint.show { opacity:1; }

.page-index .mobile-browser-text.hide { display:none; }

.page-index .mobile-text-skeleton { display:flex; flex-direction:column; gap:10px; }

.page-index .mobile-text-skeleton.hide { display:none; }

.page-index .skeleton-bar { height:14px;
    border-radius:3px;
    background:linear-gradient(90deg, rgba(255,255,255,0.07) 25%, rgba(255,255,255,0.16) 37%, rgba(255,255,255,0.07) 63%);
    background-size:400% 100%;
    animation:skeletonShimmer 1.4s ease infinite; }

.page-index .skeleton-eyebrow { width:34%; height:11px; margin-bottom:4px; }

.page-index .skeleton-headline { width:70%; height:26px; margin-bottom:6px; }

.page-index .skeleton-para { height:13px; }

.page-index .mobile-browser-eyebrow-row { display:flex; align-items:baseline; justify-content:space-between;
    gap:12px;
    margin-bottom:10px; }

.page-index .mobile-browser-eyebrow { font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
    color:var(--alert); font-weight:700;
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mobile-browser-count { font-size:11px; letter-spacing:0.1em;
    color:#fff; font-weight:700;
    white-space:nowrap;
    flex:0 0 auto; }

.page-index .mobile-browser-text h2 { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:clamp(22px, 6vw, 30px);
    font-weight:700; line-height:1.15;
    letter-spacing:-0.01em;
    text-transform:uppercase;
    margin-bottom:16px; 
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mobile-browser-rule { font-size:17px; line-height:1;
    color:#4a4842; 
    margin-bottom:16px; 
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mobile-browser-text p { font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:17px; line-height:1.55;
    color:#fff; 
    white-space:pre-line;
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mobile-browser-meta { display:none;
    margin-top:20px;
    transition:transform 0.34s var(--ease), opacity 0.34s var(--ease); }

.page-index .mobile-browser-meta.has-data { display:block; }

.page-index .mobile-browser-meta-divider { width:32px; height:1px;
    background:#999; 
    margin:14px 0; }

.page-index .mobile-browser-meta-row { font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:16px; line-height:1.3; 
    color:#999; }

.page-index .mobile-browser-meta-row + .mobile-browser-meta-row { margin-top:4px; }

.page-index .mobile-browser-buy-btn { display:flex; align-items:center; justify-content:center; 
    width:100%;
    min-height:48px; 
    box-sizing:border-box;
    margin-top:14px;
    padding:12px 32px;
    border-radius:999px;
    background:#ffcc00; 
    color:#0a0a0b;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    text-decoration:none;
    text-align:center; }

.page-index .mobile-browser-enquire-btn { display:flex; align-items:center; justify-content:center;
    width:100%;
    min-height:48px;
    box-sizing:border-box;
    margin-top:24px; 
    padding:12px 32px;
    border-radius:999px;
    background:transparent;
    border:1.5px solid var(--paper);
    color:var(--paper);
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    text-decoration:none;
    text-align:center; }

.page-index .mobile-browser-enquire-btn.mobile-browser-enquire-btn--primary { background:#ffcc00;
    border-color:#ffcc00;
    color:#0a0a0b; }

@media (min-width:821px) {
  .page-index .mobile-browser { display:none !important; }
}

.page-index .category-nav { position:fixed; left:32px; top:calc(50% - 32px); z-index:56;
    transform:translateY(-50%);
    display:flex; flex-direction:column; align-items:flex-start; gap:12px;
    transition:top 0.5s cubic-bezier(0.22, 1, 0.36, 1); }

.page-index .category-nav-hover-zone { position:fixed; left:0; top:0; bottom:0;
    width:40px;
    z-index:54; }

@media (max-width:820px) {
  .page-index .category-nav-hover-zone { display:none; }
}

.page-index .category-pill { position:relative;
    overflow:hidden; 
    display:inline-flex; align-items:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:12px; letter-spacing:0.06em;
    text-transform:uppercase;
    padding:11px 20px;
    border-radius:999px;
    text-decoration:none;
    white-space:nowrap;
    background:transparent;
    border:1.5px solid var(--paper);
    box-shadow:0 2px 10px rgba(0,0,0,0.35);
    
    transform:translateX(-160px);
    opacity:0;
    transition:transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, border-color 0.2s ease, background 0.2s ease; }

.page-index .category-pill.pill-in { transform:translateX(0);
    opacity:1; }

.page-index .category-nav.retracted .category-pill.pill-in { transform:translateX(calc(-100% + 24px)); }

.page-index .category-nav.retracted.force-expand .category-pill.pill-in { transform:translateX(0); }

.page-index .category-pill-fill { position:absolute; top:0; left:0; bottom:0;
    width:0%;
    background:var(--paper);
    transition:width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events:none; }

.page-index .category-pill:hover .category-pill-fill { width:100%; }

.page-index .category-pill-label { position:relative; z-index:1;
    color:#fff;
    mix-blend-mode:difference;
    pointer-events:none; }

.page-index .category-pill--active { background:var(--paper);
    border-color:var(--paper); }

@media (max-width:820px) {
  .page-index .category-nav { display:none; }
}

.page-index .scene.lift-up, .page-index .scene.lift-down { transition:transform 0.85s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.85s cubic-bezier(0.55, 0, 1, 0.45); }

.page-index .scene.entering { transition:transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1); }

.page-index .scene.lift-up { transform:translateY(-120%); opacity:0; }

.page-index .scene.lift-down { transform:translateY(120%); opacity:0; }

.page-index .scene.enter-from-above { transform:translateY(-120%); opacity:0; }

.page-index .scene.enter-from-below { transform:translateY(120%); opacity:0; }

.page-index .page-loader { position:fixed; top:50%; left:50%; z-index:2000;
    transform:translate(-50%, -50%);
    width:220px; height:2px;
    background:rgba(255,255,255,0.15);
    overflow:hidden;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.25s ease; }

.page-index .page-loader.show { opacity:1; }

.page-index .page-loader-bar { height:100%; width:0%;
    background:var(--cursor-color, #ffe000);
    transition:width 0.75s cubic-bezier(0.4, 0, 0.2, 1); }

.page-index .page-loader-bar.fill { width:100%; }



/* ================================================================
   ABOUT — page-specific rules (scoped to body.page-about)
   ================================================================ */

.page-about .top-logo { position:fixed;
    top:32px; left:32px;
    z-index:57;
    width:min(40vw, 160px);
    height:auto;
    user-select:none; }

.page-about .top-logo img { display:block; width:100%; height:auto;
    will-change:transform; }

.page-about .top-logo-marquee { position:absolute; top:-8px; left:-8px; right:-8px; bottom:-8px;
    overflow:hidden;
    opacity:0;
    transition:opacity 0.25s ease;
    pointer-events:none; }

.page-about .top-logo:hover .top-logo-marquee { opacity:1; }

.page-about .tlm-edge { position:absolute; will-change:transform; }

.page-about .tlm-top, .page-about .tlm-bottom { left:0; width:200%; height:2px;
    background-image:linear-gradient(90deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 2px;
    animation:marchAntsX 0.4s linear infinite; }

.page-about .tlm-top { top:0; }

.page-about .tlm-bottom { bottom:0; }

.page-about .tlm-left, .page-about .tlm-right { top:0; height:200%; width:2px;
    background-image:linear-gradient(0deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-y; background-size:2px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-about .tlm-left { left:0; }

.page-about .tlm-right { right:0; }

.page-about .top-right { position:fixed; top:24px; right:32px; z-index:60;
    display:flex; align-items:center; gap:20px; }

.page-about .icon-btn { display:flex; align-items:center; justify-content:center;
    color:#fff; background:none; border:none; 
    cursor:pointer; padding:6px;
    text-decoration:none;
    transition:color 0.2s ease; }

.page-about .icon-btn:hover { color:var(--alert); }

.page-about .icon-btn svg { width:22px; height:22px; display:block; }

.page-about .close-btn { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.08em; line-height:1;
    text-transform:uppercase; }

.page-about .sheet { position:fixed; top:0; left:0; right:0; bottom:64px; z-index:10;
    background:#0a0a0b; 
    color:var(--paper); 
    overflow-y:auto;
    overflow-x:hidden; 
    transform:translateY(100%);
    transition:transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.page-about .sheet.in { transform:translateY(0); }

.page-about .sheet-inner { padding:150px 0 140px; }

.page-about .bio-hero { max-width:1360px; margin:0 auto 100px; padding:0 32px;
    display:grid; grid-template-columns:0.85fr 1fr; gap:80px; align-items:start; }

.page-about .bio-hero-img { position:relative; overflow:hidden;
    background:#1a1a1b; 
    
    opacity:0; transform:translateY(40px) rotate(-18deg);
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.page-about .bio-hero-img.in-view { opacity:1; transform:translateY(0) rotate(0deg); }

.page-about .bio-hero-img img { display:block;
    width:100%; height:auto; 
    will-change:transform;
    opacity:0; 
    transition:opacity 0.15s ease; }

.page-about .bio-hero-img img.entry-img-loaded { opacity:1; }

.page-about .bio-hero-text { padding-top:8px; }

.page-about h1 { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:clamp(32px, 5vw, 56px);
    letter-spacing:0.02em;
    text-transform:uppercase;
    margin-bottom:28px;
    
    opacity:0; transform:translateY(14px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.page-about .bio-hero-text.in-view h1 { opacity:1; transform:translateY(0); }

.page-about .bio-hero-text p { font-size:22px; line-height:1.45;
    color:#b8b6ae; 
    margin-bottom:20px;
    
    opacity:0; transform:translateY(14px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.page-about .bio-hero-text.in-view p:nth-of-type(1) { opacity:1; transform:translateY(0); transition-delay:0.3s; }

.page-about .bio-hero-text.in-view p:nth-of-type(2) { opacity:1; transform:translateY(0); transition-delay:0.42s; }

.page-about .bio-hero-text.in-view p:nth-of-type(3) { opacity:1; transform:translateY(0); transition-delay:0.54s; }

.page-about .bio-hero-text.in-view p:nth-of-type(4) { opacity:1; transform:translateY(0); transition-delay:0.66s; }

.page-about .bio-hero-text p:last-child { margin-bottom:0; }

.page-about .bio-hero-text a { color:var(--paper); 
    text-decoration-color:var(--paper);
    text-underline-offset:2px; }

@media (max-width:820px) {
  .page-about .bio-hero { grid-template-columns:1fr; gap:32px; margin-bottom:64px; padding-left:20px; padding-right:20px; }
  .page-about .bio-hero-text p { font-size:18px; line-height:1.55; }
}

.page-about .back-to-top-wrap { max-width:1360px; margin:100px auto 0; padding:0 32px;
    display:flex; justify-content:center; }

.page-about .back-to-top-pill { position:relative;
    overflow:hidden; 
    display:inline-flex; align-items:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    padding:14px 34px;
    border-radius:999px;
    text-decoration:none;
    background:transparent;
    border:1.5px solid var(--paper);
    cursor:pointer; }

.page-about .back-to-top-pill-fill { position:absolute; top:0; left:0; bottom:0;
    width:0%;
    background:var(--paper);
    transition:width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events:none; }

.page-about .back-to-top-pill:hover .back-to-top-pill-fill { width:100%; }

.page-about .back-to-top-pill-label { position:relative; z-index:1;
    display:inline-flex; align-items:center; gap:6px;
    color:#fff;
    mix-blend-mode:difference;
    pointer-events:none; }

.page-about .back-to-top-arrow { display:inline-block;
    font-size:calc(1em + 4px); 
    transform:translateY(-4px); }

.page-about .bio-view { display:none; }

.page-about .bio-view.active { display:block; }

.page-about .gallery-view { display:none;
    position:fixed; top:0; left:0; right:0; bottom:64px; z-index:50;
    background:#0a0a0b;
    flex-direction:column; align-items:center; justify-content:center;
    padding:32px 32px 128px; }

.page-about .gallery-view.active { display:flex; }

.page-about .gallery-expand-wrap { position:relative;
    flex:1; min-height:0; 
    width:100%;
    display:flex; align-items:center; justify-content:center; }

.page-about .gallery-content-group { display:flex; flex-direction:column; align-items:center; }

.page-about .gallery-fly { position:fixed; top:0; left:0; z-index:60; 
    object-fit:contain; 
    pointer-events:none; }

.page-about .gallery-expand-frame { position:relative;
    overflow:hidden; }

.page-about .gallery-expand-frame::after { content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background-image:
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:8px 1px, 8px 1px, 1px 8px, 1px 8px;
    background-position:0 0, 0 100%, 0 0, 100% 0;
    animation:marchingAnts 0.4s linear infinite; }

.page-about .gallery-expand-frame.closing::after { display:none; }

.page-about .gallery-expand-img { width:100%; height:100%;
    display:block;
    opacity:0; 
    transition:opacity 0.15s ease; }

.page-about .gallery-expand-img.entry-img-loaded { opacity:1; }

.page-about .entry-sweep { position:absolute; inset:0;
    width:100%; height:100%;
    z-index:2;
    pointer-events:none; }

.page-about .gallery-caption { font-size:13px; letter-spacing:0.05em;
    color:#9a9890; 
    margin-top:16px;
    text-align:center; }

.page-about .filmstrip-edge { display:none;
    position:fixed; bottom:64px; z-index:56;
    height:100px;
    width:56px;
    background:none;
    border:none; cursor:none;
    opacity:0; pointer-events:none;
    transition:opacity 0.25s ease; }

.page-about .filmstrip-edge.show { display:block; opacity:1; pointer-events:auto; }

.page-about .filmstrip-edge-left { left:0; }

.page-about .filmstrip-edge-right { right:0; }

.page-about .gallery-filmstrip { display:none;
    position:fixed; left:0; right:0; bottom:64px; z-index:55;
    padding:12px 0; 
    background:#0a0a0b;
    overflow:hidden; }

.page-about .gallery-filmstrip.active { display:flex; }

.page-about .gallery-filmstrip-row { display:flex;
    gap:1px; 
    will-change:transform;
    transition:transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

.page-about .gallery-thumb { position:relative; overflow:hidden;
    flex:0 0 auto;
    height:76px; width:76px; 
    cursor:pointer;
    opacity:0.55;
    transition:opacity 0.2s ease, transform 0.25s ease;
    transform-origin:bottom center; }

.page-about .gallery-thumb:hover, .page-about .gallery-thumb.active { opacity:1; }

.page-about .gallery-thumb.active::after { content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background-image:
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(90deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%),
      linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:8px 1px, 8px 1px, 1px 8px, 1px 8px;
    background-position:0 0, 0 100%, 0 0, 100% 0;
    animation:marchingAnts 0.4s linear infinite; }

.page-about .gallery-thumb:hover { transform:scale(1.2); z-index:2; }

.page-about .gallery-thumb img { position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:contain; 
    display:block; }

.page-about .gallery-thumb .frame-dither-canvas { position:absolute; inset:0;
    width:100%; height:100%;
    pointer-events:none;
    opacity:0; }

.page-about .gallery-thumb .frame-dither-canvas.show { opacity:1; }

.page-about .about-category-nav { position:fixed; left:32px; top:calc(50% - 32px); z-index:56;
    transform:translateY(-50%);
    display:flex; flex-direction:column; align-items:flex-start; gap:12px; }

.page-about .about-category-nav-hover-zone { position:fixed; left:0; top:0; bottom:0;
    width:40px;
    z-index:54; }

@media (max-width:820px) {
  .page-about .about-category-nav-hover-zone { display:none; }
}

.page-about .about-pill { position:relative;
    overflow:hidden;
    display:inline-flex; align-items:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:12px; letter-spacing:0.06em;
    text-transform:uppercase;
    padding:11px 20px;
    border-radius:999px;
    text-decoration:none;
    white-space:nowrap;
    background:transparent;
    border:1.5px solid #fff; 
    cursor:pointer;
    
    transform:translateX(-160px);
    opacity:0;
    transition:transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, border-color 0.2s ease, background 0.2s ease; }

.page-about .about-pill.pill-in { transform:translateX(0);
    opacity:1; }

.page-about .about-category-nav.retracted .about-pill.pill-in { transform:translateX(calc(-100% + 24px)); }

.page-about .about-category-nav.retracted.force-expand .about-pill.pill-in { transform:translateX(0); }

.page-about .about-pill-fill { position:absolute; top:0; left:0; bottom:0;
    width:0%;
    background:#fff; 
    transition:width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events:none; }

.page-about .about-pill:hover .about-pill-fill { width:100%; }

.page-about .about-pill-label { position:relative; z-index:1;
    color:#fff; 
    transition:color 0.2s ease;
    pointer-events:none; }

.page-about .about-pill:hover .about-pill-label { color:#0a0a0b; }

.page-about .about-pill--active { background:#fff; 
    border-color:#fff; }

.page-about .about-pill--active .about-pill-label { color:#0a0a0b; }

@media (max-width:820px) {
  .page-about .about-category-nav { display:none; }
}

.page-about .mobile-about-category-nav { display:none;
    position:fixed; bottom:0; left:0; right:0; z-index:59;
    height:64px;
    align-items:center; gap:10px;
    padding:0 16px;
    background:#0a0a0b; 
    overflow-x:auto; overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
    white-space:nowrap;
    scrollbar-width:none; }

.page-about .mobile-about-category-nav::-webkit-scrollbar { display:none; }

@media (max-width:820px) {
  .page-about .mobile-about-category-nav { display:flex; }
}

.page-about .mobile-about-category-fade { display:none;
    position:fixed; bottom:64px; left:0; right:0; z-index:58;
    height:80px;
    background:linear-gradient(to top, #0a0a0b 0%, rgba(10,10,11,0) 100%);
    pointer-events:none; }

@media (max-width:820px) {
  .page-about .mobile-about-category-fade { display:none; }
  body.page-about.bio-active .mobile-about-category-fade { display:block; }
}

.page-about .mobile-about-pill { flex:0 0 auto;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.06em;
    color:#fff; 
    background:transparent;
    border:1.5px solid rgba(232,230,222,0.35);
    border-radius:999px;
    padding:13px 20px;
    white-space:nowrap; }

.page-about .mobile-about-pill--active { color:#0a0a0b;
    background:#fff;
    border-color:#fff; }

.page-about .mobile-about-pill:active { opacity:0.7; }

.page-about .mobile-gallery-browser { display:none;
    position:fixed; top:60px; left:0; right:0; bottom:64px; z-index:50;
    background:#0a0a0b;
    flex-direction:column;
    overflow-y:auto;
    overflow-x:hidden; 
    -webkit-overflow-scrolling:touch;
    padding:0 20px 60px; }

@media (max-width:820px) {
  .page-about .mobile-gallery-browser.active { display:flex; }
  .page-about .gallery-view, .page-about .gallery-filmstrip, .page-about .filmstrip-edge, .page-about .hover-nav-dot { display:none !important; }
}

.page-about .mobile-gallery-img-wrap { position:relative;
    margin-top:20px;
    margin-bottom:16px;
    aspect-ratio:4 / 5; }

.page-about .mobile-gallery-img { position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:contain; 
    display:block;
    opacity:0;
    transition:opacity 0.15s ease; }

.page-about .mobile-gallery-img.entry-img-loaded { opacity:1; }

.page-about .mobile-gallery-caption { font-size:13px; letter-spacing:0.05em;
    color:#9a9890;
    text-align:center;
    padding:16px 24px; }

.page-about .mn-rect { position:absolute; inset:0;
    overflow:hidden;
    pointer-events:none; }

.page-about .mobile-nav-hint { position:absolute; inset:0;
    display:flex;
    overflow:hidden;
    opacity:1;
    transition:opacity 0.6s ease; }

.page-about .mobile-nav-hint.hide { opacity:0; }

.page-about .mn-edge { position:absolute; will-change:transform; }

.page-about .mn-top, .page-about .mn-bottom { left:0; width:200%; height:1px;
    background-image:linear-gradient(90deg, #000 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 1px;
    animation:marchAntsX 0.4s linear infinite; }

.page-about .mn-top { top:0; }

.page-about .mn-bottom { bottom:0; }

.page-about .mn-left, .page-about .mn-right, .page-about .mn-mid { top:0; height:200%; width:1px;
    background-image:linear-gradient(0deg, #000 50%, #fff 50%);
    background-repeat:repeat-y; background-size:1px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-about .mn-left { left:0; }

.page-about .mn-right { right:0; }

.page-about .mn-mid { left:50%; margin-left:-0.5px; }

.page-about .mobile-nav-half { flex:1 1 50%;
    display:flex; align-items:center; justify-content:center;
    background:transparent;
    border:none;
    padding:0; margin:0;
    color:#fff;
    font-family:inherit;
    font-size:26px;
    line-height:1;
    -webkit-tap-highlight-color:transparent; }

.page-about .mobile-nav-dot { position:relative;
    width:52px; height:52px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center; }

.page-about .mobile-nav-dot::before { content:"";
    position:absolute; inset:0;
    border-radius:50%;
    border:1px dashed rgba(255,255,255,0.85); }

.page-about .mobile-nav-half-left .mobile-nav-dot::before { animation:mnDotSpinCCW 3s linear infinite; }

.page-about .mobile-nav-half-right .mobile-nav-dot::before { animation:mnDotSpin 3s linear infinite; }

.page-about .mobile-nav-dot-arrow { position:relative; z-index:1;
    font-size:20px; }

.page-about .mobile-gallery-caption.loading { display:none; }

.page-about .mobile-text-skeleton { display:flex; flex-direction:column; align-items:center; gap:6px;
    padding:16px 24px;
    min-height:49px; }

.page-about .mobile-text-skeleton.hide { display:none; }

.page-about .skeleton-bar { height:9px;
    max-width:100%;
    border-radius:3px;
    background:linear-gradient(90deg, rgba(255,255,255,0.07) 25%, rgba(255,255,255,0.16) 37%, rgba(255,255,255,0.07) 63%);
    background-size:400% 100%;
    animation:skeletonShimmer 1.4s ease infinite; }

.page-about .footer-bar { position:fixed; left:0; right:0; bottom:0; z-index:56;
    height:64px;
    background:#0a0a0b;
    overflow:hidden;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 32px; }

.page-about .footer-link { position:relative; z-index:1;
    display:flex; align-items:center;
    height:64px; 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:0.02em;
    text-transform:uppercase;
    color:var(--paper);
    text-shadow:0 1px 3px rgba(0,0,0,0.5);
    text-decoration:none; }

.page-about .footer-link-mask { display:block;
    height:100%;
    overflow:hidden; }

.page-about .footer-link-track { display:block;
    transition:transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }

.page-about .footer-link-track span { display:flex; align-items:center;
    height:64px; }

.page-about .footer-link:hover .footer-link-track { transform:translateY(-64px); }

.page-about .footer-link.current { box-shadow:inset 0 -2px 0 0 var(--paper); }

.page-about .footer-right { position:relative; z-index:1;
    display:flex; align-items:center; gap:16px; }

.page-about .footer-instagram { display:flex; align-items:center; justify-content:center;
    color:var(--paper);
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-about .footer-instagram:hover { opacity:0.6; }

.page-about .footer-instagram svg { width:20px; height:20px; display:block; }

.page-about .footer-tokonoma { display:flex; align-items:center; justify-content:center;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-about .footer-tokonoma:hover { opacity:0.6; }

.page-about .footer-tokonoma img { width:20px; height:20px; object-fit:contain; display:block; }

@media (max-width:820px) {
  .page-about .top-logo { display:none; }
  .page-about .top-right { display:none; }
  .page-about .footer-bar { display:none; }
  .page-about .sheet { top:60px; bottom:64px; }
  .page-about .sheet-inner { padding-top:0; }
}

.page-about .mobile-nav { display:none;
    position:fixed; top:0; left:0; right:0; z-index:60;
    height:60px;
    align-items:center; justify-content:space-between;
    padding:0 16px;
    background:#0a0a0b;
    overflow:hidden; }

.page-about .mobile-nav-logo { height:26.4px; width:auto; position:relative; z-index:1; filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

.page-about .mobile-nav-burger { width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer;
    position:relative; z-index:1; }

.page-about .mobile-nav-burger span { position:absolute; left:7px; width:20px; height:2px;
    background:var(--paper);
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
    transition:transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }

.page-about .mobile-nav-burger span:nth-child(1) { top:16px; transform:rotate(45deg); }

.page-about .mobile-nav-burger span:nth-child(2) { top:16px; transform:rotate(-45deg); }

@media (max-width:820px) {
  .page-about .mobile-nav { display:flex; }
}

.page-about .custom-cursor { position:fixed; top:0; left:0; z-index:998;
    box-sizing:border-box;
    width:78px; height:78px; border-radius:50%;
    background:transparent; 
    border:2px solid var(--cursor-color, #ffe000); 
    display:flex; align-items:center; justify-content:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.06em;
    text-transform:uppercase;
    color:#0a0a0b;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%, -50%) scale(0.5);
    transition:opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1), height 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease, border-color 0.18s ease, color 0.18s ease; }

.page-about .custom-cursor.show { opacity:1; transform:translate(-50%, -50%) scale(1); }

.page-about .custom-cursor--small { width:32px; height:32px; background:var(--cursor-color, #ffe000); }

.page-about .custom-cursor--xray { width:32px; height:32px; padding:0; background:#0a0a0b; border-color:transparent; }

.page-about .custom-cursor-plus { position:fixed; top:0; left:0; z-index:999;
    width:14px; height:14px;
    transform:translate(-50%, -50%);
    pointer-events:none;
    opacity:0;
    transition:opacity 0.22s ease; }

.page-about .custom-cursor-plus.show { opacity:1; }

.page-about .custom-cursor-plus::before, .page-about .custom-cursor-plus::after { content:"";
    position:absolute;
    background:#fff; }

.page-about .custom-cursor-plus::before { top:50%; left:0; width:100%; height:2px;
    transform:translateY(-50%); }

.page-about .custom-cursor-plus::after { left:50%; top:0; width:2px; height:100%;
    transform:translateX(-50%); }

.page-about .custom-cursor-dot { display:none; }

.page-about .custom-cursor--small .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b; 
    transform:translate(-50%, -50%); }

.page-about .custom-cursor--blank .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:var(--cursor-color, #ffe000);
    transform:translate(-50%, -50%); }

.page-about .custom-cursor--close-label { width:40px; height:40px; font-size:15px; font-weight:400; letter-spacing:0; color:#0a0a0b; background:var(--cursor-color, #ffe000); }

.page-about .custom-cursor--icon { font-size:26px; font-weight:400; letter-spacing:0; color:#0a0a0b; background:var(--cursor-color, #ffe000); }

@media (max-width:820px) {
  .page-about .custom-cursor { display:none !important; }
}

body.page-about.cc-active, body.page-about.cc-active * { cursor:none !important; }

.page-about .hover-nav-dot { position:fixed; top:0; left:0; z-index:53;
    width:96px; height:96px;
    border-radius:50%;
    background:var(--cursor-color, #ffe000);
    display:flex; align-items:center; justify-content:center; gap:6px;
    opacity:0; pointer-events:none; }

.page-about .hover-nav-dot.show { opacity:1; }

.page-about .hover-nav-dot .hover-nav-dot-mask:nth-child(1) { order:2; }

.page-about .hover-nav-dot .hover-nav-dot-mask:nth-child(2) { order:1; }

.page-about .hover-nav-dot.prev .hover-nav-dot-mask:nth-child(1) { order:1; }

.page-about .hover-nav-dot.prev .hover-nav-dot-mask:nth-child(2) { order:2; }

.page-about .hover-nav-dot-mask { position:relative; z-index:1;
    overflow:hidden;
    height:20px;
    display:flex; align-items:center; }

.page-about .hover-nav-dot-inner { display:flex; align-items:center; gap:6px;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:16px; letter-spacing:0.02em;
    color:#0a0a0b;
    white-space:nowrap; }



/* ================================================================
   CUTOUT-CITIZENS — page-specific rules (scoped to body.page-cutout)
   ================================================================ */

.page-cutout .top-logo { position:fixed;
    top:32px; left:32px;
    z-index:57;
    width:min(40vw, 160px);
    height:auto;
    user-select:none; }

.page-cutout .top-logo img { display:block; width:100%; height:auto;
    will-change:transform; }

.page-cutout .top-logo-marquee { position:absolute; top:-8px; left:-8px; right:-8px; bottom:-8px;
    overflow:hidden;
    opacity:0;
    transition:opacity 0.25s ease;
    pointer-events:none; }

.page-cutout .top-logo:hover .top-logo-marquee { opacity:1; }

.page-cutout .tlm-edge { position:absolute; will-change:transform; }

.page-cutout .tlm-top, .page-cutout .tlm-bottom { left:0; width:200%; height:2px;
    background-image:linear-gradient(90deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 2px;
    animation:marchAntsX 0.4s linear infinite; }

.page-cutout .tlm-top { top:0; }

.page-cutout .tlm-bottom { bottom:0; }

.page-cutout .tlm-left, .page-cutout .tlm-right { top:0; height:200%; width:2px;
    background-image:linear-gradient(0deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-y; background-size:2px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-cutout .tlm-left { left:0; }

.page-cutout .tlm-right { right:0; }

.page-cutout .top-right { position:fixed; top:24px; right:32px; z-index:60;
    display:flex; align-items:center; gap:20px; }

.page-cutout .icon-btn { display:flex; align-items:center; justify-content:center;
    color:#fff; background:none; border:none; 
    cursor:pointer; padding:6px;
    text-decoration:none;
    transition:color 0.2s ease; }

.page-cutout .icon-btn:hover { color:var(--alert); }

.page-cutout .icon-btn svg { width:22px; height:22px; display:block; }

.page-cutout .close-btn { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.08em; line-height:1;
    text-transform:uppercase; }

.page-cutout .sheet { position:fixed; top:0; left:0; right:0; bottom:64px; z-index:10;
    background:#0a0a0b; 
    color:var(--paper); 
    overflow-y:auto;
    overflow-x:hidden; 
    transform:translateY(100%);
    transition:transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .sheet.in { transform:translateY(0); }

.page-cutout .sheet-inner { padding:150px 0 140px; }

.page-cutout .hero { max-width:1360px; margin:0 auto 100px; padding:0 32px;
    display:grid; grid-template-columns:0.85fr 1fr; gap:80px; align-items:start; }

.page-cutout .hero-img { position:relative; overflow:hidden;
    background:#1a1a1b;
    
    opacity:0; transform:translateY(40px) rotate(-18deg);
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .hero-img.in-view { opacity:1; transform:translateY(0) rotate(0deg); }

.page-cutout .hero-img img { display:block;
    width:100%; height:auto; 
    will-change:transform;
    opacity:0; 
    transition:opacity 0.15s ease; }

.page-cutout .hero-img img.entry-img-loaded { opacity:1; }

.page-cutout .hero-text { padding-top:8px; }

.page-cutout h1 { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:clamp(32px, 5vw, 56px);
    letter-spacing:0.02em;
    text-transform:uppercase;
    margin-bottom:28px;
    
    opacity:0; transform:translateY(14px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .hero-text.in-view h1 { opacity:1; transform:translateY(0); }

.page-cutout .hero-text p { font-size:22px; line-height:1.45;
    color:#b8b6ae;
    margin-bottom:20px;
    
    opacity:0; transform:translateY(14px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .hero-text.in-view p:nth-of-type(1) { opacity:1; transform:translateY(0); transition-delay:0.3s; }

.page-cutout .hero-text.in-view p:nth-of-type(2) { opacity:1; transform:translateY(0); transition-delay:0.42s; }

.page-cutout .hero-text.in-view p:nth-of-type(3) { opacity:1; transform:translateY(0); transition-delay:0.54s; }

.page-cutout .hero-text.in-view p:nth-of-type(4) { opacity:1; transform:translateY(0); transition-delay:0.66s; }

.page-cutout .hero-text p:last-child { margin-bottom:0; }

@media (max-width:820px) {
  .page-cutout .hero { grid-template-columns:1fr; gap:32px; margin-bottom:64px; padding-left:20px; padding-right:20px; }
  .page-cutout .hero-text p { font-size:18px; line-height:1.55; }
}

.page-cutout .editorial { max-width:1360px; margin:0 auto; padding:0 32px 60px;
    display:grid; grid-template-columns:1fr 1fr; gap:88px; }

.page-cutout .editorial-col { display:flex; flex-direction:column; gap:80px; }

.page-cutout .editorial-col.offset { margin-top:120px; }

.page-cutout .entry-img { position:relative; overflow:hidden;
    background:#1a1a1b; 
    opacity:0; transform:translateY(40px) rotate(-18deg); 
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .entry.in-view .entry-img { opacity:1; transform:translateY(0) rotate(0deg); }

.page-cutout .entry-img img { display:block;
    width:100%; height:auto; 
    will-change:transform;
    opacity:0; 
    transition:opacity 0.15s ease; }

.page-cutout .entry-img img.entry-img-loaded { opacity:1; }

.page-cutout .video-entry { display:flex;
    justify-content:center; }

.page-cutout .video-embed { display:block;
    width:min(100%, calc((100dvh - 96px) * 9 / 16));
    aspect-ratio:9 / 16;
    border:0;
    opacity:0;
    transform:translateY(40px) rotate(-6deg);
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.page-cutout .entry.in-view .video-embed { opacity:1;
    transform:translateY(0) rotate(0deg); }

.page-cutout .entry-sweep { position:absolute; inset:0;
    width:100%; height:100%;
    z-index:2;
    pointer-events:none; }

@media (max-width:820px) {
  .page-cutout .editorial { grid-template-columns:1fr;
      gap:56px;
      padding-left:20px;
      padding-right:20px; }
  .page-cutout .editorial-col.offset { margin-top:0; }
  .page-cutout .editorial-col { gap:64px; }
}

.page-cutout .photo-credit { max-width:1360px; margin:28px auto 0; padding:0 32px;
    font-size:14px; line-height:1.45; color:#b8b6ae; }

@media (max-width:820px) {
  .page-cutout .photo-credit { padding:0 20px; font-size:14px; }
}

.page-cutout .back-to-top-wrap { max-width:1360px; margin:100px auto 0; padding:0 32px;
    display:flex; justify-content:center; }

.page-cutout .back-to-top-pill { position:relative;
    overflow:hidden; 
    display:inline-flex; align-items:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:13px; letter-spacing:0.08em;
    text-transform:uppercase;
    padding:14px 34px;
    border-radius:999px;
    text-decoration:none;
    background:transparent; 
    border:1.5px solid var(--paper); 
    cursor:pointer; }

.page-cutout .back-to-top-pill-fill { position:absolute; top:0; left:0; bottom:0;
    width:0%;
    background:var(--paper);
    transition:width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events:none; }

.page-cutout .back-to-top-pill:hover .back-to-top-pill-fill { width:100%; }

.page-cutout .back-to-top-pill-label { position:relative; z-index:1;
    display:inline-flex; align-items:center; gap:6px;
    color:#fff;
    mix-blend-mode:difference;
    pointer-events:none; }

.page-cutout .back-to-top-arrow { display:inline-block;
    font-size:calc(1em + 4px); 
    transform:translateY(-4px); }

.page-cutout .footer-bar { position:fixed; left:0; right:0; bottom:0; z-index:56;
    height:64px;
    background:#0a0a0b;
    overflow:hidden;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 32px; }

.page-cutout .footer-link { position:relative; z-index:1;
    display:flex; align-items:center;
    height:64px; 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:0.02em;
    text-transform:uppercase;
    color:var(--paper);
    text-shadow:0 1px 3px rgba(0,0,0,0.5);
    text-decoration:none; }

.page-cutout .footer-link-mask { display:block;
    height:100%;
    overflow:hidden; }

.page-cutout .footer-link-track { display:block;
    transition:transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }

.page-cutout .footer-link-track span { display:flex; align-items:center;
    height:64px; }

.page-cutout .footer-link:hover .footer-link-track { transform:translateY(-64px); }

.page-cutout .footer-link.current { box-shadow:inset 0 -2px 0 0 var(--paper); }

.page-cutout .footer-right { position:relative; z-index:1;
    display:flex; align-items:center; gap:16px; }

.page-cutout .footer-instagram { display:flex; align-items:center; justify-content:center;
    color:var(--paper);
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-cutout .footer-instagram:hover { opacity:0.6; }

.page-cutout .footer-instagram svg { width:20px; height:20px; display:block; }

.page-cutout .footer-tokonoma { display:flex; align-items:center; justify-content:center;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-cutout .footer-tokonoma:hover { opacity:0.6; }

.page-cutout .footer-tokonoma img { width:20px; height:20px; object-fit:contain; display:block; }

@media (max-width:820px) {
  .page-cutout .top-logo { display:none; }
  .page-cutout .top-right { display:none; }
  .page-cutout .footer-bar { display:none; }
  .page-cutout .sheet { top:60px; bottom:0; }
  .page-cutout .sheet-inner { padding-top:0; }
}

.page-cutout .mobile-nav { display:none;
    position:fixed; top:0; left:0; right:0; z-index:60;
    height:60px;
    align-items:center; justify-content:space-between;
    padding:0 16px;
    background:#0a0a0b;
    overflow:hidden; }

.page-cutout .mobile-nav-logo { height:26.4px; width:auto; position:relative; z-index:1; filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

.page-cutout .mobile-nav-burger { width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer;
    position:relative; z-index:1; }

.page-cutout .mobile-nav-burger span { position:absolute; left:7px; width:20px; height:2px;
    background:var(--paper);
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
    transition:transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }

.page-cutout .mobile-nav-burger span:nth-child(1) { top:16px; transform:rotate(45deg); }

.page-cutout .mobile-nav-burger span:nth-child(2) { top:16px; transform:rotate(-45deg); }

@media (max-width:820px) {
  .page-cutout .mobile-nav { display:flex; }
}

.page-cutout .custom-cursor { position:fixed; top:0; left:0; z-index:998;
    box-sizing:border-box;
    width:78px; height:78px; border-radius:50%;
    background:var(--cursor-color, #ffe000); 
    border:2px solid transparent;
    display:flex; align-items:center; justify-content:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.06em;
    text-transform:uppercase;
    color:#0a0a0b;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%, -50%) scale(0.5);
    transition:opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1), height 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease, border-color 0.18s ease, color 0.18s ease; }

.page-cutout .custom-cursor.show { opacity:1; transform:translate(-50%, -50%) scale(1); }

.page-cutout .custom-cursor--small { width:32px; height:32px; background:var(--cursor-color, #ffe000); }

.page-cutout .custom-cursor-dot { display:none; }

.page-cutout .custom-cursor--small .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b; 
    transform:translate(-50%, -50%); }

.page-cutout .custom-cursor--blank .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b; 
    transform:translate(-50%, -50%); }

.page-cutout .custom-cursor--close-label { width:40px; height:40px; font-size:15px; font-weight:400; letter-spacing:0; color:#0a0a0b; background:var(--cursor-color, #ffe000); }

@media (max-width:820px) {
  .page-cutout .custom-cursor { display:none !important; }
}

body.page-cutout.cc-active, body.page-cutout.cc-active * { cursor:none !important; }



/* ================================================================
   CONTACT — page-specific rules (scoped to body.page-contact)
   ================================================================ */

.page-contact .top-logo { position:fixed;
    top:32px; left:32px;
    z-index:57;
    width:min(40vw, 160px);
    height:auto;
    user-select:none; }

.page-contact .top-logo img { display:block; width:100%; height:auto;
    will-change:transform; }

.page-contact .top-logo-marquee { position:absolute; top:-8px; left:-8px; right:-8px; bottom:-8px;
    overflow:hidden;
    opacity:0;
    transition:opacity 0.25s ease;
    pointer-events:none; }

.page-contact .top-logo:hover .top-logo-marquee { opacity:1; }

.page-contact .tlm-edge { position:absolute; will-change:transform; }

.page-contact .tlm-top, .page-contact .tlm-bottom { left:0; width:200%; height:2px;
    background-image:linear-gradient(90deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-x; background-size:10px 2px;
    animation:marchAntsX 0.4s linear infinite; }

.page-contact .tlm-top { top:0; }

.page-contact .tlm-bottom { bottom:0; }

.page-contact .tlm-left, .page-contact .tlm-right { top:0; height:200%; width:2px;
    background-image:linear-gradient(0deg, #0a0a0b 50%, #fff 50%);
    background-repeat:repeat-y; background-size:2px 10px;
    animation:marchAntsY 0.4s linear infinite; }

.page-contact .tlm-left { left:0; }

.page-contact .tlm-right { right:0; }

.page-contact .top-right { position:fixed; top:24px; right:32px; z-index:60;
    display:flex; align-items:center; gap:20px; }

.page-contact .icon-btn { display:flex; align-items:center; justify-content:center;
    color:#fff; background:none; border:none; 
    cursor:pointer; padding:6px;
    text-decoration:none;
    transition:color 0.2s ease; }

.page-contact .icon-btn:hover { color:var(--alert); }

.page-contact .icon-btn svg { width:22px; height:22px; display:block; }

.page-contact .close-btn { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.08em; line-height:1;
    text-transform:uppercase; }

.page-contact .sheet { position:fixed; top:0; left:0; right:0; bottom:64px; z-index:10;
    background:#0a0a0b;
    color:var(--paper);
    overflow-y:auto;
    overflow-x:hidden;
    transform:translateY(100%);
    transition:transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.page-contact .sheet.in { transform:translateY(0); }

.page-contact .sheet-inner { padding:150px 0 140px; }

.page-contact .contact-hero { max-width:1360px; margin:0 auto; padding:0 32px;
    display:grid; grid-template-columns:0.85fr 1fr; gap:80px; align-items:start; }

.page-contact .contact-hero-img { position:relative; overflow:hidden;
    background:#1a1a1b;
    opacity:0; transform:translateY(40px) rotate(-18deg);
    transition:opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.page-contact .contact-hero-img.in-view { opacity:1; transform:translateY(0) rotate(0deg); }

.page-contact .contact-hero-img img { display:block;
    width:100%; height:auto;
    will-change:transform;
    opacity:0;
    transition:opacity 0.15s ease; }

.page-contact .contact-hero-img img.entry-img-loaded { opacity:1; }

.page-contact .entry-sweep { position:absolute; inset:0;
    width:100%; height:100%;
    z-index:2;
    pointer-events:none; }

.page-contact .contact-hero-text { padding-top:8px; text-align:left; }

.page-contact h1 { font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:clamp(32px, 5vw, 56px);
    letter-spacing:0.02em;
    text-transform:uppercase;
    margin-bottom:28px; }

.page-contact .contact-hero-text p { font-size:22px; line-height:1.45;
    color:#b8b6ae;
    margin-bottom:20px; }

.page-contact .contact-hero-text p:last-child { margin-bottom:0; }

.page-contact .contact-hero-text a { color:var(--paper); text-underline-offset:2px; }

@media (max-width:820px) {
  .page-contact .contact-hero { grid-template-columns:1fr; gap:32px; margin-bottom:64px;
      padding-left:20px; padding-right:20px; }
}

.page-contact .footer-bar { position:fixed; left:0; right:0; bottom:0; z-index:56;
    height:64px;
    background:#0a0a0b;
    overflow:hidden;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 32px; }

.page-contact .footer-link { position:relative; z-index:1;
    display:flex; align-items:center;
    height:64px; 
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:0.02em;
    text-transform:uppercase;
    color:var(--paper);
    text-shadow:0 1px 3px rgba(0,0,0,0.5);
    text-decoration:none; }

.page-contact .footer-link-mask { display:block;
    height:100%;
    overflow:hidden; }

.page-contact .footer-link-track { display:block;
    transition:transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }

.page-contact .footer-link-track span { display:flex; align-items:center;
    height:64px; }

.page-contact .footer-link:hover .footer-link-track { transform:translateY(-64px); }

.page-contact .footer-link.current { box-shadow:inset 0 -2px 0 0 var(--paper); }

.page-contact .footer-right { position:relative; z-index:1;
    display:flex; align-items:center; gap:16px; }

.page-contact .footer-instagram { display:flex; align-items:center; justify-content:center;
    color:var(--paper);
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-contact .footer-instagram:hover { opacity:0.6; }

.page-contact .footer-instagram svg { width:20px; height:20px; display:block; }

.page-contact .footer-tokonoma { display:flex; align-items:center; justify-content:center;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition:opacity 0.2s ease; }

.page-contact .footer-tokonoma:hover { opacity:0.6; }

.page-contact .footer-tokonoma img { width:20px; height:20px; object-fit:contain; display:block; }

@media (max-width:820px) {
  .page-contact .top-logo { display:none; }
  .page-contact .top-right { display:none; }
  .page-contact .footer-bar { display:none; }
  .page-contact .sheet { top:60px; bottom:0; }
  .page-contact .sheet-inner { padding-top:0; }
}

.page-contact .mobile-nav { display:none;
    position:fixed; top:0; left:0; right:0; z-index:60;
    height:60px;
    align-items:center; justify-content:space-between;
    padding:0 16px;
    background:#0a0a0b;
    overflow:hidden; }

.page-contact .mobile-nav-logo { height:26.4px; width:auto; position:relative; z-index:1; filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

.page-contact .mobile-nav-burger { width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer;
    position:relative; z-index:1; }

.page-contact .mobile-nav-burger span { position:absolute; left:7px; width:20px; height:2px;
    background:var(--paper);
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
    transition:transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }

.page-contact .mobile-nav-burger span:nth-child(1) { top:16px; transform:rotate(45deg); }

.page-contact .mobile-nav-burger span:nth-child(2) { top:16px; transform:rotate(-45deg); }

@media (max-width:820px) {
  .page-contact .mobile-nav { display:flex; }
}

.page-contact .custom-cursor { position:fixed; top:0; left:0; z-index:998;
    box-sizing:border-box;
    width:78px; height:78px; border-radius:50%;
    background:var(--cursor-color, #ffe000); 
    border:2px solid transparent;
    display:flex; align-items:center; justify-content:center;
    font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:700; font-size:14px; letter-spacing:0.06em;
    text-transform:uppercase;
    color:#0a0a0b;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%, -50%) scale(0.5);
    transition:opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1), height 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease, border-color 0.18s ease, color 0.18s ease; }

.page-contact .custom-cursor.show { opacity:1; transform:translate(-50%, -50%) scale(1); }

.page-contact .custom-cursor--small { width:32px; height:32px; background:var(--cursor-color, #ffe000); }

.page-contact .custom-cursor-dot { display:none; }

.page-contact .custom-cursor--small .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b; 
    transform:translate(-50%, -50%); }

.page-contact .custom-cursor--blank .custom-cursor-dot { display:block;
    position:absolute; top:50%; left:50%;
    width:9px; height:9px; border-radius:50%;
    background:#0a0a0b; 
    transform:translate(-50%, -50%); }

.page-contact .custom-cursor--close-label { width:40px; height:40px; font-size:15px; font-weight:400; letter-spacing:0; color:#0a0a0b; background:var(--cursor-color, #ffe000); }

@media (max-width:820px) {
  .page-contact .custom-cursor { display:none !important; }
}

body.page-contact.cc-active, body.page-contact.cc-active * { cursor:none !important; }

.page-contact .mobile-contact-actions { display:none; }

@media (max-width:820px) {
  .page-contact .desktop-contact-links { display:none; }
  .page-contact .mobile-contact-actions { display:flex; flex-direction:column; gap:24px; margin-top:24px; width:100%; }
  .page-contact .mobile-contact-action { min-height:44px; width:100%; padding:10px 18px; border-radius:999px; background:transparent; border:1.5px solid #fff; color:#fff !important; text-decoration:none; display:flex; align-items:center; justify-content:center; gap:9px; text-align:center; font-family:"Eurostile MN Extended", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight:700; font-size:14px; line-height:1; letter-spacing:0.04em; text-transform:uppercase; -webkit-tap-highlight-color:transparent; }
  .page-contact .mobile-contact-action svg { width:18px; height:18px; flex:0 0 18px; display:block; }
  .page-contact .mobile-contact-action--primary { background:#ffe000; border-color:#ffe000; color:#0a0a0b !important; }
  .page-contact .mobile-contact-action:active { background:#fff; border-color:#fff; color:#0a0a0b !important; }
}
