/* =========================================================
   RIO FURNITURES — Showroom
   Quiet surface. Powerful underneath.
   Black + white = the room. Orange = a signal:
   you can interact · selected · action · RIO · changing.
   ========================================================= */

:root {
  --paper: #f6f4ef;
  --paper-2: #ece8e0;      /* stone */
  --paper-3: #e2ddd2;
  --ink: #151412;
  --ink-soft: #3a3935;
  --muted: #7a766e;
  --line: rgba(21, 20, 18, 0.12);
  --line-2: rgba(21, 20, 18, 0.22);
  --orange: #ff5a1f;
  --orange-ink: #c9400d;   /* orange text on light bg (passes contrast) */

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 5vw, 80px);
  --max: 1480px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.2, 1);
  --slow: 1.1s;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink-soft);
  font-family: var(--sans); font-weight: 400; font-size: 16.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 1100px; }

/* ---------- Type: whisper · speak · (rarely) shout ---------- */
.serif { font-family: var(--serif); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.02; margin: 0; }
.serif em { font-style: italic; }
.s-xxl { font-size: clamp(54px, 9.2vw, 156px); line-height: .95; letter-spacing: -0.02em; }
.s-xl  { font-size: clamp(44px, 6.4vw, 104px); line-height: .98; }
.s-l   { font-size: clamp(36px, 4.4vw, 70px); }
.s-m   { font-size: clamp(28px, 2.8vw, 44px); line-height: 1.08; }
.s-s   { font-size: clamp(22px, 1.9vw, 28px); line-height: 1.15; }

.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; }
.mono.ink { color: var(--ink); }
.muted { color: var(--muted); }
.ink { color: var(--ink); }
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.55; font-weight: 300; color: var(--ink-soft); max-width: 40ch; margin: 0; }
.title { font-family: var(--sans); font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin: 0; }
.t-l { font-size: clamp(22px, 2vw, 30px); line-height: 1.15; }
.t-m { font-size: 19px; line-height: 1.25; }
.small { font-size: 14px; }
.dot-o { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); vertical-align: middle; }

/* ---------- Actions ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border: 1px solid var(--ink); border-radius: 2px;
  font-size: 14.5px; font-weight: 500; letter-spacing: 0; color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-o { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-o:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn[disabled] { opacity: .35; pointer-events: none; }
.btn .arr, .link .arr { transition: transform .4s var(--ease); display: inline-block; }
.btn:hover .arr, .link:hover .arr { transform: translateX(4px); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

.link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 500; font-size: 15px;
  background: linear-gradient(var(--orange), var(--orange)) 0 100% / 0 1px no-repeat;
  padding-bottom: 3px; transition: background-size .5s var(--ease);
}
.link:hover { background-size: 100% 1px; }
.dark .link { color: var(--paper); }

/* ---------- Header: almost invisible until needed ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  background: rgba(246, 244, 239, 0.86); backdrop-filter: blur(10px) saturate(1.1);
  transition: transform .5s var(--ease), background .4s;
}
.site-header.hide { transform: translateY(-100%); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: baseline; gap: 10px; color: var(--ink); }
.logo-mark { font-family: var(--sans); font-weight: 600; font-size: 21px; letter-spacing: 0.02em; }
.logo-mark i { font-style: normal; color: var(--orange); }
.logo-sub { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--muted); }

.nav { display: flex; gap: 30px; margin-left: auto; align-items: center; }
.nav a.nl { font-size: 14.5px; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .3s; }
.nav a.nl::after { content: ""; position: absolute; left: 50%; bottom: -4px; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); transform: translateX(-50%) scale(0); transition: transform .35s var(--ease); }
.nav a.nl:hover { color: var(--ink); }
.nav a.nl.active { color: var(--ink); }
.nav a.nl.active::after { transform: translateX(-50%) scale(1); }
.nav .btn { margin-left: 6px; }
.proj-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-soft); }
.proj-link .qty { font-family: var(--mono); font-size: 11px; min-width: 22px; height: 22px; padding: 0 6px; display: inline-grid; place-items: center; border: 1px solid var(--line-2); border-radius: 11px; color: var(--ink); transition: background .3s, color .3s, border-color .3s; }
.proj-link .qty.has { background: var(--orange); color: #fff; border-color: var(--orange); }
.proj-link .qty.bump { animation: bump .6s var(--ease); }
@keyframes bump { 40% { transform: scale(1.25); } }
.menu-btn { display: none; width: 40px; height: 40px; margin-left: 4px; }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 6px auto; transition: transform .4s var(--ease); }

main { padding-top: var(--nav-h); }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .header-right { margin-left: auto; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav {
    display: flex; position: fixed; inset: var(--nav-h) 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 6px; padding: 32px var(--gutter);
  }
  body.menu-open .nav a.nl { font-family: var(--serif); font-size: 44px; color: var(--ink); line-height: 1.15; }
  body.menu-open .nav a.nl::after { display: none; }
  body.menu-open .nav .btn { margin: 24px 0 0; }
  body.menu-open .menu-btn span:first-child { transform: translateY(3.75px) rotate(45deg); }
  body.menu-open .menu-btn span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}
.header-right { display: flex; align-items: center; gap: 8px; }

/* ---------- Sections ---------- */
.section { padding: clamp(96px, 13vw, 200px) 0; }
.section-s { padding: clamp(64px, 8vw, 120px) 0; }
.dark { background: var(--ink); color: #c9c5bd; }
.dark .serif, .dark .title, .dark .ink { color: var(--paper); }
.dark .muted { color: #8e8a82; }
.stone { background: var(--paper-2); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow .ln { width: 28px; height: 1px; background: var(--orange); }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Motion: slow, soft, purposeful ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .12s; } .reveal[data-d="2"] { transition-delay: .24s; } .reveal[data-d="3"] { transition-delay: .36s; }
.img-reveal { clip-path: inset(8% 8% 8% 8%); transition: clip-path 1.4s var(--ease); }
.img-reveal.in { clip-path: inset(0 0 0 0); }

/* ---------- Photo placeholder ---------- */
.ph {
  position: relative; overflow: hidden; background: linear-gradient(160deg, #e6e0d5 0%, #d8d0c2 55%, #cdc3b2 100%);
  min-height: 160px;
}
.ph::after {
  content: attr(data-label); position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(21,20,18,.5);
}
.ph::before { content: ""; position: absolute; left: 16px; top: 16px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: .8; }
.ph.has-img::before, .ph.has-img::after { display: none; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dark .ph { background: linear-gradient(160deg, #2a2825, #1f1e1b); }
.dark .ph::after { color: rgba(246,244,239,.45); }

/* ---------- ROOMS ---------- */
.room { position: relative; width: 100%; background: var(--paper-2); overflow: hidden; }
.room-pan { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.room-pan::-webkit-scrollbar { display: none; }
.room-canvas { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.room-svg, .room-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .room-canvas { width: 190%; }
  .room.compact .room-canvas { width: 160%; }
}

.room .obj { cursor: pointer; transform-box: fill-box; transform-origin: 50% 100%;
  opacity: 0; transform: translateY(14px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: calc(var(--i) * 110ms + 200ms);
}
.room.shown .obj { opacity: 1; transform: none; }
.room.shown .obj.lit { transform: translateY(-4px); transition-delay: 0s; transition-duration: .5s; }
.room .room-back { opacity: 0; transition: opacity 1.4s var(--ease); }
.room.shown .room-back { opacity: 1; }

.markers { position: absolute; inset: 0; pointer-events: none; }
.marker {
  position: absolute; transform: translate(-50%, -50%); pointer-events: auto;
  width: 34px; height: 34px; display: grid; place-items: center;
  opacity: 0; transition: opacity .6s var(--ease);
  transition-delay: calc(var(--i) * 80ms);
}
.marker .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,31,.18); transition: transform .4s var(--ease), box-shadow .4s; }
.marker .tip {
  position: absolute; bottom: 100%; left: 50%; transform: translate(-50%, 6px); white-space: nowrap;
  background: var(--ink); color: var(--paper); padding: 7px 10px; opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.marker .tip .mono { font-size: 10.5px; }
.room:hover .marker, .room:focus-within .marker, .room.hint .marker { opacity: 1; }
.marker.lit .dot, .marker:focus-visible .dot { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(255,90,31,.22); }
.marker.lit .tip, .marker:focus-visible .tip { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none) { .room.shown .marker { opacity: 1; } }

/* ---------- Focus panel (the piece you clicked) ---------- */
.focus { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.focus-bg { position: absolute; inset: 0; background: rgba(21,20,18,.28); opacity: 0; transition: opacity .6s var(--ease); }
.focus-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(560px, 100%); background: var(--paper);
  transform: translateX(100%); transition: transform .7s var(--ease); overflow-y: auto; overscroll-behavior: contain;
  display: flex; flex-direction: column;
}
.focus.open { pointer-events: auto; }
.focus.open .focus-bg { opacity: 1; }
.focus.open .focus-panel { transform: none; }
.focus-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; position: sticky; top: 0; background: var(--paper); z-index: 2; }
.focus-close { width: 40px; height: 40px; display: grid; place-items: center; font-size: 26px; font-weight: 300; color: var(--ink); }
.focus-stage { background: var(--paper-2); aspect-ratio: 5 / 4; display: grid; place-items: center; margin: 0 28px; position: relative; }
.focus-stage svg { width: 56%; transition: opacity .4s; }
.focus-stage .mono { position: absolute; left: 16px; bottom: 14px; }
.focus-body { padding: 28px; }
.focus-body h2 { margin: 8px 0 10px; }
.focus-body .desc { font-weight: 300; margin: 0 0 24px; }
.focus-more { margin-top: 20px; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
@media (max-width: 600px) { .focus-panel { top: 8vh; border-radius: 14px 14px 0 0; transform: translateY(100%); } .focus-stage { margin: 0 20px; } .focus-top, .focus-body { padding-left: 20px; padding-right: 20px; } }

/* ---------- Finishes ---------- */
.finishes { display: flex; gap: 10px; flex-wrap: wrap; }
.fin { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.fin .c { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); box-shadow: inset 0 0 0 3px var(--paper); transition: box-shadow .3s, border-color .3s; }
.fin.on .c, .fin:hover .c { border-color: var(--orange); box-shadow: inset 0 0 0 3px var(--paper), 0 0 0 1px var(--orange); }
.fin .mono { font-size: 10px; color: var(--muted); }
.sw { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--line-2); vertical-align: middle; flex: none; }

/* ---------- Build your order ---------- */
.order { margin-top: 8px; }
.order-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
.o-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); transition: background .3s; }
.o-row .sw { width: 18px; height: 18px; }
.o-row .nm { color: var(--ink); font-size: 15.5px; }
.o-row .nm small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.o-row.has .nm small { color: var(--orange-ink); }
.qty { display: inline-flex; align-items: center; gap: 2px; }
.qty button { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; font-weight: 300; color: var(--ink); transition: background .25s, color .25s; }
.qty button:hover { background: var(--ink); color: var(--paper); }
.qty input {
  width: 58px; text-align: center; border: 0; border-bottom: 1px solid var(--line-2); background: transparent;
  font-family: var(--mono); font-size: 16px; padding: 6px 0; color: var(--ink); -moz-appearance: textfield; border-radius: 0;
  transition: border-color .3s;
}
.qty input:focus { outline: none; border-color: var(--orange); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.o-row.has .qty input { border-color: var(--orange); }
.qty.sm button { width: 30px; height: 30px; font-size: 16px; }
.qty.sm input { width: 48px; font-size: 14px; }
.o-quick { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.o-quick button { font-family: var(--mono); font-size: 11px; padding: 6px 10px; border: 1px solid var(--line-2); border-radius: 20px; color: var(--ink-soft); transition: all .25s; }
.o-quick button:hover { border-color: var(--ink); color: var(--ink); }
.o-total { display: flex; justify-content: space-between; align-items: flex-end; padding: 22px 0 10px; gap: 16px; }
.o-total .n { font-family: var(--mono); font-size: clamp(44px, 5vw, 64px); line-height: .9; color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.o-total .n.has { color: var(--orange); }
.o-bar { display: flex; height: 4px; background: var(--paper-3); overflow: hidden; margin: 6px 0 12px; }
.o-bar span { height: 100%; transition: width .6s var(--ease); }
.o-mix { font-family: var(--mono); font-size: 11.5px; color: var(--muted); min-height: 18px; letter-spacing: .02em; }
.o-tier { display: flex; gap: 18px; margin: 16px 0 22px; flex-wrap: wrap; }
.o-tier span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); position: relative; padding-left: 12px; transition: color .3s; }
.o-tier span::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; border: 1px solid var(--line-2); transition: all .3s; }
.o-tier span.on { color: var(--ink); }
.o-tier span.on::before { background: var(--orange); border-color: var(--orange); }
.o-add { display: grid; gap: 10px; }
.o-add .target { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.o-add select, .field-line {
  flex: 1; border: 0; border-bottom: 1px solid var(--line-2); background: transparent; padding: 10px 0; font-size: 15px; border-radius: 0; color: var(--ink);
}
.o-add select:focus, .field-line:focus { outline: none; border-color: var(--orange); }
.o-add .btn { justify-content: center; }
.o-note { font-size: 13px; color: var(--muted); margin: 4px 0 0; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label, .field > .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.input, .textarea, .select {
  width: 100%; border: 0; border-bottom: 1px solid var(--line-2); background: transparent; padding: 12px 0; font-size: 17px; color: var(--ink); border-radius: 0;
  transition: border-color .3s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--orange); }
.textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.dropzone {
  display: block; border: 1px dashed var(--line-2); padding: 28px 20px; text-align: center; cursor: pointer;
  transition: border-color .3s, background .3s; font-size: 15px; color: var(--ink-soft);
}
.dropzone .mono { display: block; margin-top: 6px; }
.dropzone:hover, .dropzone.drag { border-color: var(--orange); background: rgba(255,90,31,.04); }
.dropzone input { display: none; }
.files { list-style: none; margin: 10px 0 0; padding: 0; }
.files li { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--ink); }
.files li button { color: var(--muted); font-size: 16px; line-height: 1; }
.files li button:hover { color: var(--orange-ink); }

/* ---------- Toast & modal ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 160%); z-index: 100;
  background: var(--ink); color: var(--paper); padding: 14px 20px; display: flex; gap: 18px; align-items: center;
  font-size: 14.5px; max-width: calc(100% - 32px); transition: transform .6s var(--ease); border-radius: 2px;
}
.toast.show { transform: translate(-50%, 0); }
.toast a { color: var(--orange); white-space: nowrap; }
.toast .dot-o { flex: none; }

.modal { position: fixed; inset: 0; z-index: 95; display: none; }
.modal.open { display: block; }
.modal-bg { position: absolute; inset: 0; background: rgba(21,20,18,.4); animation: fade .5s var(--ease); }
.modal-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(600px, calc(100% - 32px));
  max-height: calc(100% - 40px); overflow: auto; background: var(--paper); padding: clamp(28px, 4vw, 48px); animation: rise .6s var(--ease);
}
.modal-close { position: absolute; top: 14px; right: 16px; font-size: 26px; font-weight: 300; color: var(--ink); width: 40px; height: 40px; }
.summary { font-family: var(--mono); font-size: 12.5px; line-height: 1.7; background: var(--paper-2); padding: 18px; white-space: pre-wrap; max-height: 240px; overflow: auto; margin: 20px 0; color: var(--ink); }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translate(-50%, -46%); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9a59d; padding: clamp(80px, 10vw, 140px) 0 36px; font-size: 15px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 { margin: 0 0 18px; font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6f6b64; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: var(--paper); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 96px; padding-top: 24px; border-top: 1px solid rgba(246,244,239,.1); }
.foot-word { font-family: var(--sans); font-weight: 600; font-size: 22px; color: var(--paper); letter-spacing: .02em; }
.foot-word i { font-style: normal; color: var(--orange); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Utility ---------- */
.row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hide { display: none !important; }
.tbc { color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 1.08em; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 36px; } .mt-l { margin-top: 64px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; transition-delay: 0s !important; }
  .reveal, .room .obj, .room .room-back { opacity: 1 !important; transform: none !important; }
  .img-reveal { clip-path: none !important; }
}

.btn-o[disabled] { background: transparent; border-color: var(--line-2); color: var(--muted); opacity: 1; }

/* Mobile menu fix: the header's blur effect was trapping the menu panel inside
   the 64px header, so the menu text spilled over the page with no background. */
body.menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }
body.menu-open .nav { height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h)); overflow-y: auto; z-index: 70; }
.proj-link { white-space: nowrap; }
@media (max-width: 420px) { .proj-link .pl-t { display: none; } }
