:root {
  --ink: #11110f;
  --ink-soft: #2d2c29;
  --muted: #6c6963;
  --muted-light: #8e8a83;
  --line: #e7e5e1;
  --line-strong: #d6d2cc;
  --paper: #ffffff;
  --soft: #f7f7f5;
  --soft-2: #f1f0ed;
  --rust: #b83b22;
  --rust-dark: #8c2b18;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Times, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(22px, 4.4vw, 88px);
  --section-y: clamp(42px, 5.4vw, 92px);
  --grid-gap: clamp(16px, 1.65vw, 32px);
  --shadow: 0 20px 65px rgba(24, 22, 18, .09);
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 15px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { width: 100%; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.027em;
}
::selection { color: #fff; background: var(--rust); }

.skip {
  position: fixed;
  z-index: 200;
  top: -90px;
  left: 18px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
}
.skip:focus { top: 12px; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 3px solid rgba(184, 59, 34, .38); outline-offset: 3px; }

.eyebrow,
.detail-kicker {
  margin: 0 0 11px;
  color: var(--rust);
  font: 700 10px/1.25 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--rust);
  color: #fff;
  background: var(--rust);
  font-size: 12px;
  font-weight: 700;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.button:hover { background: var(--rust-dark); transform: translateY(-2px); }
.button.small { min-height: 40px; padding-inline: 13px; font-size: 11px; }
.arrow,
.section-more {
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
}
.arrow:hover,
.section-more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
}
.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 34px rgba(22, 20, 17, .065);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex: 0 0 auto; flex-direction: column; gap: 2px; }
.brand b { font-size: 21px; line-height: 1; letter-spacing: .018em; }
.brand small {
  color: #56534e;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.site-header nav { display: flex; align-items: center; gap: clamp(17px, 2.15vw, 38px); }
.site-header nav > a {
  position: relative;
  padding: 34px 0 31px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.site-header nav > a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--rust);
  transition: right .22s ease;
}
.site-header nav > a:hover::after,
.site-header nav > a[aria-current="page"]::after { right: 0; }
.menu-button {
  display: none;
  min-width: 48px;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-open {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  font: 26px/1 var(--serif);
}
.search-layer {
  position: fixed;
  z-index: 150;
  inset: 0;
  padding: 16vh var(--gutter) 8vh;
  background: rgba(255, 255, 255, .985);
}
.search-layer form { width: min(100%, 1000px); margin: auto; }
.search-layer h2 { margin-bottom: 32px; font-size: clamp(42px, 6.2vw, 96px); }
.search-layer label { display: block; margin-bottom: 12px; color: var(--muted); }
.search-layer form > div { display: flex; border-bottom: 2px solid var(--ink); }
.search-layer input {
  min-width: 0;
  flex: 1;
  padding: 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: 26px var(--serif);
}
.search-layer form button { border: 0; padding: 0 25px; color: #fff; background: var(--rust); }
.search-results { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; border: 0 !important; }
.search-results > * { grid-column: 1 / -1; }
.search-results a { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); font: 18px/1.25 var(--serif); }
.search-suggestions { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; margin: 20px 0 0; padding: 0; list-style: none; }
.search-suggestions a > span { color: var(--muted); font: 8px/1.8 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.search-suggestions a > strong { font-weight: 400; text-align: right; }
.search-empty { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
html.search-opened { overflow: hidden; }
.search-x {
  position: absolute;
  top: 34px;
  right: var(--gutter);
  border: 0;
  background: none;
  font: 46px/1 var(--serif);
}

/* Home — full-bleed editorial composition */
.home-hero {
  display: grid;
  width: 100%;
  min-height: clamp(570px, 69vh, 820px);
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(54px, 6.3vw, 118px) var(--gutter);
}
.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(51px, 5.15vw, 92px);
  line-height: .96;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 450px;
  margin: 0 0 28px;
  color: #45423d;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}
.home-hero > figure {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--soft-2);
}
.home-hero picture,
.home-hero figure > img { width: 100%; height: 100%; }
.home-hero img { width: 100%; height: 100%; object-fit: cover; }
.home-hero figcaption,
.hub-hero figcaption,
.detail-caption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  width: fit-content;
  max-width: min(520px, calc(100% - 36px));
  padding: 7px 9px;
  color: #4f4c46;
  background: rgba(255, 255, 255, .9);
  font-size: 9px;
  line-height: 1.4;
}
.home-hero figcaption strong,
.home-hero figcaption span { display: block; }
.home-hero figcaption strong { color: var(--ink); font-weight: 700; }
.hero-meta {
  display: grid;
  width: min(100%, 450px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 4vw, 66px);
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.hero-meta > * { margin: 0; padding-right: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.home-search {
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: center;
  gap: var(--grid-gap);
  padding: 23px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.home-search > div:first-child h2 { margin: 0; font-size: clamp(23px, 2vw, 35px); }
.home-search form { display: flex; min-width: 0; border-bottom: 1px solid var(--ink); }
.home-search input {
  min-width: 0;
  flex: 1;
  padding: 12px 0;
  border: 0;
  outline: 0;
  background: transparent;
}
.home-search button { border: 0; padding: 0 5px 0 20px; color: var(--rust); background: transparent; font-weight: 700; }

.editorial-figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--soft-2);
}
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }
.editorial-figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  color: #4f4b45;
  background: rgba(255, 255, 255, .91);
  font-size: 8px;
  line-height: 1.35;
}
.editorial-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 220px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background: linear-gradient(135deg, #f3f2ef, #dfdcd5);
  font: 20px/1.2 var(--serif);
  text-align: center;
}

.block {
  width: 100%;
  margin: 0;
  padding: var(--section-y) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(22px, 2vw, 34px);
}
.section-head h2 { margin: 0; font-size: clamp(30px, 2.75vw, 50px); }
.section-head h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 10px;
  background: var(--rust);
}
.section-more { padding-bottom: 8px; white-space: nowrap; }

/* Reusable cards and catalog grids */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}
.card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .24s ease, box-shadow .24s ease;
}
.card:hover { z-index: 2; transform: translateY(-4px); box-shadow: var(--shadow); }
.card-art {
  position: relative;
  display: block;
  height: clamp(145px, 12.5vw, 230px);
  overflow: hidden;
  background: #d8d4cd;
}
.card-art > img,
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card-art > img,
.card:hover .card-media img { transform: scale(1.025); }
.card-art::before,
.card-art::after,
.card-art i { content: ""; position: absolute; display: block; }
.card-art::before { top: 16%; left: -6%; width: 72%; height: 70%; background: #1b1b19; opacity: .9; transform: rotate(-7deg); }
.card-art::after { top: -12%; right: -17%; width: 48%; height: 128%; background: #a74530; opacity: .76; transform: rotate(21deg); }
.card-art i { right: 10%; bottom: 10%; width: 34%; height: 43%; border: 9px solid rgba(255, 255, 255, .55); border-radius: 50%; }
.card.v1 .card-art { background: #bfbab2; }
.card.v1 .card-art::before { background: #efede8; transform: rotate(7deg); }
.card.v1 .card-art::after { background: #292927; opacity: .73; }
.card.v2 .card-art { background: #dedbd5; }
.card.v2 .card-art::before { background: #8f4938; clip-path: polygon(0 0, 100% 17%, 63% 100%, 9% 77%); }
.card.v2 .card-art::after { right: 6%; width: 22%; background: #151513; }
.card.v3 .card-art { background: #1b1b19; }
.card.v3 .card-art::before { width: 53%; background: #eeece7; transform: rotate(12deg); }
.card.v3 .card-art::after { right: 10%; width: 27%; background: #a83d28; transform: rotate(-12deg); }
.card.v4 .card-art { background: #e9e7e2; }
.card.v4 .card-art::before { left: 24%; width: 51%; border-radius: 50%; background: #696660; }
.card.v4 .card-art::after { top: 28%; right: 39%; width: 22%; height: 45%; border-radius: 50%; background: #fff; }
.card.v5 .card-art { background: #c9c4bb; }
.card.v5 .card-art::before { width: 130%; height: 130%; background: repeating-linear-gradient(45deg, #242422 0 16px, transparent 16px 34px); opacity: .6; }
.card.v5 .card-art::after { right: 18%; width: 7%; background: #a13b28; transform: none; }
.card > div { position: relative; padding: 19px 19px 20px; }
.card h3 { margin: 0 0 9px; font-size: clamp(20px, 1.45vw, 27px); line-height: 1.04; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card small { display: block; margin: -2px 0 8px; color: #514e49; font: italic 13px var(--serif); }
.card > div > p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 16px;
  color: #595650;
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card .arrow { position: relative; z-index: 3; }
.listing .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.listing .card:nth-child(8n + 1) .card-art,
.listing .card:nth-child(8n + 6) .card-art { height: clamp(185px, 15vw, 270px); }
.listing .card:nth-child(8n + 4) .card-art { height: clamp(125px, 10vw, 180px); }

/* Homepage artists */
.artist-showcase,
.artist-feature {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
}
.artist-primary,
.artist-feature > .portrait {
  position: relative;
  grid-column: span 5;
  min-height: clamp(540px, 43vw, 760px);
  overflow: hidden;
  background: #171715;
}
.artist-primary-media { position: absolute; inset: 0; }
.artist-primary-media img,
.artist-primary > img,
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.artist-primary::after,
.portrait::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(8, 8, 7, .92));
}
.artist-primary-copy,
.artist-primary > div,
.portrait > div {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 2.6vw, 46px);
  bottom: clamp(25px, 3vw, 52px);
  left: clamp(24px, 2.6vw, 46px);
  color: #fff;
}
.artist-primary h3,
.portrait h3 { margin: 0 0 13px; font-size: clamp(38px, 3.3vw, 59px); }
.artist-primary p:not(.eyebrow),
.portrait p:not(.eyebrow) { max-width: 430px; margin-bottom: 18px; }
.artist-primary a,
.portrait a { position: relative; z-index: 3; font-size: 11px; font-weight: 700; }
.artist-secondary-grid,
.artist-showcase > .cards,
.artist-feature > .cards {
  display: grid;
  grid-column: span 7;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.artist-mini {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(180px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.artist-mini figure,
.artist-mini > a:first-child { min-height: 180px; overflow: hidden; background: var(--soft-2); }
.artist-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.artist-mini:hover img { transform: scale(1.025); }
.artist-mini > div { padding: clamp(16px, 1.5vw, 25px); }
.artist-mini h3 { margin: 0 0 7px; font-size: clamp(22px, 1.8vw, 31px); }
.artist-mini p:not(.eyebrow) { margin-bottom: 11px; color: var(--muted); font-size: 12px; }
.artist-mini .visual-credit { display: block; margin-top: 8px; color: var(--muted-light); font-size: 8px; line-height: 1.35; }

/* Exact V2 artist markup */
.artists-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
}
.artist-card { position: relative; min-width: 0; overflow: hidden; background: #fff; }
.artist-card-primary {
  grid-column: span 5;
  min-height: clamp(560px, 44vw, 780px);
  color: #fff;
  background: #171715;
}
.artist-card-primary .artist-card-media { position: absolute; inset: 0; }
.artist-card-primary .editorial-figure figcaption { top: 11px; bottom: auto; }
.artist-card-primary::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 27% 0 0;
  background: linear-gradient(transparent, rgba(8, 8, 7, .94));
  pointer-events: none;
}
.artist-card-primary .artist-card-copy {
  position: absolute;
  z-index: 2;
  right: clamp(25px, 2.7vw, 48px);
  bottom: clamp(28px, 3.1vw, 55px);
  left: clamp(25px, 2.7vw, 48px);
}
.artist-card-primary h3 { margin: 0 0 14px; font-size: clamp(40px, 3.5vw, 62px); }
.artist-card-primary .artist-card-copy > p:not(.eyebrow) { max-width: 440px; margin-bottom: 19px; }
.artist-card-primary .arrow { color: #fff; }
.artist-card-grid {
  display: grid;
  grid-column: span 7;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.artist-card-secondary { display: grid; grid-template-rows: minmax(170px, 1fr) auto; border: 1px solid var(--line); }
.artist-card-secondary .artist-card-media { min-height: 170px; overflow: hidden; }
.artist-card-secondary .artist-card-copy { padding: clamp(17px, 1.55vw, 26px); }
.artist-card-secondary h3 { margin: 0 0 8px; font-size: clamp(23px, 1.85vw, 32px); }
.artist-card-secondary .artist-card-copy > p:not(.eyebrow) { margin-bottom: 12px; color: var(--muted); font-size: 12px; }
.artist-card-secondary img { transition: transform .55s ease; }
.artist-card-secondary:hover img { transform: scale(1.025); }

/* Painting / sculpture portals */
.split-portals,
.universe-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.portal {
  display: flex;
  min-height: clamp(360px, 31vw, 550px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(50px, 6vw, 108px) var(--gutter);
  background-position: center;
  background-size: cover;
}
.portal.dark { color: #fff; background-image: linear-gradient(90deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .2)), url('/assets/img/studio.webp'); }
.portal.light { background-image: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .35)), url('/assets/img/museum.webp'); }
.portal span { display: block; margin-bottom: 11px; color: var(--rust); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.portal h2 { max-width: 590px; margin: 0 0 18px; font-size: clamp(39px, 3.6vw, 66px); }
.portal p { max-width: 470px; margin-bottom: 22px; }
.portal b { font-size: 11px; }

/* Explained work */
.work-story,
.work-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(330px, 5fr);
  border: 1px solid var(--line);
  background: #fff;
}
.work-media,
.generated-art {
  position: relative;
  min-height: clamp(390px, 35vw, 620px);
  overflow: hidden;
  background: linear-gradient(111deg, transparent 0 16%, rgba(255, 255, 255, .22) 16% 17%, transparent 17% 60%, rgba(255, 255, 255, .18) 60% 61%, transparent 61%), linear-gradient(15deg, #d5c9b7 0 38%, #171715 38% 68%, #a4402b 68% 79%, #e5ddd1 79%);
}
.work-media img { width: 100%; height: 100%; object-fit: cover; }
.work-media figcaption { position: absolute; right: 12px; bottom: 10px; left: 12px; width: fit-content; padding: 6px 8px; background: rgba(255, 255, 255, .9); font-size: 8px; }
.work-copy,
.work-feature > div:last-child { display: flex; justify-content: center; flex-direction: column; padding: clamp(34px, 4.6vw, 80px); }
.work-copy h2,
.work-feature h2 { margin-bottom: 9px; font-size: clamp(37px, 3.8vw, 68px); }
.work-copy .by,
.work-feature .by { color: #56524c; font: italic 16px var(--serif); }
.reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 31px 0 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reading-grid > div { padding: 18px 14px 18px 0; border-right: 1px solid var(--line); }
.reading-grid > div + div { padding-left: 14px; }
.reading-grid > div:last-child { border: 0; }
.reading-grid b { display: block; margin-bottom: 6px; color: var(--rust); font: 23px var(--serif); }
.reading-grid span { display: block; color: var(--muted); font-size: 10px; line-height: 1.45; }

.work-feature-media {
  position: relative;
  min-height: clamp(390px, 35vw, 620px);
  overflow: hidden;
  background: var(--soft-2);
}
.work-feature-media > .editorial-figure,
.work-feature-media > .editorial-placeholder { position: absolute; inset: 0; }
.work-feature-copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(34px, 4.6vw, 80px); }
.work-feature-copy h2 { margin-bottom: 9px; font-size: clamp(37px, 3.8vw, 68px); }
.work-feature-copy .by { color: #56524c; font: italic 16px var(--serif); }
.work-feature-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-feature-notes > div { padding: 18px 14px 18px 0; border-right: 1px solid var(--line); }
.work-feature-notes > div + div { padding-left: 14px; }
.work-feature-notes > div:last-child { border-right: 0; }
.work-feature-notes b { display: block; margin-bottom: 7px; color: var(--rust); font: 23px/1 var(--serif); }
.work-feature-notes strong { display: block; margin-bottom: 5px; font: 17px/1.1 var(--serif); }
.work-feature-notes span { display: block; color: var(--muted); font-size: 9px; line-height: 1.45; }

/* Compact editorial modules */
.editorial-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.editorial-link { min-height: 180px; padding: clamp(21px, 2vw, 34px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.editorial-link::before { content: "↗"; display: block; margin-bottom: 28px; color: var(--rust); font: 25px var(--serif); }
.editorial-link h3 { margin: 0 0 9px; font-size: clamp(20px, 1.6vw, 28px); }
.editorial-link p { margin: 0 0 15px; color: var(--muted); font-size: 11px; }
.understand .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.understand .card-art { height: 95px; }

.learning-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.learning-card { position: relative; min-height: 225px; padding: clamp(22px, 2.25vw, 39px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.learning-card > b { display: block; margin-bottom: 31px; color: var(--rust); font: 28px/1 var(--serif); }
.learning-card h3 { margin: 0 0 9px; font-size: clamp(22px, 1.8vw, 31px); }
.learning-card h3 a::after { content: ""; position: absolute; inset: 0; }
.learning-card p { margin-bottom: 17px; color: var(--muted); font-size: 11px; }
.learning-card .arrow { position: relative; z-index: 2; }

.place-grid,
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap); }
.place-card,
.city-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.place-card figure,
.place-card > a:first-child,
.city-card figure,
.city-card > a:first-child { display: block; height: clamp(155px, 14vw, 250px); overflow: hidden; background: var(--soft-2); }
.place-card img,
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.place-card:hover img,
.city-card:hover img { transform: scale(1.025); }
.place-card > div,
.city-card > div { padding: clamp(17px, 1.6vw, 26px); }
.place-card h3,
.city-card h3 { margin: 0 0 7px; font-size: clamp(22px, 1.7vw, 30px); }
.place-card p,
.city-card p { color: var(--muted); font-size: 11px; }
.city-card figure,
.city-card > a:first-child { height: clamp(180px, 16vw, 285px); }

.places-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--grid-gap); }
.place-card-art {
  position: relative;
  display: block;
  height: clamp(155px, 14vw, 250px);
  overflow: hidden;
  background: linear-gradient(155deg, #d5d1c8 0 42%, #f1efeb 42% 57%, #aaa69f 57% 64%, #dfdcd5 64%);
}
.place-card-art::before,
.place-card-art::after { content: ""; position: absolute; }
.place-card-art::before { right: 9%; bottom: 13%; left: 9%; height: 53%; border: 1px solid rgba(25, 24, 21, .32); background: rgba(255, 255, 255, .6); box-shadow: inset 0 -24px 0 rgba(20, 20, 18, .12); }
.place-card-art::after { right: 16%; bottom: 13%; width: 24%; height: 36%; background: #242421; opacity: .72; }
.place-card.v1 .place-card-art { background: linear-gradient(25deg, #c5c1b8, #eeece7 56%, #a9a59e 57%); }
.place-card.v1 .place-card-art::before { height: 65%; border-radius: 50% 50% 0 0; }
.place-card.v2 .place-card-art { background: linear-gradient(160deg, #e5e2dc 0 48%, #b8b4ac 48% 62%, #f4f3f0 62%); }
.place-card.v2 .place-card-art::after { width: 45%; height: 12%; background: var(--rust); }
.place-card.v3 .place-card-art { background: linear-gradient(175deg, #c4c2bd 0 60%, #efede9 60%); }
.place-card.v3 .place-card-art::before { transform: skewX(-12deg); }
.place-card-art > span { position: absolute; z-index: 2; bottom: 12px; left: 13px; padding: 5px 7px; color: #fff; background: var(--ink); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }

.event-row,
.agenda-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.event-card { display: grid; min-height: 205px; grid-template-columns: auto 1fr; gap: 20px; padding: clamp(22px, 2.4vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-date { color: var(--rust); font: 38px/.9 var(--serif); }
.event-date span { display: block; margin-top: 8px; color: var(--muted); font: 9px/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.event-card h3 { margin: 0 0 9px; font-size: clamp(23px, 2vw, 34px); }
.event-card p { margin-bottom: 14px; color: var(--muted); font-size: 11px; }

.agenda-card {
  display: grid;
  min-height: 220px;
  grid-template-columns: 68px minmax(90px, .8fr) minmax(0, 1.25fr);
  align-items: stretch;
  gap: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.agenda-card .event-date { padding: 25px 12px; border-right: 1px solid var(--line); color: var(--rust); }
.agenda-card .event-date strong { display: block; font: 35px/.9 var(--serif); }
.agenda-card .event-date span { display: block; margin-top: 14px; color: var(--muted); font-size: 8px; line-height: 1.4; letter-spacing: .06em; text-transform: uppercase; }
.event-art { position: relative; min-height: 100%; overflow: hidden; background: #d5d1ca; }
.event-art::before,
.event-art::after { content: ""; position: absolute; }
.event-art::before { inset: 12% 20%; background: #f1efe9; box-shadow: 17px 12px 0 rgba(30, 29, 26, .42); transform: rotate(-6deg); }
.event-art::after { right: 14%; bottom: 10%; width: 26%; height: 58%; background: #1d1d1b; border-radius: 50% 50% 0 0; }
.event-art.v1 { background: #bdb9b1; }
.event-art.v1::before { inset: 17% 25% 8%; background: var(--ink); border-radius: 50% 50% 5px 5px; transform: none; }
.event-art.v1::after { right: 40%; bottom: 39%; width: 20%; height: 20%; border-radius: 50%; background: #ece9e2; }
.event-art.v2 { background: #ebe8e2; }
.event-art.v2::before { inset: 14% 7% 18%; border: 1px solid #a6a199; background: transparent; transform: none; }
.event-art.v2::after { right: 12%; bottom: 18%; width: 8%; height: 52%; border-radius: 0; background: var(--rust); }
.agenda-card > div:last-child { padding: clamp(20px, 1.8vw, 31px); }
.agenda-card h3 { margin: 0 0 8px; font-size: clamp(22px, 1.7vw, 30px); }
.agenda-card p { margin-bottom: 13px; color: var(--muted); font-size: 10px; line-height: 1.5; }

.cabinet-grid,
.workshop-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--grid-gap); }
.cabinet-card,
.workshop-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.cabinet-card figure,
.cabinet-card > a:first-child,
.workshop-card figure,
.workshop-card > a:first-child { display: block; height: clamp(105px, 9.5vw, 175px); overflow: hidden; background: var(--soft-2); }
.cabinet-card img,
.workshop-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.cabinet-card:hover img,
.workshop-card:hover img { transform: scale(1.025); }
.cabinet-card > div,
.workshop-card > div { padding: 16px; }
.cabinet-card h3,
.workshop-card h3 { margin: 0; font-size: clamp(18px, 1.45vw, 25px); line-height: 1.08; }
.cabinet .cards { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cabinet .card-art { height: 105px; }

.cabinet-art {
  position: relative;
  display: block;
  height: clamp(105px, 9.5vw, 175px);
  overflow: hidden;
  background: #d5d0c8;
}
.cabinet-art::before,
.cabinet-art::after,
.cabinet-art i { content: ""; position: absolute; display: block; }
.cabinet-art::before { inset: 15% -8% 12% 8%; background: #262522; opacity: .82; transform: rotate(-7deg); }
.cabinet-art::after { top: -30%; right: 13%; width: 22%; height: 150%; background: #efede7; transform: rotate(15deg); }
.cabinet-art i { top: 20%; left: 12%; width: 35%; height: 45%; border: 1px solid rgba(255, 255, 255, .75); }
.cabinet-card.v1 .cabinet-art { background: #ebe8e1; }
.cabinet-card.v1 .cabinet-art::before { background: repeating-linear-gradient(90deg, #aba69e 0 1px, transparent 1px 17px); transform: none; }
.cabinet-card.v2 .cabinet-art { background: #252522; }
.cabinet-card.v2 .cabinet-art::before { background: #e7e3db; clip-path: polygon(0 24%, 85% 0, 100% 72%, 10% 100%); }
.cabinet-card.v3 .cabinet-art { background: #c9c4ba; }
.cabinet-card.v3 .cabinet-art::before { background: repeating-linear-gradient(0deg, #57534d 0 1px, transparent 1px 13px); transform: rotate(5deg); }
.cabinet-card.v4 .cabinet-art { background: linear-gradient(90deg, #a53e29 0 49%, #191917 49%); }
.cabinet-card > h3 { padding: 15px; }

.city-card > a { position: relative; display: flex; min-height: clamp(240px, 20vw, 360px); justify-content: flex-end; flex-direction: column; padding: clamp(21px, 2.2vw, 39px); overflow: hidden; color: #fff; background: #8f8b83; }
.city-card > a::before,
.city-card > a::after { content: ""; position: absolute; z-index: 0; }
.city-card > a::before { inset: 0; background: linear-gradient(160deg, transparent 0 44%, rgba(255, 255, 255, .52) 44% 57%, transparent 57%), linear-gradient(25deg, #6d777c, #c8c4ba); }
.city-card > a::after { inset: 35% 0 0; background: linear-gradient(transparent, rgba(7, 7, 6, .78)); }
.city-card.v1 > a::before { background: linear-gradient(160deg, transparent 0 48%, rgba(255, 255, 255, .6) 48% 61%, transparent 61%), linear-gradient(25deg, #566b75, #d7cec0); }
.city-card.v2 > a::before { background: linear-gradient(170deg, transparent 0 46%, #d7d2c8 46% 62%, transparent 62%), linear-gradient(25deg, #6d625a, #c8b8a5); }
.city-card.v3 > a::before { background: linear-gradient(165deg, transparent 0 50%, rgba(255, 255, 255, .55) 50% 63%, transparent 63%), linear-gradient(25deg, #667278, #bfc5c5); }
.city-card > a > * { position: relative; z-index: 2; }
.city-card h3 { margin: 0 0 9px; font-size: clamp(32px, 3vw, 52px); }
.city-card > a p { max-width: 290px; margin-bottom: 15px; color: rgba(255, 255, 255, .86); }
.city-card > a b { font-size: 10px; }

.steps,
.collect-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.steps > a,
.steps > div,
.collect-grid > a {
  display: grid;
  min-height: 135px;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 3px 14px;
  padding: clamp(20px, 2.1vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps b,
.collect-grid b { grid-row: 1 / 3; color: var(--rust); font: 28px/1 var(--serif); }
.steps strong,
.collect-grid strong { font: 21px/1.05 var(--serif); }
.steps span,
.collect-grid span { color: var(--muted); font-size: 11px; line-height: 1.45; }

.focus-img { position: relative; min-height: 360px; overflow: hidden; }
.focus-img > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.focus-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 9, 8, .88), rgba(10, 9, 8, .05)); }
.focus-img > div { position: relative; z-index: 2; max-width: 610px; padding: clamp(60px, 6vw, 110px); color: #fff; }
.focus-img h2 { font-size: clamp(40px, 4vw, 68px); }

.focus-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--grid-gap); }
.focus-card {
  position: relative;
  display: flex;
  min-height: clamp(180px, 15vw, 270px);
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(18px, 1.8vw, 30px);
  overflow: hidden;
  color: #fff;
  background: #262522;
}
.focus-card::before,
.focus-card::after { content: ""; position: absolute; z-index: 0; }
.focus-card::before { inset: 0; background: radial-gradient(circle at 68% 20%, #b7b2aa 0 12%, transparent 12.5%), linear-gradient(145deg, transparent 0 48%, #8a847c 48% 55%, transparent 55%), #4f4b46; opacity: .9; }
.focus-card::after { inset: 40% 0 0; background: linear-gradient(transparent, rgba(10, 9, 8, .88)); }
.focus-card.v1::before { background: radial-gradient(circle at 35% 24%, #a9876d 0 16%, transparent 16.5%), linear-gradient(25deg, #3c3530, #8b6a53); }
.focus-card.v2::before { background: repeating-linear-gradient(105deg, transparent 0 27px, rgba(255, 255, 255, .17) 27px 29px), linear-gradient(35deg, #826b56, #c5ae90); }
.focus-card.v3::before { background: repeating-linear-gradient(8deg, transparent 0 20px, rgba(20, 20, 18, .17) 20px 21px), linear-gradient(35deg, #77736c, #cbc6bd); }
.focus-card.v4::before { background: radial-gradient(circle at 65% 27%, rgba(255, 255, 255, .45), transparent 29%), linear-gradient(35deg, #5f5650, #c7bbb0); }
.focus-card > * { position: relative; z-index: 2; }
.focus-card h3 { margin: 0 0 10px; font-size: clamp(24px, 2vw, 35px); }
.focus-card b { font-size: 10px; }

.editorial-proof,
.proof-block {
  display: grid;
  width: 100%;
  grid-template-columns: 5fr 7fr;
  border-bottom: 1px solid var(--line);
  color: #fff;
  background: var(--ink);
}
.proof-copy { padding: var(--section-y) var(--gutter); }
.proof-copy h2 { max-width: 650px; margin: 0 0 18px; font-size: clamp(41px, 4.1vw, 72px); }
.proof-copy p:not(.eyebrow) { max-width: 560px; color: #cbc8c1; }
.proof-points { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid #393935; }
.proof-points > div,
.proof-points > a { display: flex; justify-content: center; flex-direction: column; min-height: 190px; padding: clamp(28px, 3vw, 50px); border-right: 1px solid #393935; border-bottom: 1px solid #393935; }
.proof-points b { margin-bottom: 10px; color: #d9694f; font: 34px/1 var(--serif); }
.proof-points strong { margin-bottom: 7px; font: 24px/1.05 var(--serif); }
.proof-points span { color: #aaa69f; font-size: 11px; }

.proof-block-copy { padding: var(--section-y) var(--gutter); }
.proof-block-copy h2 { max-width: 650px; margin: 0 0 18px; font-size: clamp(41px, 4.1vw, 72px); }
.proof-block-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 25px; color: #cbc8c1; }
.proof-block-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid #393935; }
.proof-block-points > a { display: flex; justify-content: center; flex-direction: column; min-height: 190px; padding: clamp(28px, 3vw, 50px); border-right: 1px solid #393935; border-bottom: 1px solid #393935; }
.proof-block-points b { margin-bottom: 10px; color: #d9694f; font: 34px/1 var(--serif); }
.proof-block-points strong { margin-bottom: 7px; font: 24px/1.05 var(--serif); }
.proof-block-points span { color: #aaa69f; font-size: 11px; }

/* Hub pages */
.hub-hero {
  display: grid;
  min-height: clamp(470px, 45vw, 700px);
  grid-template-columns: 5fr 7fr;
  border-bottom: 1px solid var(--line);
}
.hub-hero > div { display: flex; justify-content: center; flex-direction: column; padding: clamp(50px, 6vw, 105px) var(--gutter); }
.hub-hero h1 { max-width: 780px; margin: 24px 0; font-size: clamp(51px, 6vw, 105px); }
.hub-hero > div > p:not(.eyebrow) { max-width: 650px; color: #514e48; font-size: clamp(15px, 1.15vw, 19px); }
.hub-hero figure { position: relative; min-height: inherit; overflow: hidden; background: var(--soft-2); }
.hub-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.hub-visual::after { content: ""; position: absolute; inset: 0; border-left: 1px solid rgba(255, 255, 255, .35); pointer-events: none; }
.hub-painting .hub-visual img { object-position: 42% center; }
.hub-painting .hub-visual::after { background: linear-gradient(130deg, rgba(161, 54, 32, .12), transparent 45%); }
.hub-sculpture .hub-visual img { object-position: 76% center; filter: saturate(.72) contrast(1.03); }
.hub-artists .hub-visual img { object-position: 25% center; }
.hub-works .hub-visual img { object-position: center 58%; filter: contrast(1.05); }
.hub-atlas .hub-visual img { object-position: 68% center; filter: saturate(.72) brightness(1.04); }
.hub-agenda .hub-visual::after { background: linear-gradient(90deg, transparent 65%, rgba(15, 15, 13, .17)); }
.hub-collect .hub-visual img { filter: saturate(.58); }
.hub-learn .hub-visual::after { background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(20, 20, 18, .12)); }
.counter { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.counter strong { color: var(--rust); font: 54px/.9 var(--serif); }
.counter span { max-width: 130px; color: var(--muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; color: #77736d; font-size: 10px; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs b { color: var(--ink-soft); font-weight: 400; }
.hub-tools {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: var(--grid-gap);
  padding: 25px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.hub-tools form { grid-column: span 5; }
.hub-tools label { display: block; margin-bottom: 7px; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.hub-tools form > div { display: flex; }
.hub-tools input { min-width: 0; flex: 1; padding: 12px; border: 1px solid var(--line-strong); background: #fff; }
.hub-tools button { border: 0; padding: 0 18px; color: #fff; background: var(--ink); }
.hub-tools nav { display: flex; grid-column: 7 / 13; align-items: center; justify-content: flex-end; gap: 20px; font-size: 11px; }
.hub-tools nav span { color: var(--muted-light); text-transform: uppercase; }
.hub-tools nav a { color: var(--rust); font-weight: 700; }
.portals {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: var(--section-y) var(--gutter) 0;
}
.portals > a { min-height: 220px; padding: clamp(23px, 2.2vw, 39px); border: 1px solid var(--line); border-right: 0; }
.portals > a:last-child { border-right: 1px solid var(--line); }
.portals b { color: var(--rust); font: 27px var(--serif); }
.portals h2,
.portals h3 { margin: 30px 0 9px; font-size: clamp(24px, 2vw, 35px); }
.portals p { margin: 0; color: var(--muted); font-size: 11px; }
.hub-feature-grid,
.listing .cards.hub-feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--grid-gap); }
.hub-feature-grid > .card { grid-column: span 3; }
.hub-feature-grid > .card:first-child { grid-column: span 6; }
.hub-feature-grid > .card:first-child .card-art { height: clamp(230px, 23vw, 410px); }
.hub-feature-grid > .card:first-child h3 { font-size: clamp(28px, 2.5vw, 45px); }

/* Internal editorial templates */
.detail-hero {
  display: grid;
  min-height: clamp(520px, 54vw, 820px);
  grid-template-columns: 7fr 5fr;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.detail-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: clamp(48px, 6vw, 112px) var(--gutter);
}
.detail-copy h1 { max-width: 1050px; margin: clamp(28px, 4vw, 62px) 0 25px; font-size: clamp(55px, 7vw, 124px); }
.detail-copy .lead { max-width: 790px; margin-bottom: 0; color: #4a4741; font: clamp(20px, 1.6vw, 27px)/1.46 var(--serif); }
.detail-visual {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--soft-2);
}
.detail-media,
.detail-visual > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-media img,
.detail-visual > img,
.detail-visual picture img { width: 100%; height: 100%; object-fit: cover; }
.detail-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #d6d2ca;
}
.detail-art::before,
.detail-art::after { content: ""; position: absolute; }
.detail-art::before { inset: 14% -12% 11% 17%; background: #1a1a18; transform: rotate(-8deg); }
.detail-art::after { top: -10%; left: 10%; width: 43%; height: 125%; background: #a9402b; opacity: .82; transform: rotate(17deg); mix-blend-mode: multiply; }
.detail-work { grid-template-columns: 5fr 7fr; }
.detail-work .detail-copy { order: 2; }
.detail-work .detail-visual { order: 1; background: #181816; }
.detail-work .detail-art { margin: clamp(30px, 4vw, 70px); }
.detail-concept { grid-template-columns: 8fr 4fr; }
.detail-concept .detail-visual { color: #fff; background: var(--ink); }
.detail-concept .detail-art { background: var(--ink); }
.detail-concept .detail-art::before { inset: 12%; border: 1px solid #484842; background: transparent; transform: none; }
.detail-concept .detail-art::after { top: 12%; left: 12%; width: 2px; height: 28%; background: var(--rust); transform: none; }
.detail-concept .detail-number { position: absolute; right: 9%; bottom: 4%; color: #fff; font: clamp(150px, 20vw, 380px)/.8 var(--serif); opacity: .08; }
.detail-atlas { grid-template-columns: 5fr 7fr; }
.detail-atlas .detail-copy { order: 2; }
.detail-atlas .detail-visual { order: 1; }
.detail-guide { grid-template-columns: 8fr 4fr; }
.detail-guide .detail-visual { background: var(--soft); }
.detail-guide .detail-art { background: linear-gradient(135deg, #f4f3f0 0 62%, #e4e1da 62%); }
.detail-guide .detail-art::before { inset: 18%; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: repeating-linear-gradient(to bottom, transparent 0 31px, #d8d4cc 31px 32px); transform: none; }
.detail-guide .detail-art::after { top: 18%; left: 18%; width: 42px; height: 2px; background: var(--rust); transform: none; }
.detail-summary {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: clamp(30px, 3.8vw, 64px) var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.detail-identity { grid-column: 1 / 8; }
.detail-identity h2 { margin-bottom: 22px; font-size: clamp(31px, 2.8vw, 49px); }
.detail-identity dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line-strong); }
.detail-identity dl > div { padding: 17px 20px 7px 0; border-right: 1px solid var(--line-strong); }
.detail-identity dl > div + div { padding-left: 20px; }
.detail-identity dt { color: var(--muted-light); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.detail-identity dd { margin: 4px 0 10px; font: 20px/1.15 var(--serif); }
.detail-jump { grid-column: 9 / 13; padding-left: clamp(20px, 3vw, 50px); border-left: 1px solid var(--line-strong); }
.detail-jump > p:first-child { color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.detail-jump a { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line-strong); font: 19px/1.2 var(--serif); }
.detail-jump a::after { content: "↓"; color: var(--rust); }
.detail-note { max-width: 610px; color: var(--muted); font-size: 11px; }
.detail-number { color: var(--rust); font: clamp(70px, 8vw, 145px)/.8 var(--serif); }

.detail-facts { grid-column: 1 / 8; }
.detail-facts > .eyebrow { margin-bottom: 18px; }
.detail-facts dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--line-strong); }
.detail-facts dl > div { min-width: 0; padding: 17px 20px 8px 0; border-right: 1px solid var(--line-strong); }
.detail-facts dl > div + div { padding-left: 20px; }
.detail-facts dt { color: var(--muted-light); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.detail-facts dd { margin: 4px 0 10px; font: 20px/1.15 var(--serif); }
.detail-facts dd a { color: var(--rust); }
.detail-nav { grid-column: 9 / 13; padding-left: clamp(20px, 3vw, 50px); border-left: 1px solid var(--line-strong); }
.detail-nav ol { margin: 0; padding: 0; list-style: none; counter-reset: detail-nav; }
.detail-nav li { counter-increment: detail-nav; }
.detail-nav a { display: grid; grid-template-columns: 25px 1fr auto; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--line-strong); font: 17px/1.2 var(--serif); }
.detail-nav a::before { content: counter(detail-nav, decimal-leading-zero); color: var(--muted-light); font: 8px/1.8 var(--sans); }
.detail-nav a::after { content: "↓"; color: var(--rust); }
.detail-media .editorial-figure,
.detail-media .editorial-placeholder { height: 100%; }
.detail-art > strong,
.detail-art > small,
.detail-art > p,
.detail-art > span { position: absolute; z-index: 3; }
.detail-art-concept > strong { right: 10%; bottom: 20%; left: 10%; color: #fff; font: clamp(35px, 4vw, 72px)/.96 var(--serif); }
.detail-art-concept > small { right: 10%; bottom: 12%; left: 10%; color: #aaa69f; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.detail-art-concept .detail-number { top: 9%; right: 7%; bottom: auto; color: #fff; font-size: clamp(120px, 15vw, 270px); opacity: .07; }
.detail-art-atlas { color: #fff; background: #20201e; }
.detail-art-atlas::before { inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .17), transparent 25%), repeating-linear-gradient(35deg, transparent 0 49px, rgba(255, 255, 255, .035) 49px 50px); transform: none; }
.detail-art-atlas::after { top: 0; left: 11%; width: 2px; height: 100%; background: var(--rust); transform: none; }
.atlas-ring { top: 14%; right: 12%; width: clamp(120px, 15vw, 260px); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; }
.detail-art-atlas > p { top: 12%; left: 17%; font: clamp(27px, 3vw, 52px)/.95 var(--serif); }
.detail-art-atlas > strong { right: 10%; bottom: 18%; left: 17%; font: clamp(39px, 4.5vw, 78px)/.95 var(--serif); }
.detail-art-atlas > small { right: 10%; bottom: 10%; left: 17%; color: #aaa69f; font-size: 9px; text-transform: uppercase; }
.detail-art-guide > span { top: 7%; left: 10%; color: var(--rust); font: clamp(110px, 14vw, 240px)/1 var(--serif); opacity: .7; }
.detail-art-guide > p { right: 10%; bottom: 25%; left: 15%; font: clamp(25px, 2.7vw, 48px)/1.1 var(--serif); }
.detail-art-guide > small { right: 10%; bottom: 13%; left: 15%; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.detail-art-work > i { position: absolute; z-index: 3; top: 13%; right: 12%; width: 28%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .55); border-radius: 50%; }
.detail-art-work > strong { right: 10%; bottom: 20%; left: 10%; color: #fff; font: clamp(31px, 3vw, 56px)/1 var(--serif); }
.detail-art-work > small { right: 10%; bottom: 11%; left: 10%; color: rgba(255, 255, 255, .7); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

/* Legacy article hero retained for long-tail pages */
.article-hero {
  display: grid;
  min-height: 530px;
  grid-template-columns: 8fr 4fr;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.article-hero > div:first-child { display: flex; justify-content: center; flex-direction: column; padding: 55px var(--gutter); }
.article-hero h1 { max-width: 1100px; margin: 35px 0 22px; font-size: clamp(54px, 7vw, 118px); }
.article-hero .lead { max-width: 810px; color: #4e4b45; font: clamp(20px, 1.65vw, 27px)/1.48 var(--serif); }
.byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; color: var(--muted); font-size: 10px; }
.byline a:first-child { color: var(--rust); font-weight: 700; }
.byline a:last-child { text-decoration: underline; }
.article-mark { position: relative; min-height: 530px; overflow: hidden; background: #d6d2ca; }
.article-mark::before,
.article-mark::after,
.article-mark i { content: ""; position: absolute; }
.article-mark::before { inset: 15% -10% 10% 18%; background: #1a1917; transform: rotate(-9deg); }
.article-mark::after { top: -8%; left: 8%; width: 46%; height: 120%; background: #a93d26; opacity: .85; transform: rotate(18deg); mix-blend-mode: multiply; }
.article-mark i { top: 20%; right: 10%; width: 40%; height: 40%; border: 16px solid rgba(255, 255, 255, .58); border-radius: 50%; }
.article-mark.v1 { background: #1a1a18; }
.article-mark.v2 { background: #dad5cd; }
.article-mark.v3 { background: #bcb6ad; }
.article-mark.v4 { background: #efede8; }
.article-mark.v5 { background: #963c29; }

.article-layout,
.editorial-layout {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: clamp(58px, 7vw, 120px) var(--gutter);
}
.prose,
.editorial-body { min-width: 0; grid-column: 2 / 9; }
.prose-intro {
  margin: 0 0 clamp(50px, 6vw, 90px);
  padding: clamp(24px, 3vw, 46px);
  border-top: 2px solid var(--rust);
  border-bottom: 1px solid var(--line);
  font: clamp(21px, 1.8vw, 29px)/1.48 var(--serif);
}
.section-number { margin: 0 0 12px !important; color: var(--rust) !important; font: 30px/1 var(--serif) !important; }
.prose section { margin-bottom: clamp(48px, 5.5vw, 90px); scroll-margin-top: 120px; }
.prose h2 { margin: 0 0 22px; font-size: clamp(34px, 3.1vw, 55px); }
.prose h2::before { content: ""; display: block; width: 34px; height: 2px; margin-bottom: 14px; background: var(--rust); }
.prose h3 { margin: 33px 0 12px; font-size: 27px; }
.prose p,
.prose li { color: #35332f; font-size: clamp(16px, 1.1vw, 19px); line-height: 1.82; }
.prose li + li { margin-top: 9px; }
.prose a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.prose cite { font-family: var(--serif); }
.caution { margin: 30px 0; padding: 25px 27px; border-left: 3px solid var(--rust); background: #f6f3ef; }
.caution strong { font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.caution p { margin: 6px 0 0; font-size: 14px; }
.sources { padding-left: 22px; }
.source-note,
.source-panel { padding: 20px; border: 1px solid var(--line); background: var(--soft); font-size: 12px !important; }
.faq details { padding: 18px 0; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 23px/1.25 var(--serif); }
.faq details p { font-size: 14px; }
.factbox,
.editorial-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  grid-column: 10 / 13;
  padding: clamp(21px, 2vw, 32px);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.factbox dl { margin: 0 0 24px; }
.factbox dt { margin-top: 16px; color: var(--muted-light); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.factbox dd { margin: 3px 0; font-size: 13px; }
.factbox dd a { color: var(--rust); }
.editorial-aside h2 { margin: 8px 0 14px; font-size: clamp(27px, 2.1vw, 37px); }
.editorial-aside > p:not(.eyebrow) { color: var(--muted); font-size: 12px; }
.editorial-aside .detail-note { display: flex; margin: 24px 0; padding-top: 18px; border-top: 1px solid var(--line-strong); flex-direction: column; gap: 5px; }
.editorial-aside .detail-note strong { margin-bottom: 4px; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.editorial-aside .detail-note span { color: var(--muted); font-size: 10px; }
.editorial-aside > .arrow { display: block; margin-top: 17px; }
.related .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Simple and utility pages */
.simple-hero { width: 100%; padding: clamp(65px, 8vw, 140px) var(--gutter); }
.simple-hero > * { max-width: 1100px; }
.simple-hero h1 { margin: 32px 0; font-size: clamp(58px, 8vw, 130px); }
.simple-hero .lead { font: clamp(21px, 2vw, 31px)/1.5 var(--serif); }
.big-search { width: min(100%, 850px); margin-top: 38px; }
.big-search > label { display: block; margin-bottom: 9px; font-size: 10px; font-weight: 700; }
.big-search > div { display: flex; }
.big-search input { min-width: 0; flex: 1; padding: 15px; border: 1px solid var(--line-strong); }
.big-search button { border: 0; padding: 0 23px; color: #fff; background: var(--rust); }
.big-search small { display: block; margin-top: 11px; color: var(--muted); }
.big-search small a { text-decoration: underline; }
.notice { padding: 17px; border-left: 3px solid var(--rust); background: #f5f2ed; }
.empty { padding: 42px; border: 1px solid var(--line); }
.not-found { width: 100%; padding: clamp(90px, 12vw, 190px) var(--gutter); }
.not-found > * { max-width: 1000px; }
.not-found h1 { font-size: clamp(57px, 9vw, 145px); }
.not-found > p:not(.eyebrow) { font: 23px var(--serif); }
.not-found div { display: flex; align-items: center; gap: 25px; margin-top: 32px; }

/* Newsletter and footer */
.newsletter,
.newsletter-band {
  display: grid;
  width: 100%;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: var(--grid-gap);
  padding: clamp(35px, 4vw, 64px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.newsletter h2 { margin: 0 0 7px; font-size: clamp(31px, 2.6vw, 47px); }
.newsletter p { margin: 0; color: var(--muted); }
.newsletter form { display: flex; }
.newsletter input { min-width: 0; flex: 1; padding: 15px; border: 1px solid var(--line-strong); background: #fff; }
.newsletter button { min-width: 140px; border: 0; color: #fff; background: var(--rust); }
footer { width: 100%; padding: clamp(42px, 5vw, 82px) var(--gutter) 22px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; width: 100%; grid-template-columns: 2fr repeat(4, 1fr); gap: clamp(30px, 4vw, 75px); }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; }
.footer-grid h2 { margin: 0 0 14px; font: 700 9px var(--sans); letter-spacing: .07em; text-transform: uppercase; }
.footer-grid a:not(.brand) { margin: 3px 0; color: #4e4b46; font-size: 11px; }
.footer-grid a:hover { color: var(--rust); }
.footer-intro p { max-width: 350px; margin: 18px 0 0; color: #56524c; font-size: 11px; }
.footer-intro .proof { color: var(--rust); font-weight: 700; }
.footer-bottom { display: flex; width: 100%; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 17px; border-top: 1px solid var(--line); color: #77716a; font-size: 9px; }

@media (min-width: 1680px) {
  :root { --gutter: clamp(74px, 5vw, 120px); }
  body { font-size: 16px; }
  .site-header nav > a { font-size: 11px; }
  .card > div > p:not(.eyebrow),
  .place-card p,
  .city-card p { font-size: 13px; }
}

@media (max-width: 1180px) {
  :root { --gutter: clamp(25px, 3.8vw, 52px); }
  .cards,
  .listing .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .artist-primary,
  .artist-feature > .portrait { grid-column: span 5; }
  .artist-secondary-grid,
  .artist-showcase > .cards,
  .artist-feature > .cards { grid-column: span 7; }
  .cabinet-grid,
  .workshop-grid,
  .focus-grid,
  .cabinet .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hub-feature-grid,
  .listing .cards.hub-feature-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hub-feature-grid > .card { grid-column: span 2; }
  .hub-feature-grid > .card:first-child { grid-column: span 4; }
  .article-layout,
  .editorial-layout { column-gap: 34px; }
  .prose,
  .editorial-body { grid-column: 1 / 9; }
  .factbox,
  .editorial-aside { grid-column: 10 / 13; }
  .footer-grid { grid-template-columns: 1.6fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { margin-top: 14px; }
}

@media (max-width: 1040px) {
  :root { --header-h: 72px; }
  .site-header { position: sticky; top: 0; min-height: var(--header-h); }
  .menu-button { display: inline-grid; place-items: center; }
  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 35px rgba(20, 18, 15, .09);
  }
  .site-header nav.open { display: flex; }
  .site-header nav > a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-header nav > a::after { display: none; }
  .search-open { align-self: flex-end; margin-top: 8px; }
  .artist-showcase,
  .artist-feature,
  .artists-showcase { grid-template-columns: 1fr; }
  .artist-primary,
  .artist-feature > .portrait,
  .artist-card-primary,
  .artist-card-grid,
  .artist-secondary-grid,
  .artist-showcase > .cards,
  .artist-feature > .cards { grid-column: auto; }
  .artist-primary,
  .artist-feature > .portrait,
  .artist-card-primary { min-height: 570px; }
  .artist-mini { min-height: 360px; }
  .place-grid,
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-proof,
  .proof-block { grid-template-columns: 1fr; }
  .proof-points { border-top: 1px solid #393935; border-left: 0; }
  .proof-block-points { border-top: 1px solid #393935; border-left: 0; }
  .detail-hero,
  .detail-work,
  .detail-concept,
  .detail-atlas,
  .detail-guide,
  .article-hero { grid-template-columns: 7fr 5fr; }
  .detail-copy h1 { font-size: clamp(52px, 8.5vw, 88px); }
  .article-layout,
  .editorial-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 45px; }
  .prose,
  .editorial-body,
  .factbox,
  .editorial-aside { grid-column: auto; }
  .related .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --gutter: 25px; --section-y: 54px; }
  .home-hero,
  .hub-hero,
  .detail-hero,
  .detail-work,
  .detail-concept,
  .detail-atlas,
  .detail-guide,
  .article-hero { grid-template-columns: 1fr; }
  .home-hero { min-height: 0; }
  .hero-copy { min-height: 500px; }
  .home-hero > figure { min-height: 480px; }
  .home-search { grid-template-columns: 1fr; }
  .home-search > div:first-child h2 { font-size: 25px; }
  .cards,
  .listing .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artist-primary,
  .artist-feature > .portrait,
  .artist-card-primary { min-height: 540px; }
  .split-portals,
  .universe-grid { grid-template-columns: 1fr; }
  .portal { min-height: 390px; }
  .work-story,
  .work-feature { grid-template-columns: 1fr; }
  .work-media,
  .generated-art,
  .work-feature-media { min-height: 430px; }
  .editorial-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .learning-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .places-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-row,
  .agenda-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 160px; }
  .cabinet-grid,
  .workshop-grid,
  .focus-grid,
  .cabinet .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps,
  .collect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-hero { min-height: 0; }
  .hub-hero > div { min-height: 450px; }
  .hub-hero figure { min-height: 400px; }
  .hub-tools { grid-template-columns: 1fr; }
  .hub-tools form,
  .hub-tools nav { grid-column: auto; }
  .hub-tools nav { justify-content: flex-start; flex-wrap: wrap; }
  .portals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portals > a:nth-child(2) { border-right: 1px solid var(--line); }
  .portals > a:nth-child(-n + 2) { border-bottom: 0; }
  .detail-work .detail-copy,
  .detail-atlas .detail-copy { order: 1; }
  .detail-work .detail-visual,
  .detail-atlas .detail-visual { order: 2; }
  .detail-copy { min-height: 490px; }
  .detail-visual { min-height: 430px; }
  .detail-summary { grid-template-columns: 1fr; }
  .detail-identity,
  .detail-jump,
  .detail-facts,
  .detail-nav { grid-column: auto; }
  .detail-jump { padding: 28px 0 0; border-top: 1px solid var(--line-strong); border-left: 0; }
  .detail-nav { padding: 28px 0 0; border-top: 1px solid var(--line-strong); border-left: 0; }
  .article-mark { min-height: 350px; }
  .article-layout,
  .editorial-layout { grid-template-columns: 1fr; gap: 15px; }
  .factbox,
  .editorial-aside { position: static; order: -1; margin-bottom: 45px; }
  .newsletter,
  .newsletter-band { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; --section-y: 42px; }
  body { font-size: 14px; }
  .site-header { padding-inline: 18px; }
  .brand b { font-size: 16px; }
  .brand small { font-size: 7px; }
  .menu-button { min-width: 44px; }
  .hero-copy { min-height: 445px; padding-block: 48px; }
  .hero-copy h1 { font-size: clamp(43px, 13.6vw, 62px); }
  .home-hero > figure { min-height: 320px; }
  .home-hero figcaption { right: 9px; bottom: 8px; left: 9px; }
  .hero-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-search form { flex-wrap: wrap; }
  .home-search input { width: 100%; flex-basis: 80%; }
  .section-head { align-items: flex-start; }
  .section-head h2 { font-size: 31px; }
  .section-more { max-width: 115px; white-space: normal; text-align: right; }
  .cards,
  .listing .cards,
  .related .cards,
  .understand .cards { grid-template-columns: 1fr; }
  .card-art,
  .listing .card:nth-child(n) .card-art { height: 210px; }
  .card h3 { font-size: 25px; }
  .artist-primary,
  .artist-feature > .portrait,
  .artist-card-primary { min-height: 490px; }
  .artist-primary-copy,
  .portrait > div { right: 24px; bottom: 28px; left: 24px; }
  .artist-secondary-grid,
  .artist-card-grid,
  .artist-showcase > .cards,
  .artist-feature > .cards { grid-template-columns: 1fr; }
  .artist-mini { min-height: 0; grid-template-rows: 235px auto; }
  .portal { min-height: 350px; padding: 44px 24px; }
  .portal h2 { font-size: 40px; }
  .work-media,
  .generated-art,
  .work-feature-media { min-height: 320px; }
  .work-copy,
  .work-feature > div:last-child,
  .work-feature-copy { padding: 30px 24px; }
  .reading-grid { grid-template-columns: 1fr; }
  .reading-grid > div,
  .reading-grid > div + div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .reading-grid > div:last-child { border-bottom: 0; }
  .work-feature-notes { grid-template-columns: 1fr; }
  .work-feature-notes > div,
  .work-feature-notes > div + div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .work-feature-notes > div:last-child { border-bottom: 0; }
  .editorial-links,
  .learning-grid,
  .place-grid,
  .places-grid,
  .city-grid,
  .cabinet-grid,
  .workshop-grid,
  .focus-grid,
  .cabinet .cards,
  .steps,
  .collect-grid { grid-template-columns: 1fr; }
  .place-card figure,
  .place-card > a:first-child,
  .city-card figure,
  .city-card > a:first-child { height: 230px; }
  .cabinet-card figure,
  .cabinet-card > a:first-child,
  .workshop-card figure,
  .workshop-card > a:first-child { height: 175px; }
  .event-card { grid-template-columns: 66px 1fr; padding: 24px 18px; }
  .proof-points { grid-template-columns: 1fr; }
  .proof-block-points { grid-template-columns: 1fr; }
  .proof-points > div,
  .proof-points > a,
  .proof-block-points > a { min-height: 150px; }
  .hub-hero > div { min-height: 410px; }
  .hub-hero h1 { font-size: 49px; }
  .hub-hero figure { min-height: 290px; }
  .hub-tools { padding-inline: 18px; }
  .hub-tools nav span { width: 100%; }
  .portals { grid-template-columns: 1fr; padding-inline: 18px; }
  .portals > a { min-height: 170px; border-right: 1px solid var(--line); border-bottom: 0; }
  .portals > a:nth-child(2) { border-right: 1px solid var(--line); }
  .portals > a:last-child { border-bottom: 1px solid var(--line); }
  .hub-feature-grid,
  .listing .cards.hub-feature-grid { grid-template-columns: 1fr; }
  .hub-feature-grid > .card,
  .hub-feature-grid > .card:first-child { grid-column: auto; }
  .hub-feature-grid > .card:first-child .card-art { height: 230px; }
  .detail-copy { min-height: 440px; padding-block: 45px; }
  .detail-copy h1 { margin-block: 26px 20px; font-size: 49px; }
  .detail-copy .lead { font-size: 19px; }
  .detail-visual { min-height: 300px; }
  .detail-work .detail-art { margin: 18px; }
  .detail-identity dl { grid-template-columns: 1fr; }
  .detail-facts dl { grid-template-columns: 1fr; }
  .detail-identity dl > div,
  .detail-identity dl > div + div,
  .detail-facts dl > div,
  .detail-facts dl > div + div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .article-hero > div:first-child { min-height: 430px; padding: 40px 18px; }
  .article-hero h1 { font-size: 49px; }
  .article-mark { min-height: 260px; }
  .article-layout,
  .editorial-layout { padding: 48px 18px; }
  .prose h2 { font-size: 32px; }
  .prose p,
  .prose li { font-size: 16px; }
  .simple-hero { padding: 55px 18px; }
  .simple-hero h1 { font-size: 53px; }
  .big-search > div,
  .newsletter form { flex-direction: column; }
  .big-search button,
  .newsletter button { min-height: 46px; }
  .newsletter,
  .newsletter-band { padding: 34px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .search-layer { padding: 16vh 22px 8vh; }
  .search-layer form > div { flex-direction: column; border: 0; }
  .search-layer input { border-bottom: 2px solid var(--ink); font-size: 20px; }
  .search-layer form button { min-height: 46px; }
  .search-suggestions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header,
  .search-layer,
  .newsletter,
  footer,
  .factbox,
  .editorial-aside,
  .related { display: none !important; }
  .detail-hero,
  .article-hero { display: block; min-height: 0; }
  .detail-visual,
  .article-mark { display: none; }
  .article-layout,
  .editorial-layout { display: block; padding: 20px; }
  .prose,
  .editorial-body { max-width: none; }
}
