﻿  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  :root {
    --bg-0: #050608;
    --bg-1: #0a0b0e;
    --bg-2: #14161b;
    --ink: #f4f2ed;
    --ink-2: #e9e7e2;
    --ink-3: rgba(233, 231, 226, 0.78);
    --ink-4: rgba(233, 231, 226, 0.55);
    --ink-5: rgba(233, 231, 226, 0.35);
    --rule: rgba(233, 231, 226, 0.12);
    --rule-2: rgba(233, 231, 226, 0.22);
    --serif: 'Instrument Serif', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --pad: clamp(28px, 6vw, 96px);
  }
  body {
    font-family: var(--serif);
    background: var(--bg-1);
    color: var(--ink-2);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: rgba(180,210,255,0.25); color: var(--ink); }

  .mono {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-4);
  }
  .mono-l { font-size: 11px; letter-spacing: 0.3em; }
  .rule-pre::before {
    content: ''; display: inline-block; width: 28px; height: 1px;
    background: var(--ink-5); vertical-align: middle; margin-right: 14px;
  }
  .rule-post::after {
    content: ''; display: inline-block; width: 28px; height: 1px;
    background: var(--ink-5); vertical-align: middle; margin-left: 14px;
  }

  .grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
  }
  .vignette-top {
    position: absolute; left: 0; right: 0; top: 0; height: 900px;
    background: radial-gradient(120% 80% at 50% 0%, rgba(180,210,255,0.07) 0%, transparent 60%);
    pointer-events: none;
  }

  @keyframes haloPulse {
    0%, 100% { opacity: 0.85; transform: translate(-50%,-50%) scale(0.98); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.03); }
  }
  @keyframes maskReveal {
    from { clip-path: inset(0 100% 0 -7px); filter: blur(8px); opacity: 0; }
    to { clip-path: inset(0 -7px 0 -7px); filter: blur(0); opacity: 1; }
  }
  @keyframes maskRevealSlow {
    0% { clip-path: inset(0 100% 0 -7px); filter: blur(12px); opacity: 0; }
    60% { filter: blur(0); opacity: 1; }
    100% { clip-path: inset(0 -7px 0 -7px); filter: blur(0); opacity: 1; }
  }
  /* Light sweeps — moving radial highlight over each form */
  .light-sweep {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
    z-index: 2;
  }
  .light-sweep::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 70%; aspect-ratio: 1;
    margin-left: -35%; margin-top: -35%;
    background: radial-gradient(circle,
      rgba(255,250,235,0.55) 0%,
      rgba(200,220,255,0.28) 30%,
      transparent 65%);
    filter: blur(20px);
    border-radius: 50%;
    will-change: transform, opacity;
  }
  .sw-1::before { animation: sw-lr 11s ease-in-out infinite; }
  .sw-2::before { animation: sw-rl 13s ease-in-out -3s infinite; }
  .sw-3::before { animation: sw-tb 12s ease-in-out -2s infinite; }
  .sw-4::before { animation: sw-bt 14s ease-in-out -5s infinite; }
  .sw-5::before { animation: sw-tlbr 15s ease-in-out -1s infinite; }
  .sw-6::before { animation: sw-trbl 13s ease-in-out -7s infinite; }
  @keyframes sw-lr {
    0%   { transform: translate(-95%, -25%); opacity: 0.3; }
    50%  { transform: translate(95%, 25%);   opacity: 1; }
    100% { transform: translate(-95%, -25%); opacity: 0.3; }
  }
  @keyframes sw-rl {
    0%   { transform: translate(85%, 35%);   opacity: 0.3; }
    50%  { transform: translate(-85%, -25%); opacity: 1; }
    100% { transform: translate(85%, 35%);   opacity: 0.3; }
  }
  @keyframes sw-tb {
    0%   { transform: translate(-20%, -95%); opacity: 0.35; }
    50%  { transform: translate(20%, 85%);   opacity: 1; }
    100% { transform: translate(-20%, -95%); opacity: 0.35; }
  }
  @keyframes sw-bt {
    0%   { transform: translate(25%, 95%);   opacity: 0.35; }
    50%  { transform: translate(-20%, -85%); opacity: 1; }
    100% { transform: translate(25%, 95%);   opacity: 0.35; }
  }
  @keyframes sw-tlbr {
    0%   { transform: translate(-95%, -95%); opacity: 0.25; }
    50%  { transform: translate(85%, 85%);   opacity: 1; }
    100% { transform: translate(-95%, -95%); opacity: 0.25; }
  }
  @keyframes sw-trbl {
    0%   { transform: translate(85%, -85%);  opacity: 0.3; }
    50%  { transform: translate(-95%, 85%);  opacity: 1; }
    100% { transform: translate(85%, -85%);  opacity: 0.3; }
  }
  @keyframes haloRotate {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }
  @keyframes marqueeL {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .glass-img {
    display: block; width: 100%; height: 100%;
    object-fit: contain;
    pointer-events: none; user-select: none; -webkit-user-drag: none;
    filter: drop-shadow(0 0 60px rgba(180,210,255,0.22))
            drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  }
  .glass-img.faint {
    filter: drop-shadow(0 0 30px rgba(180,210,255,0.12))
            drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  }

  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 11, 14, 0.7);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px var(--pad);
    gap: 24px;
  }
  .nav-brand {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    display: flex; align-items: center; gap: 12px;
  }
  .nav-brand .seal {
    width: 22px; height: 22px;
    border: 1px solid var(--rule-2);
    border-radius: 50%;
    display: inline-grid; place-items: center;
    font-family: var(--mono); font-size: 9px; font-style: normal;
    color: var(--ink-3);
  }
  .nav-links { display: flex; gap: 8px; justify-self: center; }
  .nav-links a {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-4);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color .25s, border-color .25s, background .25s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.is-active {
    color: var(--ink);
    background: rgba(233, 231, 226, 0.06);
    border-color: var(--rule-2);
  }
  .nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; }
  .nav-right .stamp { color: var(--ink-4); }
  .nav-cta {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    padding: 9px 16px;
    border: 1px solid var(--ink);
    transition: background .25s, color .25s;
  }
  .nav-cta:hover { background: var(--ink); color: var(--bg-0); }

  .hero {
    position: relative;
    min-height: 100vh;
    padding: 140px var(--pad) 80px;
    background: radial-gradient(120% 80% at 50% 0%, #15161a 0%, #0a0b0e 60%, #050608 100%);
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 64px;
    align-items: center;
    overflow: hidden;
  }
  .hero-edition { margin-bottom: 36px; animation: maskReveal 1.2s ease-out 0.1s both; }
  .hero-title {
    font-size: clamp(72px, 9.5vw, 144px);
    line-height: 0.88;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 44px 0;
    font-style: italic;
    color: var(--ink);
  }
  .hero-title .word {
    display: inline-block;
    animation: maskRevealSlow 1.6s cubic-bezier(0.2,0.8,0.2,1) both;
  }
  .hero-title .word:nth-child(2) { animation-delay: 0.4s; }
  .hero-manifesto {
    font-size: clamp(20px, 1.5vw, 24px);
    line-height: 1.4;
    color: var(--ink-3);
    max-width: 480px;
    margin: 0 0 48px 0;
    animation: maskReveal 1.6s ease-out 0.9s both;
  }
  .hero-actions {
    display: flex; gap: 14px; align-items: center;
    margin-bottom: 56px;
    animation: maskReveal 1.6s ease-out 1.1s both;
    flex-wrap: wrap;
  }
  .btn {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    text-decoration: none;
    padding: 14px 22px;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all .25s;
    border: 1px solid var(--ink);
  }
  .btn-primary { background: var(--ink); color: var(--bg-0); }
  .btn-primary:hover { background: transparent; color: var(--ink); }
  .btn-ghost { color: var(--ink); border-color: var(--rule-2); background: transparent; }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn .arrow { display: inline-block; transition: transform .25s; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-meta {
    display: grid; grid-template-columns: repeat(3, auto);
    gap: 56px;
    animation: maskReveal 1.6s ease-out 1.3s both;
  }
  .hero-meta .label {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-5);
  }
  .hero-meta .value {
    display: block; color: var(--ink-2);
    font-size: 18px; font-family: var(--serif);
    margin-top: 8px;
  }

  .hero-stage {
    position: relative;
    aspect-ratio: 1;
    display: grid; place-items: center;
  }
  .hero-stage::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 78%; height: 78%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180,210,255,0.18) 0%, rgba(255,210,180,0.06) 35%, transparent 65%);
    filter: blur(28px);
    animation: haloPulse 8s ease-in-out infinite;
  }
  .hero-stage .ring {
    position: absolute;
    left: 50%; top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(244,242,237,0.07);
    transform: translate(-50%,-50%);
  }
  .hero-stage .ring.r1 { width: 78%; aspect-ratio: 1; animation: haloRotate 90s linear infinite; }
  .hero-stage .ring.r2 { width: 96%; aspect-ratio: 1; border-color: rgba(244,242,237,0.04); }
  .hero-stage .ring.r3 { width: 110%; aspect-ratio: 1; border-color: rgba(244,242,237,0.025); border-style: dashed; }

  .hero-stage img {
    position: relative; z-index: 1;
    width: 86%; height: 86%;
  }
  .hero-stage .pin {
    position: absolute; z-index: 2;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-3);
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-stage .pin::before {
    content: ''; width: 8px; height: 8px;
    border: 1px solid var(--ink-2); border-radius: 50%;
  }
  .hero-stage .pin.tl { top: 4%; left: 6%; }
  .hero-stage .pin.br { bottom: 6%; right: 4%; align-items: flex-end; text-align: right; }
  .hero-stage .pin b {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 18px; letter-spacing: 0; text-transform: none;
    color: var(--ink); margin-top: 2px;
  }

  .hero-status {
    position: absolute; left: var(--pad); bottom: 32px;
    display: flex; gap: 14px; align-items: center;
    color: var(--ink-4); z-index: 3;
  }
  .hero-status .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #c8e6ff; animation: blink 2.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(200,230,255,0.7);
  }
  .hero-scroll {
    position: absolute; right: var(--pad); bottom: 32px;
    display: flex; align-items: center; gap: 12px;
    color: var(--ink-4); z-index: 3;
  }
  .hero-scroll::after {
    content: ''; width: 28px; height: 1px; background: var(--ink-5);
  }

  .sec-mark {
    display: flex; align-items: center; justify-content: space-between;
    padding: 32px var(--pad) 32px;
    color: var(--ink-4);
  }
  .sec-mark .l { display: flex; align-items: center; gap: 16px; }
  .sec-mark .l::before { content: ''; width: 28px; height: 1px; background: var(--ink-5); }
  .sec-mark .r { color: var(--ink-5); }

  .featured {
    padding: 60px var(--pad) 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .piece {
    position: relative;
    aspect-ratio: 0.85;
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 100%);
    border: 1px solid var(--rule);
    padding: 22px;
    overflow: hidden;
    transition: border-color 0.4s, background 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .piece::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(180,210,255,0.08), transparent 60%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
  }
  .piece:hover { border-color: var(--rule-2); }
  .piece:hover::after { opacity: 1; }
  .piece-no {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.3em;
    color: var(--ink-4);
    display: flex; justify-content: space-between;
  }
  .piece-img {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .piece-img img { width: 78%; height: 78%; }
  .piece-meta {
    position: absolute; left: 22px; right: 22px; bottom: 18px;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .piece-title { font-style: italic; font-size: 22px; color: var(--ink); }
  .piece-tag {
    font-family: var(--mono);
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-4);
    transition: color .25s;
  }
  .piece:hover .piece-tag { color: var(--ink); }

  .manifesto {
    position: relative;
    padding: 160px var(--pad);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    background: radial-gradient(120% 60% at 50% 50%, rgba(20,22,27,0.7) 0%, transparent 70%);
  }
  .manifesto-mark { text-align: center; margin-bottom: 56px; color: var(--ink-4); }
  .manifesto-quote {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1.16;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--ink);
    letter-spacing: -0.005em;
    position: relative;
    z-index: 1;
  }
  .manifesto-quote em { font-style: italic; color: rgba(233,231,226,0.55); font-weight: 400; }
  .manifesto-attr {
    margin-top: 64px;
    text-align: center;
    color: var(--ink-4);
    position: relative; z-index: 1;
  }
  .manifesto-attr b {
    font-family: var(--serif);
    font-style: italic; font-weight: 400;
    font-size: 20px; letter-spacing: 0; text-transform: none;
    color: var(--ink);
    display: block;
    margin-top: 8px;
  }
  .manifesto-ambient { position: absolute; inset: 0; pointer-events: none; opacity: 0.55; }
  .manifesto-ambient img {
    position: absolute;
    width: 200px; height: 200px;
    opacity: 0.35;
  }
  .manifesto-ambient img.a1 { top: 8%; left: 4%; animation: ambientPulse 9s ease-in-out infinite; }
  .manifesto-ambient img.a2 { top: 12%; right: 6%; width: 160px; height: 160px; animation: ambientPulse 11s ease-in-out -3s infinite; }
  .manifesto-ambient img.a3 { bottom: 8%; left: 8%; width: 180px; height: 180px; animation: ambientPulse 13s ease-in-out -6s infinite; }
  .manifesto-ambient img.a4 { bottom: 14%; right: 5%; width: 220px; height: 220px; animation: ambientPulse 10s ease-in-out -8s infinite; }
  @keyframes ambientPulse {
    0%, 100% { opacity: 0.18; filter: brightness(0.85) drop-shadow(0 0 30px rgba(180,210,255,0.18)); }
    50% { opacity: 0.55; filter: brightness(1.2) drop-shadow(0 0 50px rgba(180,210,255,0.4)); }
  }

  .spotlight {
    position: relative;
    padding: 120px var(--pad);
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 80px;
    align-items: center;
  }
  .spotlight-stage {
    position: relative;
    aspect-ratio: 1;
    background:
      radial-gradient(circle at 50% 50%, rgba(180,210,255,0.10) 0%, transparent 55%),
      linear-gradient(180deg, rgba(20,22,27,0.6), rgba(10,11,14,0.6));
    border: 1px solid var(--rule);
    display: grid; place-items: center;
    overflow: hidden;
  }
  .spotlight-stage::before {
    content: ''; position: absolute;
    left: 50%; top: 50%;
    width: 70%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(244,242,237,0.10);
    border-radius: 50%;
  }
  .spotlight-stage::after {
    content: ''; position: absolute;
    left: 50%; top: 50%;
    width: 85%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244,242,237,0.05);
    border-radius: 50%;
  }
  .spotlight-stage img {
    position: relative; z-index: 1;
    width: 80%; height: 80%;
  }
  .spotlight-corners span {
    position: absolute; width: 14px; height: 14px;
    border: 1px solid var(--ink-3);
  }
  .spotlight-corners .tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
  .spotlight-corners .tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
  .spotlight-corners .bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
  .spotlight-corners .br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
  .spotlight-tag { position: absolute; left: 28px; top: 28px; color: var(--ink-3); }
  .spotlight-coords { position: absolute; right: 28px; bottom: 28px; color: var(--ink-3); text-align: right; }
  .spotlight-no {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(80px, 10vw, 144px);
    line-height: 0.85;
    color: var(--ink);
    margin: 0 0 8px 0;
  }
  .spotlight-name {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1; font-weight: 400;
    margin: 0 0 32px 0;
    color: var(--ink);
  }
  .spotlight-body {
    font-family: var(--serif);
    font-size: 19px; line-height: 1.5;
    color: var(--ink-3);
    max-width: 520px;
    margin: 0 0 40px 0;
  }
  .spotlight-spec {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    padding: 28px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin: 0 0 32px 0;
  }
  .spotlight-spec dt {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-5);
    margin-bottom: 4px;
  }
  .spotlight-spec dd {
    margin: 0;
    font-family: var(--serif); font-style: italic;
    font-size: 18px; color: var(--ink);
  }
  .spotlight-pager {
    display: flex; gap: 18px; align-items: center;
    color: var(--ink-4);
  }
  .spotlight-pager .p-btn {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink); cursor: pointer;
    padding: 10px 14px;
    border: 1px solid var(--rule-2);
    transition: background .25s, color .25s;
    user-select: none;
  }
  .spotlight-pager .p-btn:hover { background: var(--ink); color: var(--bg-0); }

  .process { padding: 100px var(--pad); border-top: 1px solid var(--rule); }
  .process-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }
  .process-head h2 {
    font-style: italic; font-weight: 400;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 0.95;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .process-head p {
    font-size: 19px; line-height: 1.5;
    color: var(--ink-3);
    max-width: 480px;
    margin: 0;
    align-self: end;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .step {
    border-top: 1px solid var(--rule-2);
    padding-top: 28px;
    position: relative;
  }
  .step-no {
    font-family: var(--serif); font-style: italic;
    font-size: 56px; line-height: 1;
    color: var(--ink);
    margin: 0 0 24px 0;
  }
  .step-img {
    aspect-ratio: 1.1;
    display: grid; place-items: center;
    margin: 0 0 28px 0;
    background: radial-gradient(circle at 50% 50%, rgba(180,210,255,0.10) 0%, transparent 60%);
    overflow: hidden;
    position: relative;
  }
  .step-img::before {
    content: ''; position: absolute;
    left: 50%; top: 50%;
    width: 60%; aspect-ratio: 1;
    border-radius: 50%;
    border: 1px dashed rgba(244,242,237,0.07);
    transform: translate(-50%, -50%);
  }
  .step-img img {
    width: 70%; height: 70%;
  }
  .step h3 {
    font-style: italic; font-weight: 400;
    font-size: 28px; line-height: 1.05;
    margin: 0 0 14px 0;
    color: var(--ink);
  }
  .step p {
    font-size: 16px; line-height: 1.5;
    color: var(--ink-3);
    margin: 0;
  }
  .step-mark {
    position: absolute; right: 0; top: 28px;
    color: var(--ink-5);
  }

  .credo {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 26px 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-0);
  }
  .credo-track { display: inline-block; animation: marqueeL 60s linear infinite; }
  .credo span {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--ink);
    padding: 0 36px;
  }
  .credo i {
    display: inline-block; width: 8px; height: 8px;
    background: rgba(244,242,237,0.7);
    margin: 0 4px;
    transform: rotate(45deg);
  }

  .index { padding: 100px var(--pad); }
  .index-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule-2);
    gap: 32px;
    flex-wrap: wrap;
  }
  .index-head h2 {
    font-size: clamp(56px, 6.5vw, 96px);
    line-height: 0.9;
    font-weight: 400;
    margin: 0;
    font-style: italic;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .index-tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
  .index-tools .filter {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-4);
    padding: 8px 14px;
    border: 1px solid var(--rule-2);
    cursor: pointer;
    transition: color .25s, border-color .25s, background .25s;
    user-select: none;
  }
  .index-tools .filter:hover { color: var(--ink); }
  .index-tools .filter.is-on { color: var(--ink); border-color: var(--ink); background: rgba(244,242,237,0.05); }
  .index-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .cell {
    background: var(--bg-1);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, opacity 0.4s, filter 0.4s;
    cursor: none;
  }
  .cell .light-sweep::before,
  .lb-frame .light-sweep::before {
    animation: none !important;
    opacity: 0;
    transition: opacity 0.25s ease;
    width: 52.5%;
    margin-left: -26.25%; margin-top: -26.25%;
    transform: translate(var(--lx, 0%), var(--ly, 0%));
  }
  .cell:hover .light-sweep::before,
  .lb-frame:hover .light-sweep::before { opacity: 1; }

  .hero-stage .light-sweep { overflow: visible; }

  /* Lightbox gallery for index */
  .lightbox {
    position: fixed; inset: 0;
    background: rgba(5,6,8,0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 80px var(--pad) 120px;
  }
  .lightbox.is-open { display: flex; }
  .lb-frame {
    position: relative;
    width: min(70vh, 720px);
    max-width: 100%;
    aspect-ratio: 1;
    cursor: none;
    background: var(--bg-0);
    border: 1px solid var(--rule);
  }
  .lb-frame .light-sweep { overflow: hidden; }
  .lb-frame img {
    position: relative; z-index: 1;
    width: 86%; height: 86%;
    object-fit: contain;
    margin: 7%;
    display: block;
  }
  .lb-corners span {
    position: absolute; width: 14px; height: 14px;
    border: 1px solid var(--ink-3);
    z-index: 3;
  }
  .lb-corners .tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
  .lb-corners .tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
  .lb-corners .bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
  .lb-corners .br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
  .lb-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--rule-2);
    color: var(--ink-2);
    width: 56px; height: 56px; border-radius: 50%;
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    z-index: 1002;
  }
  .lb-arrow:hover { background: var(--ink); color: var(--bg-0); border-color: var(--ink); }
  .lb-prev { left: var(--pad); }
  .lb-next { right: var(--pad); }
  .lb-close {
    position: fixed; top: 24px; right: 24px;
    background: transparent; border: 1px solid var(--rule-2);
    color: var(--ink-2);
    width: 44px; height: 44px; border-radius: 50%;
    font-family: var(--serif); font-size: 22px; line-height: 1;
    cursor: pointer;
    z-index: 1002;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .lb-close:hover { background: var(--ink); color: var(--bg-0); border-color: var(--ink); }
  .lb-meta {
    position: absolute; left: 0; right: 0; bottom: -56px;
    text-align: center;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .lb-meta .name {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; letter-spacing: 0; text-transform: none;
    color: var(--ink); margin: 0 12px;
  }
  .lb-counter {
    position: fixed; left: 50%; transform: translateX(-50%);
    bottom: 32px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-4);
    z-index: 1002;
  }
  @media (max-width: 600px) {
    .lb-arrow { width: 44px; height: 44px; font-size: 20px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
  }
  .cell:hover { background: var(--bg-2); }
  .cell img { position: absolute; inset: 12%; width: 76%; height: 76%; }
  .cell-no {
    position: absolute; left: 12px; top: 12px;
    font-family: var(--mono);
    font-size: 9px; letter-spacing: 0.22em;
    color: var(--ink-5);
    transition: color 0.25s;
  }
  .cell:hover .cell-no { color: var(--ink); }
  .cell-title {
    position: absolute; left: 12px; bottom: 10px; right: 12px;
    font-style: italic; font-size: 14px;
    color: rgba(233,231,226,0); transition: color 0.3s;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .cell:hover .cell-title { color: var(--ink); }
  .cell-title small {
    font-family: var(--mono); font-style: normal;
    font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-4);
  }

  .inquire {
    position: relative;
    padding: 140px var(--pad);
    border-top: 1px solid var(--rule);
    overflow: hidden;
  }
  .inquire-bg {
    position: absolute; inset: 0;
    background: radial-gradient(80% 60% at 70% 50%, rgba(180,210,255,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .inquire-inner {
    position: relative;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 80px; align-items: center;
  }
  .inquire h2 {
    font-style: italic; font-weight: 400;
    font-size: clamp(56px, 7vw, 110px);
    line-height: 0.9;
    margin: 0 0 28px 0;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .inquire p {
    font-size: 19px; line-height: 1.5;
    color: var(--ink-3);
    max-width: 480px;
    margin: 0 0 40px 0;
  }
  .inquire .terms {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
  }
  .inquire .terms div {
    display: flex; justify-content: space-between;
    color: var(--ink-4);
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  }
  .inquire .terms div b {
    font-family: var(--serif); font-weight: 400; font-style: italic;
    font-size: 16px; letter-spacing: 0; text-transform: none;
    color: var(--ink);
  }
  .inquire-card {
    background: rgba(20, 22, 27, 0.7);
    border: 1px solid var(--rule-2);
    padding: 36px;
    backdrop-filter: blur(10px);
  }
  .inquire-card-head {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
    color: var(--ink-4);
  }
  .inquire-card-head b {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 22px; letter-spacing: 0; text-transform: none;
    color: var(--ink);
  }
  .field { display: flex; flex-direction: column; margin-bottom: 18px; }
  .field label {
    font-family: var(--mono);
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-5);
    margin-bottom: 8px;
  }
  .field input, .field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule-2);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 18px;
    padding: 8px 0;
    outline: none;
    transition: border-color .25s;
  }
  .field input::placeholder { color: var(--ink-5); font-style: italic; }
  .field input:focus, .field select:focus { border-color: var(--ink); }
  .field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(233,231,226,0.78) 50%),
                      linear-gradient(-45deg, transparent 50%, rgba(233,231,226,0.78) 50%);
    background-position: calc(100% - 12px) center, calc(100% - 6px) center;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 28px;
  }
  .field select option { background: var(--bg-1); color: var(--ink); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .submit {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    background: var(--ink); color: var(--bg-0);
    border: none;
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, outline .25s;
  }
  .submit:hover { background: transparent; color: var(--ink); outline: 1px solid var(--ink); }

  .colophon {
    background: var(--bg-0);
    padding: 80px var(--pad) 36px;
    border-top: 1px solid var(--rule);
  }
  .colophon-top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--rule);
  }
  .colophon-brand {
    font-family: var(--serif); font-style: italic;
    font-size: 38px; line-height: 1;
    color: var(--ink);
    margin: 0 0 16px 0;
    font-weight: 400;
  }
  .colophon-brand-sub { color: var(--ink-4); max-width: 360px; }
  .colophon-col h4 {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-4);
    margin: 0 0 18px 0;
    font-weight: 500;
  }
  .colophon-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .colophon-col a {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; color: var(--ink);
    text-decoration: none;
    transition: color .25s;
  }
  .colophon-col a:hover { color: rgba(180,210,255,0.9); }
  .colophon-col p {
    font-family: var(--serif); font-style: italic;
    font-size: 16px; line-height: 1.4;
    color: var(--ink-3);
    margin: 0;
  }
  .colophon-bottom {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 32px;
    color: var(--ink-5);
  }
  .colophon-glyph {
    font-family: var(--serif); font-style: italic;
    font-size: 20px;
    color: var(--ink-3);
    letter-spacing: 0.08em;
  }

  @media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav { grid-template-columns: 1fr auto; }
  }
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 110px; min-height: auto; }
    .hero-stage { aspect-ratio: 1; max-width: 480px; margin: 0 auto; width: 100%; }
    .hero-meta { gap: 28px; }
    .hero-status, .hero-scroll { position: static; margin-top: 24px; }
    .featured { grid-template-columns: 1fr; }
    .index-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 56px; }
    .process-head { grid-template-columns: 1fr; gap: 24px; }
    .spotlight, .inquire-inner { grid-template-columns: 1fr; gap: 48px; }
    .colophon-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .colophon-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  }
  @media (max-width: 560px) {
    .index-grid { grid-template-columns: repeat(2, 1fr); }
    .colophon-top { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
  }