:root {
  --project-bg: #0b0b0a;
  --project-surface: #151513;
  --project-surface-2: #20201d;
  --project-ink: #f0eee7;
  --project-muted: #aaa79d;
  --project-line: rgba(240, 238, 231, 0.18);
  --project-accent: #a77b56;
  --project-accent-soft: #d0ad89;
  --project-accent-rgb: 167, 123, 86;
  --project-serif: "Cormorant Garamond", Georgia, serif;
  --project-sans: "Aeonik", "Inter", Arial, sans-serif;
  --page-gutter: clamp(22px, 4vw, 72px);
  --content-max: 1280px;
  --reading-max: 1040px;
  --header-height: 78px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body.project-story-page {
  margin: 0;
  color: var(--project-ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(var(--project-accent-rgb), 0.12), transparent 32vw),
    var(--project-bg);
  font-family: var(--project-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.project-story-page::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
video {
  display: block;
  width: 100%;
}

::selection {
  color: var(--project-bg);
  background: var(--project-accent-soft);
}

.project-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: var(--page-gutter);
  color: var(--project-ink);
  background: var(--project-bg);
  transition: visibility 0s linear 1.05s;
}

.project-loader::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--project-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line 1.1s var(--ease-out) forwards;
}

.project-loader__brand {
  max-width: 640px;
  font-family: var(--project-serif);
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.project-loader__brand span {
  display: block;
  color: var(--project-accent-soft);
  font-family: var(--project-sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.project-loader__number {
  color: var(--project-accent-soft);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.is-ready .project-loader {
  visibility: hidden;
}

.is-ready .project-loader__brand,
.is-ready .project-loader__number {
  opacity: 0;
  transform: translateY(-70px);
  transition: opacity 0.55s ease, transform 0.9s var(--ease-out);
}

.is-ready .project-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--project-accent);
  transform: translateY(-101%);
  transition: transform 1s var(--ease-out) 0.05s;
}

@keyframes loader-line {
  to { transform: scaleX(1); }
}

.page-transition-curtain {
  position: fixed;
  inset: 0;
  z-index: 1900;
  pointer-events: none;
  background: var(--project-accent);
  transform: translateY(101%);
  transition: transform 0.85s var(--ease-out);
}

.is-leaving .page-transition-curtain {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--project-accent-soft);
  transform: scaleX(0);
  transform-origin: left;
}

.project-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1050;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  color: #fff;
}

.project-brand {
  justify-self: start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.project-header__index {
  justify-self: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-header__nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-header__nav a,
.project-header__nav button {
  position: relative;
}

.project-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

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

.project-lang {
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  font-size: 10px;
  transition: color 0.3s ease, background 0.3s ease;
}

.project-lang:hover {
  color: var(--project-bg);
  background: #fff;
}

.chapter-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 900;
  display: none;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.chapter-rail a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--project-muted);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-rail a span {
  width: 13px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease, color 0.3s ease;
}

.chapter-rail a strong {
  opacity: 0;
  font-weight: 500;
  transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chapter-rail a:hover strong,
.chapter-rail a.is-active strong {
  opacity: 1;
  transform: translateX(0);
}

.chapter-rail a.is-active {
  color: var(--project-accent-soft);
}

.chapter-rail a.is-active span {
  width: 28px;
}

.project-hero {
  position: relative;
  min-height: clamp(560px, 76svh, 780px);
  overflow: hidden;
  color: #fff;
  background: #080808;
}

.project-hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0);
}

.project-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, transparent 35%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.83) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 55%);
}

.project-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.88) contrast(1.03);
}

.project-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(to bottom, transparent, #000 32%, #000 70%, transparent);
}

.project-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: clamp(560px, 76svh, 780px);
  padding-block: calc(var(--header-height) + 30px) 4vh;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
}

.project-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-hero__eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--project-accent-soft);
}

.project-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--project-serif);
  font-size: clamp(64px, 10vw, 154px);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.project-hero h1 em {
  color: var(--project-accent-soft);
  font-weight: 500;
}

.project-hero__footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px;
  align-items: end;
  margin-top: 5vh;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.project-hero__meta {
  display: flex;
  gap: 48px;
}

.project-hero__meta span,
.project-hero__location span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-hero__meta strong,
.project-hero__location strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-scroll-cue {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 18px;
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: translateY(7px); }
}

.project-section-wrap {
  position: relative;
  padding-block: clamp(78px, 9vw, 142px);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--project-accent-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-label::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.project-intro {
  display: grid;
  grid-template-columns: 86px minmax(0, 1.2fr) minmax(240px, 0.62fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}

.project-intro__number {
  color: var(--project-accent);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.project-intro__statement {
  margin: 0;
  font-family: var(--project-serif);
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.project-intro__statement em {
  color: var(--project-accent-soft);
  font-weight: inherit;
}

.project-intro__copy {
  margin: 8px 0 0;
  color: var(--project-muted);
  font-size: clamp(14px, 1vw, 16px);
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(54px, 7vw, 92px);
  border-top: 1px solid var(--project-line);
  border-bottom: 1px solid var(--project-line);
}

.project-fact {
  min-height: 112px;
  padding: 21px 20px;
  border-right: 1px solid var(--project-line);
}

.project-fact:last-child {
  border-right: 0;
}

.project-fact span {
  display: block;
  margin-bottom: 18px;
  color: var(--project-muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-fact strong {
  display: block;
  max-width: 220px;
  font-family: var(--project-serif);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 500;
  line-height: 1;
}

.story-chapter {
  --content-max: 1580px;
  background: var(--project-surface);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(52px, 6vw, 88px);
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 10vh;
}

.story-copy h2,
.technical-heading h2,
.gallery-heading h2,
.process-heading h2 {
  margin: 30px 0 24px;
  font-family: var(--project-serif);
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.story-copy h2 em,
.technical-heading h2 em,
.gallery-heading h2 em,
.process-heading h2 em {
  color: var(--project-accent-soft);
  font-weight: inherit;
}

.story-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--project-muted);
  font-size: clamp(15px, 1.2vw, 18px);
}

.story-copy__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--project-line);
}

.story-copy__note span {
  color: var(--project-accent-soft);
  font-size: 10px;
}

.story-copy__note strong {
  max-width: 250px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-media {
  display: grid;
  gap: clamp(40px, 6vw, 76px);
}

.story-figure {
  position: relative;
  margin: 0;
}

.story-figure:nth-child(even) {
  width: 84%;
  margin-left: auto;
}

.story-figure__image {
  position: relative;
  overflow: hidden;
  background: var(--project-surface-2);
}

.story-figure__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(var(--project-accent-rgb), 0.1), transparent 45%);
  pointer-events: none;
}

.story-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.story-figure:hover img {
  transform: scale(1.025);
}

.story-figure figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 14px;
  color: var(--project-muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-figure figcaption span:first-child {
  color: var(--project-accent-soft);
}

.project-marquee {
  overflow: hidden;
  padding: 13px 0;
  color: rgba(240, 238, 231, .62);
  background: #090a0a;
  border-top: 1px solid var(--project-line);
  border-bottom: 1px solid var(--project-line);
}

.project-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.project-marquee span {
  padding-right: 36px;
  font-family: var(--project-sans);
  font-size: clamp(10px, .85vw, 13px);
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-marquee span::after {
  padding-left: 36px;
  color: var(--project-accent-soft);
  content: "•";
  font-family: var(--project-sans);
  font-size: .8em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.cinematic-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  width: min(calc(100% - (var(--page-gutter) * 2)), 1120px);
  min-height: 440px;
  margin: clamp(56px, 7vw, 96px) auto;
  background: #050505;
}

.cinematic-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.cinematic-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(5, 5, 5, 0.7));
  pointer-events: none;
}

.cinematic-media video {
  height: 100%;
  object-fit: cover;
}

.cinematic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 52px);
}

.cinematic-copy blockquote {
  margin: 24px 0 20px;
  font-family: var(--project-serif);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.cinematic-copy p {
  max-width: 410px;
  margin: 0;
  color: var(--project-muted);
}

.panorama-chapter {
  padding: clamp(88px, 10vw, 150px) 0;
  color: var(--project-ink);
  background:
    radial-gradient(circle at 75% 0%, rgba(var(--project-accent-rgb), 0.16), transparent 32vw),
    #060606;
}

.panorama-chapter__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
  padding-top: 0;
  padding-bottom: clamp(38px, 5vw, 68px);
}

.panorama-chapter__heading h2 {
  max-width: 800px;
  margin: 28px 0 0;
  font-family: var(--project-serif);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.panorama-chapter__heading h2 em {
  color: var(--project-accent-soft);
  font-weight: 500;
}

.panorama-chapter__heading p {
  max-width: 480px;
  justify-self: end;
  margin: 0;
  color: var(--project-muted);
  line-height: 1.75;
}

.project-panorama {
  position: relative;
  width: min(calc(100% - (var(--page-gutter) * 2)), 1580px);
  height: clamp(520px, 68vh, 840px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--project-surface);
  border: 1px solid rgba(240, 238, 231, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.project-panorama::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.09), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.09));
}

.project-panorama__stage,
.project-panorama__stage .pnlm-render-container,
.project-panorama__stage .pnlm-ui {
  width: 100%;
  height: 100%;
}

.project-panorama__stage {
  position: absolute;
  inset: 0;
  cursor: grab;
  background-position: 50% 50%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  outline: 0;
}

.project-panorama__stage:active {
  cursor: grabbing;
}

.project-panorama__stage:focus-visible {
  box-shadow: inset 0 0 0 2px var(--project-accent-soft);
}

.project-panorama__stage .pnlm-load-box,
.project-panorama__stage .pnlm-about-msg {
  display: none !important;
}

.project-panorama__stage .pnlm-render-container {
  image-rendering: auto;
  filter: saturate(0.98) contrast(1.025);
}

.project-panorama__hint {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 7, 7, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-panorama__hint span {
  color: var(--project-accent-soft);
  font-size: 18px;
}

.project-panorama__hint strong {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.project-panorama.has-interacted .project-panorama__hint {
  opacity: 0;
  transform: translateY(8px);
}

.project-panorama__controls {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  display: flex;
  overflow: hidden;
  background: rgba(7, 7, 7, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.project-panorama__controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.project-panorama__controls button:last-child {
  border-right: 0;
}

.project-panorama__controls .project-panorama__exit {
  display: none;
  width: auto;
  padding: 0 16px;
  gap: 8px;
  font-family: var(--project-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}

.project-panorama:fullscreen,
.project-panorama.is-fullscreen {
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
}

.project-panorama:fullscreen .project-panorama__controls .project-panorama__exit,
.project-panorama.is-fullscreen .project-panorama__controls .project-panorama__exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-panorama__controls button:hover,
.project-panorama__controls button:focus-visible {
  color: #fff;
  background: rgba(var(--project-accent-rgb), 0.52);
  outline: 0;
}

.compare-section {
  background: var(--project-ink);
  color: var(--project-bg);
}

.compare-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.compare-heading h2 {
  max-width: 720px;
  margin: 28px 0 0;
  font-family: var(--project-serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.compare-heading p {
  max-width: 420px;
  justify-self: end;
  margin: 0;
  color: rgba(11, 11, 10, 0.62);
}

.compare-stage {
  --split: 50%;
  position: relative;
  max-width: 1180px;
  min-height: min(58vw, 660px);
  margin-inline: auto;
  overflow: hidden;
  background: #111;
  cursor: ew-resize;
}

.compare-stage__layer {
  position: absolute;
  inset: 0;
}

.compare-stage__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-stage__layer--after {
  clip-path: inset(0 0 0 var(--split));
}

.compare-stage__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 1px;
  background: #fff;
  pointer-events: none;
}

.compare-stage__handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #111;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  letter-spacing: 6px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.compare-stage input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-stage__label {
  position: absolute;
  bottom: 24px;
  z-index: 4;
  padding: 9px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.compare-stage__label--left { left: 24px; }
.compare-stage__label--right { right: 24px; }

.technical-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--project-bg);
  background-size: 48px 48px;
}

.technical-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.technical-heading h2 {
  max-width: 690px;
}

.technical-heading p {
  max-width: 430px;
  justify-self: end;
  margin: 0 0 12px;
  color: var(--project-muted);
}

.technical-lab {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: 1180px;
  min-height: 550px;
  margin-inline: auto;
  border: 1px solid var(--project-line);
  background: rgba(10, 10, 9, 0.7);
  backdrop-filter: blur(16px);
}

.technical-canvas {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 550px;
  overflow: hidden;
  border-right: 1px solid var(--project-line);
  background:
    radial-gradient(circle at center, rgba(var(--project-accent-rgb), 0.09), transparent 53%);
}

.technical-canvas::before,
.technical-canvas::after {
  position: absolute;
  content: "";
  background: var(--project-line);
}

.technical-canvas::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.technical-canvas::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.technical-canvas svg {
  position: relative;
  z-index: 2;
  width: min(76%, 620px);
  overflow: visible;
}

.plan-shell {
  fill: rgba(var(--project-accent-rgb), 0.03);
  stroke: var(--project-accent-soft);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.plan-line {
  fill: none;
  stroke: rgba(240, 238, 231, 0.45);
  stroke-width: 0.8;
  stroke-dasharray: 4 4;
  vector-effect: non-scaling-stroke;
}

.plan-zone {
  fill: rgba(var(--project-accent-rgb), 0.12);
  stroke: var(--project-accent-soft);
  stroke-width: 0.8;
  opacity: 0.45;
  cursor: pointer;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.48s ease, fill 0.48s ease, stroke-width 0.48s ease, filter 0.48s ease;
}

.technical-canvas.has-zone-selection .plan-zone:not(.is-active) {
  fill: rgba(var(--project-accent-rgb), 0.025);
  opacity: 0.13;
}

.plan-zone:hover {
  fill: rgba(var(--project-accent-rgb), 0.3);
  opacity: 0.82;
}

.plan-zone.is-active {
  fill: rgba(var(--project-accent-rgb), 0.68);
  stroke-width: 1.7;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(var(--project-accent-rgb), 0.66));
}

.plan-node {
  fill: var(--project-bg);
  stroke: var(--project-accent-soft);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.technical-canvas__tag {
  position: absolute;
  color: var(--project-muted);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.technical-canvas__tag--top { top: 24px; left: 24px; }
.technical-canvas__tag--bottom { right: 24px; bottom: 24px; }

.technical-panel {
  display: flex;
  flex-direction: column;
}

.technical-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--project-line);
}

.technical-zone {
  display: grid;
  gap: 12px;
  min-height: 82px;
  padding: 15px;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--project-line);
  cursor: pointer;
  transition: color .35s ease, background .42s cubic-bezier(.16, 1, .3, 1);
}

.technical-zone:last-child { border-right: 0; }

.technical-zone span {
  color: var(--project-accent-soft);
  font-size: 9px;
}

.technical-zone strong {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technical-zone.is-active {
  color: var(--project-bg);
  background: var(--project-accent-soft);
}

.technical-zone.is-active span {
  color: var(--project-bg);
}

.technical-panel__content {
  flex: 1;
  padding: clamp(28px, 4vw, 52px);
}

.technical-panel__content.is-updating {
  animation: technical-copy-in .48s cubic-bezier(.16, 1, .3, 1);
}

@keyframes technical-copy-in {
  from { opacity: .18; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.technical-panel__content > span {
  color: var(--project-accent-soft);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.technical-panel__content h3 {
  margin: 24px 0 18px;
  font-family: var(--project-serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.technical-panel__content p {
  margin: 0;
  color: var(--project-muted);
}

.technical-specs {
  margin-top: auto;
  border-top: 1px solid var(--project-line);
}

.technical-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--project-line);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technical-spec span { color: var(--project-muted); }
.technical-spec strong { font-weight: 500; }

.materials-section {
  padding-top: 0;
}

.materials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--project-line);
}

.materials-header h2 {
  margin: 26px 0 0;
  font-family: var(--project-serif);
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.materials-header p {
  max-width: 420px;
  justify-self: end;
  margin: 0;
  color: var(--project-muted);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.material-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 20px 22px;
  overflow: hidden;
  border-right: 1px solid var(--project-line);
}

.material-card:last-child { border-right: 0; }
.material-card:nth-child(2n) { border-right: 0; }
.material-card:nth-child(-n+2) { border-bottom: 1px solid var(--project-line); }

.material-card__tone {
  position: absolute;
  inset: 0;
  background: var(--material-color);
  transform: translateY(72%);
  transition: transform 0.8s var(--ease-out);
}

.material-card:hover .material-card__tone {
  transform: translateY(0);
}

.material-card__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 170px;
  color: #fff;
}

.material-card__content span {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.material-card__content strong {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: var(--project-sans);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: none;
}

.gallery-section {
  background: var(--project-surface);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 70px);
}

.gallery-heading p {
  max-width: 380px;
  margin: 0 0 12px;
  color: var(--project-muted);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 28px);
  max-width: 1180px;
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  grid-column: span 7;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item:nth-child(2) { margin-top: 10%; }
.gallery-item:nth-child(4) { margin-top: -6%; }

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.5s ease;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img {
  aspect-ratio: 4 / 5;
}

.gallery-item:hover img {
  filter: brightness(0.75);
  transform: scale(1.035);
}

.gallery-item__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  font-size: 9px;
}

.story-archive {
  min-width: 0;
}

.story-archive__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--project-muted);
  border-bottom: 1px solid var(--project-line);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-archive__header span:first-child {
  color: var(--project-accent-soft);
}

.story-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(14px, 1.25vw, 22px);
}

.story-archive .gallery-item {
  grid-column: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  display: grid;
  border: 1px solid var(--project-line);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.story-archive .gallery-item:nth-child(2),
.story-archive .gallery-item:nth-child(3),
.story-archive .gallery-item:nth-child(4) {
  grid-column: auto;
}

.story-archive .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.025);
}

.story-archive .gallery-item.is-portrait img,
.story-archive .gallery-item.is-wide img {
  object-fit: cover;
}

.story-archive .gallery-item:hover {
  border-color: rgba(var(--project-accent-rgb), 0.62);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
}

.story-archive .gallery-item__index {
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
}

.process-section {
  background: var(--project-bg);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.process-heading p {
  max-width: 420px;
  justify-self: end;
  margin: 0 0 12px;
  color: var(--project-muted);
}

.process-list {
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 0.7fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 104px;
  border-top: 1px solid var(--project-line);
  counter-increment: process;
  transition: padding 0.5s var(--ease-out), color 0.3s ease;
}

.process-item:last-child { border-bottom: 1px solid var(--project-line); }

.process-item::before {
  content: "0" counter(process);
  color: var(--project-accent-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.process-item:hover {
  padding: 0 22px;
  color: var(--project-accent-soft);
}

.process-item h3 {
  margin: 0;
  font-family: var(--project-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.process-item p {
  max-width: 520px;
  justify-self: end;
  margin: 0;
  color: var(--project-muted);
  font-size: 13px;
}

.next-project {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62vh;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.next-project__media {
  position: absolute;
  inset: -5%;
}

.next-project__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.62);
  transition: background 0.8s ease;
}

.next-project__media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: transform 1.4s var(--ease-out), filter 0.7s ease;
}

.next-project:hover .next-project__media img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.next-project:hover .next-project__media::after {
  background: rgba(0, 0, 0, 0.42);
}

.next-project__content {
  position: relative;
  z-index: 2;
  padding: var(--page-gutter);
}

.next-project__content span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.next-project__content h2 {
  margin: 24px 0 28px;
  font-family: var(--project-serif);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.next-project__arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 24px;
  transition: color 0.4s ease, background 0.4s ease, transform 0.5s var(--ease-out);
}

.next-project:hover .next-project__arrow {
  color: #111;
  background: #fff;
  transform: rotate(45deg);
}

.studio-footer {
  position: relative;
  overflow: hidden;
  color: #eee9df;
  background: #080909;
  border-top: 1px solid rgba(238, 233, 223, 0.12);
}

.studio-footer::before {
  position: absolute;
  top: clamp(150px, 20vw, 270px);
  left: 50%;
  content: "BLUESTUDIO";
  color: rgba(238, 233, 223, 0.032);
  font-size: clamp(104px, 18vw, 300px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.studio-footer__inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 138px) 30px;
}

.studio-footer__top {
  max-width: 930px;
  margin-bottom: clamp(42px, 5vw, 64px);
}

.studio-footer__eyebrow {
  margin: 0 0 20px;
  color: var(--project-accent-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.studio-footer__top h2 {
  margin: 0;
  font-family: var(--project-serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.studio-footer__actions {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(238, 233, 223, 0.18);
}

.studio-footer__action {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(146px, 12vw, 178px);
  padding: clamp(22px, 2.4vw, 30px);
  background: #0d0e0e;
  transition: color 0.45s ease, background 0.45s ease;
}

.studio-footer__action::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--project-accent-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.58s var(--ease-out);
}

.studio-footer__action:hover::after,
.studio-footer__action:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.studio-footer__action--primary {
  background: #151412;
}

.studio-footer__action:hover,
.studio-footer__action:focus-visible {
  background: rgba(var(--project-accent-rgb), 0.13);
}

.studio-footer__action span {
  color: var(--project-accent-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.studio-footer__action strong {
  max-width: 330px;
  font-family: var(--project-serif);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.studio-footer__action b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.4s var(--ease-out);
}

.studio-footer__action:hover b,
.studio-footer__action:focus-visible b {
  transform: translate(4px, -4px);
}

.studio-footer__directory {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) 0.75fr 0.95fr minmax(250px, 1.25fr);
  gap: clamp(30px, 4vw, 66px);
  margin-top: clamp(62px, 7vw, 88px);
  padding-top: 34px;
  border-top: 1px solid rgba(238, 233, 223, 0.16);
}

.studio-footer__brand {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.studio-footer__identity p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(238, 233, 223, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.studio-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.studio-footer__column > span {
  margin-bottom: 9px;
  color: var(--project-accent-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-footer__column p,
.studio-footer__column a {
  margin: 0;
  color: rgba(238, 233, 223, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.studio-footer__link {
  position: relative;
  display: inline-block;
}

.studio-footer__link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.studio-footer__link:hover::after,
.studio-footer__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.studio-footer__contact a {
  overflow-wrap: anywhere;
}

.studio-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 20px;
  color: rgba(238, 233, 223, 0.4);
  border-top: 1px solid rgba(238, 233, 223, 0.12);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-footer__legal p {
  margin: 0;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 5, 5, 0.96);
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.project-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.project-lightbox__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-lightbox__close,
.project-lightbox__arrow {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.project-lightbox__close {
  font-size: 28px;
}

.project-lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 18px;
  align-items: center;
  min-height: 0;
}

.project-lightbox__stage img {
  max-width: min(1200px, 78vw);
  max-height: 77vh;
  width: auto;
  height: auto;
  justify-self: center;
  object-fit: contain;
}

.project-lightbox__arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 20px;
}

.project-lightbox__caption {
  padding-top: 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--project-bg);
  background: var(--project-accent-soft);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  transition: opacity 0.2s ease, transform 0.45s var(--ease-out);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 1s var(--ease-out);
}

[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1050px) {
  .chapter-rail { display: none; }
  .project-intro { grid-template-columns: 82px 1fr; }
  .project-intro__copy { grid-column: 2; max-width: 560px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { position: static; }
  .story-copy p { max-width: 620px; }
  .story-archive { margin-top: 12px; }
  .story-media { grid-template-columns: 1fr 1fr; align-items: start; }
  .story-figure:nth-child(even) { width: 100%; margin-top: 10%; }
  .cinematic-chapter { grid-template-columns: 1fr; }
  .cinematic-media { min-height: 380px; }
  .cinematic-media::after { background: linear-gradient(180deg, transparent 62%, #050505); }
  .panorama-chapter__heading { grid-template-columns: 1fr; }
  .panorama-chapter__heading p { justify-self: start; }
  .project-panorama { height: clamp(480px, 62vh, 680px); }
  .technical-lab { grid-template-columns: 1fr; }
  .technical-canvas { border-right: 0; border-bottom: 1px solid var(--project-line); }
  .materials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-card:nth-child(2) { border-right: 0; }
  .material-card { border-bottom: 1px solid var(--project-line); }
  .studio-footer__actions { grid-template-columns: 1fr 1fr; }
  .studio-footer__action--primary { grid-column: 1 / -1; }
  .studio-footer__directory { grid-template-columns: 1fr 1fr; }
  .studio-footer__identity { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .project-header { grid-template-columns: 1fr auto; }
  .project-header__index { display: none; }
  .project-header__nav { gap: 12px; }
  .project-header__nav a:not(:first-child) { display: none; }
  .project-hero__grid { background-size: 25vw 25vw; }
  .project-hero h1 { font-size: clamp(54px, 17vw, 88px); line-height: 0.8; }
  .project-hero__footer { grid-template-columns: 1fr auto; }
  .project-hero__location { display: none; }
  .project-hero__meta { gap: 28px; }
  .project-intro { grid-template-columns: 1fr; }
  .project-intro__copy { grid-column: auto; }
  .project-intro__number { font-size: 52px; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .project-fact:nth-child(2) { border-right: 0; }
  .project-fact:nth-child(-n+2) { border-bottom: 1px solid var(--project-line); }
  .story-media { grid-template-columns: 1fr; }
  .story-figure:nth-child(even) { margin-top: 0; }
  .story-archive__header { align-items: flex-start; flex-direction: column; gap: 5px; }
  .story-archive__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .story-archive .gallery-item,
  .story-archive .gallery-item:nth-child(2),
  .story-archive .gallery-item:nth-child(3),
  .story-archive .gallery-item:nth-child(4) { grid-column: 1; height: auto; }
  .story-archive .gallery-item,
  .story-archive .gallery-item img { height: auto; aspect-ratio: 4 / 3; }
  .panorama-chapter { padding: 76px 0; }
  .panorama-chapter__heading h2 { font-size: clamp(46px, 14vw, 70px); }
  .project-panorama {
    width: calc(100% - 38px);
    height: max(390px, 54svh);
    border-radius: 6px;
  }
  .project-panorama__controls { top: 14px; right: 14px; }
  .project-panorama__controls button { width: 38px; height: 38px; }
  .project-panorama__hint { right: 14px; bottom: 14px; }
  .compare-heading,
  .technical-heading,
  .materials-header,
  .gallery-heading,
  .process-heading { grid-template-columns: 1fr; }
  .compare-heading p,
  .technical-heading p,
  .materials-header p,
  .process-heading p { justify-self: start; }
  .compare-stage { min-height: 52vh; }
  .compare-stage__handle { width: 48px; height: 48px; }
  .technical-canvas { min-height: 390px; }
  .technical-lab { min-height: 0; }
  .technical-zones { grid-template-columns: 1fr; }
  .technical-zone { min-height: 72px; border-right: 0; border-bottom: 1px solid var(--project-line); }
  .materials-grid { grid-template-columns: 1fr; }
  .material-card { min-height: 190px; border-right: 0; }
  .material-card:nth-child(3) { border-bottom: 1px solid var(--project-line); }
  .material-card__content { min-height: 150px; }
  .material-card__tone { transform: translateY(62%); }
  .project-gallery { display: block; }
  .gallery-item { display: block; width: 100%; margin: 0 0 18px !important; }
  .process-item { grid-template-columns: 42px 1fr; gap: 16px; padding: 24px 0; }
  .process-item p { grid-column: 2; justify-self: start; }
  .project-footer { grid-template-columns: 1fr; }
  .project-footer__meta { justify-items: start; }
  .studio-footer::before { top: 150px; font-size: 34vw; }
  .studio-footer__inner { width: calc(100% - 38px); padding-top: 78px; }
  .studio-footer__top h2 { font-size: clamp(44px, 14vw, 64px); }
  .studio-footer__actions { grid-template-columns: 1fr; }
  .studio-footer__action--primary { grid-column: auto; }
  .studio-footer__action { min-height: 142px; }
  .studio-footer__directory { grid-template-columns: 1fr; gap: 34px; }
  .studio-footer__identity { grid-column: auto; }
  .studio-footer__legal { align-items: flex-start; flex-direction: column; gap: 10px; }
  .project-lightbox__stage { grid-template-columns: 44px 1fr 44px; gap: 5px; }
  .project-lightbox__stage img { max-width: calc(100vw - 120px); }
  .project-lightbox__arrow { width: 40px; height: 40px; }
  .project-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .project-loader { display: none; }
}
  .project-hero,
  .project-hero__content { min-height: clamp(520px, 72svh, 640px); }

/* Keep project opening images on whole CSS pixels. The source files are already
   large enough; continuous translate3d parallax made fine details look softer. */
.project-hero__media {
  transform: none !important;
  will-change: auto;
}
