/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f4;
  --bg-panel: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4640;
  --muted: #8a8275;
  --line: #e6e6e6;
  --accent: #1a1a1a;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1360px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

/* ---------- CTA button ---------- */
/* Pill CTA — reference: the "Start the Quiz" button on /know-yourself */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.35s ease, color 0.35s ease,
    transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  opacity: 1; /* cancel the global a:hover fade */
  background: #000;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(26, 26, 26, 0.6);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.nav-cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Outline / ghost variant — for use on dark or busy backgrounds */
.nav-cta--ghost {
  color: var(--ink);
  background: transparent;
}

.nav-cta--ghost:hover,
.nav-cta--ghost:focus-visible {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  height: clamp(48px, 4.5vw, 64px);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  color: var(--ink);
}

.nav-links a.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.has-dropdown > a .caret {
  font-size: 0.7em;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.has-dropdown:hover > a .caret,
.has-dropdown:focus-within > a .caret {
  transform: translateY(1px) rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 0.5rem 0;
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.18);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-soft);
  white-space: nowrap;
}

.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--ink);
  opacity: 1;
}

/* ---------- Mobile navigation ---------- */
.nav-toggle {
  display: none; /* shown ≤860px via media query */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 70;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 55;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.nav-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__link {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav__link.is-active { color: var(--muted); }

.mobile-nav__group {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__group-label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.mobile-nav__sublinks a {
  display: block;
  padding: 0.5rem 0 0.5rem 0.9rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.mobile-nav__sublinks a:hover { color: var(--ink); opacity: 1; }

.mobile-nav__cta {
  margin-top: auto;
  padding-top: 1.75rem;
}

.mobile-nav__cta .nav-cta {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--ink-soft);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-meta p {
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-coords {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Asymmetric canvas — inspired by Aurel Vance */
.hero-canvas {
  position: relative;
  margin-top: 4rem;
  min-height: 520px;
}

.canvas-piece {
  position: absolute;
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25);
}

.canvas-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piece-1 {
  width: 32%;
  aspect-ratio: 3/4;
  top: 0;
  left: 4%;
}

.piece-2 {
  width: 38%;
  aspect-ratio: 4/5;
  top: 8%;
  right: 6%;
}

.piece-3 {
  width: 26%;
  aspect-ratio: 1/1;
  bottom: -4%;
  left: 38%;
}

.canvas-word {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 5rem);
  color: var(--ink);
  top: 55%;
  left: 2%;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

/* ---------- Section header ---------- */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--ink-soft);
  max-width: 46ch;
  justify-self: end;
}

/* Collection page: title header, then the curatorial essay as its own section */
.collection-intro {
  margin-bottom: 1.75rem;
}

.collection-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 0;
}

.collection-statement {
  color: var(--ink-soft);
  /* max-width: 70ch; */
  margin: 0 0 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.collection-statement > :first-child { margin-top: 0; }
.collection-statement > :last-child { margin-bottom: 0; }

.collection-statement p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.collection-statement h2,
.collection-statement h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 1.75rem 0 0.6rem;
}

.collection-statement blockquote {
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--line);
  font-style: italic;
}

.collection-statement ul,
.collection-statement ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.collection-statement li { margin-bottom: 0.35rem; }

.collection-statement a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Works grid (aligned) ---------- */
.works {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.75rem, 3vw, 3rem) clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
}

.work {
  position: relative;
}

.work figure {
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4/5;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work:hover img {
  transform: scale(1.03);
}

.work figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
}

.work-meta {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Aligned grid — every item uniform, no offsets */
.work.w-a, .work.w-b, .work.w-c,
.work.w-d, .work.w-e, .work.w-f {
  grid-column: auto;
  margin-top: 0;
}

/* ---------- Wide feature ---------- */
.feature {
  background: #111;
  color: #ece7dd;
  padding: 0;
  overflow: hidden;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
}

.feature-text {
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text .eyebrow {
  color: #a8a095;
}

.feature-text h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}

.feature-text p {
  color: #bfb8ab;
  max-width: 44ch;
}

.feature-image {
  background: #000;
  min-height: 420px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ece7dd;
  border-bottom: 1px solid #6b6359;
  padding-bottom: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.feature-link:hover {
  color: #fff;
  border-color: #ece7dd;
  opacity: 1;
}

/* ---------- About page (legacy) ---------- */
.about-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-grid .portrait {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  overflow: hidden;
}

.about-grid .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.about-grid p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 52ch;
}

/* Playful info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}

.info-grid dt {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.info-grid dd {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
}

/* ======================================================
   THE ARTIST PAGE
   ====================================================== */

/* Shared prose */
.artist-prose p {
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  max-width: 62ch;
}

.artist-prose p:last-child {
  margin-bottom: 0;
}

/* Shared section shell */
.artist-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.artist-section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.artist-section-head .eyebrow {
  display: block;
  margin-bottom: 0.9rem;
}

.artist-section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* ---- Who I am (hero) ---- */
.artist-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(1rem, 3vw, 2rem);
}

.artist-intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.artist-portrait {
  margin: 0;
}

.artist-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg-soft);
}

.artist-portrait figcaption {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.artist-intro-text .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.artist-intro-text h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.artist-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

/* ---- The process ---- */
.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.process-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.process-media figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-media__lead {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}

.process-media figure:not(.process-media__lead) {
  aspect-ratio: 1/1;
}

.process-prose {
  padding-top: 0.25rem;
}

/* ---- The intention / statement ---- */
.artist-statement {
  padding: clamp(4rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  text-align: center;
}

.artist-statement .eyebrow {
  display: block;
  margin-bottom: 2rem;
}

.artist-statement blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 46rem;
  margin: 0 auto;
  text-wrap: balance;
}

.artist-statement cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Origin ---- */
.origin-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.origin-media {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  position: sticky;
  top: 6rem;
  max-width: 340px;
  justify-self: end;
}

.origin-media figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.origin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- CV highlights ---- */
.artist-cv__note {
  color: var(--muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  margin: -1.5rem 0 2.5rem;
}

.cv-list {
  border-top: 1px solid var(--line);
}

.cv-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.cv-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.cv-row dd {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
}

.cv-tba {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2.25rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.footer-logo img {
  height: clamp(56px, 6vw, 76px);
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0.25rem 0 0;
}

.footer-contact {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin: 0;
}

.footer-contact .sep { color: var(--muted); margin: 0 0.4rem; }

.footer-contact a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.footer-contact a:hover { border-bottom-color: var(--ink); opacity: 1; }

.footer-social {
  display: flex;
  gap: 1.1rem;
  margin: 0.6rem 0 0.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  opacity: 1;
}

.footer-social svg { width: 16px; height: 16px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--ink); opacity: 1; }

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }

  .hero-canvas { min-height: 420px; }
  .piece-1 { width: 46%; }
  .piece-2 { width: 52%; }
  .piece-3 { width: 40%; left: 28%; }

  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .section-head p { justify-self: start; }
  .collection-statement { justify-self: start; max-width: none; }

  .feature-inner { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }

  .artist-intro { grid-template-columns: 1fr; gap: 2rem; }
  .artist-portrait { max-width: 460px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-media { order: -1; }
  .origin-layout { grid-template-columns: 1fr; }
  .origin-media {
    position: static;
    order: -1;
    max-width: none;
    justify-self: stretch;
    grid-template-columns: 1fr 1fr;
  }
  .origin-media figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .origin-media figure:not(:first-child) { aspect-ratio: 1 / 1; }
  .cv-row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ===== Justified body text across the site ===== */
p {
  text-align: justify;
}

/* Keep deliberately-centered blocks centered — justify would misalign them */
.st-head p,
.st-hero figcaption,
.st-beyond p,
.st-join p,
.st-join .lead,
.st-enquire > p,
.st-path-tagline,
.rc-second-head p,
.rc-ex-detail,
.artist-statement p,
.footer-inner p {
  text-align: center;
}
