:root {
  --ink: #12110f;
  --muted: #67635d;
  --line: #e9e5de;
  --paper: #fffdfa;
  --soft: #f6f3ee;
  --violet: #432493;
  --violet-2: #5b37bb;
  --green: #314436;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(35, 29, 18, .08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f1eee9;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .9), transparent 34rem),
    linear-gradient(180deg, #f7f4ef 0%, #f3efe8 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }

.page {
  width: min(1510px, calc(100% - 32px));
  margin: 16px auto 28px;
  background: var(--paper);
  border: 1px solid rgba(70, 61, 47, .12);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shell { padding: 0 42px; }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 82px;
  padding: 0 42px;
  background: rgba(255, 253, 250, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.logo { font-size: 29px; font-weight: 800; letter-spacing: 0; }
.nav { display: flex; justify-content: center; gap: 34px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.menu-toggle { display: none; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 2px; border-radius: 999px; background: currentColor; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.actions { display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; }
.icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; color: #17130f; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 22px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--violet); font-size: 13px; font-weight: 800; cursor: pointer; }
.btn.primary { border-color: var(--violet); background: var(--violet); color: #fff; }
.btn.dark { border-color: var(--green); background: var(--green); color: #fff; }
.btn.danger { border-color: #c95454; color: #9f2e2e; }

.section { padding: 28px 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 20px; align-items: stretch; }
.hero-copy { position: relative; z-index: 2; max-width: 650px; padding: 42px 46px; color: #fff; }
.eyebrow { margin: 0 0 22px; color: var(--violet); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 430px; margin-bottom: 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 3.45vw, 56px); line-height: .98; font-weight: 500; }
h2 { margin-bottom: 0; font-size: 25px; line-height: 1.2; }
.hero-copy h1 { max-width: 620px; margin-bottom: 18px; color: #fff; font-size: clamp(44px, 4.2vw, 70px); line-height: .94; }
.lead { max-width: 360px; margin-bottom: 24px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.hero-copy .lead { max-width: 470px; color: rgba(255, 255, 255, .84); font-size: 17px; }
.hero-copy .eyebrow { color: #d9ccff; }
.text-link { color: var(--violet); font-size: 14px; font-weight: 800; }
.hero-copy .text-link { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.hero-art { position: relative; min-height: 430px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #17120f; }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 12, 9, .92), rgba(16, 12, 9, .66) 42%, rgba(16, 12, 9, .22) 72%), linear-gradient(0deg, rgba(16, 12, 9, .6), transparent 56%); pointer-events: none; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.12); opacity: .82; filter: saturate(.9) contrast(1.04); }
.hero-full-art { position: absolute; z-index: 1; top: 50%; right: 34px; display: block; height: calc(100% - 40px); aspect-ratio: 2024 / 2403; transform: translateY(-50%); padding: 4px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 8px; background: rgba(18, 14, 10, .64); box-shadow: 0 18px 44px rgba(0, 0, 0, .34); }
.hero-full-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 4px; }
.hero-side { display: grid; grid-template-rows: .75fr .72fr .82fr; gap: 14px; }
.stat-card { padding: 22px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent), linear-gradient(145deg, var(--violet), var(--violet-2)); }
.stat-card h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; line-height: 1.1; }
.stat-number { display: block; margin-bottom: 8px; font-size: 34px; line-height: 1; font-weight: 500; }
.stat-line { margin: 0 0 18px; color: rgba(255, 255, 255, .84); font-size: 17px; line-height: 1.35; }
.side-card { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.side-card h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; line-height: 1.1; }
.side-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.mini-stat { margin: 0 0 10px; color: var(--violet); font-size: 16px; line-height: 1.25; font-weight: 800; }
.avatars { display: flex; align-items: center; margin: 16px 0; }
.avatars strong { margin-left: 14px; color: var(--violet); }
.avatar { width: 28px; height: 28px; margin-right: -8px; border: 2px solid #fff; border-radius: 50%; overflow: hidden; background: #ddd; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.news-card { min-height: 286px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.news-card .thumb { height: 142px; }
.card-body { padding: 18px 20px 20px; }
.tag { display: inline-block; margin-bottom: 9px; color: var(--violet); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 18px; font-size: 16px; line-height: 1.35; }
.meta { color: #908b84; font-size: 13px; }

.museum-section { display: grid; grid-template-columns: 1.05fr 1.45fr; gap: 24px; align-items: stretch; }
.museum-feature { position: relative; min-height: 430px; border-radius: var(--radius); overflow: hidden; color: #fff; background: #181411; }
.museum-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .78)); }
.museum-feature .copy { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; }
.museum-feature .tag { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; background: rgba(255, 255, 255, .14); color: #f7f1ff; backdrop-filter: blur(10px); }
.museum-feature h2 { max-width: 460px; margin-bottom: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-weight: 500; line-height: 1.05; }
.museum-feature p { max-width: 420px; color: rgba(255, 255, 255, .78); line-height: 1.55; }
.museum-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.museum-card { display: grid; grid-template-rows: 170px 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.museum-card .copy { padding: 18px 20px 20px; }
.museum-card h3 { margin-bottom: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; line-height: 1.1; }
.museum-card p { margin-bottom: 14px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.museum-photo-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.museum-photo-row figure { height: 240px; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--soft); }
.rubrics, .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rubric, .chip { padding: 6px 10px; border-radius: 999px; background: var(--soft); color: #5b554d; font-size: 12px; font-weight: 700; }
.chip { padding: 9px 16px; background: #edeae4; font-size: 13px; }

.artists-community { display: grid; grid-template-columns: 1fr 330px; gap: 24px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.panel-pad { padding: 24px; }
.artist-row { display: grid; grid-template-columns: repeat(7, minmax(92px, 1fr)); gap: 20px; padding-top: 8px; }
.artist { min-width: 0; text-align: center; font-size: 12px; }
.artist-photo { width: 74px; height: 74px; margin: 0 auto 10px; border-radius: 50%; overflow: hidden; background: var(--soft); }
.artist strong { display: block; line-height: 1.2; }
.artist span { display: block; margin-top: 4px; color: var(--muted); }
.community-layout { display: grid; grid-template-columns: 1fr 330px; gap: 24px; margin-top: 24px; }
.composer { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px; border-bottom: 1px solid var(--line); }
.composer input { min-height: 44px; border: 1px solid var(--line); border-radius: 8px; padding: 0 16px; font: inherit; }
.feed-tabs { display: flex; gap: 28px; padding: 15px 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.feed-tabs strong { color: var(--ink); }
.post { padding: 24px; }
.post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.post-head .avatar { margin: 0; width: 40px; height: 40px; }
.post p { color: #312d27; font-size: 15px; line-height: 1.55; }
.post-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.post-images div { height: 170px; border-radius: 8px; overflow: hidden; }
.post-stats { display: flex; gap: 46px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.topics { padding: 30px; }
.topics h3 { margin-bottom: 24px; font-size: 20px; }
.join-card { min-height: 430px; padding: 34px; border-radius: var(--radius); overflow: hidden; color: #fff; background: linear-gradient(160deg, rgba(84, 55, 176, .96), rgba(56, 31, 132, .96)), url("/assets/art-24.jpg"); background-size: cover; background-position: center; }
.join-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; line-height: 1.2; }
.join-card p { margin-bottom: 28px; color: rgba(255, 255, 255, .78); line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.collection-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.collection { position: relative; min-height: 274px; border-radius: var(--radius); overflow: hidden; color: #fff; background: #1d1713; }
.collection::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .72)); }
.collection .copy { position: absolute; inset: auto 18px 18px; z-index: 2; }
.collection h3 { margin-bottom: 10px; font-size: 17px; line-height: 1.25; }
.journal-main { display: grid; grid-template-columns: 1fr 200px; min-height: 274px; overflow: hidden; }
.journal-copy { padding: 34px; }
.journal-copy h3 { max-width: 290px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.12; font-weight: 500; }

.footer { display: grid; grid-template-columns: 1.1fr repeat(4, .55fr); gap: 42px; padding: 56px 42px 34px; border-top: 1px solid var(--line); }
.footer .logo { margin-bottom: 18px; }
.footer h4 { margin: 0 0 18px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.footer a { display: block; margin-bottom: 12px; color: #4f4a43; font-size: 13px; }
.bottom { display: flex; justify-content: space-between; gap: 20px; padding: 26px 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.lang { display: flex; gap: 17px; color: #6d6870; font-weight: 700; }
.lang strong { color: var(--violet); }

.catalog-hero { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 24px; align-items: end; padding-top: 42px; }
.catalog-hero h1 { max-width: none; margin-bottom: 16px; font-size: clamp(48px, 5vw, 78px); }
.catalog-hero .lead { max-width: 680px; }
.catalog-summary { display: grid; gap: 5px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.catalog-summary strong { color: var(--violet); font-size: 44px; line-height: 1; font-weight: 700; }
.catalog-summary span { color: var(--muted); font-size: 14px; font-weight: 800; }
.catalog-tools { display: grid; gap: 16px; padding-top: 10px; }
.artist-search { display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; gap: 12px; align-items: end; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.artist-search label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 800; }
.artist-search input { width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 8px; padding: 0 13px; color: var(--ink); font: inherit; background: #fff; }
.per-page-form { display: flex; justify-content: flex-end; }
.per-page-form label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 800; }
.per-page-form select { min-height: 38px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; color: var(--ink); font: inherit; background: #fff; }
.alphabet-nav { display: grid; gap: 9px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.alphabet-all { display: flex; }
.alphabet-row { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 12px; align-items: center; }
.alphabet-label { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.alphabet-symbols { display: flex; flex-wrap: wrap; gap: 5px; }
.alphabet-symbols a, .alphabet-symbols span, .alphabet-all a { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 30px; padding: 0 8px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: #4f4a43; font-size: 13px; font-weight: 900; }
.alphabet-symbols a.active, .alphabet-all a.active { border-color: var(--violet); background: var(--violet); color: #fff; }
.alphabet-symbols span.disabled { background: var(--soft); color: #beb7ad; cursor: default; }
.artist-catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.artist-card { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 14px; min-height: 118px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .12s ease, transform .12s ease; }
.artist-card:hover { border-color: rgba(67, 36, 147, .36); transform: translateY(-1px); }
.artist-card-photo { width: 74px; height: 74px; border-radius: 50%; overflow: hidden; background: var(--soft); }
.artist-card-body { display: grid; align-content: center; gap: 5px; min-width: 0; }
.artist-card-body strong { font-size: 15px; line-height: 1.25; }
.artist-card-body em { color: var(--violet); font-size: 12px; font-style: normal; font-weight: 800; }
.artist-card-body span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.empty-catalog { grid-column: 1 / -1; display: grid; gap: 6px; }
.empty-catalog span { color: var(--muted); font-size: 14px; }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 20px; color: var(--muted); font-size: 13px; font-weight: 800; }
.artist-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 28px 0 0; color: #8a8379; font-size: 13px; font-weight: 800; }
.artist-breadcrumbs a { color: #5f596f; }
.artist-breadcrumbs a:hover { color: var(--violet); }
.artist-breadcrumbs span:last-child { color: #9c948a; font-weight: 700; }
.artist-profile-hero { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: center; padding-top: 22px; }
.artist-profile-copy .eyebrow, .artist-biography-hero .eyebrow { margin-bottom: 12px; }
.artist-profile-copy h1 { max-width: 760px; margin-top: 16px; margin-bottom: 12px; font-size: clamp(44px, 5vw, 78px); }
.artist-years { margin-bottom: 18px; color: var(--violet); font-size: 18px; font-weight: 800; }
.artist-profile-portrait { aspect-ratio: 1; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.artist-insights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-top: 0; }
.artist-insight-card { display: grid; align-content: start; min-height: 94px; padding: 16px 18px; border: 1px solid rgba(67, 36, 147, .12); border-left: 3px solid rgba(67, 36, 147, .34); border-radius: 8px; background: rgba(255, 255, 255, .68); }
.artist-insight-card .tag { margin-bottom: 9px; color: #7a746d; font-size: 10px; line-height: 1.2; letter-spacing: .06em; }
.artist-insight-card strong { display: block; color: #2f2922; font-size: 16px; line-height: 1.35; font-weight: 800; overflow-wrap: anywhere; }
.artist-insight-card p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.artist-text { color: #312d27; font-size: 16px; line-height: 1.7; }
.artist-text p { margin: 0 0 12px; }
.artist-text p:last-child { margin-bottom: 0; }
.artist-text ul, .artist-text ol { margin: 0 0 12px 22px; padding: 0; }
.artist-text blockquote { margin: 0; padding: 10px 14px; border-left: 3px solid var(--violet); background: var(--soft); }
.biography-more { width: fit-content; margin-top: 18px; }
.artist-biography-hero { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: center; padding-top: 22px; padding-bottom: 24px; }
.artist-biography-hero h1 { max-width: 860px; margin-top: 16px; margin-bottom: 12px; font-size: clamp(42px, 5vw, 72px); }
.artist-biography-portrait { aspect-ratio: 1; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.biography-layout { padding-top: 8px; }
.biography-article { max-width: 940px; }
.biography-section { padding: 28px 0; border-top: 1px solid var(--line); }
.biography-section:first-child { border-top: 0; padding-top: 0; }
.biography-section h2 { margin-bottom: 14px; font-size: 26px; }
.biography-section p { max-width: 860px; margin: 0 0 14px; color: #312d27; font-size: 17px; line-height: 1.72; }
.biography-section ul { display: grid; gap: 10px; max-width: 860px; margin: 12px 0 0; padding: 0; list-style: none; }
.biography-section li { position: relative; padding-left: 18px; color: #312d27; font-size: 16px; line-height: 1.55; }
.biography-section li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.biography-rich-text h2 { margin: 28px 0 14px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 26px; }
.biography-rich-text h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.biography-rich-text h3 { margin: 22px 0 10px; font-size: 21px; }
.biography-rich-text p { max-width: 860px; margin: 0 0 14px; color: #312d27; font-size: 17px; line-height: 1.72; }
.biography-rich-text ul, .biography-rich-text ol { display: grid; gap: 10px; max-width: 860px; margin: 12px 0 0 22px; padding: 0; color: #312d27; font-size: 16px; line-height: 1.55; }
.biography-rich-text blockquote { max-width: 860px; margin: 0 0 14px; padding: 12px 16px; border-left: 3px solid var(--violet); background: var(--soft); color: #4f4a43; font-size: 16px; line-height: 1.6; }
.journal-hero h1 { max-width: 760px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journal-card { display: grid; grid-template-rows: 210px 1fr; min-height: 410px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.journal-card-image { display: block; min-height: 0; background: var(--soft); }
.journal-card-image img { width: 100%; height: 100%; object-fit: cover; }
.journal-card-body { display: grid; align-content: start; gap: 10px; padding: 20px; }
.journal-card-body strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.15; font-weight: 500; }
.journal-card-body span:not(.tag) { color: var(--muted); font-size: 14px; line-height: 1.55; }
.journal-card-body em { color: #908b84; font-size: 13px; font-style: normal; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.breadcrumbs a { color: var(--violet); }
.article-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 32px; align-items: start; }
.article-hero h1 { max-width: 760px; }
.article-cover { margin: 0; }
.article-cover img { width: 100%; aspect-ratio: 14 / 9; border-radius: var(--radius); object-fit: cover; background: var(--soft); }
.article-cover figcaption { display: grid; gap: 4px; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.article-cover figcaption strong { color: var(--ink); font-size: 14px; line-height: 1.35; }
.article-cover figcaption span { display: block; }
.article-body-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 42px; align-items: start; }
.article-rich-text { min-width: 0; }
.article-rich-text img { display: block; width: 100%; max-width: 860px; height: auto; margin: 18px 0 22px; border-radius: 8px; }
.article-rich-text a { color: var(--violet); font-weight: 800; }
.article-rich-text p, .article-rich-text ul, .article-rich-text ol, .article-rich-text blockquote { max-width: none; }
.article-aside { display: grid; gap: 16px; position: sticky; top: 104px; justify-self: end; width: 300px; }
.article-aside .side-card h3 { margin-bottom: 10px; }
.article-aside .side-card p { margin-bottom: 8px; }
.artwork-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.artwork-preview-card { display: grid; grid-template-rows: 210px 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: border-color .12s ease, transform .12s ease; }
.artwork-preview-card:hover { border-color: rgba(67, 36, 147, .36); transform: translateY(-1px); }
.artwork-preview-image { min-height: 210px; background: var(--soft); }
.artwork-preview-card .copy { display: grid; gap: 6px; padding: 16px; }
.artwork-preview-card strong { font-size: 15px; line-height: 1.25; }
.artwork-preview-card em { color: var(--violet); font-size: 12px; font-style: normal; font-weight: 800; }
.artwork-preview-card span span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.study-grid h3 { margin-bottom: 10px; font-size: 18px; }
.study-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

@media (max-width: 1180px) {
  .header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: grid; }
  .nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; flex-direction: column; gap: 0; align-items: stretch; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 253, 250, .98); box-shadow: var(--shadow); }
  .nav a { padding: 13px 14px; border-radius: 7px; }
  .nav a:hover { background: var(--soft); }
  .nav-toggle:checked ~ .nav { display: flex; }
  .hero-copy { max-width: min(620px, calc(100% - 310px)); }
  .hero-full-art { right: 28px; height: calc(100% - 38px); }
  .hero-grid, .artists-community, .community-layout, .museum-section, .split, .catalog-hero, .artist-profile-hero, .artist-biography-hero, .article-hero-grid, .article-body-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .hero-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .artist-row { grid-template-columns: repeat(4, 1fr); }
  .cards, .museum-grid, .museum-photo-row, .collection-row, .footer, .artist-catalog-grid, .artist-insights, .artwork-preview-grid, .study-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .page { width: 100%; margin: 0; border-radius: 0; }
  .shell, .header, .footer, .bottom { padding-left: 18px; padding-right: 18px; }
  .header { min-height: 68px; }
  .logo { font-size: 22px; }
  .actions .btn, .actions .icon:nth-child(2) { display: none; }
  .hero-copy { padding: 30px 22px; }
  .hero-copy { max-width: none; padding-bottom: 320px; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 48px); }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 250px; }
  .hero-art { min-height: 670px; }
  .hero-full-art { top: auto; right: 20px; bottom: 22px; height: 310px; transform: none; }
  .hero-grid, .hero-side, .cards, .artist-row, .museum-grid, .museum-photo-row, .collection-row, .footer, .post-images, .artist-search, .artist-catalog-grid, .artist-insights, .artwork-preview-grid, .study-grid, .journal-grid, .article-hero-grid, .article-aside, .article-body-layout { grid-template-columns: 1fr; }
  .artist-biography-portrait { width: 132px; }
  .biography-section h2 { font-size: 23px; }
  .biography-section p { font-size: 16px; }
  .per-page-form { justify-content: flex-start; }
  .catalog-pagination { flex-wrap: wrap; justify-content: flex-start; }
  .post-images div { height: 210px; }
  .journal-main { grid-template-columns: 1fr; }
  .bottom { flex-direction: column; align-items: flex-start; }
  .composer { grid-template-columns: 1fr; }
}
