/* Kam Duggal — Original Art
   Ink, bone and gilt. Display: Cormorant Garamond. Text: Jost. */

:root {
  --ink: #0b0a09;
  --ink-2: #13110f;
  --ink-3: #1c1916;
  --line: rgba(233, 222, 200, .14);
  --line-strong: rgba(233, 222, 200, .28);
  --bone: #f2ece1;
  --bone-2: #e8e0d1;
  --paper: #faf7f1;
  --text: #ece5d8;
  --muted: #a69d8d;
  --muted-dark: #6d6559;
  --gold: #c9a45c;
  --gold-hi: #e6c888;
  --gold-lo: #8f7236;
  --ember: #e0582a;
  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1440px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 16px/1.7 var(--sans);
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 1px solid var(--gold-hi); outline-offset: 4px; }
::selection { background: var(--gold); color: var(--ink); }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--gold); color: var(--ink); padding: 10px 16px; }
.skip:focus { top: 16px; }

/* ---------- type ---------- */
.eyebrow {
  font: 500 11px/1.4 var(--sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow.plain::before { display: none; }
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
}
.display em, .h2 em, .h3 em { font-style: italic; color: var(--gold-hi); }
.h2 { font: 300 clamp(2.4rem, 5.2vw, 4.6rem)/1 var(--serif); margin: 0; letter-spacing: -.01em; }
.h3 { font: 400 clamp(1.6rem, 2.4vw, 2.2rem)/1.1 var(--serif); margin: 0; }
.lede { font: 300 clamp(1.25rem, 1.9vw, 1.6rem)/1.5 var(--serif); color: var(--text); }
.muted { color: var(--muted); }
.caps { text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 500; }
.num { font-family: var(--serif); font-style: italic; color: var(--gold); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 12vw, 180px); position: relative; }
.section.tight { padding-block: clamp(60px, 8vw, 110px); }
.light { background: var(--bone); color: var(--ink); }
.light .muted { color: var(--muted-dark); }
.light .eyebrow { color: var(--gold-lo); }
.light .display em, .light .h2 em, .light .h3 em { color: var(--gold-lo); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.light .rule { background: rgba(11, 10, 9, .14); }

.split-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 32px 64px; align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.split-head .tools { justify-self: end; display: flex; gap: 12px; align-items: center; }
@media (max-width: 860px) { .split-head { grid-template-columns: 1fr; } .split-head .tools { justify-self: start; } }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--text); --bd: var(--line-strong);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 26px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font: 500 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-hi); transform: translateY(101%);
  transition: transform .55s var(--ease);
}
.btn:hover { color: var(--ink); border-color: var(--gold-hi); }
.btn:hover::after { transform: none; }
.btn.gold { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); }
.btn.gold::after { background: var(--bone); }
.btn.small { min-height: 40px; padding: 0 16px; font-size: 10px; letter-spacing: .2em; }
.light .btn { --fg: var(--ink); --bd: rgba(11, 10, 9, .3); }
.light .btn.gold { --fg: var(--ink); --bd: var(--gold); }
.ico-i { width: 14px; height: 14px; flex: none; }
.btn .arr { width: 14px; height: 14px; flex: none; transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn .arr.right { transform: none; }
.btn:hover .arr.right { transform: translateX(4px); }

.link {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  padding-block: 8px; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  transition: background-size .5s var(--ease), color .3s;
}
.link:hover { background-size: 0 1px; background-position: 100% 100%; color: var(--gold-hi); }
.light .link:hover { color: var(--gold-lo); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), height .5s var(--ease), transform .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  --header-h: 68px;
  background: rgba(11, 10, 9, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line);
}
.site-header.hide { transform: translateY(-100%); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand .mark { width: 46px; height: 46px; color: var(--gold); transition: transform .8s var(--ease); }
.brand:hover .mark { transform: rotate(-12deg); }
.brand .word { display: grid; line-height: 1; }
.brand .word b { font: 500 17px/1 var(--serif); letter-spacing: .34em; text-transform: uppercase; }
.brand .word i { font: italic 400 14px/1 var(--serif); color: var(--gold); margin-top: 5px; letter-spacing: .04em; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a:not(.btn) {
  position: relative; font: 500 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  padding-block: 10px; color: var(--text); opacity: .82; transition: opacity .3s, color .3s;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.nav a:not(.btn):hover, .nav a[aria-current="page"] { opacity: 1; color: var(--gold-hi); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-btn { display: none; width: 44px; height: 44px; position: relative; }
.menu-btn span { position: absolute; left: 10px; right: 10px; height: 1px; background: var(--text); transition: transform .5s var(--ease), opacity .3s; }
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 26px; left: 18px; }
.menu-open .menu-btn span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-open .menu-btn span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); left: 10px; }

@media (max-width: 1020px) {
  .menu-btn { display: block; z-index: 2; }
  .nav {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 6px; padding: 100px var(--gutter) 40px; background: var(--ink);
    opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
  }
  .nav a:not(.btn) { font: 300 clamp(2.4rem, 9vw, 3.6rem)/1.15 var(--serif); letter-spacing: 0; text-transform: none; opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 28px; opacity: 0; transition: opacity .6s .35s; }
  .menu-open .nav { opacity: 1; visibility: visible; }
  .menu-open .nav a:not(.btn) { opacity: 1; transform: none; }
  .menu-open .nav a:nth-child(2) { transition-delay: .05s; }
  .menu-open .nav a:nth-child(3) { transition-delay: .1s; }
  .menu-open .nav a:nth-child(4) { transition-delay: .15s; }
  .menu-open .nav a:nth-child(5) { transition-delay: .2s; }
  .menu-open .nav .btn { opacity: 1; }
  .menu-open .site-header { background: var(--ink); }
  .menu-open .brand { position: relative; z-index: 2; }
}
@media (max-width: 420px) {
  .brand .word b { font-size: 14px; letter-spacing: .26em; }
  .brand .mark { width: 38px; height: 38px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: max(100svh, 640px); display: grid; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 120px; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: -2%; z-index: -2; }
.hero-bg canvas, .hero-bg .fallback { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .fallback { position: absolute; inset: 0; filter: blur(18px) saturate(1.1); transform: scale(1.1); transition: opacity 1.4s; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 50%, rgba(11, 10, 9, .15), rgba(11, 10, 9, .7) 60%),
    linear-gradient(90deg, rgba(11, 10, 9, .92) 0%, rgba(11, 10, 9, .55) 45%, rgba(11, 10, 9, .25) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 90px); align-items: center; }
.hero h1 { font-size: clamp(3.6rem, 10.5vw, 10.5rem); margin: 26px 0 0; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > span { display: inline-block; }
.hero h1 .line:nth-child(2) { padding-left: .9em; }
.hero .tag { margin: 28px 0 0; max-width: 30ch; font: italic 300 clamp(1.3rem, 2.1vw, 1.75rem)/1.4 var(--serif); color: var(--bone-2); }
.hero .pills { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero .pills li { font: 500 10.5px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; }
.hero .pills li + li::before { content: ""; width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); margin: 0 26px 0 0; flex: none; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

.showcase { position: relative; justify-self: center; width: min(100%, 480px); }
.showcase .stage { position: relative; aspect-ratio: 4 / 5; display: grid; place-items: center; }
.showcase figure {
  position: absolute; inset: 0; margin: 0; display: grid; place-items: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.showcase figure.on { opacity: 1; }
.showcase .frame {
  position: relative; max-width: 100%; max-height: 100%;
  padding: 10px; background: linear-gradient(135deg, #2a2520, #0f0d0b 60%, #2a2520);
  box-shadow: 0 50px 80px -30px rgba(0, 0, 0, .85), 0 0 0 1px rgba(201, 164, 92, .35), inset 0 0 0 1px rgba(255, 255, 255, .06);
  transform: scale(.94); transition: transform 7s linear;
}
.showcase figure.on .frame { transform: scale(1); }
.showcase .frame img { width: auto; height: auto; max-width: 100%; max-height: min(58svh, 560px); object-fit: contain; }
.showcase .cap-row {
  display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 26px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.showcase .now b { display: block; font: 400 1.5rem/1.1 var(--serif); }
.showcase .now span { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.showcase .count { font: italic 300 1.1rem/1 var(--serif); color: var(--gold); white-space: nowrap; }
.showcase .bars { display: flex; gap: 6px; margin-top: 16px; }
.showcase .bars button { flex: 1; height: 16px; position: relative; }
.showcase .bars button::before, .showcase .bars button::after { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 2px; background: var(--line-strong); }
.showcase .bars button::after { background: var(--gold); transform: scaleX(0); transform-origin: left; }
.showcase .bars button.done::after { transform: scaleX(1); }
.showcase .bars button.on::after { animation: bar var(--dur, 7s) linear forwards; }
.paused .showcase .bars button.on::after { animation-play-state: paused; }
@keyframes bar { to { transform: scaleX(1); } }

.hero .scroll-cue {
  position: absolute; left: var(--gutter); bottom: 34px; display: flex; align-items: center; gap: 16px;
  font: 500 10px/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue i { width: 1px; height: 46px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--gold); animation: drip 2.4s var(--ease-io) infinite; }
@keyframes drip { to { top: 110%; } }
.hero .locale { position: absolute; right: var(--gutter); bottom: 34px; font: italic 300 1rem/1 var(--serif); color: var(--muted); }

@media (max-width: 900px) {
  .hero { padding-bottom: 110px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 .line:nth-child(2) { padding-left: .5em; }
  .showcase { width: min(100%, 420px); }
  .showcase .frame img { max-height: 46svh; }
  .hero .locale { display: none; }
}

@media (max-height: 780px) and (min-width: 901px) {
  .hero { padding: calc(var(--header-h) + 14px) 0 74px; align-items: start; }
  .hero-grid { align-items: center; }
  .hero h1 { font-size: clamp(3rem, 7.6vw, 7rem); }
  .hero .tag { margin-top: 18px; font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
  .hero .pills { margin-top: 20px; }
  .hero .actions { margin-top: 26px; }
  .showcase { width: min(100%, 430px); }
  .showcase .stage { aspect-ratio: auto; height: 46svh; min-height: 240px; }
  .showcase .frame img { max-height: 46svh; }
  .showcase .cap-row { margin-top: 16px; padding-top: 12px; }
  .hero .scroll-cue, .hero .locale { bottom: 22px; }
}

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 22px; background: var(--ink); }
.marquee .track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee .track > span { display: flex; align-items: center; gap: 48px; padding-right: 48px; white-space: nowrap; font: italic 300 clamp(1.4rem, 2.6vw, 2.2rem)/1 var(--serif); color: var(--bone-2); }
.marquee .track > span b { font: 500 11px/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; font-style: normal; color: var(--gold); }
.marquee .dot { width: 7px; height: 7px; transform: rotate(45deg); border: 1px solid var(--gold); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---------- intro statement ---------- */
.intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr); gap: 40px 80px; }
.intro .big { font: 300 clamp(1.9rem, 3.9vw, 3.6rem)/1.18 var(--serif); margin: 0; letter-spacing: -.005em; }
.intro .big .w { opacity: .16; transition: opacity .6s; }
.intro .big .w.lit { opacity: 1; }
.intro .big em { color: var(--gold-lo); }
.intro .aside { display: grid; gap: 28px; align-content: start; }
.intro .facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: clamp(50px, 7vw, 90px); padding-top: 32px; border-top: 1px solid rgba(11, 10, 9, .14); grid-column: 2; }
.intro .facts div b { display: block; font: 300 clamp(2.4rem, 4vw, 3.6rem)/1 var(--serif); color: var(--ink); }
.intro .facts div span { font-size: 13px; color: var(--muted-dark); }
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
  .intro .facts { grid-column: 1; grid-template-columns: repeat(2, 1fr); }
}

/* ---------- featured rail ---------- */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: clamp(18px, 2.4vw, 36px); align-items: flex-end;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 10px var(--gutter) 30px; margin: 0; scroll-padding-left: var(--gutter);
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.dragging a { pointer-events: none; }
.card { flex: none; scroll-snap-align: start; width: var(--w, 300px); list-style: none; }
.card .mount {
  position: relative; display: grid; place-items: center; height: var(--mh, 380px);
  background: radial-gradient(80% 80% at 50% 45%, #221e1a, #121010); overflow: hidden;
}
.card .mount img {
  max-width: 78%; max-height: 80%; width: auto; height: auto; object-fit: contain;
  box-shadow: 0 30px 40px -18px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .05);
  transition: transform 1s var(--ease);
}
.card:hover .mount img { transform: scale(1.045) translateY(-4px); }
.card .mount .tag {
  position: absolute; left: 14px; top: 14px; font: 500 9.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  padding: 7px 9px; border: 1px solid var(--line-strong); color: var(--bone-2); background: rgba(11, 10, 9, .5);
}
.card .mount .scale-note { position: absolute; right: 14px; bottom: 12px; font: italic 300 .95rem/1 var(--serif); color: var(--muted); opacity: 0; transition: opacity .4s; }
.to-scale .card .mount .scale-note { opacity: 1; }
.card .meta { display: block; margin-top: 18px; color: inherit; }
.card h3 { font: 400 1.55rem/1.1 var(--serif); margin: 0; }
.card .price { font: italic 400 1.15rem/1 var(--serif); color: var(--gold-hi); white-space: nowrap; }
.card .spec { margin: 6px 0 0; font-size: 13px; color: var(--muted); transition: color .4s; }
.card:hover .spec { color: var(--bone-2); }
.card h3 { transition: color .4s; }
.card:hover h3 { color: var(--gold-hi); }
.card .row { display: flex; gap: 8px; margin-top: 18px; }
.card .row .btn { flex: 1; padding: 0 10px; }
.rail-ctrl { display: flex; gap: 8px; }
.rail-ctrl button {
  width: 50px; height: 50px; border: 1px solid var(--line-strong); display: grid; place-items: center;
  transition: background .3s, border-color .3s, color .3s;
}
.rail-ctrl button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.rail-ctrl button:disabled { opacity: .3; pointer-events: none; }
.rail-ctrl svg { width: 16px; height: 16px; }
.toggle {
  display: inline-flex; border: 1px solid var(--line-strong); padding: 3px; gap: 2px;
}
.toggle button { padding: 9px 14px; font: 500 10px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); transition: background .3s, color .3s; }
.toggle button[aria-pressed="true"] { background: var(--bone); color: var(--ink); }
.rail-progress { height: 1px; background: var(--line); margin: 10px var(--gutter) 0; position: relative; }
.rail-progress i { position: absolute; left: 0; top: -1px; height: 3px; background: var(--gold); width: 20%; transition: transform .2s linear; }

/* ---------- spotlight / loupe ---------- */
.spotlight { background: var(--ink-2); }
.spot-grid { display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); align-items: center; }
.loupe-host { position: relative; cursor: none; touch-action: pan-y; }
.loupe-host img { width: 100%; height: auto; box-shadow: 0 60px 90px -40px rgba(0, 0, 0, .9); }
.loupe-host::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06); pointer-events: none; }
.loupe {
  position: absolute; left: 0; top: 0; width: 220px; height: 220px; border-radius: 50%;
  pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.6);
  transition: opacity .3s, transform .4s var(--ease);
  box-shadow: 0 0 0 1px var(--gold-hi), 0 0 0 6px rgba(11, 10, 9, .4), 0 30px 60px rgba(0, 0, 0, .6);
  background-repeat: no-repeat;
}
.loupe.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.loupe-hint { position: absolute; left: 18px; bottom: 16px; display: flex; gap: 10px; align-items: center; font: 500 10px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; background: rgba(11, 10, 9, .7); padding: 10px 12px; transition: opacity .4s; }
.loupe-host:hover .loupe-hint { opacity: 0; }
.spot-copy dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; margin: 36px 0; padding: 26px 0; border-block: 1px solid var(--line); font-size: 14px; }
.spot-copy dt { color: var(--muted); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; padding-top: 3px; }
.spot-copy dd { margin: 0; }
.spot-copy .actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .spot-grid { grid-template-columns: 1fr; } .loupe-host { cursor: auto; } }

/* ---------- process (sticky) ---------- */
.process { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 110px); }
.process .pin { position: sticky; top: calc(var(--header-h) + 24px); height: calc(100svh - var(--header-h) - 48px); min-height: 460px; }
.process .lens { position: relative; height: 100%; overflow: hidden; background: #000; }
.process .lens img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform-origin: var(--ox, 50%) var(--oy, 50%); transform: scale(var(--z, 1)); transition: transform .1s linear; will-change: transform; }
.process .lens .stamp {
  position: absolute; left: 20px; bottom: 20px; right: 20px; display: flex; justify-content: space-between; align-items: end;
  font: 500 10px/1.4 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--bone);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}
.process .lens .stamp b { font: italic 300 3.4rem/1 var(--serif); letter-spacing: 0; color: var(--gold-hi); text-transform: none; }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { min-height: 70svh; display: flex; flex-direction: column; justify-content: center; padding-block: 40px; border-top: 1px solid var(--line); opacity: .25; transition: opacity .6s; }
.steps li.on { opacity: 1; }
.steps li:first-child { border-top: 0; }
.steps .n { font: italic 300 1.2rem/1 var(--serif); color: var(--gold); margin-bottom: 18px; }
.steps h3 { font: 300 clamp(2.2rem, 4vw, 3.4rem)/1.02 var(--serif); margin: 0 0 18px; }
.steps p { margin: 0; max-width: 44ch; color: var(--muted); }
.steps blockquote { margin: 22px 0 0; padding-left: 18px; border-left: 1px solid var(--gold); font: italic 300 1.25rem/1.45 var(--serif); color: var(--bone-2); max-width: 40ch; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process .pin { top: var(--header-h); height: 38svh; min-height: 0; z-index: 1; margin-inline: calc(var(--gutter) * -1); }
  .steps li { min-height: 60svh; background: var(--ink); }
}

/* ---------- palettes ---------- */
.palettes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.palette {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: var(--bone); isolation: isolate;
}
.palette:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.palette img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.08); transition: transform 1.4s var(--ease), filter 1s; filter: saturate(.9); }
.palette::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(11, 10, 9, .88), rgba(11, 10, 9, .05) 60%); transition: background .6s; }
.palette:hover img { transform: scale(1.16) rotate(.6deg); filter: saturate(1.15); }
.palette .count { position: absolute; top: 18px; right: 20px; font: italic 300 1.1rem/1 var(--serif); color: var(--bone-2); }
.palette h3 { font: 300 clamp(1.7rem, 2.6vw, 2.6rem)/1 var(--serif); margin: 0; }
.palette:nth-child(1) h3 { font-size: clamp(2.4rem, 4.4vw, 4.2rem); }
.palette p { margin: 8px 0 0; font-size: 13px; color: var(--bone-2); max-width: 30ch; }
.palette .swatches { display: flex; gap: 5px; margin-top: 14px; }
.palette .swatches i { width: 18px; height: 18px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255, 255, 255, .25); }
.palette .go { position: absolute; right: 20px; bottom: 22px; width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .35); display: grid; place-items: center; transition: background .4s, color .4s, border-color .4s; }
.palette:hover .go { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--ink); }
.palette .go svg { width: 14px; height: 14px; }
.palette:nth-child(6), .palette:nth-child(7) { grid-column: span 2; aspect-ratio: 16 / 7; }
@media (max-width: 900px) { .palettes { grid-template-columns: repeat(2, minmax(0, 1fr)); } .palette:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 10; } }
@media (max-width: 480px) { .palette { padding: 16px; } .palette p { display: none; } .palette .go { display: none; } }

/* ---------- collection strip ---------- */
.strip { position: relative; background: var(--ink); }
.strip-pin { position: sticky; top: 0; height: 100svh; display: grid; grid-template-columns: 100%; grid-template-rows: auto 1fr auto; gap: clamp(18px, 3vw, 34px); padding: clamp(80px, 11vh, 130px) 0 clamp(28px, 5vh, 54px); overflow: hidden; }
.strip-head { display: grid; gap: 14px; }
.strip-track { display: flex; width: max-content; height: 100%; align-items: center; gap: clamp(20px, 3vw, 48px); padding-left: var(--gutter); will-change: transform; min-height: 0; }
.strip-item { flex: none; height: 100%; min-height: 0; display: grid; align-items: center; justify-items: center; }
.strip-item img { height: 100%; max-height: 100%; width: auto; max-width: none; object-fit: contain; box-shadow: 0 40px 60px -30px rgba(0, 0, 0, .95), 0 0 0 1px rgba(255, 255, 255, .06); transition: transform .8s var(--ease), filter .8s; filter: saturate(.96); }
.strip-item:hover img { transform: translateY(-8px) scale(1.01); filter: saturate(1.1); }
.strip-item span { font: 400 1.1rem/1 var(--serif); color: var(--muted); transition: color .4s; }
.strip-item:hover span { color: var(--gold-hi); }
.strip-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; font-size: 13px; }
#strip-label { transition: opacity .3s; }
@media (max-width: 760px) {
  .strip-pin { padding-top: 90px; gap: 16px; }
  .strip-item span { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .strip-pin { position: static; height: auto; }
  .strip-track { overflow-x: auto; padding-bottom: 20px; }
  .strip-item { height: 58svh; }
}

/* ---------- prints line ---------- */
.prints-line { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }

/* ---------- quote band ---------- */
.quote-band { position: relative; min-height: 88svh; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; }
.quote-band .bg { position: absolute; inset: -12% 0; z-index: -2; background-size: cover; background-position: center; filter: saturate(.85) brightness(.75); will-change: transform; }
.quote-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(65% 65% at 50% 50%, rgba(11, 10, 9, .72), rgba(11, 10, 9, .95)); }
.quote-band blockquote { margin: 0; max-width: 18ch; font: 300 clamp(2.6rem, 7vw, 6.4rem)/1 var(--serif); letter-spacing: -.01em; }
.quote-band blockquote em { color: var(--gold-hi); }
.quote-band cite { display: block; margin-top: 40px; font: italic 400 1.35rem/1 var(--serif); color: var(--gold); }
.quote-band .sig { font-family: var(--serif); }

/* ---------- two paths ---------- */
.paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border: 1px solid rgba(11, 10, 9, .16); }
.path { padding: clamp(28px, 4.5vw, 64px); display: flex; flex-direction: column; gap: 22px; position: relative; overflow: hidden; }
.path + .path { border-left: 1px solid rgba(11, 10, 9, .16); }
.path .art { height: 250px; position: relative; margin-bottom: 10px; }
.path h3 { font: 300 clamp(2rem, 3.4vw, 3rem)/1 var(--serif); margin: 0; }
.path ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.path li { display: flex; gap: 14px; align-items: baseline; font-size: 15px; }
.path li::before { content: ""; width: 6px; height: 6px; transform: rotate(45deg) translateY(-2px); background: var(--gold-lo); flex: none; }
.path .actions { margin-top: auto; padding-top: 12px; display: flex; flex-wrap: wrap; gap: 12px; }
.path.dark { background: var(--ink); color: var(--text); }
.path.dark li::before { background: var(--gold); }
/* the original: one canvas in a frame */
.art.one img { position: absolute; left: 50%; top: 50%; height: 100%; width: auto; transform: translate(-50%, -50%); box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .9); border: 8px solid #1a1714; outline: 1px solid rgba(201, 164, 92, .5); }
/* prints: the same image fanned out on products */
.art.many img { position: absolute; top: 50%; left: 50%; height: 78%; width: auto; box-shadow: 0 20px 30px -14px rgba(0, 0, 0, .5); transition: transform .8s var(--ease); }
.art.many img:nth-child(1) { transform: translate(-120%, -50%) rotate(-7deg); border: 6px solid #fff; }
.art.many img:nth-child(2) { transform: translate(-50%, -54%); height: 92%; z-index: 2; border: 10px solid #2b2724; }
.art.many img:nth-child(3) { transform: translate(20%, -50%) rotate(7deg); border-radius: 2px; filter: contrast(1.1) brightness(1.05); }
.path:hover .art.many img:nth-child(1) { transform: translate(-135%, -50%) rotate(-10deg); }
.path:hover .art.many img:nth-child(3) { transform: translate(35%, -50%) rotate(10deg); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 12px; padding: 6px 12px; border: 1px solid rgba(11, 10, 9, .18); border-radius: 99px; }
@media (max-width: 860px) { .paths { grid-template-columns: 1fr; } .path + .path { border-left: 0; border-top: 1px solid rgba(11, 10, 9, .16); } .path .art { height: 200px; } }

/* ---------- inquiry CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px 80px; align-items: end; }
.cta h2 { font-size: clamp(3rem, 8vw, 7.6rem); }
.cta .side { display: grid; gap: 22px; }
.cta .contact-lines { display: grid; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.cta .contact-lines a, .cta .contact-lines span { display: flex; gap: 14px; align-items: center; font-size: 15px; }
.cta .contact-lines svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.cta .contact-lines a:hover { color: var(--gold-hi); }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: #070605; border-top: 1px solid var(--line); padding: clamp(60px, 8vw, 110px) 0 36px; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.foot-grid h4 { margin: 0 0 18px; font: 500 10.5px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.foot-grid ul a { color: var(--muted); transition: color .3s; }
.foot-grid ul a:hover { color: var(--bone); }
.foot-grid p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.foot-word {
  margin: clamp(50px, 8vw, 100px) 0 0; font: 300 clamp(3.6rem, 15.5vw, 15rem)/1.06 var(--serif); letter-spacing: -.02em; white-space: nowrap;
  padding-bottom: .1em; overflow: visible;
  background: linear-gradient(180deg, var(--bone) 20%, rgba(242, 236, 225, .05) 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: center;
}
.foot-word em { font-style: italic; }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted-dark); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :first-child { grid-column: span 2; } }

/* ---------- page head (inner pages) ---------- */
.page-head { padding: calc(var(--header-h) + clamp(60px, 9vw, 130px)) 0 clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.page-head h1 { font-size: clamp(3.6rem, 11vw, 11rem); margin-top: 22px; }
.page-head .row { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 30px 80px; align-items: end; }
.page-head .row p { margin: 0; }
.page-head .ghost { position: absolute; right: -4vw; top: 50%; width: 46vw; max-width: 720px; opacity: .15; transform: translateY(-40%) rotate(8deg); filter: blur(2px); z-index: -1; mask-image: radial-gradient(closest-side, #000 40%, transparent); -webkit-mask-image: radial-gradient(closest-side, #000 40%, transparent); }
@media (max-width: 860px) { .page-head .row { grid-template-columns: 1fr; } }

/* ---------- originals: toolbar ---------- */
.toolbar {
  position: sticky; top: var(--header-h); z-index: 40; background: rgba(11, 10, 9, .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--line); transition: top .5s var(--ease);
}
.site-header.hide ~ main .toolbar, body.header-hidden .toolbar { top: 0; }
@media (max-width: 720px) { .toolbar { position: static; } }
.toolbar .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-block: 14px; }
@media (max-width: 1180px) { .filters { flex-basis: 100%; } }
.filters { display: flex; gap: 6px; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; flex: 1 1 520px; min-width: 0; padding-block: 2px; }
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px 9px 10px; border: 1px solid var(--line); border-radius: 99px;
  font-size: 13px; color: var(--muted); transition: border-color .3s, color .3s, background .3s;
}
.chip i { width: 14px; height: 14px; border-radius: 50%; background: var(--sw, var(--gold)); box-shadow: 0 0 0 1px rgba(255, 255, 255, .2); }
.chip small { font-size: 11px; opacity: .6; }
.chip:hover { color: var(--bone); border-color: var(--line-strong); }
.chip[aria-pressed="true"] { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.toolbar .right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.select { position: relative; }
.select select {
  appearance: none; -webkit-appearance: none; background: transparent; border: 1px solid var(--line); border-radius: 0; padding: 10px 34px 10px 14px;
  font-size: 13px; color: var(--text); cursor: pointer;
}
.select select option { background: var(--ink); }
.select::after { content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 6px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.result-line { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding-block: 34px 26px; }
.result-line .h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

/* ---------- originals: gallery ---------- */
.gallery { columns: 4 260px; column-gap: clamp(16px, 2vw, 28px); padding-bottom: 40px; }
.tile { break-inside: avoid; margin: 0 0 clamp(26px, 3vw, 44px); display: block; width: 100%; text-align: left; opacity: 0; transform: translateY(30px); animation: rise .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }
.tile .img { position: relative; overflow: hidden; background: var(--ink-3); aspect-ratio: var(--r); }
.tile .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.tile:hover .img img { transform: scale(1.05); }
.tile .img::after {
  content: "View"; position: absolute; left: 50%; top: 50%; width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(242, 236, 225, .92); color: var(--ink);
  font: 500 10px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase;
  transform: translate(-50%, -50%) scale(.4); opacity: 0; transition: transform .5s var(--ease), opacity .4s;
}
.tile:hover .img::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.tile .badge { position: absolute; left: 12px; top: 12px; z-index: 1; font: 500 9.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; padding: 6px 8px; background: rgba(11, 10, 9, .72); color: var(--bone); }
.tile .cap { display: flex; color: var(--text); justify-content: space-between; gap: 12px; margin-top: 14px; align-items: baseline; }
.tile .t { display: block; font: 400 1.35rem/1.15 var(--serif); }
.tile .cap .p { font: italic 400 1.05rem/1 var(--serif); color: var(--gold-hi); white-space: nowrap; }
.tile .sub { display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.empty { padding: 80px 0 120px; text-align: center; }

/* to-scale wall */
.wall-view { position: relative; padding: 50px 0 0; }
.wall-view .wall {
  position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: center; gap: 40px 34px;
  padding: 50px 30px 0; background: linear-gradient(180deg, #1c1916, #14120f);
}
.wall-view .piece { display: grid; justify-items: center; gap: 10px; padding-bottom: 26px; }
.wall-view .piece img { width: calc(var(--iw) * var(--ppi)); height: auto; box-shadow: 0 18px 26px -12px rgba(0, 0, 0, .9); transition: transform .5s var(--ease); }
.wall-view .piece:hover img { transform: translateY(-6px); }
.wall-view .piece span { font-size: 11px; color: var(--muted); white-space: nowrap; }
.wall-view .floor { height: 18px; background: linear-gradient(180deg, #2a241d, #0e0c0a); }
.wall-view .legend { display: flex; align-items: center; gap: 14px; justify-content: flex-end; font-size: 12px; color: var(--muted); padding-block: 14px; }
.wall-view .legend i { display: block; height: 8px; border: 1px solid var(--gold); border-top: 0; width: calc(12 * var(--ppi)); }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 150; display: grid; background: rgba(7, 6, 5, .96); opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.lb.open { opacity: 1; visibility: visible; }
.lb-inner { display: grid; grid-template-columns: minmax(0, 1fr) 420px; height: 100%; min-height: 0; }
.lb-stage { position: relative; display: grid; place-items: center; padding: 70px clamp(20px, 4vw, 70px); min-height: 0; overflow: hidden; }
.lb-stage .art { position: relative; max-height: 100%; display: grid; place-items: center; min-height: 0; height: 100%; width: 100%; }
.lb-stage .art img { max-width: 100%; max-height: calc(100svh - 160px); width: auto; height: auto; object-fit: contain; box-shadow: 0 50px 80px -30px #000; transition: opacity .35s, transform .6s var(--ease); cursor: zoom-in; }
.lb-stage .art img.swap { opacity: 0; transform: scale(.98); }
.lb-stage.zoomed .art img { cursor: zoom-out; }
.lb-panel { border-left: 1px solid var(--line); padding: 90px 40px 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 22px; background: var(--ink); }
.lb-panel h2 { font: 300 clamp(2.4rem, 3.6vw, 3.4rem)/1 var(--serif); margin: 6px 0 0; }
.lb-panel .price { font: italic 400 1.6rem/1 var(--serif); color: var(--gold-hi); }
.lb-panel dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 20px; margin: 0; padding: 22px 0; border-block: 1px solid var(--line); font-size: 14px; }
.lb-panel dt { color: var(--muted); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; padding-top: 3px; }
.lb-panel dd { margin: 0; }
.lb-panel .actions { display: grid; gap: 10px; }
.lb-panel .fine { font-size: 12.5px; color: var(--muted); margin: 0; }
.lb-panel .story { margin: 0; font: italic 300 1.2rem/1.5 var(--serif); color: var(--bone-2); padding-left: 16px; border-left: 1px solid var(--gold); }
.lb-close, .lb-nav {
  position: absolute; z-index: 5; width: 50px; height: 50px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: rgba(11, 10, 9, .6); transition: background .3s, color .3s, border-color .3s;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-close { right: 20px; top: 20px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav.prev { left: 20px; }
.lb-nav.next { right: 20px; }
.lb-close svg, .lb-nav svg { width: 16px; height: 16px; }
.lb-count { position: absolute; left: 24px; top: 34px; font: italic 300 1.1rem/1 var(--serif); color: var(--muted); }
.lb .tabs { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4; }
/* room preview */
.room { position: absolute; inset: 0; display: none; overflow: hidden; background: var(--wall, #e9e3d8); transition: background .6s; }
.lb-stage.in-room .room { display: block; }
.lb-stage.in-room .art { visibility: hidden; }
.room .floor { position: absolute; left: 0; right: 0; bottom: 0; height: 18%; background: linear-gradient(180deg, #8d7a64, #6f5e4b); }
.room .floor::before { content: ""; position: absolute; inset: 0 0 auto; height: 10px; background: linear-gradient(180deg, rgba(0, 0, 0, .25), transparent); }
.room .baseboard { position: absolute; left: 0; right: 0; bottom: 18%; height: 2.2%; background: #f5f1ea; box-shadow: 0 -1px 0 rgba(0, 0, 0, .08); }
.room .sofa { position: absolute; left: 50%; transform: translateX(-50%); bottom: 11%; color: #3f4a4c; }
.room .hung { position: absolute; left: 50%; transform: translateX(-50%); box-shadow: 0 22px 30px -14px rgba(0, 0, 0, .55), 0 2px 4px rgba(0, 0, 0, .25); }
.room .lamp { position: absolute; bottom: 12%; color: #2e2a26; }
.room .dim { position: absolute; font-size: 11px; color: rgba(0, 0, 0, .55); letter-spacing: .08em; white-space: nowrap; }
.room .walls { position: absolute; right: 18px; top: 84px; display: grid; gap: 8px; }
.room .walls button { width: 26px; height: 26px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px rgba(0, 0, 0, .25); }
.room .walls button[aria-pressed="true"] { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--gold); }
.room .note { position: absolute; left: 20px; top: 84px; font-size: 11px; color: rgba(0, 0, 0, .55); max-width: 30ch; }
.room.dark .note, .room.dark .dim { color: rgba(255, 255, 255, .6); }

@media (max-width: 960px) {
  .lb { overflow-y: auto; }
  .lb-inner { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; min-height: 100%; }
  .lb-stage { height: 64svh; padding: 68px 16px 34px; }
  .lb-stage .art { height: 100%; }
  .lb-stage .art img { max-height: 100%; max-width: 100%; }
  .lb-panel { border-left: 0; border-top: 1px solid var(--line); padding: 30px var(--gutter) 60px; overflow: visible; }
  .lb-nav { top: 46%; bottom: auto; transform: translateY(-50%); width: 42px; height: 42px; }
  .lb-nav.prev { left: 10px; } .lb-nav.next { right: 10px; }
  .lb .tabs { top: 13px; bottom: auto; left: 50%; }
  .lb .tabs button { padding: 8px 10px; font-size: 9px; letter-spacing: .16em; }
  .lb-close { width: 42px; height: 42px; right: 12px; top: 12px; }
  .lb-count { left: 16px; top: 22px; font-size: .95rem; }
  .room .note { display: none; }
  .room .walls { top: auto; bottom: 14px; right: 12px; grid-auto-flow: column; }
  .room .walls button { width: 22px; height: 22px; }
  .room .dim { font-size: 10px; }
}

/* ---------- artist page ---------- */
.artist-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 40px clamp(40px, 7vw, 120px); align-items: center; }
.artist-hero .portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.artist-hero .portrait img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); will-change: transform; }
.artist-hero .portrait .label { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(0deg, rgba(11, 10, 9, .85), transparent); font-size: 12px; color: var(--bone-2); }
.artist-hero .portrait .corner { position: absolute; width: 38px; height: 38px; border-color: var(--gold); border-style: solid; border-width: 0; }
.corner.tl { left: 14px; top: 14px; border-left-width: 1px; border-top-width: 1px; }
.corner.br { right: 14px; bottom: 14px; border-right-width: 1px; border-bottom-width: 1px; }
.artist-hero .quote { margin: 40px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); font: italic 300 clamp(1.5rem, 2.4vw, 2.1rem)/1.3 var(--serif); color: var(--bone-2); }
.artist-hero .quote cite { display: block; margin-top: 14px; font: 500 10.5px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-style: normal; }
@media (max-width: 900px) { .artist-hero { grid-template-columns: 1fr; } .artist-hero .portrait { max-width: 480px; } }

.statement { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 30px 80px; }
.statement .body { font: 300 clamp(1.5rem, 2.6vw, 2.3rem)/1.4 var(--serif); }
.statement .body p { margin: 0 0 1em; }
.statement .body p:first-child::first-letter { float: left; font-size: 4.4em; line-height: .78; padding: .06em .1em 0 0; color: var(--gold-lo); font-weight: 400; }
.statement .sign { display: flex; align-items: center; gap: 18px; margin-top: 12px; }
.statement .sign svg { width: 120px; height: auto; color: var(--ink); }
@media (max-width: 860px) { .statement { grid-template-columns: 1fr; } }

.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.pillar { padding: 44px clamp(20px, 3vw, 44px) 10px 0; }
.pillar + .pillar { padding-left: clamp(20px, 3vw, 44px); border-left: 1px solid var(--line); }
.pillar .ico { width: 58px; height: 58px; color: var(--gold); margin-bottom: 26px; }
.pillar h3 { font: 300 2.2rem/1 var(--serif); margin: 0 0 14px; }
.pillar p { margin: 0; color: var(--muted); }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } .pillar + .pillar { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); } }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 180px; top: 0; bottom: 0; width: 1px; background: rgba(11, 10, 9, .15); }
.timeline::after { content: ""; position: absolute; left: 180px; top: 0; width: 1px; height: var(--p, 0%); background: var(--gold-lo); }
.timeline li { display: grid; grid-template-columns: 180px minmax(0, 1fr) minmax(0, 220px); gap: 20px 60px; padding: 44px 0; border-bottom: 1px solid rgba(11, 10, 9, .1); position: relative; align-items: center; }
.timeline li::before { content: ""; position: absolute; left: 175px; top: 58px; width: 11px; height: 11px; transform: rotate(45deg); background: var(--bone); border: 1px solid var(--gold-lo); z-index: 1; transition: background .5s; }
.timeline li.on::before { background: var(--gold-lo); }
.timeline .yr { font: 300 clamp(2.6rem, 4vw, 3.6rem)/1 var(--serif); color: var(--gold-lo); align-self: start; }
.timeline h3 { font: 400 1.9rem/1.1 var(--serif); margin: 0 0 10px; }
.timeline p { margin: 0; color: var(--muted-dark); max-width: 52ch; }
.timeline .thumbs { display: flex; gap: 8px; justify-content: flex-end; }
.timeline .thumbs img { height: 110px; width: auto; box-shadow: 0 14px 20px -10px rgba(0, 0, 0, .5); }
@media (max-width: 860px) {
  .timeline::before, .timeline::after { left: 5px; }
  .timeline li { grid-template-columns: 1fr; padding-left: 36px; gap: 14px; }
  .timeline li::before { left: 0; top: 52px; }
  .timeline .thumbs { justify-content: flex-start; }
}

.howto { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; counter-reset: s; }
.howto li { list-style: none; counter-increment: s; padding: 30px 26px 34px; background: var(--ink-2); border: 1px solid var(--line); position: relative; transition: border-color .4s, transform .6s var(--ease); }
.howto li:hover { border-color: var(--gold); transform: translateY(-6px); }
.howto li::before { content: "0" counter(s); display: block; font: italic 300 3rem/1 var(--serif); color: var(--gold); margin-bottom: 40px; }
.howto h3 { font: 400 1.55rem/1.1 var(--serif); margin: 0 0 10px; }
.howto p { margin: 0; color: var(--muted); font-size: 14.5px; }
.howto ol { padding: 0; margin: 0; display: contents; }
@media (max-width: 960px) { .howto { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .howto { grid-template-columns: 1fr; } }

.faq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 30px 80px; margin-top: clamp(70px, 9vw, 130px); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 24px 0; font: 400 clamp(1.3rem, 2vw, 1.65rem)/1.2 var(--serif); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 18px; height: 18px; flex: none; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--gold); transition: transform .4s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details p { margin: 0; padding: 0 0 26px; color: var(--muted); max-width: 62ch; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } }

/* ---------- contact form ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 50px clamp(40px, 7vw, 120px); }
.contact-info { display: grid; gap: 34px; align-content: start; }
.contact-info .item h4 { margin: 0 0 6px; font: 500 10.5px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lo); }
.contact-info .item a, .contact-info .item p { margin: 0; font: 400 1.5rem/1.3 var(--serif); }
.contact-info .item a:hover { color: var(--gold-lo); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.form .full { grid-column: 1 / -1; }
.field { position: relative; display: grid; }
.field label { font: 500 10.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(11, 10, 9, .25); background: transparent; padding: 10px 0 12px; font-size: 17px; border-radius: 0; color: var(--ink);
  transition: border-color .3s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field.sel::after { content: ""; position: absolute; right: 4px; bottom: 22px; width: 7px; height: 7px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: rotate(45deg); pointer-events: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold-lo); box-shadow: 0 1px 0 var(--gold-lo); }
.field .err { font-size: 12px; color: #a3321a; margin-top: 6px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-bottom-color: #a3321a; }
.interest { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.interest legend { font: 500 10.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 14px; padding: 0; }
.interest label { position: relative; cursor: pointer; }
.interest input { position: absolute; opacity: 0; }
.interest span { display: inline-block; padding: 10px 16px; border: 1px solid rgba(11, 10, 9, .2); border-radius: 99px; font-size: 14px; transition: background .3s, color .3s, border-color .3s; }
.interest input:checked + span { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.interest input:focus-visible + span { outline: 1px solid var(--gold-lo); outline-offset: 3px; }
.piece-pick { display: flex; align-items: center; gap: 16px; padding: 12px; border: 1px solid rgba(11, 10, 9, .15); background: var(--paper); }
.piece-pick img { width: 56px; height: 56px; object-fit: cover; }
.piece-pick b { font: 400 1.25rem/1.1 var(--serif); display: block; }
.piece-pick span { font-size: 12.5px; color: var(--muted-dark); }
.piece-pick button { margin-left: auto; font-size: 12px; text-decoration: underline; color: var(--muted-dark); }
.form .submit { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form .status { font-size: 14px; }
.form .status.ok { color: #2f6b3a; }
.form .status.bad { color: #a3321a; }
.hp { position: absolute; left: -9999px; }
.sent { grid-column: 1 / -1; padding: 50px; background: var(--ink); color: var(--text); text-align: center; }
.sent h3 { font: 300 2.6rem/1 var(--serif); margin: 10px 0 12px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ---------- page transition ---------- */
.js main, .js .site-footer { transition: opacity .42s var(--ease), transform .42s var(--ease); }
.js.leaving main, .js.leaving .site-footer { opacity: 0; transform: translateY(-10px); }
.js.leaving .site-header { opacity: 0; transition: opacity .3s; }
@media (prefers-reduced-motion: reduce) { .js.leaving main, .js.leaving .site-footer, .js.leaving .site-header { opacity: 1; transform: none; } }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv-img { clip-path: inset(12% 12% 12% 12%); transition: clip-path 1.4s var(--ease); }
.js .rv-img.in { clip-path: inset(0 0 0 0); }
.js .hero h1 .line > span { transform: translateY(110%); transition: transform 1.3s var(--ease); }
.js .ready .hero h1 .line > span, .js body.ready .hero h1 .line > span { transform: none; }
.js .hero h1 .line:nth-child(2) > span { transition-delay: .12s; }
.js .hero .fade { opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, .4s); }
.js body.ready .hero .fade { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv, .js .rv-img, .js .hero h1 .line > span, .js .hero .fade { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .tile { animation: none; opacity: 1; transform: none; }
  .intro .big .w { opacity: 1; }
  .steps li { opacity: 1; }
}

/* cursor follower (fine pointers) */
.cursor { position: fixed; left: 0; top: 0; z-index: 300; pointer-events: none; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--gold-hi); mix-blend-mode: difference; transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), opacity .3s; opacity: 0; }
.cursor.on { opacity: 1; }
.cursor.big { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: rgba(230, 200, 136, .9); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
.howto { padding: 0; margin: 0; }
.timeline .yr em { font-style: italic; }
