@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #030303;
  --ink: #09090a;
  --panel: #0f1011;
  --panel-soft: #151617;
  --ivory: #f2efe8;
  --muted: #b8b5af;
  --quiet: #85847f;
  --line: #292a2a;
  --gold: #c8a65b;
  --gold-light: #e0c47c;
  --steel: #869196;
  --forest: #183029;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --content: 1160px;
  --reading: 720px;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ivory);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  scrollbar-gutter: stable;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: 62px;
  line-height: 1.04;
}

h2 {
  font-size: 45px;
  line-height: 1.1;
}

h3 {
  font-size: 27px;
  line-height: 1.25;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--black);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(224, 196, 124, 0.15);
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 112px;
  align-items: center;
  width: min(calc(100% - 48px), var(--content));
  height: 100%;
  margin: 0 auto;
}

.brand {
  position: relative;
  z-index: 101;
  display: inline-grid;
  grid-template-columns: 45px 1fr;
  gap: 11px;
  align-items: center;
  width: max-content;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-wordmark small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-toggle,
.menu-toggle,
.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
}

.language-toggle {
  font-size: 12px;
  font-weight: 700;
}

.language-toggle:hover,
.icon-button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  position: relative;
  border-color: transparent;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 1px;
  margin-left: -11px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), var(--reading));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.text-button:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.button-solid {
  background: var(--gold);
  color: var(--black);
}

.button-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-subtle {
  border-color: var(--line);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  margin-left: 9px;
  content: "↗";
}

.text-link:hover {
  color: var(--ivory);
}

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(680px, calc(100svh - var(--header-height)));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.home-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.12), rgba(3, 3, 3, 0) 72%);
  content: "";
  pointer-events: none;
}

.home-hero-content {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 90px 0;
}

.home-hero-copy {
  max-width: 490px;
}

.home-hero h1 {
  max-width: 470px;
  margin-bottom: 26px;
  font-size: 54px;
}

.home-hero .lead {
  max-width: 480px;
  margin-bottom: 34px;
  color: #ddd9d1;
  font-size: 17px;
}

.home-hero .button-row {
  gap: 16px;
}

.home-hero .button {
  min-width: 178px;
}

.editorial-portals {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portal {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.portal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition:
    transform 500ms ease,
    opacity 300ms ease;
}

.portal-contain {
  background: #adaaa4;
}

.portal-contain img {
  object-fit: contain;
  opacity: 1;
}

.studio-photo {
  filter: brightness(1.08) contrast(1.04) saturate(1.02);
}

.portal:nth-child(2) img {
  object-position: 52% center;
}

.portal-content {
  position: absolute;
  inset: auto 0 0;
  padding: 72px 28px 27px;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.94));
}

.portal-content span {
  display: block;
  color: #d9d5ce;
  font-size: 13px;
}

.portal-content strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.portal:hover img {
  transform: scale(1.025);
  opacity: 1;
}

.featured-section {
  padding: 110px 0 124px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.art-card {
  display: block;
  min-width: 0;
}

.art-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px;
  background: #0b0b0c;
}

.art-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.art-card:hover .art-card-media img {
  transform: scale(1.018);
}

.art-card-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 18px 2px 0;
}

.art-card-caption strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #706343;
  border-radius: 2px;
  background: #17140d;
  color: #f0d892;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.availability-badge-card {
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.status-available {
  color: #c6d9cd;
}

.availability-badge.status-available {
  border-color: #476052;
  background: #0c1712;
}

.status-unavailable {
  color: #f0d892;
}

.art-card.is-unavailable .art-card-media {
  border-color: #62583f;
}

.art-card-caption small,
.art-card-number {
  color: var(--quiet);
  font-size: 12px;
}

.chapter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 650px;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.chapter-media {
  min-height: 650px;
  overflow: hidden;
}

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

.chapter-media.is-artwork {
  display: grid;
  place-items: center;
  padding: 38px;
  background: #09090a;
}

.chapter-media.is-artwork img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chapter-copy {
  display: grid;
  align-content: center;
  padding: 70px max(48px, calc((100vw - var(--content)) / 2));
}

.chapter-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.statement-band {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 80px 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.statement-band p {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.25;
}

.newsletter-band {
  padding: 110px 0;
  background: var(--panel);
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner p {
  color: var(--muted);
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 32px;
}

.field,
.select-field {
  width: 100%;
  min-height: 52px;
  border: 1px solid #5a5140;
  border-radius: 2px;
  background: #09090a;
  color: var(--ivory);
}

.field {
  padding: 13px 16px;
}

textarea.field {
  min-height: 176px;
  resize: vertical;
}

.field::placeholder {
  color: #8f8b84;
  opacity: 1;
}

.field:hover,
.field:focus,
.select-field:hover,
.select-field:focus {
  border-color: var(--gold);
}

.form-status {
  min-height: 26px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 13px;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 490px;
  padding: 90px 0 76px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.page-hero.compact {
  min-height: 390px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.page-hero .lead {
  max-width: 820px;
  margin-bottom: 0;
}

.collection-index {
  padding: 96px 0 124px;
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 760px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.collection-feature-media {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #adaaa4;
  color: var(--black);
  cursor: zoom-in;
}

.collection-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(242, 239, 232, 0.42);
  border-radius: 2px;
  background: rgba(3, 3, 3, 0.84);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
}

.collection-feature-copy {
  display: grid;
  align-content: center;
  padding: 54px;
}

.collection-feature-copy p:not(.eyebrow) {
  color: var(--muted);
}

.collection-feature-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 36px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.collection-feature-meta strong,
.collection-feature-meta span {
  display: block;
}

.collection-feature-meta strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.collection-feature-meta span {
  color: var(--quiet);
  font-size: 12px;
}

.catalogue {
  padding: 72px 0 128px;
}

.catalogue-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalogue-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.select-field {
  width: 240px;
  padding: 10px 36px 10px 14px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 30px;
}

.vision-intro {
  padding: 110px 0 100px;
}

.vision-intro-copy {
  max-width: 660px;
}

.vision-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.vision-value {
  min-height: 250px;
  padding: 54px 34px;
  border-right: 1px solid rgba(200, 166, 91, 0.55);
}

.vision-value:last-child {
  border-right: 0;
}

.vision-value h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.vision-value p {
  margin: 0;
  color: var(--muted);
}

.artist-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  padding: 110px max(24px, calc((100vw - var(--content)) / 2));
  gap: 72px;
  background: var(--ink);
}

.artist-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #adaaa4;
}

.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artist-copy {
  align-self: center;
}

.artist-copy p:not(.eyebrow) {
  color: var(--muted);
}

.path-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  padding: 120px 0;
}

.path-copy p {
  color: var(--muted);
}

.fact-list {
  margin: 0;
}

.fact-list > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(200, 166, 91, 0.7);
}

.fact-list > div:first-child {
  padding-top: 0;
}

.fact-list dt {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 22px;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.journal-list {
  padding: 94px 0 126px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 60px 44px;
}

.journal-card {
  display: flex;
  flex-direction: column;
}

.journal-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0c;
  margin-bottom: 28px;
}

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

.journal-card:hover .journal-card-media img {
  transform: scale(1.04);
}

.journal-card-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journal-card-copy h2 {
  font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.65rem);
  line-height: 1.22;
  margin: 0;
}

.journal-card-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.journal-card-copy .text-link {
  margin-top: 6px;
}

.article-hero {
  padding: 100px 0 72px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 920px;
}

.article-cover {
  display: grid;
  place-items: center;
  width: min(calc(100% - 48px), var(--content));
  max-height: 680px;
  margin: 0 auto;
  overflow: hidden;
  background: #0b0b0c;
}

.article-cover img {
  width: 100%;
  height: min(680px, 65vw);
  min-height: 360px;
  object-fit: contain;
}

.article-body {
  padding: 90px 0 120px;
}

.article-body p {
  color: #cbc7c0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.85;
}

.article-body blockquote {
  margin: 58px 0;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--gold);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.35;
}

.article-end {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 72px;
  padding: 90px 0 126px;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
}

.contact-intro p {
  color: var(--muted);
}

.contact-form {
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  color: #d8d4cd;
  font-size: 13px;
}

.artwork-page {
  padding: 72px 0 120px;
}

.artwork-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: 68px;
  align-items: start;
}

.artwork-viewer {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.artwork-image-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 620px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #080808;
}

.artwork-image-button img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
}

.viewer-hint {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--quiet);
  font-size: 12px;
}

.artwork-info h1 {
  margin-bottom: 12px;
  font-size: 48px;
}

.artwork-subtitle {
  margin-bottom: 32px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
}

.artwork-status-row {
  margin: -16px 0 28px;
}

.artwork-description {
  color: #d0ccc5;
  font-size: 17px;
}

.artwork-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0;
  border-block: 1px solid var(--line);
}

.artwork-meta > div {
  padding: 19px 0;
}

.artwork-meta > div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.artwork-meta > div:nth-child(even) {
  padding-left: 20px;
}

.artwork-meta span,
.artwork-meta strong {
  display: block;
}

.artwork-meta strong.status-available {
  color: #c6d9cd;
}

.artwork-meta strong.status-unavailable {
  color: #f0d892;
}

.artwork-meta span {
  margin-bottom: 4px;
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}

.artwork-meta strong {
  color: var(--ivory);
  font-size: 14px;
}

.details-panel {
  margin: 34px 0;
  border-block: 1px solid var(--line);
}

.details-panel summary {
  min-height: 50px;
  padding: 13px 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.details-content {
  padding: 4px 0 24px;
  color: var(--muted);
}

.details-content p:last-child {
  margin-bottom: 0;
}

.related-section {
  padding-top: 100px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.related-grid .art-card-caption strong {
  font-size: 18px;
}

.lightbox {
  width: min(92vw, 1100px);
  max-width: none;
  height: min(90vh, 900px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid #4b463c;
  border-radius: 3px;
  background: #050505;
  color: var(--ivory);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-inner {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
}

.lightbox-media {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.lightbox-media img {
  position: absolute;
  inset: 34px;
  width: calc(100% - 68px);
  max-width: none;
  height: calc(100% - 68px);
  max-height: none;
  object-fit: contain;
}

.lightbox-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  padding: 10px 16px 10px 24px;
  border-top: 1px solid var(--line);
}

.lightbox-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 82px 0 28px;
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-main {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  display: grid;
  justify-items: center;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-logo strong,
.footer-logo span {
  display: block;
  text-transform: uppercase;
}

.footer-logo strong {
  margin-top: 14px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.footer-logo span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.footer-tagline {
  margin: 22px 0 24px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}

.footer-links a {
  min-height: 44px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.footer-meta .language-toggle {
  min-width: 40px;
  min-height: 40px;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 500;
}

.js [data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform 520ms ease,
    opacity 520ms ease;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 96px;
  }

  .header-inner {
    grid-template-columns: 150px minmax(0, 1fr) 96px;
  }

  .desktop-nav {
    gap: 25px;
  }

  .home-hero {
    min-height: 620px;
  }

  .portal {
    min-height: 430px;
  }

  .collection-feature {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .collection-feature-copy {
    padding: 38px;
  }

  .artist-section {
    gap: 44px;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 88px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .shell,
  .narrow {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 28px), var(--content));
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    height: calc(100svh - var(--header-height));
    padding: 44px 24px 30px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: #030303;
    transition:
      opacity 180ms ease,
      visibility 220ms ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu-links {
    display: grid;
  }

  .mobile-menu-links a {
    display: flex;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
  }

  .mobile-menu-note {
    margin: 0;
    color: var(--quiet);
    font-size: 13px;
  }

  .home-hero {
    min-height: 680px;
    align-items: start;
  }

  .home-hero-media img {
    object-position: 64% center;
  }

  .home-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(3, 3, 3, 0.78) 0,
        rgba(3, 3, 3, 0.58) 62%,
        rgba(3, 3, 3, 0.2) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 3, 3, 0.26),
        rgba(3, 3, 3, 0.06) 38%,
        rgba(3, 3, 3, 0.72)
      );
  }

  .home-hero-content {
    width: min(calc(100% - 36px), var(--content));
    padding: 78px 0 64px;
  }

  .home-hero-copy {
    max-width: 370px;
  }

  .home-hero h1 {
    max-width: 350px;
    font-size: 39px;
  }

  .home-hero .lead {
    max-width: 350px;
    font-size: 16px;
  }

  .portal-grid,
  .featured-grid,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .editorial-portals,
  .featured-section {
    padding: 76px 0;
  }

  .portal {
    min-height: 500px;
  }

  .featured-grid,
  .catalogue-grid {
    gap: 48px;
  }

  .chapter-section,
  .collection-feature,
  .artist-section,
  .path-section,
  .journal-entry,
  .contact-layout,
  .artwork-detail {
    grid-template-columns: 1fr;
  }

  .chapter-media {
    min-height: 500px;
  }

  .chapter-copy {
    padding: 62px 22px 72px;
  }

  .statement-band {
    min-height: 360px;
    padding-inline: 20px;
  }

  .statement-band p {
    font-size: 34px;
  }

  .newsletter-band {
    padding: 78px 0;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .inline-form .button {
    width: 100%;
  }

  .page-hero {
    min-height: 400px;
    padding: 64px 0 58px;
  }

  .page-hero.compact {
    min-height: 330px;
  }

  .collection-index {
    padding: 64px 0 88px;
  }

  .collection-feature-media {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-feature-copy {
    padding: 34px 24px 40px;
  }

  .catalogue {
    padding: 48px 0 92px;
  }

  .catalogue-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .select-field {
    width: 100%;
  }

  .vision-intro {
    padding: 76px 0 64px;
  }

  .vision-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-value {
    min-height: 220px;
    border-bottom: 1px solid rgba(200, 166, 91, 0.55);
  }

  .vision-value:nth-child(2) {
    border-right: 0;
  }

  .vision-value:nth-child(n + 3) {
    border-bottom: 0;
  }

  .artist-section {
    min-height: 0;
    padding: 76px 16px;
  }

  .artist-media {
    min-height: 620px;
  }

  .path-section {
    gap: 56px;
    padding: 82px 0;
  }

  .journal-list {
    padding: 66px 0 90px;
  }

  .journal-entry-media {
    min-height: 480px;
  }

  .article-hero {
    padding: 70px 0 54px;
  }

  .article-cover {
    width: 100%;
  }

  .article-cover img {
    height: 480px;
  }

  .article-body {
    padding: 66px 0 88px;
  }

  .article-body p {
    font-size: 18px;
  }

  .article-body blockquote {
    margin: 42px 0;
    padding-left: 22px;
    font-size: 27px;
  }

  .contact-layout {
    gap: 44px;
    padding: 64px 0 90px;
  }

  .contact-intro,
  .artwork-viewer {
    position: static;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .artwork-page {
    padding: 38px 0 88px;
  }

  .artwork-detail {
    gap: 46px;
  }

  .artwork-image-button {
    min-height: 500px;
    padding: 16px;
  }

  .artwork-info h1 {
    font-size: 40px;
  }

  .related-section {
    padding-top: 74px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 31px;
  }

  .brand {
    grid-template-columns: 39px 1fr;
    gap: 9px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand-wordmark strong {
    font-size: 17px;
  }

  .brand-wordmark small {
    font-size: 9px;
  }

  .language-toggle,
  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
  }

  .home-hero {
    min-height: 700px;
  }

  .home-hero-content {
    padding-top: 64px;
  }

  .home-hero .button-row {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .portal {
    min-height: 440px;
  }

  .portal-contain {
    min-height: 560px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .chapter-media,
  .journal-entry-media {
    min-height: 420px;
  }

  .collection-feature-media {
    min-height: 580px;
  }

  .statement-band p {
    font-size: 29px;
  }

  .vision-values {
    grid-template-columns: 1fr;
  }

  .vision-value {
    min-height: 0;
    padding: 38px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 166, 91, 0.55);
  }

  .vision-value:nth-child(3) {
    border-bottom: 1px solid rgba(200, 166, 91, 0.55);
  }

  .artist-media {
    min-height: 580px;
  }

  .article-cover img {
    min-height: 320px;
    height: 400px;
  }

  .artwork-image-button {
    min-height: 440px;
    padding: 12px;
  }

  .art-card-media {
    padding: 12px;
  }

  .artwork-meta {
    grid-template-columns: 1fr;
  }

  .artwork-meta > div:nth-child(odd),
  .artwork-meta > div:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .artwork-meta > div:last-child {
    border-bottom: 0;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-media {
    padding: 0;
  }

  .lightbox-media img {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid Highlight;
  }

  .availability-badge,
  .button,
  .icon-button,
  .language-toggle,
  .menu-toggle {
    border: 1px solid ButtonText;
  }

  .availability-badge {
    color: CanvasText;
  }
}
