/* =====================================================================
   ASKO HEIKURA — shared styles.css
   CINEMATIC-CONTEMPLATIVE PREMIUM — warm near-black + bronze.
   Ground: warm near-black (umber-black). Ink: soft ivory / warm off-white.
   BRONZE (antique) is the candlelight — hairlines, all-small-caps
   labels, link underlines, focus rings, the fleuron, thin UI framing. Used
   sparingly, never neon. His colour paintings glow against the warm dark.
   House serif: Iowan Old Style / Palatino. Old-style numerals.
   Fine-art PREMIUM commerce posture: enquire-to-acquire — no prices, no cart.
   Self-owned: no frameworks, no CDNs, no web fonts, no network. Renders offline.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Ground — warm near-black (umber-black) */
  --ground:           #14110d;
  --ground-2:         #100d0b;   /* deeper — recesses, input wells */
  --ground-3:         #1c1813;   /* lifted — panels, cards, wells, frames */
  --ground-4:         #241f18;   /* hover wells */

  /* Ink — soft ivory / warm off-white */
  --ink:            #ece4d4;
  --ink-dim:        #c3b8a3;
  --ink-mute:       #a89a86;   /* muted warm sand */
  --ink-faint:      #988a73;

  /* Bronze accents — antique, refined (never neon) */
  --bronze:           #9a8870;
  --bronze-light:     #b8a47a;
  --bronze-deep:      #a8863f;

  /* Hairlines on the warm-dark ground */
  --hair:           rgba(236,228,212,0.13);
  --hair-soft:      rgba(236,228,212,0.07);
  --hair-bronze:      rgba(184,164,122,0.40);
  --hair-bronze-soft: rgba(184,164,122,0.22);

  /* Warm paper — long-form reading panel (bio, privacy) only */
  --paper:          #fbf7ec;
  --paper-2:        #f4ecd9;
  --paper-edge:     #e6d8bb;
  --paper-ink:      #221c14;
  --paper-mute:     #5e5340;
  --paper-soft:     #7d6a4c;
  --paper-hair:     #e3d9c2;
  --paper-gold:     #9a8870;

  --serif: "Iowan Old Style", "Palatino", "Palatino Linotype", "Book Antiqua", Georgia, serif;

  /* Rhythm */
  --measure:       72rem;   /* outer max */
  --reading:       40rem;   /* prose measure */
  --gutter:        clamp(1.4rem, 5vw, 4rem);
  --space-section:    clamp(2.4rem, 6vh, 4rem);
  --space-section-lg: clamp(3rem, 8vh, 6rem);

  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "onum", "dlig";
  font-variant-numeric: oldstyle-nums;
  min-height: 100vh;
  /* a faint warm dusk on the wall — depth, never glow-as-gimmick */
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(36,31,24,0.55) 0%, rgba(20,17,13,0) 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: rgba(184,164,122,0.26); color: var(--ink); }

/* ---------------------------------------------------------------------
   3. ACCESSIBILITY PRIMITIVES
   --------------------------------------------------------------------- */
.skip {
  position: absolute;
  left: 0; top: 0;
  transform: translateY(-130%);
  background: var(--ink);
  color: var(--ground);
  padding: 0.7em 1.1em;
  z-index: 100;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  border-radius: 0 0 3px 0;
  transition: transform 0.18s var(--ease);
}
.skip:focus { transform: translateY(0); outline: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 3px;
  border-radius: 1px;
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------
   4. SHARED LABEL (all-small-caps, wide tracking, gold) + fleuron
   --------------------------------------------------------------------- */
.label {
  display: inline-block;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  color: var(--bronze);
  font-weight: 400;
}

.fleuron {
  color: var(--bronze);
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* ---------------------------------------------------------------------
   5. LAYOUT — main flow gets a centered measure + gutters by default
   --------------------------------------------------------------------- */
main { display: block; }

main > section,
main > .featured,
main > .featured__caption,
main > .identity,
main > .doorways,
main > .bio,
main > .reading,
main > .cv,
main > .works-grid,
main > .priority-access {
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------------------------------------------------------------------
   6. HEADER / MASTHEAD
   --------------------------------------------------------------------- */
.masthead {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(1.6rem, 3.4vh, 2.6rem) var(--gutter) clamp(1rem, 2vh, 1.4rem);
  position: relative;
  z-index: 20;
}
.masthead__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.wordmark {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark a {
  color: inherit;
  border: 0;
  transition: color 0.2s var(--ease);
}
.wordmark a:hover { color: var(--bronze-light); }

/* primary nav */
.nav {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2.4vw, 2rem);
  flex-wrap: wrap;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: clamp(0.8rem, 1.9vw, 1.55rem);
  flex-wrap: wrap;
}
.nav__list a {
  color: var(--ink-mute);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  font-size: 0.92rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__list a:hover,
.nav__list a:focus-visible { color: var(--ink); }
.nav__list a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--hair-bronze);
}

/* mobile nav toggle — hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6em;
  background: none;
  border: 1px solid var(--hair);
  color: var(--ink-dim);
  font-family: var(--serif);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  padding: 0.45em 0.85em;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-toggle:hover { color: var(--ink); border-color: var(--hair-bronze); }
.nav-toggle__bars {
  position: relative;
  display: inline-block;
  width: 16px; height: 9px;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after  { bottom: 0; }
/* bars cross into an X when the drawer is open */
.nav.is-open .nav-toggle__bars::before { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav-toggle__bars::after  { transform: translateY(-4px) rotate(-45deg); }

/* language toggle */
.lang {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.lang [data-lang-opt] {
  color: var(--ink-faint);
  padding: 0 0.18rem;
  transition: color 0.2s var(--ease);
}
.lang a[data-lang-opt]:hover,
.lang a[data-lang-opt]:focus-visible { color: var(--ink); }
.lang [data-lang-opt][aria-current="true"] { color: var(--ink); }
.lang__sep { color: var(--bronze); opacity: 0.6; }

/* the thin rule under the masthead */
.rule {
  height: 1px;
  max-width: var(--measure);
  margin: 0 auto;
  background: var(--hair-soft);
}

/* ---------------------------------------------------------------------
   7. PAGE HERO (interior pages)
   --------------------------------------------------------------------- */
.page-hero {
  padding-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: clamp(1.6rem, 4vh, 3rem);
  max-width: 56rem;
}
.page-hero__kicker { margin: 0 0 1.4rem; }
.page-title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.page-intro {
  margin: clamp(1.2rem, 3vh, 1.9rem) 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.58;
  color: var(--ink-dim);
  max-width: 44ch;
  text-wrap: pretty;
}

/* ---------------------------------------------------------------------
   8. HOME — full-bleed atmospheric featured plate + identity + doorways
   --------------------------------------------------------------------- */
.home { padding-top: clamp(1.8rem, 4vh, 3rem); }

.home .featured {
  max-width: 100%;
  margin: 0 0 clamp(2.2rem, 5vh, 4rem);
  padding: 0;
}
.home .featured__plate {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--ground-2);
  display: block;
}
.home .featured__plate > img,
.home .featured__plate > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* atmospheric vignette so the work glows out of the deep blue, top + bottom */
.home .featured__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(16,13,11,0.5) 0%, rgba(16,13,11,0) 24%,
      rgba(16,13,11,0) 70%, rgba(16,13,11,0.84) 100%),
    radial-gradient(120% 130% at 50% 45%, rgba(16,13,11,0) 52%, rgba(16,13,11,0.5) 100%);
}
.home .featured__caption {
  max-width: var(--measure);
  margin: 0.9rem auto 0;
  padding: 0 var(--gutter);
  font-style: italic;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: var(--ink-faint);
  text-align: center;
}

/* identity one-liner — quiet, centered, generous space */
.identity {
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.004em;
  color: var(--ink);
  text-align: center;
  max-width: 30ch;
  margin: clamp(1.4rem, 4vh, 2.6rem) auto clamp(2.6rem, 7vh, 4.6rem);
  text-wrap: balance;
}

/* doorways — quiet doors, symmetric */
.doorways {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.4rem);
  padding-top: clamp(1.8rem, 4vh, 2.6rem);
  padding-bottom: clamp(1rem, 3vh, 2rem);
  border-top: 1px solid var(--hair-soft);
  max-width: 58rem;
}
@media (min-width: 760px) {
  .doorways { grid-template-columns: 1fr 1fr; }
  .doorways .door + .door {
    padding-left: clamp(2rem, 4vw, 3.4rem);
    border-left: 1px solid var(--hair-soft);
  }
}
.door p {
  margin: 0 0 1rem;
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 38ch;
}
.door a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  color: var(--ink);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  font-size: 0.98rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hair-bronze);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.door a:hover,
.door a:focus-visible { border-bottom-color: var(--bronze); color: var(--ink); }

/* ---------------------------------------------------------------------
   9. INTERIOR FEATURED IMAGE — gold-framed plate glowing out of the blue
   --------------------------------------------------------------------- */
.featured {
  margin: clamp(1.6rem, 4vh, 2.8rem) auto clamp(0.6rem, 2vh, 1rem);
}
.featured__plate {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ground-3);
  /* a thin gold frame, candlelit, with depth beneath */
  box-shadow:
    0 0 0 1px var(--hair-bronze-soft) inset,
    0 30px 80px -54px rgba(0,0,0,0.92);
  display: block;
}
.featured__plate > img,
.featured__plate > svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.featured__plate::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 130% at 50% 44%, rgba(16,13,11,0) 54%, rgba(16,13,11,0.46) 100%);
}
.featured__caption {
  font-style: italic;
  font-size: 0.86rem;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0.85rem auto 0;
  max-width: 48ch;
}

/* the bare .featured div (role=img, no inner plate) */
.featured[role="img"] {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 50% 40%, var(--ground-4) 0%, var(--ground-3) 40%, var(--ground-2) 100%);
  box-shadow:
    0 0 0 1px var(--hair-bronze-soft) inset,
    0 30px 80px -54px rgba(0,0,0,0.92);
}

/* portrait variant (About) — don't force-crop a portrait into landscape */
.featured--portrait .featured__plate {
  aspect-ratio: 4 / 5;
  max-width: 30rem;
  margin-inline: auto;
}

/* ---------------------------------------------------------------------
   9b. FULL-BLEED IMAGE SECTION — an interlude that breaks the measure
   --------------------------------------------------------------------- */
.plate-bleed {
  position: relative;
  width: 100%;
  margin: clamp(2.4rem, 6vh, 4.4rem) 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--ground-2);
}
.plate-bleed > img,
.plate-bleed > svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.plate-bleed::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(16,13,11,0.46) 0%, rgba(16,13,11,0) 26%,
      rgba(16,13,11,0) 68%, rgba(16,13,11,0.82) 100%),
    radial-gradient(120% 130% at 50% 46%, rgba(16,13,11,0) 54%, rgba(16,13,11,0.46) 100%);
}
@media (max-width: 460px) {
  .plate-bleed { aspect-ratio: 4 / 5; }
}

/* ---------------------------------------------------------------------
   10. PROSE / READING + warm-paper reading panel (bio, privacy)
   --------------------------------------------------------------------- */
.prose {
  max-width: var(--measure);
  margin: var(--space-section) auto 0;
  padding: 0 var(--gutter);
}
.prose > .label { margin-bottom: 1.1rem; }
.prose h2 {
  margin: 0 0 1rem;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.006em;
  color: var(--ink);
}
.prose h3 {
  margin: 1.8rem 0 0.6rem;
  font-weight: 400;
  font-size: 1.16rem;
  color: var(--ink);
}
.prose p {
  max-width: var(--reading);
  margin: 0 0 1.1rem;
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.72;
}
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--hair-bronze);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.prose a:hover,
.prose a:focus-visible { border-bottom-color: var(--bronze); }

/* Bio reads in a warm paper panel — the warm reading surface */
.bio {
  max-width: 50rem;
  margin: var(--space-section) auto 0;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: 3px;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.8rem, 5vw, 3.4rem);
  box-shadow:
    0 0 0 1px var(--paper-edge) inset,
    0 40px 90px -56px rgba(0,0,0,0.9);
}
.bio p {
  max-width: 40rem;
  margin: 0 0 1.15rem;
  color: var(--paper-ink);
  font-size: 1.1rem;
  line-height: 1.7;
}
.bio p:last-child { margin-bottom: 0; }
.bio a {
  color: var(--paper-ink);
  border-bottom: 1px solid var(--paper-gold);
}
.bio a:hover { border-bottom-color: var(--bronze-deep); }
.bio .label { color: var(--paper-gold); }

/* a warm-paper variant for long privacy / prose pages */
.reading {
  max-width: 50rem;
  margin: var(--space-section) auto 0;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: 3px;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.8rem, 5vw, 3.4rem);
  box-shadow:
    0 0 0 1px var(--paper-edge) inset,
    0 40px 90px -56px rgba(0,0,0,0.9);
}
.reading h2 {
  margin: 1.9rem 0 0.7rem;
  font-weight: 400;
  font-size: 1.32rem;
  letter-spacing: -0.004em;
  color: var(--paper-ink);
}
.reading h2:first-child { margin-top: 0; }
.reading h3 {
  margin: 1.4rem 0 0.5rem;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--paper-ink);
}
.reading p,
.reading li {
  max-width: 42rem;
  color: var(--paper-ink);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.reading p { margin: 0 0 1.05rem; }
.reading ul { margin: 0 0 1.05rem; padding-left: 1.2rem; }
.reading li { margin: 0 0 0.4rem; }
.reading p:last-child { margin-bottom: 0; }
.reading a {
  color: var(--paper-ink);
  border-bottom: 1px solid var(--paper-gold);
  padding-bottom: 1px;
}
.reading a:hover { border-bottom-color: var(--bronze-deep); }
.reading .label { color: var(--paper-gold); margin-bottom: 0.9rem; }
.reading .muted { color: var(--paper-soft); font-size: 0.92rem; }

/* ---------------------------------------------------------------------
   11. HIS WORDS — large cinematic quote interludes
       (blockquote inside .prose, set spacious + confident)
   --------------------------------------------------------------------- */
.prose blockquote {
  margin: 1.6rem 0 0;
  padding: 0;
  border: 0;
  max-width: 34rem;
}
.prose blockquote p {
  max-width: 34rem;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: -0.004em;
  color: var(--ink);
  margin: 0 0 1.3rem;
  text-wrap: pretty;
}
.prose blockquote p:last-child {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--bronze-light);
  font-style: italic;
}

/* a centered quote interlude that can sit between full-bleed sections */
.interlude {
  max-width: 46rem;
  margin: clamp(3rem, 8vh, 6rem) auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.interlude p {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.46;
  letter-spacing: -0.006em;
  color: var(--ink);
  text-wrap: balance;
}
.interlude cite {
  display: block;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--bronze-light);
}
/* attribution under an interlude quote — reads as an attribution, not body */
.interlude .attribution {
  display: block;
  margin: 1rem 0 0;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--bronze-light);
}
.interlude .fleuron { margin-bottom: 1.4rem; }

/* ---------------------------------------------------------------------
   12. WORKS GRID + work cards (premium, images glowing in gold-edged frames)
   --------------------------------------------------------------------- */
.works-grid {
  list-style: none;
  margin: clamp(2.4rem, 6vh, 4rem) auto clamp(1rem, 3vh, 2rem);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
  gap: clamp(1.8rem, 3.4vw, 3rem) clamp(1.6rem, 3vw, 2.6rem);
}

/* a work is either a <li> (teokset) or a <figure> (bridge images) */
.work { margin: 0; }

.work__button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* the frame the image glows out of */
.work__plate {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background:
    radial-gradient(120% 120% at 50% 38%, var(--ground-4) 0%, var(--ground-3) 46%, var(--ground-2) 100%);
  box-shadow:
    0 0 0 1px var(--hair-soft) inset,
    0 24px 60px -46px rgba(0,0,0,0.9);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.work__plate > img,
.work__plate > svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);   /* subtle zoom on hover */
}
.work__plate::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 130% at 50% 42%, rgba(16,13,11,0) 56%, rgba(16,13,11,0.5) 100%);
}
/* a thin gold frame appears on hover; image lifts and zooms gently */
.work__button:hover .work__plate,
.work__button:focus-visible .work__plate {
  box-shadow:
    0 0 0 1px var(--hair-bronze) inset,
    0 30px 70px -44px rgba(0,0,0,0.95);
  transform: translateY(-3px);
}
.work__button:hover .work__plate > img,
.work__button:hover .work__plate > svg,
.work__button:focus-visible .work__plate > img,
.work__button:focus-visible .work__plate > svg {
  transform: scale(1.045);
}

.work__meta {
  display: block;
  margin-top: 1rem;
}
.work__title {
  display: block;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: 0.002em;
}
/* EN translation gloss inside a work title, e.g. Keskeneräinen (Unfinished) */
.work__gloss {
  color: var(--ink-faint);
  font-style: italic;
  font-size: 0.92em;
  letter-spacing: 0;
}
.work__line {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 0.18rem;
}
.work__note,
.work__caption {
  display: block;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 0.55rem;
}
.work__caption {
  font-variant-caps: normal;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
}

/* a context line for non-acquirable items (commission / video / group show) */
.work__context {
  display: block;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--hair-soft);
}

/* ---------------------------------------------------------------------
   12b. PER-WORK "ENQUIRE TO ACQUIRE" CTA
        On each acquirable original — a dignified, gold-hairline link.
        + a price-on-request line. NEVER a number, never "buy".
   --------------------------------------------------------------------- */
.work__acquire {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  margin-top: 0.8rem;
  color: var(--ink);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  font-size: 0.9rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hair-bronze);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.work__acquire::after {
  content: "→";
  color: var(--bronze);
  transition: transform 0.25s var(--ease);
}
.work__acquire:hover,
.work__acquire:focus-visible {
  border-bottom-color: var(--bronze);
  color: var(--ink);
}
.work__acquire:hover::after { transform: translateX(3px); }

.work__availability {
  display: block;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--bronze);
  margin-top: 0.7rem;
}

/* ---------------------------------------------------------------------
   13. LIGHTBOX
   --------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8,6,5,0.95);
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.lightbox__plate {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  overflow: hidden;
  border-radius: 2px;
  background:
    radial-gradient(120% 120% at 50% 40%, var(--ground-4) 0%, var(--ground-3) 46%, var(--ground-2) 100%);
  box-shadow:
    0 0 0 1px var(--hair-bronze-soft) inset,
    0 40px 120px -50px rgba(0,0,0,1);
}
.lightbox__plate > img,
.lightbox__plate > svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.lightbox__caption {
  margin: 0;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-dim);
  text-align: center;
  max-width: 50ch;
  line-height: 1.55;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(16,13,11,0.72);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-family: var(--serif);
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--hair-bronze);
  background: rgba(36,31,24,0.92);
}
.lightbox__close { top: -0.4rem; right: -0.4rem; }
.lightbox__nav { top: calc(36vh - 1.3rem); }
.lightbox__nav--prev { left: -0.4rem; }
.lightbox__nav--next { right: -0.4rem; }
@media (max-width: 640px) {
  .lightbox__nav { top: auto; bottom: -3.4rem; }
  .lightbox__nav--prev { left: calc(50% - 3.2rem); }
  .lightbox__nav--next { right: calc(50% - 3.2rem); }
  .lightbox__inner { padding-bottom: 3.4rem; }
}

/* ---------------------------------------------------------------------
   14. CV / SELECTED LINE (demoted, quiet, near bottom of About)
   --------------------------------------------------------------------- */
.cv {
  max-width: 50rem;
  margin: clamp(2.6rem, 6vh, 4.4rem) auto 0;
  padding-top: clamp(1.8rem, 4vh, 2.6rem);
  border-top: 1px solid var(--hair-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.4vh, 2.2rem);
}
.cv__group { margin: 0; }
.cv__heading {
  margin: 0 0 0.5rem;
  color: var(--ink-faint);
  font-weight: 400;
}
.cv__item {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 46rem;
}
.cv__item:last-child { margin-bottom: 0; }
.cv__year {
  display: inline-block;
  min-width: 4.4rem;
  color: var(--ink-faint);
  font-variant-numeric: oldstyle-nums;
  letter-spacing: 0.02em;
}
@media (min-width: 700px) {
  .cv__group {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 0.4rem 1.6rem;
    align-items: baseline;
  }
  .cv__heading { margin-bottom: 0; }
}

/* ---------------------------------------------------------------------
   15. PRESS / TRUST — downloads, quotes, dash lists, trust facts
   --------------------------------------------------------------------- */
.downloads,
.quotes,
.contact-direct,
.facts {
  max-width: var(--measure);
  margin: var(--space-section) auto 0;
  padding: 0 var(--gutter);
}
.downloads > .label,
.quotes > .label,
.contact-direct > .label,
.facts > .label,
.downloads > h2,
.quotes > h2,
.contact-direct > h2,
.facts > h2 {
  margin: 0 0 1.1rem;
}

.dash {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--reading);
}
.dash li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0 0 0.6rem;
  color: var(--ink-dim);
  font-size: 1.02rem;
}
.dash li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
}
.dash a {
  color: var(--ink);
  border-bottom: 1px solid var(--hair-bronze);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.dash a:hover,
.dash a:focus-visible { border-bottom-color: var(--bronze); }

.muted {
  color: var(--ink-faint);
  font-size: 0.94rem;
}

/* Trust signals — understated facts, not boasts. A quiet provenance row. */
.facts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 1.8rem);
  max-width: 54rem;
}
@media (min-width: 720px) {
  .facts__list { grid-template-columns: repeat(3, 1fr); }
}
.facts__item {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hair-bronze-soft);
}
.facts__term {
  display: block;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
  color: var(--bronze);
  margin-bottom: 0.35rem;
}
.facts__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-dim);
}

/* an ordered facts list — an elegant numbered sequence (how acquisition works) */
.facts__list--ordered {
  counter-reset: step;
}
.facts__list--ordered .facts__item {
  counter-increment: step;
}
.facts__list--ordered .facts__term::before {
  content: counter(step) " · ";
  color: var(--bronze);
  font-variant-numeric: oldstyle-nums;
}

/* Cleared quotes — large, calm, gold-edged interludes */
.quote {
  margin: 0 0 clamp(1.8rem, 4vh, 2.6rem);
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1.5rem, 3vw, 2.2rem);
  max-width: 44rem;
  background: var(--ground-3);
  border-left: 2px solid var(--hair-bronze);
  border-radius: 0 2px 2px 0;
}
.quote p {
  margin: 0 0 0.8rem;
  font-size: clamp(1.15rem, 1.9vw, 1.38rem);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}
.quote cite {
  display: block;
  font-style: normal;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
.quote cite i { font-style: italic; font-variant-caps: normal; letter-spacing: 0; }

/* contact-direct block */
.contact-direct .prose { max-width: none; margin: 0; padding: 0; }
.contact-direct .form__legend { margin-bottom: 0.8rem; }
.contact-direct a {
  color: var(--ink);
  border-bottom: 1px solid var(--hair-bronze);
  padding-bottom: 1px;
}
.contact-direct a:hover { border-bottom-color: var(--bronze); }

/* ---------------------------------------------------------------------
   16. FORMS — contact, ACQUIRE (the funnel), newsletter
   --------------------------------------------------------------------- */
.forms {
  max-width: var(--measure);
  margin: var(--space-section) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.4rem);
}
@media (min-width: 820px) {
  .forms:has(.prose) { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

.form { max-width: 34rem; }
.form__legend { margin: 0 0 1.3rem; }

.field {
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.field label .req {
  color: var(--bronze);
  margin-left: 0.2em;
  font-variant-caps: normal;
}
.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--ground-2);
  border: 1px solid var(--hair);
  border-radius: 2px;
  padding: 0.7em 0.8em;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 9rem; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); opacity: 1; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--hair-bronze); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--ground-3);
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bronze) 50%),
    linear-gradient(135deg, var(--bronze) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) 1.15rem,
    calc(100% - 0.75rem) 1.15rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

/* a two-up row inside a form (first/last name, city/country) */
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.2rem;
}
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* GDPR consent — checkbox + privacy link */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin: 0.4rem 0 1.4rem;
  max-width: 36rem;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  border: 1px solid var(--hair-bronze);
  border-radius: 2px;
  background: var(--ground-2);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.consent input[type="checkbox"]:hover { border-color: var(--bronze); }
.consent input[type="checkbox"]:checked {
  background: var(--bronze);
  border-color: var(--bronze);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 0.32rem;
  height: 0.62rem;
  margin: 0.04rem auto 0;
  border: solid var(--ground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.consent label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-mute);
  letter-spacing: 0;
  font-variant-caps: normal;
}
.consent a {
  color: var(--ink);
  border-bottom: 1px solid var(--hair-bronze);
  padding-bottom: 1px;
}
.consent a:hover { border-bottom-color: var(--bronze); }
/* consent must span the full width beneath the 2-col signup/newsletter fields */
.signup__row .consent,
.newsletter__row .consent { grid-column: 1 / -1; }

.submit {
  font-family: var(--serif);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.14em;
  font-size: 0.96rem;
  color: var(--ink);
  background: none;
  border: 1px solid var(--hair-bronze);
  border-radius: 2px;
  padding: 0.7em 1.6em;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.submit:hover,
.submit:focus-visible {
  border-color: var(--bronze);
  background: var(--ground-3);
  color: var(--ink);
}

/* the prose column beside a form */
.forms .prose { margin: 0; padding: 0; max-width: 28rem; }
.forms .prose p { color: var(--ink-dim); }
.forms .prose .label { color: var(--bronze); }

/* ---------------------------------------------------------------------
   16b. ACQUIRE — the heart of the funnel
        A gold-framed enquiry well + an understated price-on-request note.
   --------------------------------------------------------------------- */
.acquire {
  max-width: var(--measure);
  margin: var(--space-section) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 3.6rem);
}
@media (min-width: 880px) {
  .acquire { grid-template-columns: 1fr 1.25fr; align-items: start; }
}

/* left column: provenance + price-on-request, understated */
.acquire__terms { max-width: 30rem; }
.acquire__terms .label { margin-bottom: 1rem; }
.acquire__terms p {
  margin: 0 0 1.05rem;
  color: var(--ink-dim);
  font-size: 1.0625rem;
  line-height: 1.66;
}
.acquire__provenance {
  margin: 1.2rem 0 1.4rem;
}
/* the provenance list keeps the bordered .facts__item treatment only —
   single clean column in the narrow left rail, tightened in-column gaps */
.acquire__provenance .facts__list {
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: none;
}
.acquire__provenance .facts__item {
  padding-top: 0.8rem;
}
/* price-on-request — stated as a quiet fact, gold, never a number */
.acquire__price {
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hair-bronze-soft);
}
.acquire__price .label { color: var(--bronze); display: block; margin-bottom: 0.3rem; }
.acquire__price p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 1.02rem;
}

/* right column: the enquiry form in a gold-hairline well */
.acquire__form {
  background: var(--ground-3);
  border: 1px solid var(--hair-bronze-soft);
  border-radius: 3px;
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 40px 90px -60px rgba(0,0,0,0.92);
  scroll-margin-top: 2rem;   /* for the #form anchor jump */
}
.acquire__form .form { max-width: none; }
.acquire__form .field input,
.acquire__form .field select,
.acquire__form .field textarea { background: var(--ground-2); }
.acquire__form .field input:focus,
.acquire__form .field select:focus,
.acquire__form .field textarea:focus { background: var(--ground); }

/* response promise — quiet line under the submit */
.form__note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-faint);
  max-width: 36rem;
}

/* a considered anchored "Enquire" affordance for the Acquire page on mobile */
.acquire-jump { display: none; }
@media (max-width: 879px) {
  .acquire-jump {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: block;
    margin: clamp(2rem, 5vh, 3rem) calc(-1 * var(--gutter)) 0;
    padding: 0.85rem var(--gutter);
    background: linear-gradient(to top, var(--ground-2) 70%, rgba(16,13,11,0));
    text-align: center;
  }
  .acquire-jump a {
    display: inline-block;
    font-variant-caps: all-small-caps;
    letter-spacing: 0.14em;
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--ground-3);
    border: 1px solid var(--hair-bronze);
    border-radius: 2px;
    padding: 0.6em 1.5em;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  }
  .acquire-jump a:hover,
  .acquire-jump a:focus-visible {
    border-color: var(--bronze);
    background: var(--ground-4);
  }
}

/* ---------------------------------------------------------------------
   16c. NEWSLETTER / PRIORITY ACCESS
        Section form on Home + Acquire (.signup), and the site-wide
        footer capture (.newsletter, styled in the footer block below).
        Quiet, collector-grade. Email + consent + privacy link.
   --------------------------------------------------------------------- */
.signup {
  max-width: var(--measure);
  margin: clamp(2.6rem, 6vh, 4.4rem) auto 0;
  padding: clamp(2rem, 4vw, 2.8rem) var(--gutter);
}
.signup__inner {
  max-width: 46rem;
  margin: 0 auto;
  padding-top: clamp(1.8rem, 4vh, 2.6rem);
  border-top: 1px solid var(--hair-bronze-soft);
}
.signup .label { margin-bottom: 0.8rem; }
.signup p {
  margin: 0 0 1.3rem;
  color: var(--ink-dim);
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 42ch;
}
.signup__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 34rem;
}
@media (min-width: 560px) {
  .signup__row { grid-template-columns: 1fr auto; align-items: start; }
}
.signup__row .field { margin: 0; }
.signup__row .submit { white-space: nowrap; }
.signup .consent { margin: 1rem 0 0; }

/* ---------------------------------------------------------------------
   17. FOOTER / COLOPHON — now carries the quiet newsletter capture
        Structure: .colophon > .colophon__top (intro + newsletter)
                            > .colophon__bottom (sig + links)
   --------------------------------------------------------------------- */
.colophon {
  max-width: var(--measure);
  margin: clamp(4rem, 9vh, 7rem) auto 0;
  padding: clamp(2.4rem, 5vh, 3.4rem) var(--gutter) clamp(2.6rem, 5vh, 3.6rem);
  border-top: 1px solid var(--hair-soft);
}

.colophon__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
@media (min-width: 760px) {
  .colophon__top { grid-template-columns: minmax(14rem, 1fr) 1.6fr; }
}
.colophon__intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.colophon__name {
  color: var(--ink);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.colophon__place {
  color: var(--ink-faint);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  font-size: 0.92rem;
}

/* newsletter capture in the footer */
.newsletter { max-width: 36rem; }
.newsletter__legend { margin: 0 0 0.5rem; }
.newsletter__lede {
  margin: 0 0 1.1rem;
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.58;
  max-width: 42ch;
}
.newsletter__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 32rem;
}
@media (min-width: 560px) {
  .newsletter__row { grid-template-columns: 1fr auto; align-items: start; }
}
.newsletter .field { margin: 0; }
.newsletter .submit { white-space: nowrap; }
.newsletter .consent {
  margin: 0.9rem 0 0;
  max-width: 34rem;
}
.newsletter .consent label { font-size: 0.84rem; color: var(--ink-faint); }

/* the identity / links row */
.colophon__bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem 1.8rem;
  flex-wrap: wrap;
  padding-top: clamp(1.6rem, 4vh, 2.4rem);
  border-top: 1px solid var(--hair-soft);
  font-size: 0.88rem;
}
.colophon__sig {
  color: var(--ink);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.colophon__links {
  display: inline-flex;
  align-items: baseline;
  gap: 1.4rem;
}
.colophon__contact,
.colophon__privacy {
  color: var(--ink-dim);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.13em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.colophon__contact:hover,
.colophon__contact:focus-visible,
.colophon__privacy:hover,
.colophon__privacy:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--hair-bronze);
}

/* ---------------------------------------------------------------------
   18. SCROLL-REVEAL — gentle fade + translate.
        Gated behind .js (set by site.js) so no-JS users see content.
        Sections carry class "reveal"; site.js adds .is-in.
   --------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------------
   19. RESPONSIVE — mobile nav drawer
   --------------------------------------------------------------------- */
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; order: 2; }
  .lang { order: 3; }

  .nav { width: 100%; justify-content: space-between; margin-top: 0.4rem; }

  .nav__list {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.32s var(--ease), opacity 0.24s var(--ease), margin-top 0.24s var(--ease);
  }
  .nav.is-open .nav__list {
    max-height: 30rem;
    opacity: 1;
    margin-top: 1rem;
    border-top: 1px solid var(--hair-soft);
    padding-top: 1rem;
  }
  .nav__list a {
    font-size: 1.08rem;
    letter-spacing: 0.1em;
    padding: 0.45em 0;
  }

  .identity { font-size: 1.42rem; }
  .doorways { padding-bottom: 0.5rem; }
}

@media (max-width: 460px) {
  :root { --gutter: 1.25rem; }
  .page-title { font-size: clamp(2rem, 9vw, 2.5rem); }
  .home .featured__plate { aspect-ratio: 4 / 5; }
}

/* honor reduced motion — disable ALL motion incl reveal, zoom, lift */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .work__button:hover .work__plate,
  .work__button:focus-visible .work__plate { transform: none; }
  .work__button:hover .work__plate > img,
  .work__button:hover .work__plate > svg,
  .work__button:focus-visible .work__plate > img,
  .work__button:focus-visible .work__plate > svg { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   20. PRINT
   --------------------------------------------------------------------- */
@media print {
  body {
    background: #fff;
    color: #000;
    background-image: none;
  }
  .skip,
  .nav-toggle,
  .lang,
  .lightbox,
  .acquire-jump,
  .newsletter,
  .signup,
  .rule { display: none !important; }
  .masthead, .colophon, .colophon__top, .colophon__bottom { border: 0; }
  .bio, .reading, .quote, .acquire__form {
    background: #fff;
    color: #000;
    box-shadow: none;
    border-color: #ccc;
  }
  .featured__plate,
  .work__plate,
  .plate-bleed,
  .featured[role="img"] { box-shadow: none; border: 1px solid #ccc; }
  a { color: #000; }
  .label, .cv__heading, .work__title, .page-title,
  .facts__term, .acquire__price .label { color: #000; }
  .prose p, .cv__item, .dash li, .page-intro, .identity,
  .reading p, .reading li, .facts__desc, .acquire__terms p { color: #111; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}