:root {
  --background: #ffffff;
  --ink: #050505;
  --muted: #686868;
  --line: #d7d7d7;
  --soft: #f3f3f3;
  --green: #0a9d38;
  --yellow: #d8ff00;
  --pink: #ff4f9a;
  --blue: #095bff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --max: 1480px;
  --site-header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.28;
  overflow-x: clip;
}

body.drawer-open {
  overflow: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  /* Artwork must stay fully visible; never crop it. */
  object-fit: contain;
  background: #fff;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--ink);
}

.site-header.is-immersive {
  background: rgba(5, 5, 5, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.site-header.is-immersive .cart-button {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.brand {
  width: fit-content;
  font-size: clamp(31px, 3.5vw, 58px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 7px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}

.cart-button {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  background: var(--background);
  color: var(--ink);
}

.cart-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
}

.cart-icon svg {
  width: 100%;
  height: 100%;
}

.cart-count {
  position: absolute;
  right: -8px;
  bottom: -8px;
  min-width: 23px;
  height: 23px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(20px, 4vw, 64px);
  min-height: calc(100vh - 74px);
  padding: clamp(18px, 4vw, 56px) clamp(18px, 4vw, 56px) 34px;
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.hero-copy {
  display: grid;
  align-content: end;
  max-width: 720px;
  padding-bottom: clamp(26px, 6vh, 72px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(86px, 14vw, 214px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 760;
  line-height: 1.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--background);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.shop-page .button-primary:not(:disabled):hover,
.shop-page .button-primary:not(:disabled):focus-visible {
  border-color: var(--ink);
  background: var(--green);
  color: #fff;
}

.button-secondary {
  background: var(--yellow);
}

.hero-media {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.hero-piece {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.hero-piece img {
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02);
}

.hero-piece-large {
  top: 4%;
  left: 15%;
  z-index: 2;
  width: 54%;
  height: 64%;
}

.hero-piece-tall {
  top: 0;
  right: 0;
  z-index: 3;
  width: 36%;
  height: 56%;
}

.hero-piece-small {
  left: 2%;
  bottom: 8%;
  z-index: 4;
  width: 31%;
  height: 35%;
}

.hero-piece-wide {
  right: 8%;
  bottom: 0;
  z-index: 1;
  width: 58%;
  height: 34%;
}

.visual-rail {
  position: relative;
  overflow: hidden;
  min-height: clamp(116px, 15vw, 190px);
  border-bottom: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.snake-field {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--snake-shift, 0px), 0, 0);
  transition: transform 120ms linear;
}

.snake-svg {
  position: absolute;
  inset: 0;
  width: 112%;
  height: 100%;
  transform: translateX(-6%);
}

.snake-shadow,
.snake-body {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snake-shadow {
  stroke: var(--yellow);
  stroke-width: clamp(36px, 4.8vw, 70px);
  opacity: 0.92;
  transform: translateY(8px);
}

.snake-body {
  stroke: var(--ink);
  stroke-width: clamp(24px, 3.5vw, 52px);
  stroke-dasharray: 18 18;
  stroke-dashoffset: var(--snake-dash, 0);
}

.snake-head {
  position: absolute;
  top: calc(50% + var(--snake-head-y, 0px));
  left: var(--snake-head-x, 72%);
  width: clamp(56px, 7vw, 104px);
  aspect-ratio: 1.42;
  border: 1px solid var(--ink);
  border-radius: 48% 52% 40% 44%;
  background: var(--yellow);
  transform: translate(-50%, -50%) rotate(var(--snake-rotate, -8deg));
  transition:
    left 120ms linear,
    transform 120ms linear,
    top 120ms linear;
}

.snake-head::before,
.snake-head::after {
  content: "";
  position: absolute;
  top: 30%;
  width: clamp(7px, 0.7vw, 11px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
}

.snake-head::before {
  left: 24%;
}

.snake-head::after {
  right: 24%;
}

.snake-tongue {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 2px;
  height: 30px;
  background: var(--ink);
  transform: translateX(-50%);
}

.snake-tongue::before,
.snake-tongue::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 2px;
  height: 14px;
  background: var(--ink);
  transform-origin: top center;
}

.snake-tongue::before {
  transform: rotate(34deg);
}

.snake-tongue::after {
  transform: rotate(-34deg);
}

.snake-scale {
  position: absolute;
  width: clamp(18px, 2.8vw, 42px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 999px 999px 0 999px;
  background: #fff;
  transform: translateY(var(--scale-y, 0)) rotate(45deg);
}

.scale-a {
  left: 19%;
  top: 28%;
}

.scale-b {
  left: 49%;
  bottom: 17%;
  --scale-y: 8px;
}

.scale-c {
  right: 18%;
  top: 24%;
  --scale-y: -6px;
}

.exhibition-showcase {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.expo-topbar {
  position: sticky;
  top: var(--site-header-height);
  z-index: 70;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) repeat(4, minmax(130px, 1fr));
  align-items: center;
  min-height: 32px;
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.expo-topbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-left: 1px solid var(--ink);
}

.expo-topbar a:first-child {
  border-left: 0;
}

.expo-mark {
  justify-content: flex-start !important;
  padding-left: 10px;
}

.expo-mark::before {
  content: "Lou Picault";
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 0 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
}

.expo-mark {
  font-size: 0;
}

.expo-hero {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 106px);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.expo-hero-image {
  min-height: min(760px, calc(100vh - 106px));
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: #fff;
}

.expo-hero-image img {
  object-fit: contain;
  background: #fff;
  filter: saturate(1.08) contrast(1.04);
}

.expo-hero-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 3vw, 38px);
}

.expo-hero-copy h1,
.expo-hero-copy h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(72px, 7.2vw, 108px);
  font-weight: 950;
  line-height: 0.73;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.expo-hero-copy p {
  max-width: min(520px, 100%);
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 0.94;
  text-transform: uppercase;
}

.expo-topbar a:hover,
.expo-topbar a:focus-visible {
  border-bottom-color: var(--ink);
}

.expo-categories {
  width: 100%;
  max-width: 100%;
}

.expo-featured {
  width: 100%;
  max-width: 100%;
  padding: 18px 0 0;
  overflow-x: clip;
  scroll-margin-top: calc(var(--site-header-height) + 36px);
}

.expo-featured + .expo-featured {
  border-top: 1px solid var(--ink);
}

.expo-section-label {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
  padding-inline: clamp(14px, 3vw, 34px);
  text-transform: uppercase;
}

.expo-section-label span,
.expo-section-label h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
}

.expo-work-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.expo-work-grid article {
  min-height: clamp(430px, 35vw, 620px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.expo-work-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 2.4vw, 34px) clamp(16px, 2.6vw, 34px) 22px;
}

.expo-work-card:hover img,
.expo-work-card:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
}

.expo-work-grid .expo-work-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.expo-work-grid .expo-work-wide .expo-work-card {
  display: grid;
  grid-template-rows: auto auto;
  padding: clamp(18px, 2.4vw, 34px) clamp(18px, 3vw, 42px) 22px;
}

.expo-work-grid img {
  width: 100%;
  height: 100%;
  max-height: none;
  border: 0;
  object-fit: contain;
  background: #fff;
}

.expo-work-grid .expo-work-wide img {
  height: auto;
  max-height: min(72vh, 760px);
  object-fit: contain;
}

.expo-work-grid h4 {
  align-self: end;
  margin: clamp(18px, 2.2vw, 34px) 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.expo-work-caption {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.expo-work-caption h4 {
  margin-bottom: 0;
}

.expo-work-grid .expo-work-wide h4 {
  margin-top: 22px;
}

.immersive-exhibition {
  position: relative;
  height: 360vh;
  background: #050505;
  border-bottom: 1px solid var(--ink);
  color: #fff;
}

.immersive-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.living-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
  transform: translateZ(0);
}

.living-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(0, 0, 0, 0.52) 100%);
  mix-blend-mode: soft-light;
}

.living-base,
.living-layer span {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.living-base {
  z-index: 1;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(var(--scene-zoom, 1));
  transform-origin: center;
  will-change: transform, filter;
}

.living-layer {
  position: absolute;
  inset: -1%;
  z-index: 3;
  pointer-events: none;
  opacity: var(--layer-opacity, 0.74);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform, opacity;
}

.living-layer span {
  content: "";
  display: block;
  background-image: url("assets/exhibition/visceral-zoom.jpg");
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.16) contrast(1.08);
  clip-path: inherit;
  animation: living-breath 4.8s ease-in-out infinite alternate;
}

.layer-petals-left {
  clip-path: ellipse(21% 28% at 34% 35%);
}

.layer-petals-right {
  clip-path: ellipse(21% 28% at 66% 35%);
}

.layer-spider {
  z-index: 6;
  --layer-opacity: 0.92;
  clip-path: ellipse(12% 20% at 50% 79%);
}

.layer-spider span {
  animation: spider-tension 1.45s steps(2, end) infinite;
}

.layer-scorpion {
  z-index: 5;
  --layer-opacity: 0.86;
  clip-path: ellipse(10% 12% at 67% 69%);
}

.layer-scorpion span {
  animation-duration: 2.2s;
}

.layer-moth {
  z-index: 5;
  --layer-opacity: 0.8;
  clip-path: ellipse(9% 12% at 52% 38%);
}

.layer-side-insects {
  z-index: 4;
  --layer-opacity: 0.76;
  clip-path: polygon(4% 2%, 13% 2%, 13% 23%, 4% 23%, 4% 2%, 87% 2%, 96% 2%, 96% 23%, 87% 23%, 87% 2%);
}

.living-grain {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.immersive-copy {
  position: relative;
  z-index: 10;
  align-self: end;
  width: min(560px, calc(100% - 36px));
  margin: 0 0 clamp(28px, 6vw, 74px) clamp(18px, 6vw, 82px);
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.immersive-index {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.immersive-copy h2 {
  margin: 0;
  font-size: clamp(52px, 9vw, 132px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.immersive-copy p:last-child {
  max-width: 470px;
  margin: 18px 0 0;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 720;
  line-height: 1.12;
}

.experimentation-page {
  width: 100%;
  max-width: 100%;
  background: #fff;
  color: var(--ink);
}

.experiment-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 1.06fr);
  min-height: calc(100vh - var(--site-header-height));
  border-bottom: 1px solid var(--ink);
}

.experiment-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(26px, 5vw, 72px) clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--ink);
}

.experiment-copy h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.experiment-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 780;
  line-height: 1.02;
}

.experiment-dream-hero .experiment-copy {
  align-content: space-between;
  min-height: calc(100vh - var(--site-header-height));
  background:
    linear-gradient(90deg, rgba(216, 255, 0, 0.16) 0 1px, transparent 1px) 0 0 / 54px 54px,
    #fff;
}

.experiment-dream-hero .experiment-copy h1 {
  align-self: start;
}

.experiment-dream-hero .experiment-copy p {
  max-width: 640px;
  font-size: clamp(20px, 2.25vw, 34px);
  line-height: 0.98;
}

.experiment-signal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 6vw, 92px);
  border: 1px solid var(--ink);
  background: #fff;
}

.experiment-signal span {
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.experiment-signal span:last-child {
  border-right: 0;
}

.experiment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
}

.experiment-actions a,
.experiment-process a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.experiment-actions svg,
.experiment-process svg {
  width: 18px;
  height: 18px;
}

.experiment-hero-image {
  min-height: calc(100vh - var(--site-header-height));
  margin: 0;
  background: #050505;
  padding: clamp(10px, 1.6vw, 24px);
}

.experiment-hero-image img {
  object-fit: contain;
  background: #050505;
}

.scroll-video-artwork {
  --scroll-video-height: 300vh;
  --scroll-video-fit: contain;
  --scroll-video-blackout: 0;
  --scroll-video-follow-opacity: 0;
  --scroll-video-follow-shift: 28px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: clip;
  background: #050505;
  color: #fff;
}

.scroll-video-track {
  position: relative;
  height: var(--scroll-video-height);
  min-height: 300vh;
  background: #050505;
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.scroll-video-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--scroll-video-fit);
  object-position: center;
  background: #050505;
}

.scroll-video-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  background: #050505;
}

.scroll-video-artwork.is-frame-sequence .scroll-video-canvas {
  display: block;
}

.scroll-video-artwork.is-frame-sequence .scroll-video-media {
  visibility: hidden;
}

.scroll-video-blackout {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: #050505;
  opacity: var(--scroll-video-blackout);
  will-change: opacity;
}

.scroll-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  place-items: center;
  padding: 24px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.scroll-video-fallback.is-visible {
  display: grid;
}

.scroll-video-fallback p {
  max-width: 420px;
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.scroll-video-follow {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: calc(100vh - var(--site-header-height));
  scroll-margin-top: var(--site-header-height);
  padding: clamp(28px, 6vw, 86px);
  background: #050505;
  color: #fff;
  opacity: var(--scroll-video-follow-opacity);
  transform: translate3d(0, var(--scroll-video-follow-shift), 0);
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.scroll-video-follow span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.scroll-video-follow h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 8.2vw, 128px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scroll-video-follow p {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 720;
  line-height: 1.12;
}

.scroll-video-follow code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86em;
}

.scroll-video-artwork.is-reduced-motion .scroll-video-track {
  height: 100vh;
  min-height: 100vh;
}

.scroll-video-artwork.is-reduced-motion .scroll-video-sticky {
  position: relative;
}

.scroll-video-artwork.is-reduced-motion .scroll-video-blackout {
  opacity: 0;
}

.scroll-video-artwork.is-reduced-motion .scroll-video-follow {
  opacity: 1;
  transform: none;
}

.experiment-immersive {
  border-top: 0;
}

.experiment-immersive .immersive-copy {
  width: min(700px, calc(100% - 36px));
}

.experiment-immersive .immersive-copy h2 {
  max-width: 720px;
  font-size: clamp(48px, 8vw, 118px);
}

.experiment-immersive .immersive-copy p:last-child {
  max-width: 560px;
}

.experiment-lab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.experiment-lab-grid.dream-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experiment-lab-grid article {
  min-height: clamp(300px, 28vw, 460px);
  padding: clamp(24px, 4vw, 56px);
  border-right: 1px solid var(--ink);
}

.dream-grid article {
  display: grid;
  align-content: space-between;
  min-height: clamp(360px, 34vw, 560px);
  background: #fff;
}

.dream-grid article:nth-child(even) {
  background: #050505;
  color: #fff;
}

.dream-grid article:nth-child(even) p {
  color: #fff;
}

.experiment-lab-grid article:last-child {
  border-right: 0;
}

.experiment-lab-grid span {
  display: block;
  margin-bottom: clamp(42px, 8vw, 120px);
  font-size: 12px;
  font-weight: 950;
}

.experiment-lab-grid h2,
.experiment-process h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 82px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.experiment-lab-grid p,
.experiment-process p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 720;
  line-height: 1.12;
}

.dream-grid h2 {
  font-size: clamp(30px, 3.2vw, 58px);
}

.experiment-process {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
}

.experiment-process figure {
  min-height: clamp(520px, 58vw, 820px);
  margin: 0;
  border-right: 1px solid var(--ink);
  background: #fff;
  padding: clamp(12px, 1.6vw, 24px);
}

.experiment-process img {
  object-fit: contain;
  background: #fff;
}

.experiment-process > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 5vw, 74px);
}

.experiment-process a {
  margin-top: 30px;
}

.dream-process {
  background: #fff;
}

.dream-process > div {
  background:
    linear-gradient(var(--ink) 0 1px, transparent 1px) 0 0 / 100% 62px,
    #d8ff00;
}

.dream-process p {
  color: var(--ink);
}

.experiment-fragments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.experiment-fragments figure {
  display: grid;
  grid-template-rows: minmax(420px, 58vh) auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border-right: 1px solid var(--ink);
  background: #fff;
}

.experiment-fragments figure:last-child {
  border-right: 0;
}

.experiment-fragments img {
  width: 100%;
  height: 100%;
  padding: clamp(12px, 2vw, 30px);
  object-fit: contain;
  background: #fff;
}

.experiment-fragments figcaption {
  min-height: 70px;
  padding: 18px 15px;
  border-top: 1px solid var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.scroll-meter {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(24px, 5vw, 58px);
  z-index: 10;
  width: 1px;
  height: min(190px, 28vh);
  background: rgba(255, 255, 255, 0.24);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress, 0) * 100%);
  background: #fff;
}

@keyframes living-breath {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0.35%, -0.25%, 0) scale(1.012);
  }
}

@keyframes spider-tension {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-0.18%, 0.12%, 0) scale(1.008);
  }
}

.selection {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2,
.contact h1,
.contact h2,
.artist-band h2 {
  margin: 0;
  font-size: clamp(54px, 9vw, 138px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.section-heading a,
.artist-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalogue-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 24px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-tabs button {
  min-height: 38px;
  border: 1px solid var(--ink);
  background: var(--background);
  color: var(--ink);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-tabs button:hover,
.filter-tabs button:focus-visible,
.filter-tabs button.is-active {
  background: var(--ink);
  color: #fff;
}

.catalogue-tools p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 28px;
  border: 1px solid var(--ink);
  background: #fff;
}

.shop-reassurance span {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--ink);
  line-height: 1.12;
}

.shop-reassurance strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-reassurance small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.18;
}

.shop-reassurance span + span {
  border-left: 1px solid var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-width: 0;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.04;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #fff;
  padding: clamp(10px, 1.2vw, 22px);
}

.product-image img {
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-image::after {
  display: none;
}

.product-image:hover img,
.product-image:focus-visible img {
  filter: saturate(1.12);
}

.product-view-count {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 9px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-meta {
  display: block;
  min-height: 112px;
}

.product-meta h3 {
  margin: 0 0 5px;
  font-size: clamp(22px, 2.3vw, 36px);
  font-weight: 950;
  line-height: 0.9;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 7px 0 8px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid var(--ink);
  padding: 3px 7px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.expo-work-caption .product-tags {
  justify-content: center;
  margin: 0;
}

.product-formats {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.product-formats span,
.product-formats a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.product-formats strong,
.product-formats b {
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.product-formats em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.work-details .product-formats {
  max-width: 430px;
  margin-top: 2px;
}

.work-details .product-formats span {
  border-color: var(--ink);
}

.work-details .product-formats a {
  border-color: var(--ink);
  background: var(--yellow);
  padding: 10px;
}

.work-details .product-formats strong,
.work-details .product-formats b,
.work-details .product-formats em {
  font-size: 13px;
}

.product-meta p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.18;
}

.product-purchase {
  align-self: end;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.product-purchase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-purchase-heading span,
.product-purchase-simple > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-purchase-heading strong {
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.product-format-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-format-picker button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  min-height: 74px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
  transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.product-format-picker button:hover,
.product-format-picker button:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ink);
}

.product-format-picker button.is-selected {
  background: var(--yellow);
}

.product-format-picker button > span,
.product-format-picker button > strong {
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.product-format-picker button > strong {
  text-align: right;
}

.product-format-picker button small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.product-add {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease;
}

.product-add:hover,
.product-add:focus-visible {
  background: var(--green);
  transform: translateY(-2px);
}

.product-add strong {
  font-size: 16px;
  font-weight: 950;
}

.product-add svg {
  width: 18px;
  height: 18px;
}

.product-details-link {
  justify-self: start;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 2px 0 3px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-purchase-simple {
  grid-template-columns: 1fr minmax(220px, 0.6fr);
  align-items: center;
}

[hidden] {
  display: none !important;
}

.artist-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.artist-copy {
  align-self: center;
  max-width: 700px;
  padding: clamp(44px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.artist-copy p {
  margin: 24px 0 32px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 720;
  line-height: 1.15;
}

.artist-image {
  min-height: 680px;
  margin: 0;
  background: #fff;
  border-left: 1px solid var(--ink);
  padding: clamp(12px, 1.4vw, 24px);
}

.artist-image img {
  object-fit: contain;
}

.artist-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(44px, 6vw, 88px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.artist-contact-image {
  min-height: clamp(520px, 58vw, 860px);
  margin: 0;
  border: 1px solid var(--ink);
  background: #fff;
  padding: clamp(10px, 1.4vw, 22px);
}

.artist-contact-image img {
  object-fit: cover;
  background: #fff;
}

.artist-contact-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  border-left: 1px solid var(--ink);
  padding-left: clamp(24px, 5vw, 72px);
}

.artist-contact-copy span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-contact-copy h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 170px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.artist-contact-copy p {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 760;
  line-height: 1.04;
}

.artist-contact-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-contact-copy svg {
  width: 18px;
  height: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(540px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(44px, 6vw, 88px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: var(--site-header-height);
}

.contact-title {
  display: grid;
  align-content: start;
}

.contact-kicker,
.inquiry-heading > span {
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  padding: 7px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.contact-title h2 {
  max-width: 760px;
  font-size: clamp(54px, 7.5vw, 110px);
}

.contact-title p {
  max-width: 390px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 740;
  line-height: 1.12;
}

.contact-title .contact-response {
  margin-top: 28px;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--ink);
  background: #fff;
  padding: clamp(24px, 4vw, 52px);
  box-shadow: 12px 12px 0 var(--yellow);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--background);
  color: var(--ink);
  padding: 16px;
  border-radius: 0;
  outline: none;
  font-size: 15px;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 4px var(--yellow);
}

.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.inquiry-form h2,
.inquiry-form h3 {
  margin: 0 0 8px;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 950;
  line-height: 0.95;
}

.inquiry-heading > span {
  display: block;
  margin-bottom: 14px;
  background: var(--ink);
  color: #fff;
}

.inquiry-heading p {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px) 34px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-legal a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-legal a[aria-current="page"] {
  text-decoration-thickness: 2px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto auto;
  width: min(100%, 430px);
  height: 100%;
  background: var(--background);
  border-left: 1px solid var(--ink);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ink);
}

.cart-header h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 950;
  line-height: 0.9;
}

.cart-header button,
.work-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  background: var(--background);
}

.cart-items {
  overflow: auto;
  padding: 10px 24px;
}

.cart-summary {
  margin: 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row img {
  width: 74px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--ink);
}

.cart-row h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 950;
}

.cart-row p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-row p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 900;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 6px 0;
  border: 1px solid var(--ink);
}

.cart-quantity button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 0;
  font-size: 16px;
  font-weight: 950;
}

.cart-quantity button:disabled {
  cursor: not-allowed;
  color: var(--line);
  background: var(--soft);
}

.cart-quantity button + strong,
.cart-quantity strong + button {
  border-left: 1px solid var(--ink);
}

.cart-quantity strong {
  min-width: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.cart-row > button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 4px;
}

.cart-row > button {
  align-self: start;
}

.cart-empty {
  display: none;
  padding: 24px;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-top: 1px solid var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.cart-note {
  min-height: 36px;
  margin: 0;
  padding: 0 24px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.cart-note.is-error,
.admin-status.is-error,
.admin-error {
  color: #9c1b14;
}

.cart-terms {
  margin: 0 24px 14px;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 12px;
}

.cart-terms[hidden] {
  display: none;
}

.cart-terms label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.cart-terms input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--ink);
}

.cart-terms a {
  color: inherit;
  text-underline-offset: 2px;
}

.cart-checkout {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.legal-page {
  background: var(--soft);
}

.legal-main {
  min-height: calc(100svh - var(--site-header-height));
}

.legal-hero {
  display: grid;
  gap: 16px;
  padding: clamp(48px, 8vw, 112px) clamp(18px, 6vw, 88px);
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.legal-hero > span {
  width: fit-content;
  border: 1px solid var(--ink);
  background: var(--background);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.83;
  overflow-wrap: anywhere;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.legal-document {
  width: min(1000px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 6vw, 82px) 0 clamp(60px, 9vw, 120px);
}

.legal-warning,
.legal-notice {
  margin-bottom: 40px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: clamp(18px, 3vw, 28px);
}

.legal-notice {
  background: #fff;
}

.legal-warning strong,
.legal-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 950;
}

.legal-warning p,
.legal-notice p {
  margin: 0;
  line-height: 1.55;
}

.legal-section {
  padding: clamp(28px, 5vw, 52px) 0;
  border-top: 1px solid var(--ink);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--ink);
}

.legal-section h2 {
  max-width: 840px;
  margin: 0 0 22px;
  font-size: clamp(28px, 4.3vw, 48px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.legal-section p,
.legal-section li,
.withdrawal-form p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
}

.legal-section p {
  margin: 0 0 16px;
}

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

.legal-section ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.legal-section a,
.withdrawal-form a {
  color: inherit;
  font-weight: 850;
  text-underline-offset: 3px;
}

.legal-placeholder {
  background: #ffe1de;
  color: #8a1812;
  font-weight: 900;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-identity {
  margin: 0;
  border: 1px solid var(--ink);
  background: #fff;
}

.legal-identity > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
}

.legal-identity > div + div {
  border-top: 1px solid var(--ink);
}

.legal-identity dt,
.legal-identity dd {
  margin: 0;
  padding: 14px 16px;
}

.legal-identity dt {
  border-right: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-table {
  margin: 24px 0;
  border: 1px solid var(--ink);
  background: #fff;
}

.legal-table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
}

.legal-table-row + .legal-table-row {
  border-top: 1px solid var(--ink);
}

.legal-table-row > * {
  padding: 14px 16px;
}

.legal-table-row > * + * {
  border-left: 1px solid var(--ink);
}

.legal-table-head {
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-guarantee {
  margin: 18px 0;
  border: 2px solid var(--ink);
  background: #fff;
  padding: clamp(24px, 5vw, 48px);
}

.legal-guarantee + .legal-section {
  border-top: 0;
}

.legal-sources {
  font-size: 14px;
}

.withdrawal-form {
  display: grid;
  gap: 22px;
  border: 1px solid var(--ink);
  background: #fff;
  padding: clamp(20px, 5vw, 48px);
}

.withdrawal-form > p {
  margin: 0;
}

.withdrawal-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.withdrawal-form input,
.withdrawal-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--background);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.legal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-actions .button {
  width: auto;
}

.checkout-status-page {
  min-height: calc(100svh - var(--site-header-height));
  background: var(--soft);
}

.checkout-status {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.checkout-status-heading {
  max-width: 820px;
}

.checkout-status-kicker,
.orders-admin-header > div > span {
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-status-heading h1,
.orders-admin-header h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 950;
  line-height: 0.86;
}

.checkout-status-heading p,
.orders-admin-header p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 720;
  line-height: 1.2;
}

.order-confirmation {
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 12px 12px 0 var(--yellow);
}

.order-confirmation-head,
.order-confirmation-item,
.order-totals > div,
.order-delivery {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.order-confirmation-head {
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--ink);
}

.order-confirmation-head div {
  display: grid;
  gap: 5px;
}

.order-confirmation-head span,
.order-delivery span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-confirmation-head strong {
  font-size: 22px;
}

.order-status-badge,
.admin-order-badge {
  border: 1px solid var(--ink);
  background: var(--green);
  padding: 8px 10px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-status-badge.is-mock {
  background: var(--yellow);
  color: var(--ink) !important;
}

.order-confirmation-items {
  padding: 4px 24px;
}

.order-confirmation-item {
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.order-confirmation-item > div {
  display: grid;
  gap: 4px;
}

.order-item-title,
.order-item-price {
  font-weight: 950;
}

.order-item-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-totals {
  margin: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ink);
}

.order-totals > div {
  padding: 5px 0;
}

.order-totals dt,
.order-totals dd {
  margin: 0;
  font-weight: 750;
}

.order-totals .order-total {
  margin-top: 8px;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  font-size: 20px;
  font-weight: 950;
}

.order-delivery {
  padding: 24px;
}

.order-delivery > div {
  flex: 1;
}

.order-delivery p {
  margin: 7px 0 0;
  font-weight: 750;
  line-height: 1.45;
  white-space: pre-line;
}

.order-next-step {
  margin: 0;
  border-top: 1px solid var(--ink);
  background: var(--yellow);
  padding: 18px 24px;
  font-weight: 850;
}

.checkout-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.orders-admin {
  min-height: calc(100svh - var(--site-header-height));
  padding: clamp(36px, 6vw, 80px) clamp(18px, 4vw, 56px);
}

.orders-admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: end;
  gap: 48px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 34px;
}

.admin-login {
  display: grid;
  gap: 8px;
}

.admin-login label,
.shipment-form label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-login > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.admin-login input,
.admin-login button {
  min-height: 52px;
}

.admin-status {
  margin: 20px 0;
  font-size: 13px;
  font-weight: 850;
}

.orders-list {
  display: grid;
  gap: 22px;
}

.orders-empty {
  border: 1px solid var(--ink);
  background: #fff;
  padding: 30px;
  font-weight: 850;
}

.admin-order-card {
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--yellow);
}

.admin-order-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink);
}

.admin-order-card > header div {
  display: grid;
  gap: 3px;
}

.admin-order-card > header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-order-card h2,
.admin-order-card h3 {
  margin: 0;
}

.admin-order-card h2 {
  font-size: 24px;
}

.admin-order-badge {
  background: var(--yellow);
  color: var(--ink) !important;
}

.admin-order-badge.is-shipped {
  background: var(--green);
  color: #fff !important;
}

.admin-order-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-order-content > section,
.admin-shipment {
  padding: 22px;
}

.admin-order-content > * + * {
  border-left: 1px solid var(--ink);
}

.admin-order-content h3,
.admin-shipment > strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-address {
  white-space: pre-line;
}

.admin-order-content p,
.admin-order-content ul {
  margin: 8px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.admin-order-content ul {
  padding-left: 18px;
}

.admin-shipment > a {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
}

.shipment-form {
  display: grid;
  gap: 12px;
}

.shipment-form input {
  padding: 11px;
}

.shipment-form .button {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .orders-admin-header {
    grid-template-columns: 1fr;
  }

  .admin-order-content {
    grid-template-columns: 1fr;
  }

  .admin-order-content > * + * {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .order-delivery,
  .order-confirmation-item,
  .order-confirmation-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-item-price {
    align-self: flex-end;
  }

  .admin-login > div {
    grid-template-columns: 1fr;
  }
}

.work-modal {
  position: fixed;
  inset: var(--site-header-height) 0 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.44);
  opacity: 0;
  pointer-events: none;
  padding: clamp(8px, 1.2vw, 16px);
  transition: opacity 180ms ease;
  overflow: auto;
}

.work-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.work-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(360px, 0.8fr);
  width: min(1160px, calc(100vw - clamp(16px, 2.4vw, 32px)));
  height: min(760px, calc(100svh - var(--site-header-height) - clamp(16px, 2.4vw, 32px)));
  max-height: calc(100svh - var(--site-header-height) - clamp(16px, 2.4vw, 32px));
  background: var(--background);
  border: 1px solid var(--ink);
  overflow: hidden;
}

.work-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.work-preview {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  max-height: 100%;
  margin: 0;
  background: #fff;
  padding: clamp(12px, 1.4vw, 24px);
  overflow: hidden;
}

.work-preview img {
  object-fit: contain;
}

.work-slide {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 72px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  transform: translateY(-50%);
}

.work-slide:hover,
.work-slide:focus-visible {
  background: var(--yellow);
}

.work-slide svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.work-slide-prev {
  left: clamp(12px, 1.4vw, 24px);
}

.work-slide-next {
  right: clamp(12px, 1.4vw, 24px);
}

.work-gallery {
  display: flex;
  gap: 8px;
  min-height: 82px;
  padding: 10px 0 0;
  overflow-x: auto;
  border-top: 1px solid var(--ink);
  background: var(--background);
}

.work-gallery:empty {
  display: none;
}

.work-gallery button {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 0;
  opacity: 0.62;
}

.work-gallery button.is-active,
.work-gallery button:hover,
.work-gallery button:focus-visible {
  border-color: var(--ink);
  opacity: 1;
}

.work-gallery img {
  object-fit: contain;
  background: #fff;
}

.work-details {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  max-height: 100%;
  overflow: auto;
  padding: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid var(--ink);
}

.work-details > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.work-details h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 950;
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
}

.work-details p {
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 680;
  line-height: 1.25;
}

.work-format-options {
  display: grid;
  gap: 7px;
}

.work-format-options:empty {
  display: none;
}

.work-format-options button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  text-align: left;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.work-format-options button:hover,
.work-format-options button:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ink);
}

.work-format-options button.is-selected {
  background: var(--yellow);
}

.work-format-options span,
.work-format-options strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.work-format-options small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.work-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.work-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: 8px 12px;
}

.work-quantity > span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.work-quantity div {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid var(--ink);
}

.work-quantity button {
  width: 34px;
  height: 34px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.work-quantity strong {
  min-width: 40px;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.work-actions {
  position: sticky;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 8px;
  background: var(--background);
}

.work-actions .button {
  min-height: 48px;
}

.work-modal-gallery {
  inset: 0;
  z-index: 140;
  background: rgba(5, 5, 5, 0.78);
  padding: clamp(14px, 3vw, 42px);
  backdrop-filter: blur(10px);
}

.work-modal-gallery .work-panel {
  display: grid;
  grid-template-columns: 1fr;
  width: min(1120px, calc(100vw - clamp(28px, 6vw, 96px)));
  height: min(840px, calc(100svh - clamp(28px, 6vw, 96px)));
  max-height: calc(100svh - clamp(28px, 6vw, 96px));
  background: transparent;
  border: 0;
  overflow: visible;
}

.work-modal-gallery .work-preview {
  min-height: 0;
  max-height: 100%;
  background: transparent;
  padding: 0;
}

.work-modal-gallery .work-preview > img {
  background: transparent;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.34));
}

.work-modal-gallery .work-details {
  display: none;
}

.work-modal-gallery .work-close {
  top: 0;
  right: 0;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
}

.work-modal-gallery .work-slide {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

.work-modal-gallery .work-slide:hover,
.work-modal-gallery .work-slide:focus-visible {
  background: var(--yellow);
}

.work-modal-gallery .work-gallery {
  justify-content: center;
  min-height: 76px;
  border-top-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.work-modal-gallery .work-gallery button {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-modal-gallery .work-gallery button.is-active,
.work-modal-gallery .work-gallery button:hover,
.work-modal-gallery .work-gallery button:focus-visible {
  border-color: #fff;
}

.fresque-active {
  overflow: hidden;
  background: #050505;
}

.fresque-header {
  position: fixed;
  color: #fff;
  background: rgba(5, 5, 5, 0.56);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.fresque-header .main-nav a:hover,
.fresque-header .main-nav a:focus-visible,
.fresque-header .main-nav a[aria-current="page"] {
  border-bottom-color: #fff;
}

.fresque-header .cart-button {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.fresque-page {
  min-height: 100vh;
  background: #050505;
  color: #fff;
}

.fresque-explorer {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.fresque-canvas {
  position: absolute;
  inset: 0;
  cursor: grab;
  overflow: hidden;
  touch-action: none;
}

.fresque-canvas.is-dragging {
  cursor: grabbing;
}

.fresque-map {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 250vh;
  aspect-ratio: 1042 / 1299;
  transform: translate(-50%, -50%) translate3d(var(--fresque-pan-x, 0px), var(--fresque-pan-y, 0px), 0);
  transform-origin: center;
  transition: none;
  will-change: transform;
}

.fresque-canvas.is-dragging .fresque-map {
  transition: none;
}

.fresque-map-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e5e5e0;
  filter: none;
}

.fresque-map-art img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  background: transparent;
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 520ms ease;
  will-change: opacity;
}

.fresque-map-art::before,
.fresque-map-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fresque-map-art::before {
  display: none;
}

.fresque-map-art::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.fresque-explorer.is-loading .fresque-map-art img {
  opacity: 0;
}

.fresque-explorer.is-loading .fresque-canvas {
  pointer-events: none;
  cursor: progress;
}

.fresque-explorer.is-loading .fresque-hotspot,
.fresque-explorer.is-loading .fresque-focus-layer {
  opacity: 0;
}

.fresque-explorer.is-loading .fresque-intro,
.fresque-explorer.is-loading .fresque-toolbar {
  opacity: 0;
  transform: translateY(8px);
}

.fresque-intro,
.fresque-toolbar {
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.fresque-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(280px, calc(100% - 48px));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 320ms ease;
}

.fresque-loader span {
  display: block;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(216, 255, 0, 0.18);
  animation: fresque-loader-spin 900ms linear infinite;
}

.fresque-loader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fresque-explorer.is-ready .fresque-loader,
.fresque-explorer.is-load-error .fresque-loader {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.fresque-focus-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fresque-focus-shape {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  opacity: 0.12;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: 50% 50%;
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.fresque-focus-shape svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.fresque-focus-shape path {
  fill: rgba(216, 255, 0, 0.055);
  stroke: rgba(216, 255, 0, 0.68);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.fresque-focus-shape path + path {
  fill: none;
  stroke-width: 1.5;
}

.fresque-focus-shape.is-line path {
  fill: none;
  stroke-width: 3.8;
}

.fresque-focus-shape.is-line path + path {
  fill: rgba(216, 255, 0, 0.08);
  stroke-width: 2;
}

.fresque-focus-shape.is-found {
  opacity: 0.18;
}

.fresque-focus-shape.is-preview,
.fresque-focus-shape.is-active {
  opacity: 0.86;
  filter:
    drop-shadow(0 0 7px rgba(216, 255, 0, 0.72))
    drop-shadow(0 0 24px rgba(216, 255, 0, 0.36));
  transform: translate(-50%, -50%) scale(1.08);
}

.fresque-focus-shape.is-active path {
  fill: rgba(216, 255, 0, 0.095);
  stroke: rgba(216, 255, 0, 0.96);
  stroke-width: 2.8;
}

.fresque-focus-shape.is-line.is-active path {
  fill: none;
  stroke-width: 5;
}

.fresque-focus-shape.is-line.is-active path + path {
  fill: rgba(216, 255, 0, 0.12);
  stroke-width: 2.4;
}

.focus-serpent-haut {
  --x: 55.8%;
  --y: 21.2%;
  --w: 16.2%;
  --h: 8.8%;
}

.focus-serpent-fil {
  --x: 50.6%;
  --y: 29.1%;
  --w: 9.8%;
  --h: 7.2%;
}

.focus-ladybug {
  --x: 70.1%;
  --y: 13.9%;
  --w: 4.3%;
  --h: 5.8%;
}

.focus-butterfly {
  --x: 52.8%;
  --y: 37.5%;
  --w: 15%;
  --h: 11.5%;
}

.focus-scorpion {
  --x: 59.6%;
  --y: 43.7%;
  --w: 15.2%;
  --h: 9.5%;
}

.focus-migale {
  --x: 50.2%;
  --y: 47.4%;
  --w: 17.4%;
  --h: 16.2%;
}

.focus-serpent-noir {
  --x: 62.4%;
  --y: 75.2%;
  --w: 13.8%;
  --h: 15.6%;
}

.focus-orange-insect {
  --x: 33.1%;
  --y: 75.4%;
  --w: 6.4%;
  --h: 6.8%;
}

.fresque-hotspot {
  --x: 50%;
  --y: 50%;
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(18px, 1.7vw, 30px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 0, 0.72);
  border-radius: 50%;
  background: rgba(216, 255, 0, 0.16);
  box-shadow:
    0 0 0 5px rgba(5, 5, 5, 0.1),
    0 0 18px rgba(216, 255, 0, 0.2);
  color: #fff;
  transform: translate(-50%, -50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.fresque-hotspot::before,
.fresque-hotspot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.fresque-hotspot::after {
  inset: -22px;
  border-color: transparent;
}

.fresque-hotspot span {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  min-width: 86px;
  padding: 4px 6px;
  background: rgba(5, 5, 5, 0.62);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 2px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.fresque-hotspot.is-found {
  background: rgba(216, 255, 0, 0.24);
  border-color: var(--yellow);
}

.fresque-hotspot.is-active {
  border-color: var(--yellow);
  background: rgba(216, 255, 0, 0.28);
  box-shadow:
    0 0 0 7px rgba(5, 5, 5, 0.1),
    0 0 26px rgba(216, 255, 0, 0.28);
  transform: translate(-50%, -50%) scale(1.12);
}

.fresque-hotspot:hover,
.fresque-hotspot:focus-visible {
  background: rgba(216, 255, 0, 0.32);
  border-color: var(--yellow);
  box-shadow:
    0 0 0 6px rgba(5, 5, 5, 0.12),
    0 0 24px rgba(216, 255, 0, 0.34);
  transform: translate(-50%, -50%) scale(1.18);
}

.fresque-hotspot:hover span,
.fresque-hotspot:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hotspot-serpent-haut {
  --x: 55%;
  --y: 21%;
}

.hotspot-serpent-fil {
  --x: 50%;
  --y: 29%;
}

.hotspot-spider {
  --x: 50%;
  --y: 47%;
}

.hotspot-ladybug {
  --x: 70.1%;
  --y: 13.9%;
}

.hotspot-scorpion {
  --x: 59%;
  --y: 44%;
}

.hotspot-butterfly {
  --x: 53%;
  --y: 37%;
}

.hotspot-serpent-bas {
  --x: 62%;
  --y: 75%;
}

.hotspot-orange-insect {
  --x: 33.1%;
  --y: 75.4%;
}

.fresque-intro {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  bottom: clamp(104px, 14vh, 154px);
  z-index: 5;
  width: min(360px, calc(100% - 36px));
  color: #fff;
  pointer-events: none;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.62);
}

.fresque-kicker {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 0.96;
}

.fresque-intro h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fresque-intro p:last-child {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 760;
  line-height: 1.06;
}

.fresque-toolbar {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 52px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fresque-toolbar > button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
}

.fresque-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.34);
  backdrop-filter: blur(16px);
}

.fresque-progress button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.fresque-progress button.is-found {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.fresque-progress button.is-active {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 3px rgba(216, 255, 0, 0.24),
    0 0 22px rgba(216, 255, 0, 0.3);
  transform: scale(1.08);
}

.fresque-panel {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(16px, 4vw, 56px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(5, 5, 5, 0.08));
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.fresque-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fresque-panel-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(250, 250, 246, 0.9);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transform: translateY(12px);
  backdrop-filter: blur(22px) saturate(1.04);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fresque-panel.is-open .fresque-panel-card {
  transform: translateY(0);
}

.fresque-panel-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fresque-panel-card h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fresque-panel-card p {
  margin: 22px 0 28px;
  color: #242424;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.12;
}

.fresque-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.fresque-panel-close:focus-visible {
  outline: 2px solid rgba(216, 255, 0, 0.9);
  outline-offset: 3px;
}

@keyframes fresque-pulse {
  0%,
  100% {
    transform: scale(0.92);
  }

  50% {
    transform: scale(1.16);
  }
}

@keyframes fresque-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .fresque-loader span {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .immersive-exhibition {
    height: auto;
  }

  .immersive-stage {
    position: relative;
  }
}

@media (max-width: 1080px) {
  .hero,
  .artist-band,
  .artist-contact,
  .experiment-hero,
  .experiment-process,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    align-content: start;
    padding-bottom: 0;
  }

  .hero-media {
    min-height: 74vh;
  }

  .visual-rail {
    min-height: 132px;
  }

  .immersive-exhibition {
    height: 320vh;
  }

  .immersive-copy {
    margin-left: clamp(18px, 4vw, 42px);
  }

  .experiment-copy {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .experiment-hero,
  .experiment-hero-image {
    min-height: auto;
  }

  .experiment-hero-image {
    height: min(74vh, 760px);
  }

  .experiment-lab-grid {
    grid-template-columns: 1fr;
  }

  .experiment-lab-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .experiment-lab-grid article:last-child {
    border-bottom: 0;
  }

  .experiment-lab-grid span {
    margin-bottom: 42px;
  }

  .experiment-process figure {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .experiment-dream-hero .experiment-copy {
    min-height: auto;
  }

  .experiment-signal {
    grid-template-columns: 1fr;
  }

  .experiment-signal span {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .experiment-signal span:last-child {
    border-bottom: 0;
  }

  .experiment-fragments {
    grid-template-columns: 1fr;
  }

  .experiment-fragments figure {
    grid-template-rows: minmax(420px, 64vh) auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .experiment-fragments figure:last-child {
    border-bottom: 0;
  }

  .expo-topbar {
    top: 68px;
    grid-template-columns: 1fr 1fr;
  }

  .expo-topbar a {
    border-top: 1px solid var(--ink);
  }

  .expo-topbar a:nth-child(-n + 2) {
    border-top: 0;
  }

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

  .expo-hero-image {
    min-height: min(74vh, 720px);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .expo-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expo-work-grid article {
    min-height: clamp(360px, 44vw, 500px);
  }

  .expo-work-card {
    padding: 20px 16px 20px;
  }

  .expo-work-grid .expo-work-wide .expo-work-card {
    padding: 20px 16px 20px;
  }

  .artist-image {
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .artist-contact-copy {
    border-left: 0;
    border-top: 1px solid var(--ink);
    padding-top: 28px;
    padding-left: 0;
  }

  .work-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .work-preview {
    min-height: min(460px, 52svh);
    max-height: none;
  }

  .work-details {
    border-left: 0;
    border-top: 1px solid var(--ink);
    overflow: visible;
  }

  .fresque-intro {
    bottom: 118px;
    width: min(360px, calc(100% - 36px));
  }

  .fresque-intro h1 {
    font-size: clamp(48px, 10vw, 86px);
  }
}

@media (max-width: 720px) {
  :root {
    --site-header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 13px 15px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px 14px;
    overflow-x: visible;
    font-size: 12px;
  }

  .hero {
    padding: 18px 15px 24px;
  }

  .hero h1 {
    font-size: clamp(78px, 25vw, 132px);
  }

  .hero-copy p {
    font-size: 22px;
  }

  .hero-actions {
    display: grid;
  }

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

  .fresque-explorer {
    min-height: 100svh;
  }

  .fresque-map {
    height: 250svh;
  }

  .fresque-hotspot {
    width: 22px;
  }

  .fresque-hotspot span {
    min-width: 82px;
    font-size: 9px;
  }

  .fresque-intro {
    left: 15px;
    right: 15px;
    bottom: 104px;
    width: auto;
  }

  .fresque-kicker {
    font-size: 18px;
  }

  .fresque-intro h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .fresque-intro p:last-child {
    max-width: 300px;
    font-size: 15px;
  }

  .fresque-toolbar {
    right: 15px;
    bottom: 18px;
    left: 15px;
    justify-content: space-between;
  }

  .fresque-toolbar > button {
    width: 50px;
    height: 50px;
  }

  .fresque-progress button {
    width: 38px;
    height: 38px;
    font-size: 9px;
  }

  .fresque-panel {
    align-items: flex-end;
    padding: 0;
  }

  .fresque-panel-card {
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .hero-piece-large {
    top: 4%;
    left: 0;
    width: 70%;
    height: 46%;
  }

  .hero-piece-tall {
    top: 12%;
    right: 0;
    width: 42%;
    height: 42%;
  }

  .hero-piece-small {
    left: 0;
    bottom: 7%;
    width: 44%;
    height: 34%;
  }

  .hero-piece-wide {
    right: 0;
    bottom: 0;
    width: 72%;
    height: 33%;
  }

  .selection,
  .artist-contact,
  .experiment-copy,
  .experiment-process > div,
  .contact {
    padding-inline: 15px;
  }

  .immersive-exhibition {
    height: 280vh;
  }

  .living-base,
  .living-layer span {
    inset: -14%;
    width: 128%;
    height: 128%;
  }

  .layer-petals-left {
    clip-path: ellipse(28% 29% at 30% 38%);
  }

  .layer-petals-right {
    clip-path: ellipse(28% 29% at 70% 38%);
  }

  .layer-spider {
    clip-path: ellipse(20% 23% at 50% 77%);
  }

  .layer-scorpion {
    clip-path: ellipse(16% 14% at 69% 68%);
  }

  .layer-moth {
    clip-path: ellipse(14% 13% at 54% 39%);
  }

  .immersive-copy {
    width: calc(100% - 30px);
    margin: 0 15px 34px;
  }

  .immersive-copy p:last-child {
    max-width: 350px;
  }

  .scroll-meter {
    right: 15px;
    bottom: 34px;
    height: 116px;
  }

  .expo-topbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .expo-topbar a,
  .expo-topbar a:nth-child(-n + 2) {
    justify-content: flex-start;
    min-height: 36px;
    border-top: 1px solid var(--ink);
    border-left: 0;
    padding: 0 15px;
  }

  .expo-topbar a:first-child {
    border-top: 0;
  }

  .expo-mark {
    padding-left: 15px !important;
  }

  .expo-hero-copy {
    padding: 18px 15px 28px;
  }

  .expo-hero-copy h1,
  .expo-hero-copy h2 {
    font-size: clamp(76px, 23vw, 118px);
    white-space: normal;
  }

  .expo-hero-copy p {
    font-size: 24px;
  }

  .expo-featured {
    padding: 16px 15px 28px;
  }

  .expo-section-label {
    grid-template-columns: 34px 1fr;
  }

  .expo-work-grid {
    grid-template-columns: 1fr;
  }

  .expo-work-grid article {
    min-height: 390px;
  }

  .expo-work-card {
    grid-template-rows: minmax(300px, 1fr) auto;
  }

  .expo-work-grid .expo-work-wide {
    min-height: auto;
  }

  .expo-work-grid .expo-work-wide .expo-work-card {
    padding: 18px 15px 22px;
  }

  .expo-work-grid .expo-work-wide img {
    max-height: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalogue-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-reassurance {
    grid-template-columns: 1fr;
  }

  .shop-reassurance span + span {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-image {
    aspect-ratio: 1.04;
    min-height: 0;
  }

  .product-meta {
    min-height: 0;
  }

  .product-format-picker button {
    min-height: 70px;
  }

  .artist-contact-image {
    min-height: 520px;
  }

  .artist-contact-copy h1 {
    font-size: clamp(76px, 23vw, 118px);
  }

  .experiment-copy h1 {
    font-size: clamp(30px, 8.4vw, 42px);
  }

  .experiment-copy p {
    font-size: 22px;
  }

  .experiment-dream-hero .experiment-copy p {
    font-size: 24px;
  }

  .experiment-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .experiment-hero-image,
  .experiment-process figure {
    min-height: 420px;
    height: auto;
  }

  .experiment-immersive .immersive-copy h2 {
    font-size: clamp(42px, 13vw, 76px);
  }

  .experiment-fragments figure {
    grid-template-rows: minmax(360px, 58vh) auto;
  }

  .work-modal {
    padding: 0;
    place-items: stretch;
  }

  .work-panel {
    width: 100%;
    height: calc(100svh - var(--site-header-height));
    max-height: none;
    border: 0;
  }

  .work-preview {
    min-height: min(430px, 50svh);
    max-height: none;
  }

  .work-modal-gallery {
    inset: 0;
    padding: 18px 14px;
  }

  .work-modal-gallery .work-panel {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .work-modal-gallery .work-preview {
    min-height: 0;
    max-height: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .legal-identity > div,
  .legal-table-row,
  .legal-form-grid {
    grid-template-columns: 1fr;
  }

  .legal-identity dt,
  .legal-table-row > * + * {
    border-right: 0;
    border-left: 0;
  }

  .legal-identity dt,
  .legal-table-row > *:first-child {
    border-bottom: 1px solid var(--ink);
  }

  .legal-identity dd,
  .legal-table-row > *:last-child {
    border-bottom: 0;
  }
}

@media print {
  .legal-page {
    background: #fff;
  }

  .legal-page .site-header,
  .legal-page .site-footer,
  .legal-actions,
  .legal-warning,
  .legal-notice {
    display: none;
  }

  .legal-main {
    min-height: 0;
  }

  .legal-hero {
    padding: 0 0 24px;
    border-bottom: 1px solid #000;
    background: #fff;
  }

  .legal-hero h1 {
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .legal-document {
    width: 100%;
    padding: 24px 0;
  }

  .legal-section {
    break-inside: avoid;
  }

  .withdrawal-form {
    border: 0;
    padding: 0;
  }
}
