:root {
  --ink: #161613;
  --ink-soft: #33332e;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --white: #fffef9;
  --line: rgba(22, 22, 19, 0.18);
  --line-light: rgba(255, 254, 249, 0.24);
  --accent: #80e0e5;
  --hero-bg: #11110f;
  --hero-accent: #80e0e5;
  --hero-glow: rgba(128, 224, 229, 0.10);
  --accent-deep: #195f69;
  --content: min(92vw, 1420px);
  --header-height: 96px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--hero-accent, var(--accent));
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
}

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

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

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 180px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 254, 249, 0.68);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 7.3vw, 8.6rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 6.25rem);
  line-height: 0.96;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.nav-toggle:focus-visible,
.work-card:focus-visible,
.hero-art__next:focus-visible,
.contact-row:focus-visible,
.lightbox button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

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

.button--light:hover {
  background: var(--hero-accent, var(--accent));
}

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

.button--dark:hover {
  background: var(--accent-deep);
}

.button--outline-light {
  border-color: rgba(255, 254, 249, 0.62);
  color: var(--white);
  background: transparent;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 650;
  transition: gap 220ms var(--ease), opacity 220ms var(--ease);
}

.text-link:hover {
  gap: 18px;
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(4vw, 28px);
  color: var(--white);
  transition: min-height 260ms var(--ease), background-color 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  left: max(4vw, 28px);
  right: max(4vw, 28px);
  bottom: 0;
  height: 1px;
  background: var(--line-light);
  transition: opacity 260ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(243, 240, 232, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
  left: 0;
  right: 0;
  background: var(--line);
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.17rem;
  letter-spacing: 0.02em;
}

.brand__role {
  margin-top: 5px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 48px);
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 240ms var(--ease);
}

.primary-nav a:hover::after {
  right: 0;
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle__icon {
  width: 28px;
  height: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.nav-toggle__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.nav-open .nav-toggle__icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle__icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  background: var(--hero-bg);
  color: var(--white);
  overflow: hidden;
  transition: background-color 700ms var(--ease);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, var(--hero-glow), transparent 32%),
    linear-gradient(90deg, transparent 0 49.94%, rgba(255,255,255,0.055) 50%, transparent 50.06%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 125px);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 90px;
}

.hero__copy {
  align-self: center;
  padding-bottom: 20px;
}

.hero__intro {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 254, 249, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

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

.hero-art {
  width: 100%;
  margin: 0;
}

.hero-art__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
}

.hero-art__stage {
  position: relative;
  display: grid;
  min-height: min(61vw, 720px);
  align-items: center;
  justify-items: center;
  padding: clamp(20px, 3vw, 44px);
  background: #080908;
  overflow: hidden;
}

.hero-art__stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}

.hero-art__stage img {
  max-height: min(72svh, 720px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 42px 80px rgba(0,0,0,0.48);
  transition: opacity 280ms var(--ease), transform 680ms var(--ease);
}

.hero-art__view {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 10px 13px;
  background: rgba(255,254,249,.94);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.hero-art__open:hover .hero-art__view,
.hero-art__open:focus-visible .hero-art__view {
  opacity: 1;
  transform: translateY(0);
}

.hero-art.is-changing .hero-art__stage img {
  opacity: 0;
  transform: scale(0.985);
}

.hero-art__caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  color: rgba(255, 254, 249, 0.72);
}

.hero-art__caption span:first-child {
  display: flex;
  flex-direction: column;
}

.hero-art__caption strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-art__caption small {
  margin-top: 2px;
  font-size: 0.72rem;
}

.hero-art__next {
  padding: 1px 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  cursor: pointer;
}

.hero__foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  color: rgba(255,255,255,0.44);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.works {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 128px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

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

.section-heading > p {
  max-width: 600px;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.curated-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.86fr);
  gap: clamp(40px, 7vw, 118px);
  align-items: start;
}

.curated-column {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 100px);
}

.curated-column--right {
  padding-top: clamp(70px, 9vw, 150px);
}

.curated-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 56px);
  align-items: start;
}

.work-card {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.work-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
}

.work-card__image::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 254, 249, 0.94);
  color: var(--ink);
  font-size: 1.15rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.work-card__image img {
  width: 100%;
  height: auto;
  transition: transform 620ms var(--ease);
}

.work-card:hover .work-card__image img {
  transform: scale(1.012);
}

.work-card:hover .work-card__image::after {
  opacity: 1;
  transform: translateY(0);
}

.work-card__caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.work-card__caption strong {
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.5vw, 1.38rem);
  font-weight: 400;
}

.work-card__caption small {
  color: rgba(22,22,19,0.58);
  font-size: 0.7rem;
  white-space: nowrap;
}

.works__more {
  display: flex;
  justify-content: center;
  padding-top: clamp(80px, 10vw, 150px);
}

.all-works {
  margin-top: clamp(80px, 10vw, 150px);
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.all-works[hidden] {
  display: none;
}

.all-works__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 48px;
}

.all-works__heading .eyebrow,
.all-works__heading p {
  margin-bottom: 0;
}

.all-works__heading p:last-child {
  color: rgba(22,22,19,0.56);
  font-size: 0.78rem;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 8px;
  gap: 0 clamp(20px, 3vw, 48px);
}

.masonry-grid .work-card {
  margin-bottom: clamp(38px, 5vw, 70px);
}

.masonry-grid .work-card__caption {
  display: block;
}

.masonry-grid .work-card__caption strong,
.masonry-grid .work-card__caption small {
  display: block;
}

.masonry-grid .work-card__caption small {
  margin-top: 3px;
}

.statement {
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.statement__visual {
  min-height: 880px;
  overflow: hidden;
  background: #090909;
}

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

.statement__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 9vw, 160px) clamp(36px, 8vw, 140px);
}

.statement__copy h2 {
  max-width: 760px;
  font-size: clamp(3.4rem, 5.6vw, 7.1rem);
}

.statement__copy p {
  max-width: 640px;
  color: rgba(255,254,249,0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.statement__copy .text-link {
  align-self: flex-start;
  margin-top: 28px;
}

.current {
  background: var(--white);
}

.current__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 190px);
}

.current__intro h2 {
  max-width: 700px;
}

.current__content {
  padding-top: 42px;
}

.current__lead {
  max-width: 660px;
  margin-bottom: 70px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.current__notice {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: 16px 44px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.current__notice span {
  grid-row: 1 / 3;
  color: rgba(22,22,19,0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.current__notice strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
}

.current__notice small {
  color: rgba(22,22,19,0.58);
}

.archive {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  padding: 0;
  background: #12383e;
  color: var(--white);
  overflow: hidden;
}

.archive__art {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

.archive__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(18,56,62,0.55));
}

.archive__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(0.76) contrast(1.02);
}

.archive__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(90px, 10vw, 170px) clamp(38px, 9vw, 160px);
}

.archive__copy h2 {
  max-width: 850px;
}

.archive__copy p {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255,254,249,0.72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.archive__url {
  margin-top: 16px;
  color: rgba(255,254,249,0.5);
  font-size: 0.7rem;
}

.contact {
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  gap: clamp(70px, 11vw, 190px);
}

.contact__heading h2 {
  max-width: 900px;
}

.contact__details {
  padding-top: 36px;
}

.contact-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 220ms var(--ease);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-row:not(.contact-row--static):hover {
  padding-left: 10px;
}

.contact-row span {
  color: rgba(22,22,19,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row strong {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-row i {
  font-style: normal;
}

.site-footer {
  padding-block: 34px;
  background: var(--ink);
  color: rgba(255,254,249,0.68);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
}

.site-footer__inner > div {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
}

.site-footer span,
.site-footer small {
  font-size: 0.68rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
}

.site-footer small {
  justify-self: end;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0b0b0a;
  color: var(--white);
  overflow: hidden;
}

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

.lightbox[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.lightbox__bar,
.lightbox__controls {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(3vw, 24px);
  border-color: rgba(255,255,255,0.14);
}

.lightbox__bar {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.lightbox__counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lightbox__close,
.lightbox__controls button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox__close {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox__close span {
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
}

.lightbox__image-wrap {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 70px);
  background: #080807;
}

.lightbox__image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.44);
}

.lightbox__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 5vw, 80px) clamp(30px, 4vw, 60px);
  border-left: 1px solid rgba(255,255,255,0.14);
}

.lightbox__info h2 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 4vw, 5rem);
}

.lightbox__info p {
  color: rgba(255,255,255,0.62);
}

.lightbox__status {
  margin-top: 24px;
  color: var(--accent) !important;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__controls {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.lightbox__controls button {
  padding: 12px 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
}

.demo-toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  max-width: min(92vw, 560px);
  padding: 14px 20px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(0,0,0,0.2);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
    gap: 46px;
  }

  .hero-art__stage {
    min-height: 560px;
  }

  .statement__visual {
    min-height: 760px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(90vw, 760px);
  }

  .site-header {
    min-height: 74px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 110px max(5vw, 28px) 50px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 9vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-open .site-header,
  .nav-open .site-header.is-scrolled {
    color: var(--ink);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-open .site-header::after {
    background: var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: radial-gradient(circle at 70% 18%, rgba(128, 224, 229, 0.08), transparent 30%);
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero-art__stage {
    min-height: 0;
    padding: 28px;
  }

  .hero-art__stage img {
    max-height: 74vh;
  }

  .hero__foot {
    padding-bottom: 22px;
  }

  .section-heading,
  .current__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    align-items: start;
  }

  .curated-grid {
    gap: 55px;
  }

  .curated-column {
    gap: 55px;
  }

  .curated-column--right {
    padding-top: 90px;
  }

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

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

  .statement__visual {
    min-height: min(92vw, 760px);
    max-height: 900px;
  }

  .statement__visual img {
    object-position: center 42%;
  }

  .statement__copy {
    padding: 100px 7vw 120px;
  }

  .current__content {
    padding-top: 0;
  }

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

  .archive__art {
    min-height: min(96vw, 720px);
  }

  .archive__art::after {
    background: linear-gradient(0deg, rgba(18,56,62,0.7), transparent 45%);
  }

  .archive__copy {
    padding: 90px 7vw 110px;
  }

  .contact__details {
    padding-top: 0;
  }

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

  .site-footer small {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lightbox__body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .lightbox__info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.14);
    border-left: 0;
  }

  .lightbox__info h2 {
    font-size: 2.35rem;
  }

  .lightbox__info .eyebrow,
  .lightbox__status {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --content: min(90vw, 520px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 88px;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .site-header {
    padding-inline: 5vw;
  }

  .site-header::after {
    left: 5vw;
    right: 5vw;
  }

  .hero__inner {
    padding-top: 125px;
    gap: 52px;
  }

  .hero__intro {
    max-width: 34rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-art__stage {
    padding: 16px;
  }

  .hero-art__stage::before {
    inset: 9px;
  }

  .hero-art__caption {
    gap: 12px;
  }

  .hero-art__caption small {
    display: block;
  }

  .hero__foot {
    font-size: 0.57rem;
  }

  .section-heading {
    margin-bottom: 72px;
    padding-bottom: 28px;
  }

  .curated-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .curated-column,
  .curated-column--right {
    gap: 64px;
    padding-top: 0;
  }

  .curated-pair {
    gap: 20px;
  }

  .work-card__caption {
    display: block;
  }

  .work-card__caption strong,
  .work-card__caption small {
    display: block;
  }

  .work-card__caption small {
    margin-top: 3px;
  }

  .work-card__image::after {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
  }

  .all-works__heading {
    display: block;
  }

  .all-works__heading p:last-child {
    margin-top: 8px;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0;
  }

  .masonry-grid .work-card {
    grid-row-end: auto !important;
  }

  .statement__visual {
    min-height: 120vw;
  }

  .statement__copy {
    padding: 80px 5vw 95px;
  }

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

  .current__notice span {
    grid-row: auto;
  }

  .archive__copy {
    padding: 80px 5vw 95px;
  }

  .contact-row {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
  }

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

  .site-footer small {
    grid-column: auto;
  }

  .lightbox__bar,
  .lightbox__controls {
    min-height: 58px;
    padding-inline: 18px;
  }

  .lightbox__image-wrap {
    padding: 18px;
  }

  .lightbox__info {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lightbox__info h2 {
    margin-bottom: 4px;
    font-size: 2rem;
  }

  .lightbox__info p {
    margin-bottom: 0;
  }

  .lightbox__info .text-link {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Version 2: content loaded from the text editor */
.work-card__caption > span:first-child { display: flex; flex-direction: column; min-width: 0; }
.work-card__caption em { margin-top: 2px; color: rgba(22,22,19,.54); font-size: .68rem; font-style: normal; }
.current__link { grid-column: 2; justify-self: start; margin-top: 10px; }
.contact__intro { max-width: 660px; color: var(--ink-soft); font-size: 1.05rem; }
.lightbox__description { max-width: 540px; margin-top: 24px; color: rgba(255,254,249,.68); white-space: pre-line; }
.hero-art__stage { border-bottom: 2px solid var(--hero-accent); }
.hero-art__next { border-color: color-mix(in srgb, var(--hero-accent) 65%, transparent); }
.hero-art__next:hover { color: var(--hero-accent); }
@supports not (color: color-mix(in srgb, white 50%, black)) {
  .hero-art__next { border-color: rgba(255,255,255,.5); }
}
@media (max-width: 640px) {
  .hero-art__view { display: none; }
  .current__link { grid-column: 1; }
}


/* CV page */
.site-header.is-solid { position: relative; background: #f5f2eb; color: var(--ink); border-bottom: 1px solid rgba(20,20,18,.12); }
.site-header.is-solid .brand, .site-header.is-solid .primary-nav a, .site-header.is-solid .nav-toggle { color: var(--ink); }
.cv-main { background: #f5f2eb; }
.cv-hero { padding: clamp(90px, 12vw, 170px) 0 clamp(60px, 8vw, 110px); border-bottom: 1px solid rgba(20,20,18,.12); }
.cv-hero h1 { margin: 8px 0 36px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(4rem, 11vw, 9rem); font-weight: 400; line-height: .9; }
.cv-intro { max-width: 850px; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.65; }
.cv-intro p + p { margin-top: 1.2em; }
.cv-content { padding-top: clamp(70px, 9vw, 130px); }
.cv-grid { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.6fr); gap: clamp(50px, 8vw, 130px); align-items: start; }
.cv-block { padding-top: 22px; border-top: 1px solid rgba(20,20,18,.28); }
.cv-block + .cv-block { margin-top: 55px; }
.cv-block h2 { margin-bottom: 24px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; }
.cv-list { margin: 0; padding: 0; list-style: none; }
.cv-list li { padding: 11px 0; border-bottom: 1px solid rgba(20,20,18,.09); line-height: 1.55; }
.cv-block--exhibitions .cv-list li { display: grid; grid-template-columns: minmax(0,1fr); }
@media (max-width: 800px) { .cv-grid { grid-template-columns: 1fr; } .cv-content { padding-inline: 0; } .site-header.is-solid .primary-nav { background: #f5f2eb; } }


/* Version 4: Om Johanne */
.about-main { background: #f5f2eb; color: var(--ink); }
.about-hero { padding: clamp(95px, 13vw, 185px) 0 clamp(75px, 10vw, 135px); border-bottom: 1px solid rgba(20,20,18,.14); }
.about-hero__grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: clamp(50px,9vw,150px); align-items: end; }
.about-hero h1 { margin-top: 12px; font-family: Georgia,'Times New Roman',serif; font-size: clamp(4.5rem,12vw,10rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.about-hero blockquote { margin: 0 0 1.2rem; max-width: 430px; font-family: Georgia,'Times New Roman',serif; font-size: clamp(1.65rem,3vw,3rem); line-height: 1.16; }
.about-story { background: #171714; color: #f6f1e8; }
.about-story__grid { display: grid; grid-template-columns: minmax(180px,.55fr) minmax(0,1.45fr); gap: clamp(45px,9vw,150px); }
.about-story__label .eyebrow { color: rgba(246,241,232,.55); }
.about-story__text { max-width: 860px; font-family: Georgia,'Times New Roman',serif; font-size: clamp(1.35rem,2.7vw,2.65rem); line-height: 1.42; }
.about-story__text p + p { margin-top: 1.25em; }
.about-facts__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid rgba(20,20,18,.25); }
.about-fact { min-height: 320px; padding: 28px clamp(20px,3vw,42px) 40px 0; border-right: 1px solid rgba(20,20,18,.14); }
.about-fact + .about-fact { padding-left: clamp(20px,3vw,42px); }
.about-fact:last-child { border-right: 0; }
.about-fact > span { display: block; margin-bottom: 68px; color: rgba(20,20,18,.45); font-size: .68rem; letter-spacing: .16em; }
.about-fact h3 { margin-bottom: 22px; font-family: Georgia,'Times New Roman',serif; font-size: clamp(1.8rem,3vw,2.7rem); font-weight: 400; }
.about-facts__list { margin: 0; padding: 0; list-style: none; }
.about-facts__list li { padding: 8px 0; line-height: 1.55; }
.about-exhibitions { background: #e9e5dc; }
.timeline { border-top: 1px solid rgba(20,20,18,.28); }
.timeline__year { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: clamp(25px,5vw,80px); padding: 30px 0; border-bottom: 1px solid rgba(20,20,18,.13); }
.timeline__year h3 { margin: 0; font-family: Georgia,'Times New Roman',serif; font-size: clamp(2rem,4vw,4rem); font-weight: 400; line-height: 1; }
.timeline__year ul { margin: 0; padding: 0; list-style: none; }
.timeline__year li { padding: 7px 0; font-size: clamp(.98rem,1.25vw,1.15rem); line-height: 1.55; }
@media (max-width: 820px) {
  .about-hero__grid, .about-story__grid { grid-template-columns: 1fr; }
  .about-hero blockquote { margin-top: 10px; }
  .about-facts__grid { grid-template-columns: 1fr; }
  .about-fact, .about-fact + .about-fact { min-height: 0; padding: 28px 0 42px; border-right: 0; border-bottom: 1px solid rgba(20,20,18,.14); }
  .about-fact > span { margin-bottom: 28px; }
  .timeline__year { grid-template-columns: 78px minmax(0,1fr); }
}
@media (max-width: 520px) {
  .about-hero h1 { font-size: clamp(4rem,21vw,6.2rem); }
  .timeline__year { grid-template-columns: 1fr; gap: 14px; }
}


/* Version 5: Valgfri tekststørrelse og skjulte bokse på Om Johanne */
.about-hero h1.text-size-small { font-size: clamp(3.6rem, 9vw, 7.5rem); }
.about-hero h1.text-size-normal { font-size: clamp(4.5rem, 12vw, 10rem); }
.about-hero h1.text-size-large { font-size: clamp(5.2rem, 14vw, 11.5rem); }

.about-hero blockquote.text-size-small { font-size: clamp(1.25rem, 2.2vw, 2.1rem); }
.about-hero blockquote.text-size-normal { font-size: clamp(1.65rem, 3vw, 3rem); }
.about-hero blockquote.text-size-large { font-size: clamp(2rem, 3.8vw, 3.8rem); }

.about-story__text.text-size-small { font-size: clamp(1.05rem, 1.9vw, 1.75rem); }
.about-story__text.text-size-normal { font-size: clamp(1.35rem, 2.7vw, 2.65rem); }
.about-story__text.text-size-large { font-size: clamp(1.65rem, 3.2vw, 3.2rem); }

.about-facts.text-size-small .about-fact h3 { font-size: clamp(1.45rem, 2.3vw, 2.05rem); }
.about-facts.text-size-small .about-facts__list { font-size: .9rem; }
.about-facts.text-size-large .about-fact h3 { font-size: clamp(2.15rem, 3.5vw, 3.25rem); }
.about-facts.text-size-large .about-facts__list { font-size: 1.15rem; }

.about-exhibitions.text-size-small .timeline__year li { font-size: .88rem; }
.about-exhibitions.text-size-small .timeline__year h3 { font-size: clamp(1.6rem, 3vw, 3rem); }
.about-exhibitions.text-size-large .timeline__year li { font-size: clamp(1.1rem, 1.55vw, 1.35rem); }
.about-exhibitions.text-size-large .timeline__year h3 { font-size: clamp(2.4rem, 4.8vw, 4.8rem); }

.about-facts__grid--count-1 { grid-template-columns: minmax(0, 1fr); }
.about-facts__grid--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-facts__grid--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 820px) {
  .about-facts__grid--count-1,
  .about-facts__grid--count-2,
  .about-facts__grid--count-3 { grid-template-columns: 1fr; }
}
