/* Apple-like restraint + a measurable Müller grid. No artwork crop or tint. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 1rem/var(--leading) var(--font-body); }
a { color: inherit; text-underline-offset: 5px; }
button { font: inherit; color: inherit; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
button, .control { min-width: 44px; min-height: 44px; }
.control { display: inline-flex; align-items: center; padding-block: 8px; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
[hidden] { display: none !important; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--margin); }
.grid { position: relative; display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: var(--gutter); }
.grid > * { min-width: 0; }
.band { grid-column: 1 / -1; }
.skip { position: absolute; inset-inline-start: 16px; top: -100px; padding: 16px; background: var(--paper); z-index: 5; }
.skip:focus { top: 8px; }
header { padding-block: 16px; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 24px; }
nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
nav a { text-decoration: none; transition: color var(--motion-fast) ease-out; }
.locale-nav { gap: 8px; }
.locale-nav a { justify-content: center; padding: 8px; }
.locale-nav [aria-current] { text-decoration: underline; text-decoration-thickness: 2px; }
section { padding-block: 48px; scroll-margin-top: 24px; }
.hero-copy, .portrait { grid-column: 1 / -1; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0 0 24px; overflow-wrap: anywhere; }
h1 { font-size: 2.5rem; line-height: 3rem; letter-spacing: -.035em; }
h2 { font-size: 2rem; line-height: 2.5rem; letter-spacing: -.025em; }
h3 { font-size: 1.125rem; line-height: 1.5rem; margin-bottom: 8px; }
p, figure { margin: 0 0 24px; }
.eyebrow { margin-bottom: 24px; color: var(--muted); font-size: .875rem; line-height: 1.5rem; }
.intro { max-width: 54ch; font-size: 1.125rem; line-height: 2rem; }
.meta, figcaption { color: var(--muted); font-size: .875rem; line-height: 1.5rem; }
.placeholder { background: var(--support); padding: 24px; color: var(--muted); text-align: left; }
.placeholder p { margin: 8px 0; }
.portrait { display: flex; align-items: start; margin-bottom: 0; }
.portrait img { width: 100%; height: auto; display: block; }
.video-slot { width: 100%; min-width: 0; min-height: 192px; aspect-ratio: 16/9; display: flex; flex-direction: column; justify-content: end; }
.section-heading { border-top: 1px solid var(--line); padding-top: 24px; }
.section-title, .section-content { grid-column: 1 / -1; }
.bio > p { max-width: 64ch; }
.gallery { list-style: none; margin: 0; padding: 0; row-gap: 40px; }
.project { grid-column: span 4; align-self: start; }
.project a { display: block; text-decoration: none; }
.project img { display: block; width: 100%; height: auto; object-fit: contain; }
.project .caption { margin-top: 16px; }
.project a:hover h3 { text-decoration: underline; text-underline-offset: 5px; }
.project p { margin-bottom: 8px; }
.project figure { margin: 0; }
.project-number { display: inline-block; margin-top: 8px; }
footer { padding-block: 32px; border-top: 1px solid var(--line); }
footer a { overflow-wrap: anywhere; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 32px; }
.guides { display: none; position: absolute; inset: 0; grid-template-columns: repeat(var(--cols),minmax(0,1fr)); gap: var(--gutter); pointer-events: none; z-index: 3; background: repeating-linear-gradient(to bottom, transparent 0 7px, #17171712 7px 8px); }
.guides i { background: #17171708; border-inline: 1px solid #17171720; }
.grid-on .guides { display: grid; }
.work-heading { padding-top: 48px; }
.work-images { grid-column: 1 / -1; }
.work-images img { width: 100%; height: auto; display: block; }
.work-images figcaption { padding-top: 8px; }
.work-info { grid-column: 1 / -1; }
dl { margin: 0; }
dt { color: var(--muted); font-size: .875rem; }
dd { margin: 0 0 16px; }
@media (min-width: 768px) {
  section { padding-block: 64px; }
  .hero-copy { grid-column: 1 / 6; }
  .portrait { grid-column: 6 / 9; }
  h1 { font-size: 3.5rem; line-height: 4rem; }
  .section-title { grid-column: 1 / 4; }
  .section-content { grid-column: 4 / 9; }
}
@media (min-width: 1024px) {
  section { padding-block: 80px; }
  .hero-copy { grid-column: 1 / 8; }
  .portrait { grid-column: 8 / 13; }
  h1 { font-size: 5rem; line-height: 5.5rem; }
  .section-title { grid-column: 1 / 5; }
  .section-content { grid-column: 5 / 13; }
  .work-images { grid-column: 1 / 9; }
  .work-info { grid-column: 9 / 13; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 767px) { .guides i:nth-child(n+5) { display: none; } }
@media (min-width: 768px) and (max-width: 1023px) { .guides i:nth-child(n+9) { display: none; } }

/* Shared editorial primitives; the paintings remain the source of colour. */
.hero { align-items: start; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 24px; }
.primary { padding: 12px 20px; gap: 24px; border-radius: var(--radius-ui); color: var(--paper); background: var(--ink); text-decoration: none; transition: opacity var(--motion-fast) ease-out; }
.primary:hover { opacity: .86; }
.collection-intro { max-width: 64ch; color: var(--muted); }
.section-heading h2 { margin-bottom: 16px; }
.film-card { grid-column: 1 / -1; min-width: 0; }
.film-card h3 { margin-top: 16px; }
.film-card .meta { margin-top: 8px; max-width: 64ch; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.work-info { align-self: start; }
.work-images figure { margin-bottom: 40px; }
@media (min-width: 768px) { .film-card { grid-column: span 4; } }
@media (min-width: 1024px) { .film-card { grid-column: span 6; } .hero { padding-block: 56px; } }
