@font-face {
  font-family: "Dream Sick";
  src: url("assets/fonts/dream-sick.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Sick Again";
  src: url("assets/fonts/YOURHOPE-SICKAGAIN.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Aeonik;
  src: url("assets/fonts/aeonik-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Anno;
  src: url("assets/fonts/anno-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --void: #020202;
  --white: #ffffff;
  --paper: #f4f1ea;
  --ink-soft: rgba(5, 5, 5, 0.66);
  --electric: #1947ff;
  --acid: #c8ff2f;
  --mist: rgba(255, 255, 255, 0.72);
  --base-x: max(28px, 5vw);
  --base-y: clamp(24px, 3.8vw, 48px);
  --radius: 10px;
  --ease: cubic-bezier(0.4, 0, 0.1, 1);
  --dream-scale: 1;
  --dream-x: 0px;
  --dream-y: 0px;
  --dream-rotate: 0deg;
  --wordmark-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 0;
  background: var(--void);
  color: var(--white);
  font-family: Aeonik, Arial, sans-serif;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html.is-scrollbar-dragging {
  scroll-snap-type: none;
}

html.is-resizing {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

html.is-resizing #ambient-canvas,
html.is-resizing .hero-art-card canvas,
html.is-resizing .exhibition-frame {
  transition: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--void);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.menu-open {
  overflow: hidden;
}

.custom-scrollbar {
  position: fixed;
  z-index: 80;
  top: 10px;
  right: 7px;
  bottom: 10px;
  width: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s var(--ease);
  mix-blend-mode: difference;
}

.custom-scrollbar.is-visible,
.custom-scrollbar.is-dragging {
  opacity: 1;
  pointer-events: auto;
}

.custom-scrollbar-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: var(--scrollbar-thumb-height, 72px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transform: translate3d(0, var(--scrollbar-thumb-y, 0px), 0);
  transition: width 0.2s var(--ease), background 0.2s var(--ease);
}

.custom-scrollbar:hover .custom-scrollbar-thumb,
.custom-scrollbar.is-dragging .custom-scrollbar-thumb {
  width: 8px;
  background: rgba(255, 255, 255, 0.94);
}

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

button {
  font: inherit;
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 35%, #111 0, #050505 44%, #020202 100%);
  transform: translate3d(var(--dream-x), var(--dream-y), 0) scale(var(--dream-scale)) rotate(var(--dream-rotate));
  transform-origin: center;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--base-y) var(--base-x);
  pointer-events: none;
}

.brand,
.header-actions,
.site-menu {
  pointer-events: auto;
}

.brand {
  display: block;
  width: clamp(74px, 5.75vw, 102px);
  height: clamp(74px, 5.75vw, 102px);
  transform: translateX(calc(var(--base-x) * -0.45));
  overflow: visible;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  transform: scale(1.04);
  transform-origin: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sound-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.12);
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.sound-toggle:hover {
  background: var(--white);
}

.sound-toggle.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(5, 5, 5, 0.14);
}

.sound-toggle:active {
  transform: scale(0.94);
}

.sound-toggle canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-toggle {
  height: 40px;
  border: 0;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
}

.menu-toggle {
  position: relative;
  min-width: 88px;
  padding: 0 14px 0 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.08);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: var(--white);
}

.menu-toggle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  position: relative;
}

.menu-label,
.menu-label-close {
  transition: transform 0.35s var(--ease);
}

.menu-label,
.menu-label-close {
  font-weight: 700;
}

.menu-label-close {
  position: absolute;
  left: 0;
  transform: translateY(110%);
}

.menu-toggle[aria-expanded="true"] .menu-label {
  transform: translateY(-110%);
}

.menu-toggle[aria-expanded="true"] .menu-label-close {
  transform: translateY(0);
}

.menu-dots {
  position: relative;
  width: 13px;
  height: 13px;
  transform: rotate(180deg);
  transition: transform 0.42s var(--ease);
}

.menu-toggle:hover .menu-dots,
.menu-toggle[aria-expanded="true"] .menu-dots {
  transform: rotate(270deg);
}

.menu-dots span {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.menu-dots span:first-child {
  left: 0.05em;
}

.menu-dots span:last-child {
  right: 0.05em;
}

.site-menu {
  position: absolute;
  top: calc(var(--base-y) + 52px);
  right: var(--base-x);
  width: min(24rem, calc(100vw - var(--base-x) * 2));
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  pointer-events: none;
}

.menu-open .site-menu {
  pointer-events: auto;
}

.menu-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(10, 12, 20, 0.14);
  opacity: 0;
  transform: translate3d(0, 5rem, 0) rotate(3deg);
  transition: opacity 0.48s var(--ease), transform 0.48s var(--ease);
  transition-delay: var(--close-delay, 0s);
}

.menu-open .menu-card {
  opacity: 1;
  transform: translateZ(0);
  transition-delay: var(--open-delay, 0s);
}

.menu-links {
  padding: 0.95rem 0.32rem;
  --open-delay: 0s;
  --close-delay: 0.12s;
}

.menu-note {
  padding: 1.55rem 1.75rem;
  --open-delay: 0.06s;
  --close-delay: 0.06s;
}

.menu-note p {
  color: var(--black);
}

.menu-feature {
  --open-delay: 0.11s;
  --close-delay: 0s;
}

.menu-link {
  position: relative;
  display: block;
  padding: 0.62rem 1rem;
  overflow: hidden;
  color: var(--black);
}

.menu-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.22rem);
  right: 1.85rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: currentColor;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}

.menu-link.is-active::after {
  transform: scale(1);
}

.menu-link-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--electric);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.32s var(--ease), transform 0.38s var(--ease);
}

.menu-link-inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding-right: 1.6rem;
  line-height: 1.05;
}

.menu-link-text,
.menu-link-text-clone {
  display: block;
  font-size: clamp(1.35rem, 4.3vw, 1.92rem);
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.menu-link-long .menu-link-text,
.menu-link-long .menu-link-text-clone {
  font-size: clamp(0.98rem, 3.5vw, 1.28rem);
}

.menu-link-exhibition-title {
  color: var(--black);
}

.menu-link-text-clone {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translateY(105%);
}

.menu-link-arrow {
  position: absolute;
  top: calc(50% - 0.72rem);
  right: 0;
  width: 1.45rem;
  height: 1.45rem;
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}

.menu-link:hover,
.menu-link:focus-visible {
  color: var(--electric);
}

.menu-link:hover::after,
.menu-link:hover.is-active::after,
.menu-link:focus-visible::after,
.menu-link:focus-visible.is-active::after {
  transform: scale(0);
}

.menu-link:hover .menu-link-bg,
.menu-link:focus-visible .menu-link-bg {
  opacity: 0.1;
  transform: scale(1);
}

.menu-link:hover .menu-link-text,
.menu-link:focus-visible .menu-link-text {
  transform: translateY(-105%);
}

.menu-link:hover .menu-link-text-clone,
.menu-link:focus-visible .menu-link-text-clone {
  transform: translateY(0);
}

.menu-link:hover .menu-link-arrow,
.menu-link:focus-visible .menu-link-arrow {
  transform: scale(1);
  transition-delay: 0.12s;
}

.menu-link.click-pulse .menu-link-bg {
  opacity: 0.22;
  transform: scale(1.04);
}

.menu-link.click-pulse .menu-link-arrow {
  transform: scale(1);
}

.menu-note p,
.menu-note > span {
  display: block;
  margin: 0;
}

.menu-note p {
  display: inline-grid;
  justify-items: center;
  font-family: "Sick Again", "Dream Sick", Aeonik, Arial, sans-serif;
  font-size: 2.15rem;
  line-height: 0.78;
  text-align: center;
  text-transform: uppercase;
}

.menu-note p span {
  display: block;
}

.menu-note > span {
  margin-top: 0.9rem;
  max-width: 18rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.menu-feature {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding: 1.25rem 1.65rem;
  background: var(--acid);
  color: var(--black);
  box-shadow: 0 24px 80px rgba(200, 255, 47, 0.34);
  overflow: hidden;
}

.feature-eye {
  width: 2.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  color: var(--black);
}

.feature-copy {
  display: grid;
  flex: 1;
  line-height: 1.05;
}

.feature-title {
  text-transform: uppercase;
  font-size: 1.45rem;
}

.feature-subtitle {
  margin-top: 0.25rem;
  color: rgba(5, 5, 5, 0.62);
}

.menu-feature svg {
  width: 1.55rem;
  height: 1.55rem;
  transition: transform 0.38s var(--ease);
}

.menu-feature:hover svg {
  transform: translate(0.25rem, -0.25rem);
}

.menu-click-burst {
  position: fixed;
  z-index: 30;
  left: var(--burst-x);
  top: var(--burst-y);
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  pointer-events: none;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(200, 255, 47, 0.72);
  transform: translate(-50%, -50%) scale(0.2);
  animation: menu-burst 0.7s var(--ease) forwards;
}

@keyframes menu-burst {
  55% {
    opacity: 0.85;
    box-shadow: 0 0 0 2.4rem rgba(200, 255, 47, 0.08);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
    box-shadow: 0 0 0 3.4rem rgba(200, 255, 47, 0);
  }
}

main {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  padding: calc(var(--base-y) + 5rem) var(--base-x) var(--base-y);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 2vw;
  align-items: end;
}

.journal-section,
.artists-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  background: #8f8f8a;
}

.hero-art-card {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #8f8f8a;
  box-shadow: none;
  cursor: grab;
  touch-action: pan-y;
  transform: translateZ(0);
}

.hero-art-card:active {
  cursor: grabbing;
}

.hero-art-card::before,
.hero-art-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.hero-art-card::before {
  background: none;
}

.hero-art-card::after {
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

#art-card-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #8f8f8a;
}

.art-card-status {
  position: absolute;
  z-index: 3;
  left: 1rem;
  bottom: 1rem;
  color: rgba(12, 12, 12, 0.54);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease);
}

.hero-art-card.is-ready .art-card-status {
  opacity: 0;
}

.hero-art-card + .dream-wordmark {
  place-items: center;
  padding-top: 0;
}

.hero-art-card + .dream-wordmark span {
  font-size: clamp(3.8rem, 8vw, 8rem);
  text-shadow: none;
}

.dream-wordmark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.dream-wordmark span {
  display: block;
  color: var(--white);
  font-family: "Dream Sick", Aeonik, Arial, sans-serif;
  font-size: clamp(4.2rem, 9vw, 9.8rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transform: scale(var(--wordmark-scale));
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: none;
}

body.dream-clicking .dream-wordmark span {
  filter: none;
}

.hero-meta {
  position: absolute;
  z-index: 4;
  top: calc(50% + clamp(2.75rem, 5vw, 4.85rem));
  left: 50%;
  right: auto;
  width: min(70vw, clamp(24rem, 70vw, 64rem));
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateX(-50%);
}

.hero h1 {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 5;
  margin: 0;
  font-size: clamp(2.6rem, 6.8vw, 7.4rem);
  line-height: 0.86;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 9ch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 8 / span 4;
  align-self: end;
  margin: 0 0 9rem;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.hero-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: calc(var(--base-y) + 4.2rem);
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--acid);
  color: var(--black);
  box-shadow: 0 24px 80px rgba(200, 255, 47, 0.28);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-cta-dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.hero-cta:hover .hero-cta-dot {
  transform: scale(1.8);
}

.hero-cta span,
.hero-cta svg {
  position: relative;
  z-index: 1;
}

.support-logos {
  position: absolute;
  z-index: 4;
  right: var(--base-x);
  bottom: var(--base-y);
  display: grid;
  justify-items: end;
  gap: 0.46rem;
  width: min(26rem, 31vw);
  opacity: 0.84;
  pointer-events: none;
}

.support-logos-label {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.support-logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 1.15vw, 1rem);
  width: 100%;
}

.support-logo {
  display: block;
  width: auto;
  max-width: clamp(3.95rem, 7.35vw, 7.35rem);
  max-height: clamp(1.08rem, 1.82vw, 1.62rem);
  object-fit: contain;
  filter: none;
}

.support-logo-agder {
  max-width: clamp(3.15rem, 5.55vw, 5.55rem);
  max-height: clamp(1.6rem, 2.75vw, 2.58rem);
}

.scroll-hint {
  position: absolute;
  z-index: 4;
  left: var(--base-x);
  bottom: var(--base-y);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
}

.scroll-hint span:first-child {
  width: 1rem;
  height: 1rem;
  position: relative;
}

.scroll-hint span:first-child::before,
.scroll-hint span:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.scroll-hint span:first-child::after {
  transform: rotate(90deg);
}

.about-scroll-hint {
  color: currentColor;
}

.split-section {
  position: relative;
  background: #000;
  color: var(--paper);
  align-items: center;
}

.split-section h2 {
  grid-column: 4 / span 8;
  margin: 0;
  font-size: clamp(2.7rem, 6.6vw, 7.5rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-copy {
  grid-column: 4 / span 7;
  max-width: 50rem;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.65rem);
  font-weight: 400;
  line-height: 1.34;
  text-wrap: pretty;
}

.about-copy p + p {
  margin-top: 1.05em;
}

.on-display-section {
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #020202 0%, #070707 52%, #000 100%);
  color: var(--paper);
}

.on-display-stage,
.on-display-entry {
  position: relative;
  z-index: 1;
}

.on-display-stage {
  grid-column: 2 / span 10;
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2.2svh, 1.9rem);
  width: 100%;
  text-align: center;
  transform: translateY(clamp(-3.2rem, -4.8svh, -1.7rem));
}

.on-display-sequence {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(18rem, min(42vw, 50svh), 42rem);
  overflow: visible;
}

.on-display-ring-canvas,
.on-display-title-reveal {
  grid-area: 1 / 1;
}

.on-display-ring-canvas {
  display: block;
  width: min(100%, 96rem);
  height: clamp(18rem, min(42vw, 50svh), 42rem);
  opacity: 0.96;
}

.on-display-title-reveal {
  margin: 0;
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  color: var(--paper);
  font-family: "Sick Again", "Dream Sick", Aeonik, Arial, sans-serif;
  font-size: clamp(2.3rem, 5.8vw, 6.25rem);
  font-weight: 400;
  line-height: 0.78;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 2.4rem rgba(2, 2, 2, 0.72);
  transform: translate(clamp(-1.8rem, -1.4vw, -0.7rem), clamp(0.12rem, 0.45vw, 0.45rem));
}

.on-display-title-reveal span {
  display: block;
}

.on-display-entry {
  display: grid;
  justify-items: center;
  gap: clamp(1.3rem, 2.4svh, 2rem);
  max-width: min(42rem, 100%);
  margin-top: clamp(0.75rem, 2svh, 2.25rem);
}

.on-display-entry p {
  margin: 0;
  max-width: 40rem;
  color: rgba(244, 241, 234, 0.72);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 400;
  line-height: 1.52;
  text-align: left;
  text-wrap: pretty;
}

.on-display-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.55rem;
  min-width: 13.5rem;
  min-height: 3rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  background: var(--acid);
  color: var(--black);
  box-shadow: 0 20px 64px rgba(200, 255, 47, 0.18);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.on-display-cta:hover {
  transform: translateY(-0.08rem);
  box-shadow: 0 26px 74px rgba(200, 255, 47, 0.22);
}

.on-display-cta-dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
}

.on-display-cta svg {
  flex: 0 0 auto;
}

.on-display-mobile-cta {
  display: none;
  pointer-events: none;
}

.on-display-cta-eye {
  width: 1.32rem;
  height: 1.32rem;
}

.on-display-scroll-hint {
  color: rgba(244, 241, 234, 0.66);
  pointer-events: none;
}

.exhibition-strip {
  position: relative;
  display: block;
  scroll-snap-stop: normal;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  padding: 0;
  background: var(--void);
  overflow: hidden;
  isolation: isolate;
}

.exhibition-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--void);
}


html.is-exhibition-mobile-blocked .exhibition-frame {
  display: none;
}

html.is-exhibition-mobile-blocked .exhibition-strip {
  display: none;
}

html.is-exhibition-mobile-blocked .on-display-cta {
  display: none;
}

html.is-exhibition-mobile-blocked .on-display-mobile-cta {
  display: inline-flex;
}

.index-section {
  min-height: 54vh;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.index-row {
  grid-column: 4 / span 8;
  display: grid;
  grid-template-columns: 9rem 1fr;
  column-gap: 2rem;
  width: 100%;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  text-transform: uppercase;
}

.index-row span {
  color: var(--ink-soft);
}

.index-row p {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 3.4rem);
  line-height: 1;
}

.journal-section {
  min-height: 100vh;
  scroll-snap-stop: normal;
  align-items: start;
  padding-top: calc(var(--base-y) + 4rem);
  padding-bottom: calc(var(--base-y) + 5.5rem);
  background: var(--white);
  color: var(--black);
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.journal-article {
  grid-column: 1 / -1;
  width: 100%;
}

.journal-cover {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 2vw;
  min-height: clamp(37rem, 72vh, 47rem);
  padding-top: clamp(2.75rem, 5.4vh, 4.75rem);
  padding-bottom: clamp(1.5rem, 3.5vh, 3.2rem);
}

.journal-title-block {
  grid-column: 5 / span 4;
  justify-self: center;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.journal-category {
  display: inline-block;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.journal-title-block h2 {
  margin: 0;
  font-size: clamp(2.65rem, 4vw, 4.85rem);
  line-height: 0.95;
  font-weight: 600;
}

.journal-title-block p {
  margin: 0.75rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.75vw, 2.2rem);
  line-height: 1.08;
}

.journal-issue-note {
  position: relative;
  grid-column: 3 / span 3;
  align-self: end;
  display: grid;
  gap: 0.1rem;
  margin-bottom: clamp(6.5rem, 13vh, 11rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  line-height: 1.05;
}

.journal-photo-placeholder {
  margin: 0;
}

.journal-photo-placeholder > span {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 230, 226, 0.74)),
    #f5f3ee;
}

.journal-photo-placeholder > span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-photo-placeholder figcaption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.05;
}

.journal-photo-a {
  position: relative;
  grid-column: 9 / span 4;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 31rem;
  transform: translateY(clamp(1.4rem, 3.5vh, 3.2rem));
}

.journal-photo-a > span {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 64% 30%, rgba(255, 255, 255, 0.85), transparent 0.8rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 3.8rem),
    linear-gradient(180deg, #ece9df 0 18%, #f8f7f2 18% 62%, #d7d4ca 62% 100%);
}

.journal-body {
  width: min(61rem, 100%);
  margin: clamp(3.25rem, 7vw, 6.5rem) auto 0;
}

.journal-body p {
  margin: 0;
  font-size: clamp(1.05rem, 1.32vw, 1.46rem);
  line-height: 1.24;
  font-weight: 600;
}

.journal-body p:first-child {
  font-size: clamp(1.12rem, 1.48vw, 1.66rem);
  line-height: 1.18;
}

.journal-body p + p {
  margin-top: 1.05em;
}

.journal-pull {
  width: min(55rem, 100%);
  margin: clamp(3.25rem, 7vw, 6.2rem) auto 0;
  padding: clamp(1.4rem, 2.4vw, 2.2rem) 0;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
}

.journal-pull p {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.journal-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.journal-image-grid .journal-photo-placeholder > span {
  aspect-ratio: 16 / 10;
}

.journal-photo-b > span {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.11) 0 1px, transparent 1px 4rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 6rem),
    linear-gradient(180deg, #f4f2eb, #dedbd2);
}

.journal-photo-c > span {
  background:
    radial-gradient(ellipse at 68% 68%, rgba(5, 5, 5, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.09) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #f7f5ef, #e4e0d7);
}

.journal-body-secondary {
  margin-top: clamp(3.2rem, 6vw, 5.8rem);
}

.journal-photo-wide {
  width: min(76rem, 100%);
  margin: clamp(3.4rem, 6vw, 6rem) auto 0;
}

.journal-photo-wide > span {
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.86), transparent 1.1rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 5rem),
    linear-gradient(180deg, #e8e5dc 0 24%, #f8f7f2 24% 68%, #cbc8be 68% 100%);
}

.artists-section {
  min-height: 100vh;
  align-items: center;
  background: #000;
  color: var(--white);
  overflow: hidden;
}

.artist-globe-shell {
  grid-column: 3 / span 9;
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 0.94fr) minmax(20rem, 0.82fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  width: 100%;
}

.artist-globe-shell::after {
  display: none;
}

.artist-globe {
  position: relative;
  width: min(47vw, 40rem);
  aspect-ratio: 1;
  justify-self: start;
  margin-left: clamp(-5rem, -4.5vw, -2rem);
  cursor: grab;
  touch-action: none;
  user-select: none;
  filter: drop-shadow(0 2.8rem 5rem rgba(0, 0, 0, 0.28));
  isolation: isolate;
}

.artist-globe:active,
.artist-globe.is-dragging {
  cursor: grabbing;
}

.artist-globe:focus {
  outline: none;
}

.artist-globe:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.58);
  outline-offset: 0.8rem;
  border-radius: 50%;
}

.artist-globe-canvas,
.artist-globe-grid-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.artist-globe-canvas {
  z-index: 1;
  border-radius: 50%;
  clip-path: circle(42.5% at 50% 50%);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.32));
}

.artist-globe-grid-canvas {
  z-index: 2;
}

.artist-globe::before,
.artist-globe::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.artist-globe::before {
  z-index: 0;
  inset: -9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 41% 32%, rgba(255, 255, 255, 0.24), transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(208, 255, 70, 0.1), transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 67%);
  opacity: 0.8;
  filter: blur(1px);
}

.artist-globe::after {
  inset: 6%;
  z-index: 3;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset -3.6rem -2.6rem 4.8rem rgba(0, 0, 0, 0.3),
    inset 1.35rem 1.15rem 2.75rem rgba(255, 255, 255, 0.2),
    inset 0 0 0 0.65rem rgba(255, 255, 255, 0.018),
    0 28px 74px rgba(0, 0, 0, 0.22);
}

html.is-artist-globe-lite .artist-globe {
  filter: drop-shadow(0 1.5rem 2.4rem rgba(0, 0, 0, 0.22));
}

html.is-artist-globe-lite .artist-globe-canvas {
  filter: none;
}

html.is-artist-globe-lite .artist-globe::before {
  inset: -5%;
  opacity: 0.58;
  filter: none;
}

html.is-artist-globe-lite .artist-globe::after {
  box-shadow:
    inset -2.1rem -1.6rem 3.1rem rgba(0, 0, 0, 0.24),
    inset 1rem 0.9rem 1.8rem rgba(255, 255, 255, 0.16),
    0 1rem 2.4rem rgba(0, 0, 0, 0.18);
}

.artist-dot-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.artist-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, calc(-50% + var(--dot-lift, 0px))) scale(var(--dot-scale, 1));
  opacity: var(--dot-opacity, 1);
  pointer-events: auto;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

html.is-artist-globe-lite .artist-dot {
  transition-duration: 0.12s;
}

html.is-artist-list-only .artist-globe {
  display: none;
}

.artist-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(5, 5, 5, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 30%, rgba(255, 255, 255, 0.95), transparent 22%),
    var(--white);
  box-shadow:
    0 0 0 calc(0.08rem + var(--dot-depth, 0.5) * 0.16rem) rgba(255, 255, 255, 0.14),
    0 0.32rem 0.92rem rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.artist-dot::after {
  content: attr(aria-label);
  position: absolute;
  left: calc(100% + 0.55rem);
  top: 50%;
  width: max-content;
  max-width: 11rem;
  color: var(--white);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 0.65rem 1.25rem rgba(0, 0, 0, 0.42);
  transform: translateY(calc(-50% - var(--dot-lift, 0px) * 0.18)) translateX(-0.4rem);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  pointer-events: none;
}

.artist-dot:hover::after,
.artist-dot.is-active::after {
  opacity: 1;
  transform: translateY(calc(-50% - var(--dot-lift, 0px) * 0.18)) translateX(0);
}

.artist-dot.is-active {
  background: transparent;
}

.artist-dot:hover::before,
.artist-dot.is-active::before {
  background: var(--white);
  border-color: rgba(5, 5, 5, 0.75);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 0 0 0.28rem rgba(255, 255, 255, 0.16),
    0 0 0 0.46rem rgba(255, 255, 255, 0.1),
    0 0.44rem 1.1rem rgba(0, 0, 0, 0.22);
}

.artist-globe.is-dragging .artist-dot {
  pointer-events: none;
}

.artist-info-panel {
  align-self: center;
  max-width: 30rem;
}

.artist-view-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 1rem;
  padding: 0.26rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.artist-view-tab {
  min-height: 2rem;
  padding: 0 0.88rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 500;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.artist-view-tab:hover,
.artist-view-tab.is-active {
  background: var(--white);
  color: var(--black);
}

.artist-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}

.artist-filter > span {
  color: rgba(255, 255, 255, 0.6);
}

.artist-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.artist-filter-button {
  min-height: 2rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 500;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.artist-filter-button:hover,
.artist-filter-button.is-active {
  border-color: rgba(5, 5, 5, 0.68);
  background: var(--acid);
  color: var(--black);
}

.artist-list-panel {
  margin: 0 0 1.8rem;
}

.artist-list-panel[hidden] {
  display: none;
}

.artist-list {
  display: grid;
  gap: 0.36rem;
}

.artist-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 3.2rem;
  padding: 0.65rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.artist-list-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.artist-list-item:hover,
.artist-list-item.is-active {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--acid);
}

.artist-list-name {
  min-width: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.artist-list-location {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.artist-status,
.artist-location {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
}

.artist-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.artist-info-panel:not(.is-empty) .artist-status {
  background: var(--acid);
  color: var(--black);
}

.artist-info-panel h2 {
  margin: 1.35rem 0 0;
  font-size: clamp(2.6rem, 5.1vw, 5.7rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.artist-location {
  margin: 1.05rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.artist-note {
  margin: 2.2rem 0 0;
  font-size: clamp(1.2rem, 1.65vw, 1.8rem);
  line-height: 1.12;
}

.artist-details {
  display: grid;
  gap: 1.05rem;
}

.artist-detail {
  display: grid;
  gap: 0.22rem;
}

.artist-detail-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.artist-detail-value {
  color: var(--white);
  font-size: clamp(1.34rem, 2.1vw, 2.2rem);
  font-weight: 500;
  line-height: 1.02;
}

.artist-detail:first-child .artist-detail-value {
  color: var(--acid);
}

.artist-info-panel:not(.is-empty) .artist-status,
.artist-info-panel:not(.is-empty) h2,
.artist-info-panel:not(.is-empty) .artist-location,
.artist-info-panel:not(.is-empty) .artist-note,
.artist-info-panel.is-list-view.is-empty .artist-status,
.artist-info-panel.is-list-view.is-empty h2,
.artist-info-panel.is-list-view.is-empty .artist-location,
.artist-info-panel.is-list-view.is-empty .artist-note {
  display: none;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
}

.artist-link[hidden] {
  display: none;
}

.contact-section {
  min-height: 100vh;
  align-items: center;
  background: #000;
  color: var(--white);
}

.contact-layout {
  grid-column: 3 / span 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2vw;
  row-gap: clamp(1.8rem, 3vw, 3rem);
  align-items: start;
  width: 100%;
  min-height: auto;
  margin-bottom: 0;
}

.contact-layout span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-layout p,
.contact-layout a {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.02rem, 1.38vw, 1.42rem);
  font-weight: 500;
  line-height: 1.16;
}

.contact-layout a {
  display: inline-block;
  text-decoration: none;
}

.contact-layout a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-place {
  grid-column: auto;
  grid-row: auto;
}

.contact-social {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  margin-bottom: 0;
}

.contact-email {
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 860px) {
  :root {
    --base-x: 24px;
    --base-y: 24px;
  }

  .menu-toggle {
    min-width: 3.15rem;
    width: 3.15rem;
    padding: 0;
  }

  .menu-label,
  .menu-label-close {
    display: none;
  }

  .menu-dots {
    font-size: 1.3rem;
  }

  .site-menu {
    top: calc(var(--base-y) + 4.1rem);
  }

  .section {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 4vw;
    scroll-snap-align: none;
  }

  html {
    scroll-snap-type: none;
  }

  .journal-section,
  .artists-section,
  .contact-section {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .hero-meta {
    top: calc(50% + clamp(2.35rem, 7vw, 3.25rem));
    left: 50%;
    right: auto;
    width: min(82vw, 28rem);
    display: grid;
    justify-content: end;
    text-align: right;
    transform: translateX(-50%);
  }

  .hero h1 {
    grid-column: 1 / span 6;
    font-size: clamp(2.2rem, 12vw, 4.8rem);
  }

  .hero-copy {
    align-self: end;
    margin: 0 0 5.5rem;
    max-width: 23rem;
  }

  .hero-cta {
    bottom: calc(var(--base-y) + 4.5rem);
    width: max-content;
    max-width: calc(100vw - var(--base-x) * 2);
    justify-content: center;
    white-space: normal;
    box-shadow: 0 8px 18px rgba(5, 5, 5, 0.18);
  }

  .scroll-hint {
    display: none;
  }

  .support-logos {
    right: var(--base-x);
    bottom: var(--base-y);
    width: min(16rem, 46vw);
    gap: 0.58rem;
  }

  .support-logos-label {
    font-size: 0.82rem;
  }

  .support-logo {
    max-width: 5.2rem;
    max-height: 1.28rem;
  }

  .support-logo-agder {
    max-width: 3.7rem;
    max-height: 1.9rem;
  }

  .hero-art-card + .dream-wordmark span,
  .dream-wordmark span {
    font-size: clamp(1.85rem, 7.4vw, 3rem);
  }

  .split-section h2,
  .about-copy,
  .on-display-stage,
  .artist-globe-shell,
  .contact-layout,
  .index-row {
    grid-column: 1 / span 6;
  }

  .on-display-section {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding-top: calc(var(--base-y) + 5.6rem);
    padding-bottom: calc(var(--base-y) + 4.6rem);
  }

  .on-display-stage {
    gap: 1.15rem;
    text-align: center;
    transform: translateY(clamp(-2.4rem, -4vh, -1.15rem));
  }

  .on-display-sequence {
    min-height: clamp(17rem, 72vw, 24rem);
  }

  .on-display-ring-canvas {
    width: min(100%, 32rem);
    height: clamp(17rem, 72vw, 24rem);
  }

  .on-display-title-reveal {
    width: min(100%, 18rem);
    font-size: clamp(1.8rem, 8.8vw, 3.35rem);
    line-height: 0.78;
    transform: translate(-0.45rem, 0.08rem);
  }

  .on-display-entry {
    justify-items: center;
    max-width: min(24rem, 100%);
    margin-top: 1.35rem;
    gap: 1.25rem;
  }

  .on-display-entry p {
    max-width: 22rem;
    font-size: 0.98rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .on-display-cta {
    width: min(100%, 22rem);
    min-width: 0;
    min-height: 3.2rem;
    box-shadow: 0 10px 24px rgba(5, 5, 5, 0.2);
  }

  .index-row {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
  }

  .journal-cover {
    min-height: auto;
    display: block;
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .journal-title-block {
    max-width: 100%;
  }

  .journal-title-block h2 {
    font-size: clamp(2.5rem, 11vw, 4.25rem);
    line-height: 0.94;
  }

  .journal-title-block p {
    font-size: clamp(1.45rem, 7vw, 2.6rem);
  }

  .journal-issue-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 3.25rem 0 0;
    font-size: 0.88rem;
  }

  .journal-photo-a {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 2.5rem;
    transform: none;
  }

  .journal-body {
    width: 100%;
    max-width: 38rem;
    margin-top: 3rem;
  }

  .journal-pull {
    width: 100%;
    margin-top: 3rem;
  }

  .journal-body p,
  .journal-body p:first-child {
    font-size: clamp(1rem, 4.8vw, 1.32rem);
    line-height: 1.26;
    font-weight: 600;
  }

  .journal-image-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.25rem;
  }

  .journal-photo-wide > span {
    aspect-ratio: 4 / 3;
  }

  .artist-globe-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .artist-globe-shell::after {
    display: none;
  }

  .artist-globe {
    display: none;
  }

  .artists-section {
    min-height: auto;
    overflow: visible;
    align-items: start;
    padding-top: calc(var(--base-y) + 5.4rem);
    padding-bottom: calc(var(--base-y) + 4.2rem);
  }

  .artist-info-panel {
    max-width: none;
  }

  .artist-view-tabs {
    display: inline-flex;
  }

  .artist-link {
    display: none;
  }

  .artist-info-panel h2 {
    font-size: clamp(2.4rem, 13vw, 5rem);
  }

  .contact-section {
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    min-height: auto;
    align-items: start;
  }

  .contact-place,
  .contact-social,
  .contact-email {
    grid-column: auto;
  }

  .contact-social {
    margin-bottom: 0;
  }

  .exhibition-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    padding: 0 var(--base-x);
  }

  .exhibition-frame {
    display: none;
  }

}

@media (max-width: 480px) {
  .artist-list-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-items: start;
  }

  .menu-link {
    padding-inline: 1rem;
  }

  .menu-link-text,
  .menu-link-text-clone {
    font-size: clamp(1.45rem, 9vw, 2.1rem);
  }

  .menu-link-long .menu-link-text,
  .menu-link-long .menu-link-text-clone {
    white-space: normal;
    line-height: 1.08;
  }

  .menu-note p {
    font-size: 1.65rem;
  }

  .menu-feature {
    padding: 1.15rem;
  }
}

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

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