/* jolinerenn.com
   Dark ground, warm metal accents. Resin and metallic powders read as luminous
   against near-black the way they do under gallery lighting; on white they just
   look flat. The room is dark so the paintings are the only bright thing here. */

:root {
  --ground:    #0c0b0f;
  --surface:   #141219;
  --surface-2: #1c1922;
  --mat:       #191620;
  --line:      #2b2733;
  --line-soft: #201d27;

  --text:   #f3efe8;
  --text-2: #a9a2b2;
  --text-3: #736c7f;

  --brass:  #c89b5a;
  --brass-2:#e0b878;
  --ember:  #b8623c;

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --max: 1500px;
  --band: clamp(4.5rem, 10vw, 9.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--ground); }

body {
  margin: 0;
  background: var(--ground);
  background-image:
    radial-gradient(120% 80% at 15% -10%, rgba(200,155,90,0.07) 0%, transparent 55%),
    radial-gradient(100% 70% at 95% 8%, rgba(184,98,60,0.06) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.22vw, 1.09rem);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

img, picture { display: block; max-width: 100%; }
picture img { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 1.4rem + 5vw, 5.75rem); }
h2 { font-size: clamp(2rem, 1.3rem + 2.7vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.7rem); }

p { margin: 0 0 1.1em; }

.muted { color: var(--text-2); }
.small { font-size: 0.86rem; }
.center { text-align: center; }

.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1rem;
}

.skip { position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brass); color: var(--ground); padding: 0.75rem 1.25rem; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.2rem var(--pad);
  background: rgba(12,11,15,0.72);
  backdrop-filter: saturate(1.5) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s, background 0.35s;
}
.site-head.scrolled { border-bottom-color: var(--line); background: rgba(12,11,15,0.92); }

.brand {
  display: inline-flex; align-items: center; gap: 0.62em;
  font-family: var(--serif); font-size: 1.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.brand:hover { color: var(--brass-2); }
.brand-mark {
  flex: none;
  width: 1.32em; height: 1.32em;
  color: var(--brass);
  overflow: visible;                 /* the ring sits on the viewBox edge */
  transition: color 0.25s ease, transform 0.5s ease;
}
.brand:hover .brand-mark { color: var(--brass-2); transform: rotate(30deg); }
@media (prefers-reduced-motion: reduce) {
  .brand-mark { transition: color 0.25s ease; }
  .brand:hover .brand-mark { transform: none; }
}
@media (max-width: 520px) {
  .brand { gap: 0.5em; font-size: 1.32rem; }
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.6rem); }
.nav a {
  position: relative;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-2); padding-bottom: 4px;
  transition: color 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--brass); transition: width 0.3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.nav .nav-cta { color: var(--brass); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */

.hero { position: relative; isolation: isolate; }
.hero-img { height: min(88vh, 900px); overflow: hidden; }
.hero-img picture, .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,11,15,0.55) 0%, rgba(12,11,15,0.08) 38%, rgba(12,11,15,0.88) 88%, var(--ground) 100%);
}
.hero-txt {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: var(--pad); padding-bottom: clamp(2.5rem, 6vw, 5rem);
  max-width: 68ch;
}
.hero-txt h1 { margin-bottom: 0.75rem; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.hero-txt p { color: var(--text-2); max-width: 54ch; font-size: 1.08rem; }

/* ---------- bands ---------- */

.band { padding: var(--band) var(--pad); max-width: var(--max); margin: 0 auto; }
.band.alt { background: var(--surface); max-width: none; border-block: 1px solid var(--line-soft); }
.band.alt > * { max-width: var(--max); margin-inline: auto; }
.cta-band { border-top: 1px solid var(--line-soft); }

.band-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-soft);
}
.more {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
}
.more:hover { color: var(--brass-2); }

.page-head {
  padding: clamp(4rem, 9vw, 8rem) var(--pad) clamp(1.5rem, 3vw, 2.5rem);
  max-width: var(--max); margin: 0 auto;
}
.page-head.narrow { max-width: 900px; }
.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.8rem);
  line-height: 1.48; color: var(--text-2); max-width: 62ch; margin-top: 1.25rem;
}

.prose { max-width: 68ch; }
.prose.center { margin-inline: auto; }
.prose h2 { margin-bottom: 1.25rem; }
.prose.two-up {
  max-width: var(--max);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
}

/* ---------- work grid ----------
   Uniform tiles so the page reads as one catalogue, but each painting is MATTED,
   never cropped — centred at its true proportions like a framed work on a wall.
   Panoramas and squares share a tile; the grid lines up, the art keeps its shape. */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 21rem), 1fr));
  gap: clamp(2rem, 3.5vw, 3.25rem) clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}

.card { display: flex; flex-direction: column; }

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 45%),
    var(--mat);
  border: 1px solid var(--line);
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.band.alt .card-img { background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 45%), var(--ground); }

.card-img picture {
  position: absolute; inset: clamp(0.9rem, 2vw, 1.7rem);
  display: flex; align-items: center; justify-content: center;
}
.card-img img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 6px 26px -6px rgba(0,0,0,0.75);
  transition: transform 0.65s cubic-bezier(0.2,0.6,0.2,1);
}
.card:hover .card-img {
  border-color: var(--brass);
  box-shadow: 0 24px 60px -30px rgba(200,155,90,0.5);
}
.card:hover .card-img img { transform: scale(1.035); }

.card-txt { padding-top: 1.1rem; }
.card-txt h3 { font-size: 1.4rem; transition: color 0.25s; }
.card:hover .card-txt h3 { color: var(--brass-2); }
.card-txt .yr { color: var(--text-3); }
.card-txt p { margin: 0.4rem 0 0; }

.card-meta {
  font-size: 0.71rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3);
}
.card-desc {
  font-size: 0.93rem; line-height: 1.62; color: var(--text-2);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-status {
  margin-top: 0.7rem !important;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3);
}
.card-status .avail { color: var(--brass); }

/* ---------- single work ---------- */

.work {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--pad);
  max-width: var(--max); margin: 0 auto;
}
@media (max-width: 900px) { .work { grid-template-columns: 1fr; } }

.zoom {
  display: block; width: 100%; padding: clamp(1rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line); cursor: zoom-in;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%), var(--mat);
  transition: border-color 0.4s;
}
.zoom:hover { border-color: var(--brass); }
.zoom img { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.85); }
.zoom-hint {
  margin-top: 0.9rem; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-3);
}

.work-info { position: sticky; top: 6.5rem; }
@media (max-width: 900px) { .work-info { position: static; } }

.crumb { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1.1rem; }
.crumb a:hover { color: var(--brass); }
.work-info h1 { font-size: clamp(2.3rem, 1.6rem + 2.2vw, 3.6rem); margin-bottom: 1.9rem; }

.specs { margin: 0 0 1.9rem; border-top: 1px solid var(--line); }
.specs > div {
  display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--line);
}
.specs dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); padding-top: 0.35rem; }
.specs dd { margin: 0; }

.description { color: var(--text-2); }
.description p:last-child { margin-bottom: 0; }

.note {
  font-family: var(--serif); font-size: 1.22rem; line-height: 1.55;
  color: var(--text-2); border-left: 2px solid var(--brass);
  padding-left: 1.25rem; margin-bottom: 1.75rem;
}
.price { font-family: var(--serif); font-size: 2.4rem; color: var(--brass-2); margin: 1.75rem 0 1.4rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--brass); color: var(--ground);
  padding: 1rem 2.3rem;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--brass); cursor: pointer;
  transition: background 0.28s, color 0.28s, box-shadow 0.28s;
}
.btn:hover {
  background: transparent; color: var(--brass-2);
  box-shadow: 0 0 30px -8px rgba(200,155,90,0.55);
}
.btn.ghost { background: transparent; color: var(--brass); }
.btn.ghost:hover { background: var(--brass); color: var(--ground); }
.hero-txt .btn { margin-top: 1rem; }

/* ---------- studio ---------- */

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.studio-grid figure {
  margin: 0; aspect-ratio: 3 / 2; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
}
.studio-grid img { width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02); transition: transform 0.7s cubic-bezier(0.2,0.6,0.2,1); }
.studio-grid figure:hover img { transform: scale(1.05); }

/* ---------- inline signup ---------- */

.inline-form { display: flex; flex-wrap: wrap; gap: 0.85rem;
  justify-content: center; margin-top: 2rem; }
.inline-form input {
  font: inherit; font-size: 1rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 0.95rem 1.15rem; min-width: min(100%, 21rem); text-align: center;
}
.inline-form input::placeholder { color: var(--text-3); }
.inline-form input:focus { outline: none; border-color: var(--brass); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- about ---------- */

.about {
  display: grid; grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.about-img {
  position: relative;
  padding: 0.7rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 55%), var(--mat);
  border: 1px solid var(--brass);
  box-shadow: 0 18px 44px -22px rgba(0,0,0,0.85);
  max-width: 15rem;
}
.about-img::after {
  content: "";
  position: absolute; inset: 0.35rem;
  border: 1px solid var(--line);
  pointer-events: none;
}
.about-img img { display: block; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-img { max-width: 12rem; }
}
.about-txt h1 { margin-bottom: 1.75rem; }
.about-txt p { color: var(--text-2); }
.about-txt blockquote {
  margin: 2.25rem 0 0; padding-left: 1.75rem; border-left: 2px solid var(--brass);
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.48; font-style: italic;
  color: var(--text);
}

.cv { max-width: 940px; }
.cv h2 { margin-bottom: 2.25rem; }
.cv-block { margin-bottom: 2.5rem; }
.cv-block h3 {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 0.9rem;
}
.cv-block ul { margin: 0; padding: 0; list-style: none; }
.cv-block li { padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft); color: var(--text-2); }

/* ---------- form ---------- */

.form { max-width: 660px; display: grid; gap: 1.5rem; }
.form label {
  display: grid; gap: 0.55rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3);
}
.form input, .form textarea, .form select {
  font: inherit; font-size: 1rem; text-transform: none; letter-spacing: normal;
  color: var(--text); background: var(--surface-2);
  border: 1px solid var(--line); padding: 0.85rem 1rem; border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--brass);
}
.form textarea { resize: vertical; }
.form .btn { justify-self: start; }

/* ---------- lightbox ---------- */

.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,5,8,0.97);
  display: grid; place-items: center; padding: 2vmin;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; cursor: zoom-out;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb img { max-width: 100%; max-height: 96vh; width: auto; height: auto; object-fit: contain;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,0.9); }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: 0; color: var(--text); font-size: 2.2rem; line-height: 1;
  cursor: pointer; opacity: 0.7;
}
.lb-close:hover { opacity: 1; color: var(--brass); }

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 2.5rem;
  background: var(--surface);
}
.foot-in { max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.foot-name { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 0.25rem; }
.foot-nav { display: grid; gap: 0.65rem; }
.foot-nav a { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-2); }
.foot-nav a:hover { color: var(--brass); }
.copy { max-width: var(--max); margin: 3.25rem auto 0; font-size: 0.74rem; color: var(--text-3); }

/* ---------- mobile nav ---------- */

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0; z-index: 60;
    flex-direction: column; justify-content: center; gap: 2.25rem;
    background: var(--ground);
    transform: translateY(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.05rem; }
  .nav-toggle { display: grid; gap: 6px; z-index: 70;
    background: none; border: 0; cursor: pointer; padding: 0.5rem; }
  .nav-toggle span { display: block; width: 26px; height: 1px; background: var(--text);
    transition: transform 0.3s, opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- projects ---------- */

.project-hero .hero-img { height: min(70vh, 640px); }
.eyebrow + h1 { margin-top: 0.25rem; }

.not-for-sale {
  margin-top: 2rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3);
  display: inline-block;
}

.prints {
  margin-bottom: 1.5rem; padding-left: 1.25rem;
  border-left: 2px solid var(--ember);
  font-size: 0.95rem; color: var(--text-2);
}

/* the full deck — small, dense, uncropped */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(44vw, 9.5rem), 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.4rem);
}
.card-tile { margin: 0; }
.card-tile img {
  width: 100%; height: auto;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px -6px rgba(0,0,0,0.7);
  transition: transform 0.4s cubic-bezier(0.2,0.6,0.2,1), box-shadow 0.4s;
}
.card-tile:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px -14px rgba(200,155,90,0.45);
}

/* ---------- print editions ---------- */

.prints-block {
  margin: 2.25rem 0;
  padding: 1.5rem 1.6rem 1.75rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--ember);
  background: var(--surface-2);
}
.prints-block h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.prints-block .muted { font-size: 0.92rem; }
.prints-block .specs { margin: 1.1rem 0 0.5rem; border-top-color: var(--line-soft); }
.prints-block .specs > div { grid-template-columns: 6.5rem 1fr; border-bottom-color: var(--line-soft); }
.prints-block .price { font-size: 1.9rem; margin: 1.1rem 0 1.1rem; }

/* ---------- per-work gallery ---------- */

.studio-grid figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--text-3);
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.studio-grid figure:has(figcaption) { aspect-ratio: auto; display: flex; flex-direction: column; }
.studio-grid figure:has(figcaption) picture { flex: 1; min-height: 0; }
.studio-grid figure:has(figcaption) img { aspect-ratio: 3 / 2; }

.price-ask { font-size: 1.6rem; color: var(--text-2); }

/* ---------- direct contact ---------- */

.direct {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.9rem);
  margin-bottom: 2.5rem;
  color: var(--text-2);
}
.direct a { color: var(--brass-2); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.direct a:hover { border-bottom-color: var(--brass); }

.foot-mail { margin-top: 0.6rem; }
.foot-mail a {
  font-size: 0.86rem; letter-spacing: 0.04em; color: var(--brass);
}
.foot-mail a:hover { color: var(--brass-2); }

/* ---------- getting back out of a work page ---------- */

.crumb a {
  display: inline-block;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.crumb a:hover { color: var(--brass-2); border-bottom-color: var(--brass); }

.work-back {
  padding: 0 var(--pad) clamp(4rem, 8vw, 7rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.work-back .btn { min-width: min(100%, 22rem); }

/* ---------- 404 ---------- */

.notfound-links {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* ---------- "in creation": the same matted card as everywhere else ---------- */

/* .made is a <button>, so it has to be told to behave like the .card links do */
.card.made {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  width: 100%;
}
.card.made .card-img { display: block; }
.card.made .card-txt { display: block; }
.card.made .h3-like {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.1;
  transition: color 0.25s;
}
.card.made:hover .h3-like { color: var(--brass-2); }
.card.made .card-meta,
.card.made .card-status { display: block; margin-top: 0.4rem; }

/* ---------- lightbox ---------- */

.lb-fig {
  margin: 0;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-height: 94vh;
  cursor: default;
}
.lb-fig img { max-height: 62vh; }

.lb-cap {
  max-width: min(92vw, 44rem);
  text-align: left;
  overflow-y: auto;
}
.lb-story {
  font-size: 1.02rem; line-height: 1.68; color: var(--text);
  margin: 0 0 0.75rem;
}
.lb-shotcap {
  font-size: 0.92rem; line-height: 1.6; color: var(--text-2);
  padding-left: 1rem; border-left: 2px solid var(--brass);
  margin: 0 0 0.6rem;
}
.lb-count {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 1rem;
}
.lb-link {
  display: inline-flex; flex-direction: column; gap: 0.15rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  transition: border-color 0.3s, background 0.3s;
}
.lb-link:hover { border-color: var(--brass); background: var(--mat); }
.lb-work { font-family: var(--serif); font-size: 1.35rem; line-height: 1.2; }
.lb-meta { font-size: 0.8rem; color: var(--text-3); }
.lb-cta {
  margin-top: 0.4rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
}
.lb-link:hover .lb-cta { color: var(--brass-2); }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--text);
  font-size: 3rem; line-height: 1; cursor: pointer;
  opacity: 0.45; padding: 0 1rem; z-index: 2;
  transition: opacity 0.25s;
}
.lb-nav:hover { opacity: 1; color: var(--brass); }
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }

@media (max-width: 700px) {
  .lb-fig { gap: 0.85rem; }
  .lb-fig img { max-height: 44vh; }
  .lb-nav { font-size: 2.2rem; padding: 0 0.4rem; }
  .lb-story { font-size: 0.95rem; }
}

/* ---------- work video ---------- */

.work-video { margin: 0; }
.work-video + .work-video { margin-top: clamp(2rem, 4vw, 3.5rem); }
/* Phone footage is portrait, and a portrait clip stretched to the full band
   width stands three screens tall. Cap the height and let the width follow. */
.work-video video {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  max-height: min(44vh, 23rem);
  height: auto;
  background: var(--mat);
  border: 1px solid var(--line);
}
.work-video figcaption { margin-inline: auto; text-align: left; }
.work-video figcaption {
  padding: 0.85rem 0 0;
  font-size: 0.88rem; line-height: 1.6; color: var(--text-3);
  max-width: 60ch;
}

/* ---------- prints ---------- */

.print-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 800px) { .print-row { grid-template-columns: 1fr; } }

.print-img {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: clamp(0.9rem, 2vw, 1.6rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 45%), var(--mat);
  border: 1px solid var(--line);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.print-img picture {
  position: absolute; inset: clamp(0.9rem, 2vw, 1.6rem);
  display: flex; align-items: center; justify-content: center;
}
.print-img img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 6px 26px -6px rgba(0,0,0,0.75);
}
.print-img:hover { border-color: var(--brass); box-shadow: 0 24px 60px -30px rgba(200,155,90,0.5); }

.print-txt h2 { margin-bottom: 0.45rem; }
.print-txt .prints-block { margin-top: 1.5rem; }

/* ---------- the two doors ---------- */

.fork-band { padding-top: clamp(3rem, 6vw, 5rem); }
.fork {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.door {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.door:hover {
  border-color: var(--brass);
  box-shadow: 0 26px 60px -30px rgba(200,155,90,0.5);
  transform: translateY(-3px);
}
.door-img {
  display: block; position: relative;
  aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--mat);
}
.door-img picture, .door-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.door-txt { display: block; padding: clamp(1.25rem, 2.5vw, 1.9rem); }
.door-eyebrow {
  display: block; font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem;
}
.door-title {
  display: block; font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); line-height: 1.05;
}
.door-desc {
  display: block; margin-top: 0.7rem; color: var(--text-2);
  font-size: 0.97rem; line-height: 1.62;
}
.door-cta {
  display: block; margin-top: 1.1rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass);
}
.door:hover .door-cta { color: var(--brass-2); }

/* ---------- sub-navigation inside a body of work ---------- */

.subnav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem;
  align-items: baseline;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad) clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.subnav a {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); padding-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.subnav a:hover { color: var(--text); }
.subnav a.on { color: var(--brass); border-bottom-color: var(--brass); }
.subnav a span { color: var(--text-3); font-size: 0.7rem; }
.subnav-home { font-weight: 500; color: var(--text-2) !important; }

/* square works get square mats — the frame should match the painting */
.card-square .card-img { aspect-ratio: 1 / 1; }

/* ---------- homepage: a name, then two doors ---------- */

.home-head {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad) clamp(0.5rem, 1.5vw, 1.25rem);
  max-width: var(--max); margin: 0 auto;
  text-align: center;
}
.home-head h1 {
  font-size: clamp(2.6rem, 1.5rem + 4.5vw, 5rem);
  letter-spacing: 0.02em;
}
.home-head .lede { margin: 1rem auto 0; max-width: 44ch; text-align: center; }
.home .fork-band { padding-top: clamp(2rem, 4vw, 3rem); }

/* ---------- the picture element needs a height to size against ----------
   figure was aspect-ratio 3/2 with overflow:hidden, and the img had
   height:100% — but that resolved against <picture>, which had no height, so
   the img laid out at its intrinsic ratio and the bottom was guillotined.
   Every studio thumbnail without a figcaption was cut in half. */
.studio-grid picture { display: block; width: 100%; height: 100%; }

/* ---------- a work's other views: matted, never cropped ----------
   These are paintings, and most of them are square. Cropping them into 3:2
   tiles slices the work, which is the thing this whole site avoids. Same mat
   treatment as the cards. */
/* Small enough to scan in one glance; click any of them to see it properly. */
.views-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}
.views-grid .view {
  display: block; width: 100%; padding: 0;
  background: none; border: 0; cursor: zoom-in;
  transition: transform 0.25s ease;
}
.views-grid .view:hover { transform: translateY(-2px); }
.views-grid .view:hover .shot { border-color: var(--brass); }
.views-grid .view:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.views-grid .shot { transition: border-color 0.25s ease; }
@media (max-width: 640px) {
  /* auto-fill would give one full-width tile per row on a phone, which is the
     opposite of the point — these are meant to be scanned, then tapped. */
  .views-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.views-grid figure { margin: 0; }
.views-grid .shot {
  display: block;          /* it is a span, and an inline box ignores aspect-ratio */
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 45%), var(--mat);
  border: 1px solid var(--line);
}
.views-grid picture {
  position: absolute; inset: clamp(0.7rem, 1.6vw, 1.2rem);
  display: flex; align-items: center; justify-content: center;
}
.views-grid img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 6px 22px -8px rgba(0,0,0,0.7);
}
.views-grid figcaption {
  padding: 0.7rem 0.1rem 0;
  font-size: 0.82rem; line-height: 1.55; color: var(--text-3);
}

/* The stated price band. Quiet — it is a fact about the practice, not a price tag. */
.price-note {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-2);
}
.narrow .price-note { max-width: 46ch; }

/* ---------- the mail-app fallback under a form ---------- */
.form-note { display: none; }
.form-note.open {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.form-note p { margin: 0 0 0.5rem; }
.form-note .small { color: var(--text-3); font-size: 0.86rem; line-height: 1.6; }
.form-copy {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.7rem 0.8rem;
  font: inherit; font-size: 0.86rem; line-height: 1.55;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--line);
  resize: vertical;
}

/* ---------- the release block on the home page ---------- */
.drop-facts {
  margin: 2rem auto 1.75rem;
  max-width: 46rem;
  text-align: left;
  display: grid; gap: 1rem;
}
.drop-facts > div {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 0.4rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.drop-facts dt {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); padding-top: 0.35em;
}
.drop-facts dd { margin: 0; color: var(--text-2); }
.drop-ask { color: var(--text); }
@media (max-width: 620px) {
  .drop-facts > div { grid-template-columns: 1fr; }
}

/* ---------- per-painting waitlist ---------- */
.waitlist {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
  max-width: none;
}
.waitlist > .prose { max-width: 56ch; margin-inline: auto; text-align: center; }
.waitlist h2 { margin-bottom: 1.1rem; }
.waitlist .inline-form { justify-content: center; }

/* ---------- next to drop ----------
   One painting, and how close it is. The gauge is the point: something to come
   back and check, rather than a date that does not exist yet. */

.next-drop {
  max-width: none;
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(200,155,90,0.10) 0%, transparent 60%),
    var(--surface);
  border-block: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.nd-head { max-width: var(--max); margin: 0 auto clamp(2rem, 4vw, 3rem); }
.nd-head h2 { margin-bottom: 0.4rem; }
.nd-meta { color: var(--text-3); font-size: 0.9rem; margin: 0; }

.nd-body {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 900px) { .nd-body { grid-template-columns: 1fr; } }

.nd-img {
  display: block; position: relative;
  aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 45%), var(--mat);
  border: 1px solid var(--line);
}
.nd-img picture {
  position: absolute; inset: clamp(1rem, 2.4vw, 2rem);
  display: flex; align-items: center; justify-content: center;
}
.nd-img img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8);
  transition: transform 0.6s ease;
}
.nd-img:hover img { transform: scale(1.02); }

.nd-stage { font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem); margin-bottom: 0.35rem; }
.nd-stage strong { color: var(--brass-2); font-weight: 400; }
.nd-said { color: var(--text-2); margin-bottom: 2rem; }

/* the gauge */
.gauge {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  position: relative;
}
.gauge::before, .gauge::after {
  content: ""; position: absolute; left: 0; top: 7px; height: 2px;
}
.gauge::before { width: 100%; background: var(--line); }
.gauge::after {
  width: var(--pct, 0%); background: linear-gradient(90deg, var(--brass), var(--brass-2));
  box-shadow: 0 0 14px rgba(200,155,90,0.55);
  transition: width 0.8s ease;
}
.gauge li { position: relative; text-align: center; padding-top: 0; }
.gauge .pip {
  display: block; width: 16px; height: 16px; margin: 0 auto 0.7rem;
  border-radius: 50%; background: var(--ground);
  border: 2px solid var(--line); position: relative; z-index: 1;
}
.gauge .past .pip { background: var(--brass); border-color: var(--brass); }
.gauge .now .pip {
  background: var(--brass-2); border-color: var(--brass-2);
  box-shadow: 0 0 0 5px rgba(200,155,90,0.22);
  animation: nd-pulse 2.4s ease-in-out infinite;
}
@keyframes nd-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(200,155,90,0.22); }
  50%      { box-shadow: 0 0 0 10px rgba(200,155,90,0.06); }
}
@media (prefers-reduced-motion: reduce) { .gauge .now .pip { animation: none; } }
.gauge .tag {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); line-height: 1.35; display: block;
}
.gauge .past .tag { color: var(--text-2); }
.gauge .now .tag { color: var(--brass-2); }
@media (max-width: 620px) {
  .gauge .tag { font-size: 0.56rem; letter-spacing: 0.08em; }
  .gauge .pip { width: 13px; height: 13px; }
  .gauge::before, .gauge::after { top: 5.5px; }
}

.nd-note { color: var(--text-3); font-size: 0.88rem; margin-bottom: 1.5rem; }
.nd-fine { color: var(--text-3); font-size: 0.8rem; margin: 0.9rem 0 0; }
.nd-layer { color: var(--text-2); font-size: 0.72em; letter-spacing: 0.04em; }

/* ---------- the painting, moving, behind its own announcement ----------
   Small file, muted, looping. Held well back so it is texture, never
   competition — the block still has to read as words on a dark ground. */
.next-drop.has-bg { position: relative; isolation: isolate; overflow: hidden; }
.nd-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.95);
  pointer-events: none;
}
.next-drop.has-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, var(--surface) 0%, rgba(20,18,25,0.80) 45%, rgba(20,18,25,0.56) 100%),
    linear-gradient(180deg, var(--ground) 0%, transparent 26%, transparent 74%, var(--ground) 100%);
}
@media (max-width: 900px) {
  /* on a phone the text sits over the middle of the frame, so darken it more */
  .next-drop.has-bg::before {
    background:
      linear-gradient(180deg, var(--ground) 0%, rgba(20,18,25,0.84) 18%, rgba(20,18,25,0.87) 82%, var(--ground) 100%);
  }
}
@media (prefers-reduced-motion: reduce) { .nd-bg { display: none; } }
