:root {
  --paper: #f3efe6;
  --paper-deep: #e7dece;
  --ink: #17282a;
  --muted: #57605c;
  --line: rgba(23, 40, 42, 0.24);
  --line-strong: rgba(23, 40, 42, 0.42);
  --sea: #153f49;
  --sea-bright: #246c78;
  --ochre: #995b18;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1420px, calc(100vw - 80px));
  --small-shell: min(940px, calc(100vw - 72px));
  --section-space: clamp(96px, 10vw, 168px);
  --shadow-soft: 0 10px 28px rgba(28, 38, 36, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white);
}

::selection {
  color: var(--white);
  background: var(--sea-bright);
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.6rem, 7.8vw, 8rem);
}

h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--sea);
  transform: translateY(-160%);
}

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

.eyebrow,
.micro-label {
  margin-bottom: 18px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.micro-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 0.87;
  text-decoration: none;
}

.wordmark span:last-child {
  padding-left: 1.15rem;
  color: var(--sea);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 58px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding-block: 12px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.language-switcher {
  flex: 0 0 auto;
  padding: 2px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sea);
  background: rgba(255, 253, 248, 0.32);
}

.language-switcher a {
  min-width: 42px;
  min-height: 42px;
  padding: 9px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.language-switcher a:hover {
  background: var(--paper-deep);
}

.language-switcher a[aria-current] {
  color: var(--white);
  background: var(--sea);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.hero {
  min-height: calc(100svh - 93px);
  padding-block: clamp(56px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(52px, 7vw, 118px);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 38px;
}

.hero__intro {
  max-width: 590px;
  margin-bottom: 42px;
  color: #3f4947;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.47;
}

.hero__art {
  width: 100%;
  margin: 0;
  justify-self: end;
}

.hero__art a {
  min-height: min(68svh, 760px);
  padding: clamp(7px, 0.8vw, 12px);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.hero__image {
  width: auto;
  max-height: min(76svh, 840px);
  object-fit: contain;
}

.hero__art figcaption {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.hero__art figcaption time {
  font-variant-numeric: tabular-nums;
}

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

.button {
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button--dark {
  color: var(--white);
  background: var(--sea);
}

.button--dark:hover {
  background: var(--sea-bright);
}

.button--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  color: var(--sea);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--ochre);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 100px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.38fr);
  align-items: end;
  gap: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured {
  border-top: 1px solid var(--line);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: clamp(64px, 8vw, 118px) clamp(28px, 4vw, 66px);
}

.featured-grid .art-card:nth-child(1) {
  grid-column: 1 / span 5;
}

.featured-grid .art-card:nth-child(2) {
  grid-column: 8 / span 5;
  margin-top: 14vw;
}

.featured-grid .art-card:nth-child(3) {
  grid-column: 2 / span 4;
}

.featured-grid .art-card:nth-child(4) {
  grid-column: 7 / span 6;
}

.featured-grid .art-card:nth-child(5) {
  grid-column: 1 / span 6;
}

.featured-grid .art-card:nth-child(6) {
  grid-column: 9 / span 4;
  margin-top: 8vw;
}

.featured-grid .art-card:nth-child(7) {
  grid-column: 2 / span 4;
}

.featured-grid .art-card:nth-child(8) {
  grid-column: 7 / span 6;
}

.featured-grid .art-card:nth-child(9) {
  grid-column: 3 / span 5;
}

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

.art-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5px, 0.55vw, 9px);
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.art-card__image {
  width: 100%;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.art-card__image-link:hover .art-card__image {
  transform: scale(1.018);
}

.art-card__caption {
  padding-top: 20px;
  padding-right: 8px;
}

.art-card__caption h2,
.art-card__caption h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.art-card__caption h2 a,
.art-card__caption h3 a {
  text-decoration: none;
}

.art-card__subtitle,
.art-card__year {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.025em;
}

.art-card__subtitle {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.96rem;
}

.section-action {
  margin-top: clamp(65px, 8vw, 120px);
  text-align: center;
}

.about-teaser {
  color: var(--white);
  background: var(--sea);
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 70px;
}

.about-teaser .eyebrow {
  color: #c9a86e;
}

.about-teaser h2 {
  max-width: 860px;
  margin-bottom: 34px;
}

.about-teaser p:not(.eyebrow) {
  max-width: 750px;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

.contact-band {
  padding-block: clamp(88px, 11vw, 170px);
  color: var(--white);
  background: var(--ochre);
  text-align: center;
}

.contact-band__inner {
  max-width: 900px;
}

.contact-band .eyebrow {
  color: var(--white);
}

.contact-band h2 {
  margin-bottom: 24px;
}

.contact-band p:not(.eyebrow) {
  margin-bottom: 38px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.page-intro {
  padding-top: clamp(75px, 9vw, 135px);
  padding-bottom: clamp(72px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  margin-bottom: 32px;
}

.page-intro > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

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

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(72px, 9vw, 142px) clamp(30px, 5vw, 78px);
}

.artwork-breadcrumb {
  padding-top: 34px;
}

.artwork-breadcrumb a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artwork-detail {
  padding-block: clamp(55px, 7vw, 105px) clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: clamp(45px, 8vw, 120px);
}

.artwork-detail__image-wrap {
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.artwork-detail__image {
  width: auto;
  max-height: 84svh;
  object-fit: contain;
}

.artwork-detail__copy {
  padding-top: clamp(12px, 3vw, 48px);
}

.artwork-detail__copy h1 {
  margin-bottom: 31px;
  font-size: clamp(3rem, 5.3vw, 6rem);
}

.artwork-detail__description {
  margin-bottom: 28px;
  color: #394541;
  font-size: 1rem;
  line-height: 1.72;
}

.artwork-detail__description[lang="en"] {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.4;
}

.artwork-meta {
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
}

.artwork-meta > div {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}

.artwork-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artwork-meta dd {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.35;
}

.artwork-detail .button {
  margin-top: 6px;
}

.artwork-pagination {
  padding-block: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.artwork-pagination a {
  min-height: 104px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.artwork-pagination a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.artwork-pagination span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artwork-pagination strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.page-intro--about {
  border-bottom: 0;
}

.about-story {
  padding-bottom: var(--section-space);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.about-story__images {
  position: relative;
  min-height: 720px;
}

.about-story__primary {
  width: 68%;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.about-story__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  margin: 0;
  padding: 7px;
  border: 12px solid var(--paper);
  outline: 1px solid var(--line-strong);
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.about-story__image {
  width: 100%;
}

.about-story figcaption {
  padding: 10px 4px 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-story__copy {
  padding-top: clamp(12px, 4vw, 68px);
}

.about-story__copy .standfirst {
  margin-bottom: 33px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.about-story__copy > p:not(.standfirst) {
  color: #3f4947;
  font-family: var(--serif);
  font-size: 1.16rem;
}

.about-story__copy .button {
  margin-top: 20px;
}

.contact-layout {
  padding-block: var(--section-space);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.contact-form {
  padding: clamp(28px, 5vw, 70px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 25px;
  display: block;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label > span:not(.consent span) {
  margin-bottom: 8px;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.contact-form textarea {
  min-height: 165px;
  padding: 15px;
  border: 1px solid var(--ink);
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sea);
}

.selected-artwork {
  margin: -6px 0 28px;
  padding: 14px 16px;
  border-left: 3px solid var(--ochre);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.9rem;
}

.selected-artwork[hidden] {
  display: none;
}

.selected-artwork p,
.selected-artwork strong {
  margin: 0;
}

.selected-artwork p > span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-artwork strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.selected-artwork .text-link {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: var(--sea);
  background: transparent;
  cursor: pointer;
}

.consent {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--sea);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-aside {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.contact-aside p:not(.eyebrow) {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.legal-copy {
  width: var(--small-shell);
  padding-block: var(--section-space);
}

.legal-copy h2 {
  margin: 55px 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: #3f4947;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.message-page {
  min-height: 70vh;
  padding-block: clamp(110px, 15vw, 210px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.message-page h1 {
  max-width: 900px;
  margin-bottom: 35px;
}

.message-page > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.site-footer {
  padding-block: 58px 42px;
  color: rgba(255, 253, 248, 0.72);
  background: #112d33;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
}

.site-footer p {
  margin-bottom: 4px;
  font-size: 0.78rem;
}

.site-footer__name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem !important;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.site-footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 48px, 1320px);
    --small-shell: min(100% - 48px, 940px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 850px;
  }

  .hero__art {
    width: min(88%, 760px);
    order: -1;
    justify-self: start;
  }

  .hero__art a {
    min-height: 0;
  }

  .hero__image {
    max-height: none;
  }

  .artwork-detail,
  .about-story {
    grid-template-columns: 1fr;
  }

  .artwork-detail__copy {
    max-width: 700px;
  }

  .about-story__images {
    width: min(100%, 760px);
  }

  .about-story__copy {
    max-width: 700px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --small-shell: calc(100% - 32px);
    --section-space: 82px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .site-header__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .wordmark {
    min-width: 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    padding: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    grid-column: 3;
    grid-row: 1;
    cursor: pointer;
  }

  .language-switcher {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1;
  }

  .language-switcher a {
    min-width: 40px;
  }

  .js .nav-toggle {
    display: flex;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .nav-toggle__line {
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    display: flex;
    gap: 22px;
  }

  html:not(.js) .site-header__inner {
    padding-block: 14px;
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  html:not(.js) .site-nav {
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 12px;
    margin-left: 0;
  }

  .js .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    padding: 120px 25px 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--sea);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 17px;
    right: 16px;
    color: var(--white);
  }

  .js .nav-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js body.nav-open .language-switcher {
    position: fixed;
    top: 15px;
    right: 76px;
    border-color: rgba(255, 253, 248, 0.5);
    color: var(--white);
    background: var(--sea);
  }

  .js body.nav-open .language-switcher a:hover {
    color: var(--sea);
    background: rgba(255, 253, 248, 0.86);
  }

  .js body.nav-open .language-switcher a[aria-current] {
    color: var(--sea);
    background: var(--white);
  }

  .js .site-nav a {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 88px;
    gap: 60px;
  }

  .hero h1 {
    margin-bottom: 30px;
  }

  .hero__intro {
    margin-bottom: 32px;
    font-size: 1.15rem;
  }

  .hero__art {
    width: 89%;
  }

  .hero__art a {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-grid {
    display: block;
  }

  .featured-grid .art-card {
    width: 100%;
    margin: 0 0 72px !important;
  }

  .featured-grid .art-card:nth-child(even) {
    width: 78%;
    margin-left: auto !important;
  }

  .about-teaser__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .works-grid .art-card {
    width: 100% !important;
    margin: 0 !important;
  }

  .artwork-detail {
    padding-top: 35px;
    gap: 52px;
  }

  .artwork-detail__copy h1 {
    font-size: 3.3rem;
  }

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

  .artwork-pagination a {
    padding: 22px 0;
  }

  .artwork-pagination a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .about-story__images {
    min-height: 520px;
  }

  .about-story__primary {
    width: 78%;
  }

  .about-story__secondary {
    width: 45%;
    border-width: 8px;
  }

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

  .contact-form {
    padding: 26px 19px 32px;
  }

  .selected-artwork {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
