:root {
  --bg: #11110f;
  --bg-soft: #171714;
  --surface: #1d1d19;
  --surface-2: #24231f;
  --text: #eeeae0;
  --muted: #a7a397;
  --line: rgba(238, 234, 224, 0.18);
  --line-strong: rgba(238, 234, 224, 0.36);
  --accent: #c7a878;
  --accent-soft: #8b7352;
  --paper: #ded8cc;
  --ink: #151510;
  --serif: "Instrument Serif", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "DM Sans", Arial, Helvetica, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 88px;
  --gutter: clamp(20px, 3vw, 52px);
  --section-space: clamp(100px, 13vw, 210px);
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #e7e2d8;
  --bg-soft: #dcd6cb;
  --surface: #d3cdc2;
  --surface-2: #c8c0b4;
  --text: #191914;
  --muted: #625f57;
  --line: rgba(25, 25, 20, 0.18);
  --line-strong: rgba(25, 25, 20, 0.36);
  --accent: #7f5c33;
  --accent-soft: #a0805a;
  --paper: #151510;
  --ink: #f1ede5;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--bg);
}

[id] { scroll-margin-top: var(--header-h); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

body.is-loading,
body.menu-open,
body.dialog-open { overflow: hidden; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
figure, h1, h2, h3, p, dl, dd { margin: 0; }
ul { margin: 0; padding: 0; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 5px;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #0d0d0b;
  color: #ede8de;
  transition: opacity .8s var(--ease), visibility .8s;
}

.page-loader.is-finished { opacity: 0; visibility: hidden; }

.loader-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -.06em;
}

.loader-mark i {
  width: clamp(42px, 9vw, 130px);
  height: 1px;
  background: rgba(237, 232, 222, .45);
  transform-origin: left;
  animation: loader-line 1.4s var(--ease-out) both;
}

.loader-row {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(237, 232, 222, .18);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.loader-row strong { font-weight: 400; }

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

.scroll-progress {
  position: fixed;
  z-index: 950;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-glyph svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.brand-name { font-family: var(--serif); font-size: 17px; line-height: .78; letter-spacing: -.035em; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
  justify-self: center;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: .02em;
}

.desktop-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after,
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; justify-self: end; gap: 12px; }

.theme-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .3s, border-color .3s, transform .3s var(--ease);
}

.theme-toggle:hover,
.menu-toggle:hover { border-color: var(--line-strong); background: var(--surface); transform: rotate(4deg); }

.theme-icon { position: absolute; display: grid; place-items: center; transition: opacity .3s, transform .45s var(--ease-out); }
.theme-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon-moon { opacity: 0; transform: rotate(-80deg) scale(.6); }
html[data-theme="light"] .theme-icon-sun { opacity: 0; transform: rotate(80deg) scale(.6); }
html[data-theme="light"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: .02em;
  transition: color .35s, background-color .35s, border-color .35s;
}

.header-cta:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.header-cta span { font-size: 14px; }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { position: absolute; width: 15px; height: 1px; background: currentColor; transition: transform .4s var(--ease), top .4s var(--ease); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  background: var(--bg);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-out), opacity .3s, visibility .7s;
}

.mobile-menu.is-open { visibility: visible; opacity: 1; clip-path: inset(0 0 0 0); }
.mobile-menu-inner { display: flex; flex-direction: column; height: 100%; padding: calc(var(--header-h) + 54px) var(--gutter) 34px; }
.mobile-menu-inner > p { padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.mobile-menu nav { display: grid; margin-top: 26px; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 20px; padding: 15px 0; font-family: var(--serif); font-size: clamp(46px, 12vw, 78px); line-height: 1; letter-spacing: -.05em; }
.mobile-menu nav a span { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0; }
.mobile-menu-foot { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, .96fr);
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.contact-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: calc((100vw - (2 * var(--gutter))) / 6) 100%, 100% 25%;
  background-position: var(--gutter) 0, 0 0;
  opacity: .24;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: calc(var(--header-h) + 80px) clamp(30px, 5vw, 84px) 90px var(--gutter);
}

.eyebrow {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-kicker { margin-bottom: clamp(38px, 6vh, 75px); }

.hero-title {
  max-width: 960px;
  font-family: var(--serif);
  font-size: clamp(68px, 9.1vw, 154px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.065em;
}

.hero-line { display: block; overflow: hidden; padding: 0 .05em .12em 0; }
.hero-line > span { display: block; transform: translateY(110%); animation: title-rise 1.2s .65s var(--ease-out) forwards; }
.hero-line:nth-child(2) > span { animation-delay: .78s; }
.hero-line-indent { padding-left: clamp(24px, 7vw, 115px); }
.hero-title em { color: var(--accent); font-weight: 400; }

@keyframes title-rise { to { transform: translateY(0); } }

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(200px, 430px) auto;
  align-items: end;
  gap: 30px;
  margin-top: clamp(55px, 9vh, 110px);
}

.hero-bottom > p { max-width: 430px; color: var(--muted); font-size: clamp(13px, 1.15vw, 17px); line-height: 1.7; }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  justify-self: end;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  white-space: nowrap;
}

.text-link::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 1px; background: var(--text); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  background: #23231f;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 237, 198, .12), transparent 60%);
  mix-blend-mode: screen;
}

.hero-visual img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 58%;
  transform: translateY(-5%);
  filter: saturate(.72) contrast(1.06);
  will-change: transform;
}

.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,8,.32), transparent 25%, transparent 60%, rgba(8,8,7,.7)); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 4; right: 26px; bottom: 25px; left: 26px; display: flex; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.76); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.hero-project-button {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(75px, 10vh, 130px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 112px;
  height: 112px;
  padding: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.15;
  text-align: left;
  transition: transform .45s var(--ease-out), background-color .3s;
}

.hero-project-button:hover { transform: scale(1.07) rotate(-4deg); }
.hero-project-button i { align-self: flex-end; font-style: normal; font-size: 17px; }

.hero-index { position: absolute; z-index: 3; bottom: 26px; left: var(--gutter); display: flex; align-items: center; gap: 8px; color: var(--muted); font-family: var(--mono); font-size: 9px; }
.hero-index i { display: block; width: 36px; height: 1px; background: var(--line-strong); }
.hero-scroll-note { position: absolute; z-index: 3; right: calc(50% - 45px); bottom: 30px; display: flex; align-items: center; gap: 10px; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.hero-scroll-note i { width: 36px; height: 1px; background: var(--line-strong); animation: scroll-pulse 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes scroll-pulse { 0%,100%{transform:scaleX(.25); opacity:.5;} 50%{transform:scaleX(1); opacity:1;} }

.section-label { display: flex; align-items: center; gap: 14px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.section-label span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; letter-spacing: 0; }

.manifesto { position: relative; border-bottom: 1px solid var(--line); }
.manifesto-copy { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(260px, .7fr); gap: clamp(50px, 8vw, 140px); align-items: end; margin-top: clamp(55px, 8vw, 120px); }
.statement { max-width: 1150px; font-family: var(--serif); font-size: clamp(46px, 6.7vw, 112px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.statement .word { display: inline-block; overflow: hidden; margin-right: .12em; vertical-align: top; }
.statement .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.statement.is-visible .word > span { transform: translateY(0); }
.manifesto-detail { display: flex; flex-direction: column; align-items: flex-start; gap: 42px; padding-bottom: 8px; }
.manifesto-detail > p { color: var(--muted); font-size: clamp(13px, 1vw, 16px); line-height: 1.75; }
.round-link { display: flex; flex-direction: column; justify-content: space-between; width: 112px; height: 112px; padding: 18px; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 11px; line-height: 1.2; transition: background-color .35s, color .35s, transform .45s var(--ease-out); }
.round-link i { align-self: flex-end; font-style: normal; font-size: 16px; }
.round-link:hover { background: var(--text); color: var(--bg); transform: rotate(-5deg); }

.studio-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(85px, 12vw, 180px); border-top: 1px solid var(--line); }
.studio-metrics > div { display: flex; align-items: flex-end; justify-content: space-between; min-height: 142px; padding: 24px 30px 24px 0; border-right: 1px solid var(--line); }
.studio-metrics > div:not(:first-child) { padding-left: 30px; }
.studio-metrics > div:last-child { border-right: 0; padding-right: 0; }
.studio-metrics strong { font-family: var(--serif); font-size: clamp(54px, 6vw, 92px); font-weight: 400; line-height: .8; letter-spacing: -.05em; }
.studio-metrics span { max-width: 90px; color: var(--muted); font-family: var(--mono); font-size: 9px; line-height: 1.45; letter-spacing: .1em; text-transform: uppercase; text-align: right; }

.projects { border-bottom: 1px solid var(--line); }
.projects-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.section-title { margin-top: 40px; font-family: var(--serif); font-size: clamp(58px, 7.5vw, 126px); font-weight: 400; line-height: .86; letter-spacing: -.055em; }
.section-title em { color: var(--accent); font-weight: 400; }
.filter-wrap { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; max-width: 510px; }
.filter-button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; transition: color .3s, border-color .3s, background-color .3s; }
.filter-button sup { margin-left: 3px; font-size: 7px; }
.filter-button:hover, .filter-button.is-active { border-color: var(--text); background: var(--text); color: var(--bg); }

.project-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(30px, 5vw, 82px) clamp(18px, 2.6vw, 42px); margin-top: clamp(75px, 10vw, 150px); }
.project-card { min-width: 0; transition: opacity .45s var(--ease), transform .55s var(--ease-out); }
.project-card.is-filtered { display: none; }
.project-card button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; color: inherit; text-align: left; }
.project-card figure { position: relative; overflow: hidden; background: var(--surface); }
.project-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,5,4,.55)); opacity: 0; transition: opacity .5s var(--ease); }
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform 1.1s var(--ease-out), filter .6s; }
.project-card:hover img { transform: scale(1.045); filter: saturate(1); }
.project-card:hover figure::after { opacity: 1; }
.project-reveal { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; color: #fff; opacity: 0; transform: translateY(15px); transition: opacity .45s, transform .45s var(--ease-out); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.project-reveal i { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-style: normal; font-size: 14px; }
.project-card:hover .project-reveal { opacity: 1; transform: translateY(0); }
.project-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: 13px; }
.project-meta h3 { font-family: var(--serif); font-size: clamp(24px, 2.1vw, 37px); font-weight: 400; line-height: 1; letter-spacing: -.025em; }
.project-meta p, .project-meta > span { margin-top: 8px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.project-meta > span { text-align: right; white-space: nowrap; }
.project-card-wide { grid-column: span 7; }
.project-card-wide figure { aspect-ratio: 1.55; }
.project-card-tall { grid-column: span 5; }
.project-card-tall figure { aspect-ratio: .77; }
.project-card-square { grid-column: span 5; }
.project-card-square figure { aspect-ratio: 1; }
.project-card-offset { margin-top: clamp(55px, 9vw, 140px); }
.project-card-wide:nth-of-type(5) { grid-column: 1 / span 7; }
.project-card:nth-of-type(6) { grid-column: 8 / span 5; }
.project-card:nth-of-type(7) { grid-column: 1 / span 5; }
.project-card:nth-of-type(8) { grid-column: 7 / span 6; margin-top: clamp(30px, 6vw, 90px); }

.film-section { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 100svh; overflow: hidden; padding: calc(var(--header-h) + 26px) var(--gutter) 38px; background: #0c0c0b; color: #f4efe5; }
.film-frames, .film-frame, .film-vignette { position: absolute; inset: 0; }
.film-frame { opacity: 0; transform: scale(1.06); transition: opacity 1.35s ease, transform 6s linear; }
.film-frame.is-active { opacity: 1; transform: scale(1); }
.film-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.56) saturate(.72) contrast(1.05); }
.film-frame:nth-child(1) img { object-position: center; }
.film-frame:nth-child(2) img { object-position: 50% 57%; }
.film-frame:nth-child(3) img { object-position: 50% 60%; }
.film-frame:nth-child(4) img { object-position: 50% 48%; }
.film-vignette { z-index: 1; background: radial-gradient(circle at center, transparent 28%, rgba(0,0,0,.42) 100%), linear-gradient(180deg, rgba(0,0,0,.48), transparent 26%, transparent 60%, rgba(0,0,0,.68)); pointer-events: none; }
.film-top, .film-copy, .film-controls { position: relative; z-index: 2; }
.film-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.65); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.film-copy { max-width: 880px; margin-top: auto; margin-bottom: clamp(70px, 12vh, 130px); }
.film-copy .eyebrow { color: rgba(255,255,255,.58); }
.film-copy h2 { margin-top: 24px; font-family: var(--serif); font-size: clamp(69px, 9vw, 150px); font-weight: 400; line-height: .78; letter-spacing: -.06em; }
.film-copy h2 em { color: #d1ad7b; font-weight: 400; }
.film-copy > p:last-child { max-width: 440px; margin-top: 38px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.75; }
.film-controls { display: flex; align-items: center; gap: 24px; }
.film-toggle { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 11px; transition: background .3s, color .3s; }
.film-toggle:hover { background: #fff; color: #111; }
.film-toggle .play-icon { display: none; padding-left: 2px; }
.film-toggle.is-paused .pause-icon { display: none; }
.film-toggle.is-paused .play-icon { display: inline; }
.film-timeline { display: flex; align-items: center; gap: 12px; flex: 1; color: rgba(255,255,255,.7); font-family: var(--mono); font-size: 9px; }
.film-timeline > div { position: relative; flex: 1; height: 1px; background: rgba(255,255,255,.25); overflow: hidden; }
.film-timeline i { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }

.spatial { border-bottom: 1px solid var(--line); }
.spatial-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 55px; align-items: start; }
.spatial-head .section-title { margin-top: 0; }
.spatial-head > div:last-child > p { max-width: 430px; margin-top: 36px; color: var(--muted); line-height: 1.75; }
.spatial-viewer { position: relative; height: min(72vw, 830px); min-height: 520px; margin-top: clamp(70px, 9vw, 130px); overflow: hidden; background: #c3b7aa; cursor: grab; touch-action: pan-y; user-select: none; }
.spatial-viewer.is-dragging { cursor: grabbing; }
.spatial-inner { position: absolute; top: 0; left: 0; width: 138%; height: 100%; will-change: transform; }
.spatial-inner img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; filter: saturate(.8) contrast(1.02); }
.spatial-viewer::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 25%, transparent 70%, rgba(0,0,0,.38)); }
.drag-cue { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 112px; height: 112px; border-radius: 50%; background: rgba(235,229,217,.92); color: #161612; transform: translate(-50%,-50%); pointer-events: none; transition: opacity .4s, transform .5s var(--ease-out); }
.drag-cue i { font-style: normal; font-size: 20px; }
.drag-cue span { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.spatial-viewer.has-dragged .drag-cue { opacity: 0; transform: translate(-50%,-50%) scale(.75); }
.spatial-coordinates { position: absolute; z-index: 3; right: 20px; bottom: 18px; display: flex; gap: 15px; color: rgba(255,255,255,.7); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; }
.hotspot { position: absolute; z-index: 4; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(10,10,9,.38); color: #fff; cursor: pointer; font-family: var(--mono); font-size: 8px; backdrop-filter: blur(8px); }
.hotspot::before { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; animation: hotspot-pulse 2.4s ease-out infinite; }
.hotspot i { position: absolute; top: 50%; left: calc(100% + 12px); width: max-content; max-width: 180px; padding: 8px 10px; background: rgba(16,16,14,.86); font-style: normal; font-size: 8px; letter-spacing: .07em; text-transform: uppercase; opacity: 0; transform: translateY(-50%) translateX(-8px); pointer-events: none; transition: opacity .3s, transform .3s var(--ease-out); }
.hotspot:hover i, .hotspot:focus-visible i { opacity: 1; transform: translateY(-50%) translateX(0); }
.hotspot-one { left: 48%; top: 56%; }
.hotspot-two { left: 78%; top: 31%; }
.hotspot-three { left: 21%; top: 26%; }
@keyframes hotspot-pulse { 0%{opacity:.8; transform:scale(.8)} 80%,100%{opacity:0; transform:scale(1.45)} }

.narratives { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.narratives-layout { display: grid; grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 8vw, 140px); }
.narratives-intro { position: sticky; top: calc(var(--header-h) + 45px); align-self: start; }
.narratives-intro .section-title { font-size: clamp(54px, 6.1vw, 104px); }
.narratives-intro > p { max-width: 480px; margin-top: 42px; color: var(--muted); line-height: 1.75; }
.story-panel { display: grid; grid-template-columns: minmax(220px, .78fr) minmax(300px, 1fr); gap: clamp(30px, 4vw, 70px); align-items: start; }
.story-image { position: sticky; top: calc(var(--header-h) + 45px); height: min(66vh, 720px); min-height: 510px; overflow: hidden; background: var(--surface); }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s, transform .8s var(--ease-out); }
.story-image.is-changing img { opacity: .2; transform: scale(1.03); }
.story-image figcaption { position: absolute; right: 15px; bottom: 13px; left: 15px; display: flex; justify-content: space-between; color: rgba(255,255,255,.78); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.story-list { border-top: 1px solid var(--line); }
.story-item { border-bottom: 1px solid var(--line); }
.story-item > button { display: grid; grid-template-columns: 36px 1fr auto; align-items: start; gap: 18px; width: 100%; padding: 28px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.story-item > button > span { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.story-item h3 { max-width: 420px; font-family: var(--serif); font-size: clamp(27px, 2.8vw, 46px); font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.story-item > button > i { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 13px; }
.story-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-out); }
.story-body > p { min-height: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.75; padding: 0 48px 0 54px; transition: padding-bottom .55s var(--ease-out); }
.story-item.is-active .story-body { grid-template-rows: 1fr; }
.story-item.is-active .story-body > p { padding-bottom: 34px; }

.materials { border-bottom: 1px solid var(--line); }
.materials-head { display: grid; grid-template-columns: .55fr 1.2fr .55fr; gap: 50px; align-items: end; }
.materials-head .section-title { margin: 0; font-size: clamp(58px, 7vw, 116px); }
.materials-head > p { color: var(--muted); line-height: 1.75; }
.material-lab { display: grid; grid-template-columns: minmax(280px, 1.05fr) minmax(250px, .72fr) minmax(260px, .82fr); min-height: 640px; margin-top: clamp(80px, 10vw, 145px); border: 1px solid var(--line); }
.material-stage { position: relative; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--line); background: var(--surface); }
.material-stage::before { content: ""; position: absolute; width: 1px; height: 100%; background: var(--line); left: 50%; }
.material-stage::after { content: ""; position: absolute; width: 100%; height: 1px; background: var(--line); top: 50%; }
.material-sample { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: flex-end; width: min(27vw, 340px); aspect-ratio: 1; padding: 14px; border-radius: 50%; box-shadow: 0 36px 80px rgba(0,0,0,.18); transition: background .5s, transform .6s var(--ease-out); }
.material-sample:hover { transform: rotate(4deg) scale(1.02); }
.material-sample span { color: rgba(255,255,255,.75); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.material-orbit { position: absolute; z-index: 1; width: min(38vw, 470px); aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; animation: orbit-spin 25s linear infinite; }
.material-orbit span, .material-orbit i { position: absolute; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.material-orbit span { left: -4px; }
.material-orbit i { right: -4px; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.material-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 75px); border-right: 1px solid var(--line); }
.material-info > p:first-child { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.material-info h3 { margin-top: 35px; font-family: var(--serif); font-size: clamp(44px, 4.8vw, 78px); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.material-info > p:nth-of-type(2) { margin-top: 28px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.material-info dl { display: grid; gap: 15px; margin-top: 48px; }
.material-info dl div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding-top: 12px; border-top: 1px solid var(--line); }
.material-info dt { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.material-info dd { font-size: 11px; }
.material-switcher { display: flex; flex-direction: column; }
.material-button { display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 18px; flex: 1; width: 100%; padding: 18px 24px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; text-align: left; transition: background .35s, color .35s; }
.material-button:last-child { border-bottom: 0; }
.material-button:hover, .material-button.is-active { background: var(--surface); color: var(--text); }
.material-button i { display: block; width: 68px; height: 50px; border: 1px solid var(--line); }
.material-button span { display: flex; flex-direction: column; gap: 5px; font-family: var(--serif); font-size: 21px; line-height: 1; }
.material-button b { color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 400; letter-spacing: .08em; }
.material-texture-oak { background: repeating-linear-gradient(88deg, #241e18 0 8px, #3a2c22 9px 12px, #1b1815 13px 19px); }
.material-texture-travertine { background: linear-gradient(105deg, transparent 0 18%, rgba(118,99,78,.22) 19% 20%, transparent 21% 48%, rgba(255,255,255,.3) 49% 51%, transparent 52%), #c7b7a1; }
.material-texture-bronze { background: radial-gradient(circle at 20% 20%, #9d8b71, transparent 30%), radial-gradient(circle at 75% 65%, #303a36, transparent 45%), #5f675e; }
.material-texture-lime { background: repeating-radial-gradient(ellipse at 30% 40%, rgba(255,255,255,.16) 0 2px, transparent 3px 10px), #9d9a91; }
.material-texture-silk { background: repeating-linear-gradient(92deg, #aa8f77 0 1px, #c7b09a 2px 4px, #98806b 5px 6px); }

.approach { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.approach-head { display: grid; grid-template-columns: .6fr 1.4fr; gap: 50px; align-items: start; }
.approach-head .section-title { margin-top: 0; }
.approach-list { margin-top: clamp(80px, 11vw, 170px); border-top: 1px solid var(--line); }
.approach-item { position: relative; display: grid; grid-template-columns: .3fr .75fr 1fr auto; align-items: center; gap: 40px; min-height: 165px; padding: 28px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.approach-item::before { content: ""; position: absolute; inset: 0; background: var(--text); transform: translateY(101%); transition: transform .55s var(--ease-out); }
.approach-item:hover::before { transform: translateY(0); }
.approach-item > * { position: relative; z-index: 1; transition: color .4s; }
.approach-item:hover > * { color: var(--bg); }
.approach-item > span { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.approach-item h3 { font-family: var(--serif); font-size: clamp(42px, 5vw, 80px); font-weight: 400; line-height: .85; letter-spacing: -.04em; }
.approach-item p { max-width: 440px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.approach-item i { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid var(--line-strong); border-radius: 50%; font-style: normal; }

.contact { position: relative; min-height: 100svh; padding: var(--section-space) var(--gutter) 30px; overflow: hidden; background: #191814; color: #efe9dd; }
html[data-theme="light"] .contact { background: #191814; color: #efe9dd; }
.contact .section-label { color: rgba(239,233,221,.55); }
.contact .section-label span { border-color: rgba(239,233,221,.2); }
.contact-grid { opacity: .12; --line: rgba(239,233,221,.2); }
.contact-top, .contact-main, .site-footer { position: relative; z-index: 1; }
.contact-top { display: flex; justify-content: space-between; gap: 30px; }
.contact-location { color: rgba(239,233,221,.55); font-family: var(--mono); font-size: 9px; line-height: 1.65; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.contact-main { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .75fr); gap: clamp(70px, 10vw, 170px); align-items: end; margin-top: clamp(75px, 10vw, 135px); }
.contact-copy h2 { max-width: 900px; font-family: var(--serif); font-size: clamp(67px, 8.5vw, 142px); font-weight: 400; line-height: .78; letter-spacing: -.06em; }
.contact-copy h2 em { color: #c7a878; font-weight: 400; }
.contact-copy > p { max-width: 450px; margin-top: 45px; color: rgba(239,233,221,.58); font-size: 14px; line-height: 1.75; }
.contact-email { display: flex; align-items: center; justify-content: space-between; max-width: 450px; margin-top: 55px; padding-bottom: 13px; border-bottom: 1px solid rgba(239,233,221,.35); font-size: 12px; }
.enquiry-form { position: relative; padding: clamp(28px, 4vw, 55px); border: 1px solid rgba(239,233,221,.22); background: rgba(255,255,255,.025); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.enquiry-form label { display: block; margin-bottom: 30px; }
.enquiry-form label > span { display: block; margin-bottom: 9px; color: rgba(239,233,221,.5); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 10px 0 12px; border: 0; border-bottom: 1px solid rgba(239,233,221,.25); border-radius: 0; background: transparent; color: #efe9dd; outline: none; font-size: 12px; transition: border-color .3s; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(239,233,221,.32); }
.enquiry-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(239,233,221,.55) 50%), linear-gradient(135deg, rgba(239,233,221,.55) 50%, transparent 50%); background-position: calc(100% - 8px) 53%, calc(100% - 4px) 53%; background-size: 4px 4px; background-repeat: no-repeat; }
.enquiry-form option { background: #191814; color: #efe9dd; }
.enquiry-form textarea { resize: vertical; min-height: 75px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: #efe9dd; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.form-submit-row > p { max-width: 190px; color: rgba(239,233,221,.38); font-size: 9px; line-height: 1.5; }
.submit-button { display: flex; align-items: center; justify-content: space-between; width: 148px; height: 55px; padding: 0 18px; border: 0; background: #efe9dd; color: #151510; cursor: pointer; font-size: 11px; transition: transform .35s var(--ease), background .3s; }
.submit-button:hover { transform: translateY(-3px); background: #d4b98f; }
.submit-button i { font-style: normal; font-size: 15px; }
.form-success { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 18px; background: #1d1c18; text-align: center; }
.form-success[hidden] { display: none; }
.form-success span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(239,233,221,.35); border-radius: 50%; }
.form-success p { font-family: var(--serif); font-size: 28px; }
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; margin-top: clamp(100px, 14vw, 190px); padding-top: 30px; border-top: 1px solid rgba(239,233,221,.18); }
.footer-brand .brand-glyph { border-color: rgba(239,233,221,.35); }
.footer-links { display: flex; gap: 30px; }
.footer-links a { position: relative; font-size: 10px; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; color: rgba(239,233,221,.38); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.concept-credit { position: fixed; z-index: 800; right: 18px; bottom: 18px; display: grid; grid-template-columns: auto auto auto; align-items: center; gap: 7px; padding: 10px 12px; border: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(14px); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; transition: background .3s, color .3s, transform .3s var(--ease); }
.concept-credit strong { font-weight: 500; }
.concept-credit i { font-style: normal; font-size: 11px; }
.concept-credit:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

.project-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: var(--bg); color: var(--text); opacity: 0; transform: translateY(30px); transition: opacity .45s var(--ease), transform .55s var(--ease-out), overlay .45s allow-discrete, display .45s allow-discrete; }
.project-dialog[open] { opacity: 1; transform: translateY(0); }
@starting-style { .project-dialog[open] { opacity: 0; transform: translateY(30px); } }
.project-dialog::backdrop { background: rgba(0,0,0,.7); opacity: 0; transition: opacity .45s, overlay .45s allow-discrete, display .45s allow-discrete; }
.project-dialog[open]::backdrop { opacity: 1; }
@starting-style { .project-dialog[open]::backdrop { opacity: 0; } }
.dialog-close { position: fixed; z-index: 4; top: 25px; right: 25px; display: grid; place-items: center; width: 50px; height: 50px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(12,12,10,.42); color: #fff; cursor: pointer; backdrop-filter: blur(12px); }
.dialog-close span { position: absolute; width: 18px; height: 1px; background: currentColor; }
.dialog-close span:first-child { transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }
.dialog-scroll { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); min-height: 100%; }
.dialog-visual { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #222; }
.dialog-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.dialog-visual figcaption { position: absolute; right: 24px; bottom: 20px; left: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.72); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.dialog-content { display: flex; flex-direction: column; min-height: 100svh; padding: clamp(80px, 9vw, 150px) clamp(32px, 5vw, 85px) 55px; }
.dialog-index { display: flex; align-items: center; gap: 9px; color: var(--muted); font-family: var(--mono); font-size: 8px; }
.dialog-index i { width: 36px; height: 1px; background: var(--line-strong); }
.dialog-content .eyebrow { margin-top: clamp(65px, 9vw, 130px); }
.dialog-content h2 { margin-top: 20px; font-family: var(--serif); font-size: clamp(65px, 7.5vw, 128px); font-weight: 400; line-height: .78; letter-spacing: -.06em; }
.dialog-lead { max-width: 550px; margin-top: 42px; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 37px); line-height: 1.2; letter-spacing: -.02em; }
.dialog-story { margin-top: 65px; padding-top: 25px; border-top: 1px solid var(--line); }
.dialog-story h3 { color: var(--muted); font-family: var(--mono); font-size: 9px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.dialog-story p { max-width: 600px; margin-top: 20px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.dialog-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.dialog-facts div { padding-top: 13px; border-top: 1px solid var(--line); }
.dialog-facts dt { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.dialog-facts dd { margin-top: 8px; font-size: 11px; }
.dialog-palette { display: flex; gap: 9px; margin-top: 52px; }
.dialog-palette span { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; }
.dialog-next { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 25px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; cursor: pointer; font-family: var(--serif); font-size: 31px; }
.dialog-next i { font-style: normal; font-size: 24px; }

.cursor { position: fixed; z-index: 1200; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); pointer-events: none; opacity: 0; transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), opacity .25s, background .25s; mix-blend-mode: difference; }
.cursor span { position: absolute; top: 50%; left: 50%; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), opacity .3s; }
.cursor.is-visible { opacity: 1; }
.cursor.is-hovering { width: 44px; height: 44px; background: rgba(255,255,255,.9); }
.cursor.is-hovering span { width: 62px; height: 62px; opacity: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.noscript { position: fixed; z-index: 2000; right: 10px; bottom: 10px; left: 10px; padding: 13px; background: #fff; color: #111; text-align: center; }

@media (max-width: 1100px) {
  :root { --header-h: 76px; }
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: grid; }
  .hero { grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); }
  .hero-copy { padding-right: 30px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom .text-link { justify-self: start; }
  .manifesto-copy { grid-template-columns: 1fr; }
  .manifesto-detail { display: grid; grid-template-columns: 1fr auto; align-items: end; }
  .projects-head { grid-template-columns: 1fr; }
  .filter-wrap { justify-content: flex-start; max-width: none; }
  .materials-head { grid-template-columns: 1fr 1fr; }
  .materials-head .section-label { grid-column: 1 / -1; }
  .material-lab { grid-template-columns: 1fr 1fr; }
  .material-stage { min-height: 520px; }
  .material-switcher { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
  .material-button { grid-template-columns: 1fr; justify-items: start; gap: 10px; border-right: 1px solid var(--line); border-bottom: 0; }
  .material-button:last-child { border-right: 0; }
  .material-button i { width: 100%; height: 46px; }
  .material-button span { font-size: 16px; }
  .contact-main { grid-template-columns: 1fr; align-items: start; }
  .enquiry-form { max-width: 760px; }
  .dialog-scroll { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; --section-space: 105px; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { min-height: 80svh; padding: calc(var(--header-h) + 55px) var(--gutter) 65px; }
  .hero-title { font-size: clamp(72px, 20vw, 120px); }
  .hero-line-indent { padding-left: 9vw; }
  .hero-kicker { margin-bottom: 50px; }
  .hero-bottom { margin-top: 55px; }
  .hero-bottom > p { max-width: 520px; }
  .hero-visual { min-height: 80svh; }
  .hero-visual img { height: 105%; }
  .hero-index, .hero-scroll-note { display: none; }
  .hero-project-button { width: 96px; height: 96px; }
  .manifesto-copy { margin-top: 55px; gap: 45px; }
  .statement { font-size: clamp(48px, 12.8vw, 82px); }
  .manifesto-detail { grid-template-columns: 1fr; }
  .studio-metrics { grid-template-columns: 1fr; }
  .studio-metrics > div, .studio-metrics > div:not(:first-child) { min-height: 110px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-metrics > div:last-child { border-bottom: 0; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 15px; row-gap: 55px; }
  .project-card-wide, .project-card-tall, .project-card-square, .project-card-wide:nth-of-type(5), .project-card:nth-of-type(6), .project-card:nth-of-type(7), .project-card:nth-of-type(8) { grid-column: span 1; margin-top: 0; }
  .project-card:nth-of-type(1), .project-card:nth-of-type(5) { grid-column: 1 / -1; }
  .project-card:nth-of-type(1) figure, .project-card:nth-of-type(5) figure { aspect-ratio: 1.4; }
  .project-card-tall figure { aspect-ratio: .78; }
  .project-card-square figure { aspect-ratio: .9; }
  .project-meta { display: block; }
  .project-meta > span { display: block; text-align: left; }
  .film-copy h2 { font-size: clamp(68px, 18vw, 120px); }
  .spatial-head { grid-template-columns: 1fr; }
  .spatial-viewer { height: 68svh; min-height: 480px; }
  .spatial-inner { width: 175%; }
  .narratives-layout { grid-template-columns: 1fr; }
  .narratives-intro { position: static; }
  .story-panel { grid-template-columns: 1fr; }
  .story-image { position: relative; top: auto; height: 60svh; min-height: 430px; }
  .materials-head { grid-template-columns: 1fr; }
  .materials-head .section-label { grid-column: auto; }
  .material-lab { grid-template-columns: 1fr; }
  .material-stage { min-height: 470px; border-right: 0; border-bottom: 1px solid var(--line); }
  .material-info { border-right: 0; border-bottom: 1px solid var(--line); }
  .material-switcher { grid-template-columns: 1fr; }
  .material-button { grid-template-columns: 62px 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .material-button i { width: 62px; height: 46px; }
  .approach-head { grid-template-columns: 1fr; }
  .approach-item { grid-template-columns: 40px 1fr auto; gap: 20px; }
  .approach-item p { grid-column: 2 / -1; padding-bottom: 15px; }
  .contact-main { gap: 70px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: end; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; }
  .dialog-scroll { display: block; }
  .dialog-visual { position: relative; height: 68svh; }
  .dialog-content { min-height: auto; }
  .dialog-close { top: 17px; right: 17px; }
  .cursor { display: none; }
}

@media (max-width: 540px) {
  :root { --header-h: 70px; }
  .site-header { padding: 0 16px; }
  .brand-glyph { width: 31px; height: 31px; }
  .brand-name { font-size: 15px; }
  .theme-toggle, .menu-toggle { width: 38px; height: 38px; }
  .mobile-menu-foot { flex-direction: column; }
  .hero-copy { min-height: 77svh; padding-top: calc(var(--header-h) + 45px); }
  .hero-title { font-size: clamp(68px, 21vw, 93px); }
  .hero-bottom { gap: 30px; }
  .hero-visual { min-height: 72svh; }
  .hero-visual figcaption { right: 15px; bottom: 15px; left: 15px; }
  .hero-project-button { right: 20px; bottom: 62px; width: 88px; height: 88px; padding: 15px; font-size: 9px; }
  .section-title { font-size: clamp(52px, 15vw, 76px); }
  .filter-wrap { display: grid; grid-template-columns: repeat(2, max-content); }
  .project-grid { display: block; }
  .project-card { margin-bottom: 58px; }
  .project-card figure, .project-card:nth-of-type(1) figure, .project-card:nth-of-type(5) figure { aspect-ratio: .87; }
  .project-card:nth-of-type(1) figure, .project-card:nth-of-type(8) figure { aspect-ratio: 1.15; }
  .project-meta h3 { font-size: 29px; }
  .film-section { min-height: 92svh; padding: calc(var(--header-h) + 20px) var(--gutter) 25px; }
  .film-top span:last-child { display: none; }
  .film-copy { margin-bottom: 65px; }
  .film-copy h2 { font-size: clamp(63px, 19vw, 92px); }
  .film-copy > p:last-child { margin-top: 28px; font-size: 12px; }
  .spatial-viewer { min-height: 450px; }
  .drag-cue { width: 92px; height: 92px; }
  .hotspot { width: 34px; height: 34px; }
  .story-panel { gap: 35px; }
  .story-image { height: 54svh; }
  .story-item > button { grid-template-columns: 28px 1fr auto; gap: 12px; }
  .story-body > p { padding-right: 0; padding-left: 40px; }
  .material-stage { min-height: 390px; }
  .material-sample { width: 240px; }
  .material-orbit { width: 320px; }
  .material-info { padding: 35px 24px; }
  .approach-item { min-height: 150px; }
  .approach-item h3 { font-size: 50px; }
  .contact { padding-bottom: 22px; }
  .contact-top { align-items: flex-start; }
  .contact-location { max-width: 130px; }
  .contact-copy h2 { font-size: clamp(65px, 19vw, 92px); }
  .enquiry-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit-row { align-items: flex-end; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; flex-wrap: wrap; }
  .footer-meta { grid-column: auto; }
  .concept-credit { right: 10px; bottom: 10px; }
  .dialog-content { padding: 75px 20px 35px; }
  .dialog-content h2 { font-size: 70px; }
  .dialog-facts { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .project-reveal { opacity: 1; transform: none; }
  .project-card figure::after { opacity: .48; }
  .project-card img { filter: saturate(.9); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .statement .word > span { transform: none; }
  .cursor { display: none; }
}
.hotspot.is-open i { opacity: 1; transform: translateY(-50%) translateX(0); }
.project-grid.is-filtered-view .project-card {
  grid-column: span 6 !important;
  margin-top: 0 !important;
}
.project-grid.is-filtered-view .project-card figure { aspect-ratio: 1 / .92; }
@media (max-width: 820px) {
  .project-grid.is-filtered-view .project-card { grid-column: span 1 !important; }
}
@media (max-width: 540px) {
  .project-grid.is-filtered-view .project-card figure { aspect-ratio: .9; }
}
