:root {
  --color-snow: #f8f8f5;
  --color-snow-pure: #ffffff;
  --color-editorial-grey: #292927;
  --color-soft-grey: #686762;
  --color-line-grey: #d8d7d1;
  --color-ivory-panel: #eee9df;
  --color-dry-clay: #9a6f5e;
  --color-muted-bronze: #806b51;
  --color-ink-on-bronze: #1f1e1b;
  --color-focus-ring: #a85138;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --text-label: 0.6875rem;
  --text-meta: 0.8125rem;
  --text-small: 0.9375rem;
  --text-body: 1.0625rem;
  --text-lead: 1.375rem;
  --text-section: clamp(2rem, 4vw, 3rem);
  --text-title: clamp(2.5rem, 6vw, 4.5rem);
  --text-display: clamp(2.625rem, 8vw, 4.5rem);

  --leading-label: 1.35;
  --leading-meta: 1.45;
  --leading-small: 1.6;
  --leading-body: 1.65;
  --leading-lead: 1.35;
  --leading-heading: 1.04;
  --leading-display: 0.98;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --container-max: 82.5rem;
  --container-padding: 1.25rem;

  --section-space: 3rem;

  --surface-page: var(--color-snow);
  --surface-raised: var(--color-snow-pure);
  --surface-panel: var(--color-ivory-panel);
  --surface-dark: var(--color-editorial-grey);

  --border-subtle: 1px solid var(--color-line-grey);
  --border-accent: 1px solid var(--color-muted-bronze);

  --radius-none: 0;
  --radius-control: 0.125rem;
  --radius-modal: 0.25rem;
  --radius-status: 999px;

  --shadow-none: none;
  --shadow-modal: 0 1.25rem 3.75rem rgb(41 41 39 / 14%);

  --duration-fast: 180ms;
  --duration-menu: 300ms;
  --duration-image: 1400ms;
  --ease-editorial: cubic-bezier(0.2, 0.65, 0.25, 1);
}

@media (min-width: 48rem) {
  :root {
    --container-padding: 3rem;
    --section-space: 4rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --container-padding: 2rem;
    --section-space: 6rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--surface-page);
  color: var(--color-editorial-grey);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:has(dialog[open]),
body.is-scroll-locked {
  overflow: hidden;
}

main,
header,
footer,
section,
article,
aside,
nav,
figure,
form,
fieldset,
dialog {
  min-width: 0;
}

img,
picture,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

img {
  background-color: var(--surface-panel);
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: currentcolor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3125rem;
  overflow-wrap: anywhere;
  transition:
    color var(--duration-fast) ease,
    text-decoration-color var(--duration-fast) ease,
    text-decoration-thickness var(--duration-fast) ease;
}

a:hover {
  color: var(--color-muted-bronze);
  text-decoration-thickness: 2px;
}

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

button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--color-line-grey);
  border-radius: var(--radius-control);
  background: var(--surface-raised);
  color: var(--color-editorial-grey);
}

input,
select {
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
}

textarea {
  min-height: 8rem;
  padding: 0.75rem 0.875rem;
  resize: vertical;
}

select {
  appearance: auto;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-soft-grey);
  opacity: 1;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1rem;
  min-height: 1rem;
  padding: 0;
  accent-color: var(--color-muted-bronze);
}

label {
  display: inline-block;
  margin-block-end: var(--space-2);
  color: var(--color-editorial-grey);
  font-size: var(--text-small);
  line-height: var(--leading-small);
}

fieldset {
  margin: 0 0 var(--space-5);
  padding: 0;
  border: 0;
}

legend {
  margin-block-end: var(--space-2);
  padding: 0;
  font-family: var(--font-heading);
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

button,
input,
textarea,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 var(--space-4);
  color: var(--color-editorial-grey);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display);
  line-height: var(--leading-display);
}

h2 {
  font-size: var(--text-title);
  line-height: var(--leading-heading);
}

h3 {
  font-size: var(--text-section);
  line-height: 1.12;
}

h4 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.18;
}

h5 {
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

h6 {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: var(--leading-small);
  text-transform: uppercase;
}

p {
  margin-block: 0 var(--space-4);
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  margin-block: 0 var(--space-4);
  padding-inline-start: 1.25rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  min-width: 0;
}

main ul:not([class]),
main ol:not([class]),
article ul:not([class]),
article ol:not([class]),
.rte ul,
.rte ol {
  display: grid;
  gap: var(--space-2);
}

dl {
  margin-block: 0 var(--space-4);
}

dt {
  color: var(--color-editorial-grey);
  font-weight: 500;
}

dd {
  margin: 0 0 var(--space-3);
  color: var(--color-soft-grey);
}

blockquote {
  margin: 0 0 var(--space-5);
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-inline-start: 1px solid var(--color-muted-bronze);
  font-family: var(--font-heading);
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

blockquote p {
  margin-block-end: var(--space-3);
}

cite {
  color: var(--color-soft-grey);
  font-family: var(--font-body);
  font-size: var(--text-meta);
  font-style: normal;
  letter-spacing: 0.04em;
}

hr {
  height: 1px;
  margin-block: var(--space-6);
  border: 0;
  background: var(--color-line-grey);
}

figure {
  margin: 0 0 var(--space-5);
}

figcaption {
  margin-block-start: var(--space-3);
  color: var(--color-soft-grey);
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

table {
  width: 100%;
  margin-block: 0 var(--space-5);
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: var(--space-3);
  border-bottom: var(--border-subtle);
  text-align: start;
  vertical-align: top;
}

th {
  font-weight: 500;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

code,
kbd,
samp {
  overflow-wrap: anywhere;
}

pre {
  max-width: 100%;
  margin-block: 0 var(--space-5);
  padding: var(--space-4);
  overflow: auto;
  background: var(--surface-panel);
  font-size: 0.875em;
}

small {
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

address {
  margin-block: 0 var(--space-4);
  font-style: normal;
}

::selection {
  background: var(--color-dry-clay);
  color: var(--color-ink-on-bronze);
}

.container {
  width: min(100% - (2 * var(--container-padding)), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--tight {
  padding-block: var(--space-8);
}

.section--dark {
  background: var(--surface-dark);
  color: var(--color-snow);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6,
.section--dark label,
.section--dark dt {
  color: var(--color-snow);
}

.section--dark p,
.section--dark dd,
.section--dark figcaption,
.section--dark small,
.section--dark cite {
  color: color-mix(in srgb, var(--color-snow) 78%, transparent);
}

.section--dark a:hover {
  color: var(--color-ivory-panel);
}

.section--dark hr {
  background: color-mix(in srgb, var(--color-snow) 28%, transparent);
}

.stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--stack-gap, var(--space-4));
}

.stack > * {
  min-width: 0;
}

.stack > :last-child {
  margin-block-end: 0;
}

.cluster {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-gap, var(--space-3));
}

.cluster > * {
  min-width: 0;
}

.split {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--split-gap, var(--space-4));
}

.split > * {
  min-width: 0;
}

.eyebrow,
.caption,
.collection-number {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: var(--leading-label);
  text-transform: uppercase;
}

.eyebrow,
.collection-number {
  color: var(--color-muted-bronze);
}

.caption {
  color: var(--color-soft-grey);
}

.meta {
  margin: 0;
  color: var(--color-soft-grey);
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

.lead {
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

.panel {
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  background: var(--surface-panel);
  border-radius: var(--radius-none);
}

.panel > :last-child {
  margin-block-end: 0;
}

.rule {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--color-line-grey);
}

.rule--accent {
  background: var(--color-muted-bronze);
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--color-muted-bronze);
  border-radius: var(--radius-control);
  background: var(--color-muted-bronze);
  color: var(--color-ink-on-bronze);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.button:hover {
  border-color: var(--color-dry-clay);
  background: var(--color-dry-clay);
  color: var(--color-ink-on-bronze);
  text-decoration: none;
}

.button--secondary {
  border-color: var(--color-editorial-grey);
  background: transparent;
  color: var(--color-editorial-grey);
}

.button--secondary:hover {
  border-color: var(--color-muted-bronze);
  background: transparent;
  color: var(--color-muted-bronze);
}

.button--text {
  min-height: auto;
  padding: 0 0 var(--space-1);
  border: 0;
  border-bottom: 1px solid currentcolor;
  border-radius: 0;
  background: transparent;
  color: var(--color-editorial-grey);
  justify-content: flex-start;
  text-align: start;
}

.button--text:hover {
  background: transparent;
  color: var(--color-muted-bronze);
}

.button-group {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.button-group > * {
  min-width: 0;
}

.media-frame {
  display: block;
  overflow: hidden;
  background: var(--surface-panel);
  border-radius: var(--radius-none);
}

.media-frame > img,
.media-frame > picture > img,
.media-frame > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-image) var(--ease-editorial);
}

a.media-frame:hover > img,
a.media-frame:hover > picture > img,
a.media-frame:hover > video {
  transform: scale(1.025);
}

.media-portrait {
  aspect-ratio: 4 / 5;
}

.media-reportage {
  aspect-ratio: 3 / 2;
}

.media-wide {
  aspect-ratio: 16 / 9;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-2);
  margin-block-end: var(--space-5);
}

.form-field > :last-child {
  margin-block-end: 0;
}

.form-field input,
.form-field textarea,
.form-field select {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--color-muted-bronze);
}

.form-hint,
.form-error {
  margin: 0;
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

.form-hint {
  color: var(--color-soft-grey);
}

.form-error {
  color: #8a3027;
}

dialog {
  width: min(calc(100% - 2rem), 36rem);
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: clamp(var(--space-5), 5vw, var(--space-7));
  overflow: auto;
  border: 0;
  border-radius: var(--radius-modal);
  background: var(--surface-raised);
  color: var(--color-editorial-grey);
  box-shadow: var(--shadow-modal);
}

dialog::backdrop {
  background: rgb(41 41 39 / 58%);
}

dialog > :last-child {
  margin-block-end: 0;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-editorial-grey);
  color: var(--color-snow);
  transform: translateY(-150%);
  transition: transform var(--duration-fast) ease;
}

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

@media (max-width: 47.9375rem) {
  h1 {
    font-size: clamp(2.625rem, 12vw, 3.125rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .section--tight {
    padding-block: var(--space-7);
  }

  .media-wide {
    aspect-ratio: 3 / 2;
  }

  .button-group {
    align-items: stretch;
    flex-direction: column;
  }

  .button-group .button {
    width: 100%;
  }
}

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

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

  a.media-frame:hover > img,
  a.media-frame:hover > picture > img,
  a.media-frame:hover > video {
    transform: none;
  }
}