/* -------- Tokens -------- */
  :root {
    --bg: #0E0D0B;
    --fg: #ECE5D5;
    --dim: #8A8475;
    --line: #221F1A;
    --card: #15130F;
    --accent: #C2884A;
    --serif: 'Instrument Serif', 'EB Garamond', Georgia, serif;
    --sans: 'Geist', -apple-system, system-ui, sans-serif;
    --mono: 'Geist Mono', ui-monospace, Menlo, monospace;
    --gut: clamp(16px, 2.4vw, 36px);
  }
  :root[data-theme="editorial"] {
    --bg: #14130F;
    --fg: #E9DFC8;
    --dim: #8C8472;
    --line: #2A251E;
    --card: #1B1814;
  }
  :root[data-theme="daylight"] {
    --bg: #F2EDE2;
    --fg: #19170F;
    --dim: #6B6555;
    --line: #D6CDB7;
    --card: #EAE2CC;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { background: var(--bg); color: var(--fg); }
  body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.45;
    background: var(--bg);
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  em { font-style: italic; font-family: var(--serif); font-weight: 400; }
  .serif { font-family: var(--serif); font-weight: 400; }
  .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
  .dim { color: var(--dim); }
  .small { font-size: 13px; }
  .kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }

  /* -------- Cursor -------- */
  html.cursor-hover, html.cursor-hover * { cursor: none !important; }
  body:has(.cursor-dot) { cursor: none; }
  body:has(.cursor-dot) * { cursor: none !important; }
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    will-change: transform;
  }
  .cursor-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--fg);
    margin: -3px 0 0 -3px;
    transition: opacity .2s, background .2s;
  }
  .cursor-ring {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--fg);
    margin: -22px 0 0 -22px;
    opacity: 0.5;
    transition: width .25s, height .25s, margin .25s, background .25s, color .25s, opacity .2s, border-color .2s;
    display: grid; place-items: center;
  }
  html.cursor-hover .cursor-ring {
    width: 88px; height: 88px; margin: -44px 0 0 -44px;
    opacity: 1; background: var(--accent); color: #0E0D0B; border-color: var(--accent);
  }
  html.cursor-hover .cursor-dot { opacity: 0; }
  .cursor-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }

  /* -------- Nav -------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px var(--gut);
    background: color-mix(in oklab, var(--bg) 86%, transparent);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-bottom: 1px solid var(--line);
  }
  .nav-l { display: flex; align-items: center; gap: 10px; font-size: 14px; }
  .nav-l .brand { letter-spacing: -0.01em; }
  .nav-c { justify-self: center; }
  .nav-r { justify-self: end; display: flex; gap: 22px; }
  .nav-r a { position: relative; }
  .nav-r a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -4px;
    height: 1px; background: var(--accent); transition: right .3s ease;
  }
  .nav-r a:hover::after { right: 0; }

  /* -------- Marquee -------- */
  .marquee {
    overflow: hidden; border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .marquee-track {
    display: inline-flex; gap: 48px; align-items: center;
    padding: 10px 0;
    white-space: nowrap;
    animation: marq 60s linear infinite;
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--dim);
  }
  .marquee-item { display: inline-flex; align-items: center; gap: 12px; }
  .marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }
  @keyframes marq { to { transform: translateX(-33.333%); } }

  /* -------- Hero -------- */
  .hero {
    padding: clamp(28px, 4vw, 56px) var(--gut) clamp(48px, 8vw, 96px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(28px, 4vw, 64px);
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .hero-meta {
    grid-column: 1 / -1;
    display: flex; justify-content: space-between;
    color: var(--dim);
  }
  .hero-h {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 9.5vw, 168px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    display: flex; flex-direction: column;
  }
  .hero-h .r1, .hero-h .r2 { white-space: nowrap; }
  .hero-h .r2 { padding-left: clamp(40px, 8vw, 140px); }
  .hero-h .r3 { font-size: 0.5em; color: var(--dim); padding-top: clamp(8px, 1.5vw, 20px); line-height: 1.15; }
  .hero-h .r4 { font-size: 0.5em; color: var(--dim); padding-left: clamp(60px, 12vw, 200px); line-height: 1.15; }

  .hero-collage {
    position: relative;
    min-height: clamp(360px, 50vw, 720px);
  }
  .hc { position: absolute; overflow: hidden; background: var(--card); border-radius: 2px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
  .hc img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; filter: saturate(0.92); }
  .hc:hover img { transform: scale(1.04); }
  .hc-0 { top: 0; right: 0; width: 62%; aspect-ratio: 3/2; }
  .hc-1 { top: 22%; left: 0; width: 48%; aspect-ratio: 3/4; }
  .hc-2 { bottom: 8%; right: 12%; width: 44%; aspect-ratio: 4/3; }
  .hc-3 { top: 38%; right: 4%; width: 22%; aspect-ratio: 2/3; }
  .hc-4 { bottom: 0; left: 18%; width: 28%; aspect-ratio: 4/3; }
  .hc-label {
    position: absolute; left: 0; bottom: -2px;
    display: flex; flex-direction: column; gap: 4px;
    color: var(--dim);
  }

  .hero-foot {
    grid-column: 1 / 2;
    display: grid; grid-template-columns: 1fr 1fr auto;
    gap: 28px; align-items: end;
    padding-top: clamp(24px, 3vw, 40px);
  }
  .hero-block .kicker { margin-bottom: 8px; }
  .pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    border-radius: 100px;
    background: var(--fg); color: var(--bg);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    transition: transform .2s, background .2s;
  }
  .pill:hover { transform: translateY(-2px); background: var(--accent); color: #0E0D0B; }
  .hero-cta { justify-self: end; }

  /* -------- Section header -------- */
  .sec { padding: clamp(56px, 9vw, 120px) var(--gut); border-bottom: 1px solid var(--line); position: relative; }
  .sec-head {
    display: grid; grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: end;
    padding-bottom: clamp(32px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(24px, 3vw, 40px);
  }
  .sh-l { display: flex; gap: 16px; align-items: baseline; }
  .sh-title {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6.4vw, 96px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
  }
  .sh-r { justify-self: end; display: flex; gap: 18px; align-items: baseline; }

  /* -------- Motion -------- */
  .motion-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(14px, 1.6vw, 22px);
  }
  .vcard { grid-column: span 3; cursor: pointer; position: relative; }
  .vcard.span-wide { grid-column: span 4; }
  .vcard.span-tall { grid-column: span 2; }
  .motion-grid.index .vcard, .motion-grid.index .vcard.span-wide, .motion-grid.index .vcard.span-tall { grid-column: span 2; }
  .motion-grid.stack { grid-template-columns: 1fr; }
  .motion-grid.stack .vcard { grid-column: 1; }

  .v-cover {
    position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--card); border-radius: 2px;
  }
  .vcard.span-tall .v-cover { aspect-ratio: 3/4; }
  .v-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease, filter .6s ease;
    filter: brightness(0.85) saturate(0.9);
  }
  .vcard:hover .v-cover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
  .v-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%); pointer-events: none; }
  .v-play {
    position: absolute; left: 16px; bottom: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 100px;
    background: rgba(255,255,255,.92); color: #0E0D0B;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    transform: translateY(8px); opacity: 0; transition: transform .35s, opacity .35s;
  }
  .vcard:hover .v-play { transform: none; opacity: 1; }
  .v-num { position: absolute; top: 14px; left: 16px; color: rgba(255,255,255,.85); }
  .v-meta { display: flex; justify-content: space-between; gap: 16px; padding: 14px 2px 0; flex-wrap: wrap; }
  .v-title { font-size: 19px; letter-spacing: -0.01em; }
  .v-title .serif { font-style: italic; }
  .v-sub { font-size: 11px; }

  /* -------- Masonry (food + interiors) -------- */
  .mason {
    column-count: 4;
    column-gap: clamp(10px, 1.2vw, 18px);
  }
  .mason.mason-interior { column-count: 3; }
  .mason.layout-index { column-count: 5; }
  .mason.layout-stack { column-count: 1; }
  .mcell {
    margin: 0 0 clamp(10px, 1.2vw, 18px);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    position: relative;
    overflow: hidden;
    background: var(--card);
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    display: block;
  }
  .mcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease, filter .6s ease;
    filter: brightness(0.95);
  }
  .mcell:hover img { transform: scale(1.04); filter: brightness(1.04); }
  .mcell figcaption {
    position: absolute; top: 12px; left: 14px;
    color: rgba(255,255,255,.88); opacity: 0;
    transition: opacity .3s;
    text-shadow: 0 0 12px rgba(0,0,0,.5);
  }
  .mcell:hover figcaption { opacity: 1; }
  @media (max-width: 1180px) { .mason { column-count: 3; } .mason.mason-interior { column-count: 2; } .mason.layout-index { column-count: 4; } }
  @media (max-width: 760px)  { .mason { column-count: 2; } .mason.mason-interior { column-count: 2; } .mason.layout-index { column-count: 3; } }
  @media (max-width: 460px)  { .mason, .mason.mason-interior { column-count: 1; } .mason.layout-index { column-count: 2; } }

  /* -------- Food grid (legacy) -------- */
  .food-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(10px, 1.2vw, 18px);
    grid-auto-flow: dense;
  }
  .food-cell {
    margin: 0; position: relative; overflow: hidden; background: var(--card); border-radius: 2px; cursor: pointer;
    grid-column: span 3;
  }
  .food-cell.f-wide { grid-column: span 4; aspect-ratio: 3/2; }
  .food-cell.f-tall { grid-column: span 3; aspect-ratio: 2/3; }
  .food-cell.f-hero { grid-column: span 6; aspect-ratio: 3/2; }
  .food-cell.f-hero.f-p { grid-column: span 4; aspect-ratio: 2/3; }
  .food-grid.layout-index .food-cell { grid-column: span 3; aspect-ratio: 1/1; }
  .food-grid.layout-stack .food-cell { grid-column: span 12; }
  .food-grid.layout-stack .food-cell.f-l, .food-grid.layout-stack .food-cell.f-wide { aspect-ratio: auto; }
  .food-grid.layout-stack img { aspect-ratio: auto; height: auto; }
  .food-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s ease, filter .6s ease;
    filter: brightness(0.95);
  }
  .food-cell:hover img { transform: scale(1.05); filter: brightness(1.04); }
  .food-cell figcaption {
    position: absolute; top: 12px; left: 14px;
    color: rgba(255,255,255,.82); opacity: 0;
    transition: opacity .3s;
    text-shadow: 0 0 12px rgba(0,0,0,.5);
  }
  .food-cell:hover figcaption { opacity: 1; }

  /* -------- Interiors -------- */
  .interiors { display: flex; flex-direction: column; gap: clamp(56px, 9vw, 120px); }
  .proj-head {
    display: grid; grid-template-columns: 1fr 2fr 1.4fr;
    gap: 32px; align-items: end;
    padding-bottom: 22px; margin-bottom: clamp(18px, 2vw, 28px);
    border-bottom: 1px solid var(--line);
  }
  .ph-l { display: flex; flex-direction: column; gap: 4px; }
  .ph-title { margin: 0; font-size: clamp(36px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.02em; }
  .ph-blurb { margin: 0; color: var(--dim); font-size: 14px; max-width: 42ch; }

  .proj-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    gap: clamp(10px, 1.2vw, 18px);
    grid-auto-flow: dense;
  }
  .pcell { margin: 0; overflow: hidden; background: var(--card); border-radius: 2px; cursor: pointer; }
  .pcell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
  .pcell:hover img { transform: scale(1.04); }
  .pcell.pc-l { grid-column: span 4; aspect-ratio: 3/2; }
  .pcell.pc-p { grid-column: span 4; aspect-ratio: 2/3; }
  .pcell.pc-s { grid-column: span 4; aspect-ratio: 1/1; }
  .pcell.pc-big { grid-column: span 8; aspect-ratio: 3/2; }

  .layout-index .pcell, .layout-index .pcell.pc-big, .layout-index .pcell.pc-l, .layout-index .pcell.pc-p {
    grid-column: span 3; aspect-ratio: 1/1;
  }
  .layout-stack .proj-grid { grid-template-columns: 1fr; }
  .layout-stack .pcell, .layout-stack .pcell.pc-big { grid-column: 1; aspect-ratio: auto; }
  .layout-stack .pcell img { aspect-ratio: auto; height: auto; }

  /* -------- Lightbox -------- */
  .lb {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(8,7,5,.96);
    display: grid; place-items: center;
    padding: 56px;
  }
  .lb-img { max-width: min(92vw, 1400px); max-height: 84vh; object-fit: contain; box-shadow: 0 40px 80px rgba(0,0,0,.6); }
  .lb-bar {
    position: absolute; top: 0; left: 0; right: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 28px; color: var(--fg);
  }
  .lb-x { color: var(--fg); padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line); }
  .lb-x:hover { background: var(--fg); color: var(--bg); }
  .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid rgba(236,229,213,.3); color: var(--fg);
    font-size: 20px;
    transition: background .2s, color .2s;
  }
  .lb-nav:hover { background: var(--fg); color: var(--bg); }
  .lb-prev { left: 32px; }
  .lb-next { right: 32px; }

  /* -------- Video modal -------- */
  .vm {
    position: fixed; inset: 0; z-index: 220;
    background: rgba(5,5,4,.97);
    display: grid; place-items: center;
    padding: 56px 24px;
  }
  .vm-shell { width: min(92vw, 1280px); }
  .vm-bar {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--fg); padding-bottom: 14px;
  }
  .vm-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 2px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.6); }
  .vm-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

  /* -------- Studio -------- */
  .studio {
    padding: clamp(72px, 10vw, 140px) var(--gut);
    border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
  .st-title { margin: 14px 0 36px; font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 5vw, 78px); line-height: 1.02; letter-spacing: -0.02em; }
  .st-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
  .st-list li {
    display: grid; grid-template-columns: 48px 1fr;
    padding: 16px 0; border-top: 1px solid var(--line);
    color: var(--fg); text-transform: none; letter-spacing: 0;
    font-family: var(--sans); font-size: 16px;
  }
  .st-list li span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
  .st-img { aspect-ratio: 4/5; overflow: hidden; background: var(--card); border-radius: 2px; }
  .st-img img { width: 100%; height: 100%; object-fit: cover; }

  /* -------- Studio image placeholder -------- */
  .st-img.placeholder {
    position: relative;
    display: grid; place-items: end start;
    padding: 22px;
    background: var(--card);
    overflow: hidden;
    isolation: isolate;
  }
  .st-img.placeholder .ph-stripes {
    position: absolute; inset: 0; z-index: 0;
    background-image: repeating-linear-gradient(
      135deg,
      color-mix(in oklab, var(--fg) 6%, transparent) 0 12px,
      transparent 12px 32px
    );
  }
  .st-img.placeholder .ph-meta {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 4px;
    background: var(--bg);
    padding: 8px 12px;
    border: 1px solid var(--line);
  }
  .st-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 22px; border-top: 1px solid var(--line); margin-top: 22px; }
  .st-stats > div { display: flex; flex-direction: column; gap: 6px; }
  .st-stats .big { font-family: var(--serif); font-size: 44px; line-height: 1; }
  .st-stats sup { font-size: 0.5em; vertical-align: super; }

  /* -------- Contact -------- */
  .contact { padding: clamp(72px, 10vw, 140px) var(--gut) 24px; }
  .ct-top { display: flex; justify-content: space-between; margin-bottom: 28px; }
  .ct-h {
    margin: 0 0 40px;
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(56px, 11vw, 180px); line-height: 0.95; letter-spacing: -0.025em;
    display: flex; flex-wrap: wrap; gap: 0.18em; align-items: baseline;
  }
  .ct-h .serif em { color: var(--accent); }
  .ct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; border-top: 1px solid var(--line); padding-top: 22px; }
  .ct-card {
    display: flex; flex-direction: column; gap: 12px;
    padding: 20px; background: var(--card); border-radius: 2px;
    transition: background .25s, transform .25s;
  }
  a.ct-card:hover { background: var(--accent); color: #0E0D0B; transform: translateY(-3px); }
  .ct-val { font-size: 24px; letter-spacing: -0.01em; }
  .foot { display: flex; justify-content: space-between; padding: 40px 0 24px; }

  /* -------- Tweaks panel -------- */
  .tw-panel {
    position: fixed; right: 22px; bottom: 22px; z-index: 300;
    width: 280px; background: var(--card); color: var(--fg);
    border: 1px solid var(--line); border-radius: 6px;
    padding: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
    display: flex; flex-direction: column; gap: 12px;
  }
  .tw-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
  .tw-head button { font-size: 18px; line-height: 1; padding: 0 4px; }
  .tw-row { display: flex; flex-direction: column; gap: 8px; }
  .tw-lab { color: var(--dim); }
  .tw-seg { display: flex; gap: 4px; padding: 3px; background: rgba(255,255,255,.04); border-radius: 4px; }
  .tw-seg button {
    flex: 1; padding: 7px 8px; border-radius: 3px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--dim);
  }
  .tw-seg button.on { background: var(--fg); color: var(--bg); }
  .tw-swatches { display: flex; gap: 6px; }
  .tw-swatches .sw { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); }
  .tw-swatches .sw.on { outline: 2px solid var(--fg); outline-offset: 2px; }
  .tog { display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 4px; background: rgba(255,255,255,.04); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); }
  .tog > span { width: 26px; height: 14px; border-radius: 999px; background: var(--line); position: relative; transition: background .2s; }
  .tog > span::after { content: ''; position: absolute; top: 1px; left: 1px; width: 12px; height: 12px; border-radius: 50%; background: var(--fg); transition: left .2s; }
  .tog.on { color: var(--fg); }
  .tog.on > span { background: var(--accent); }
  .tog.on > span::after { left: 13px; }

  /* -------- Responsive -------- */
  @media (max-width: 1180px) {
    .hero { grid-template-columns: 1fr; }
    .hero-h { font-size: clamp(48px, 12.5vw, 132px); }
    .hero-collage { min-height: clamp(360px, 60vw, 560px); }
  }
  @media (max-width: 900px) {
    .hero-collage { min-height: 420px; }
    .hero-foot { grid-template-columns: 1fr 1fr; }
    .hero-cta { grid-column: 1 / -1; justify-self: start; }
    .sec-head { grid-template-columns: 1fr; text-align: left; }
    .sh-title { text-align: left; }
    .sh-r { justify-self: start; }
    .motion-grid { grid-template-columns: 1fr 1fr; }
    .vcard, .vcard.span-wide, .vcard.span-tall { grid-column: span 2; }
    .food-grid { grid-template-columns: repeat(6, 1fr); }
    .food-cell, .food-cell.f-wide, .food-cell.f-tall, .food-cell.f-hero { grid-column: span 3; aspect-ratio: 3/4; }
    .proj-grid { grid-template-columns: repeat(6, 1fr); }
    .pcell, .pcell.pc-big { grid-column: span 3; aspect-ratio: 3/2; }
    .proj-head { grid-template-columns: 1fr; }
    .studio { grid-template-columns: 1fr; }
    .ct-grid { grid-template-columns: 1fr 1fr; }
    .nav-c { display: none; }
    .nav-r { gap: 14px; }
  }
  @media (max-width: 560px) {
    .nav-r a:not(:last-child) { display: none; }
    .lb { padding: 24px 8px; }
    .lb-prev { left: 8px; } .lb-next { right: 8px; }
  }
