:root {
  --ink: #07090b;
  --graphite: #111518;
  --graphite-light: #181d20;
  --ivory: #e7e2d8;
  --muted: #a5a49f;
  --dim: #6e7374;
  --amber: #bd7a28;
  --line: rgba(231, 226, 216, 0.18);
  --mobile-gutter: 20px;
  --mobile-inset: 48px;
  --font-geist-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, summary { color: inherit; }
.project-heading h2,
.portrait-copy h2,
.subpage-hero h1,
.editorial-intro h2,
.case-story h2,
.production-note h2,
.studio-manifesto h2,
.person-profile h2,
.next-project a { text-wrap: balance; }
::selection { background: var(--amber); color: var(--ink); }
.site-shell section[id] { scroll-margin-top: 90px; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 5px; }
.site-shell { min-height: 100vh; background: var(--ink); }
.skip-link {
  position: fixed; z-index: 200; top: 12px; left: 12px; padding: 10px 14px;
  background: var(--ivory); color: var(--ink);
  font: 500 12px/1 var(--font-geist-mono), monospace;
  transform: translateY(-160%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; width: 100%;
  min-height: 104px; padding: 26px clamp(24px, 4.2vw, 72px);
  display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: clamp(18px,2.3vw,36px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(7,9,11,.82), rgba(7,9,11,0));
  transition: background 260ms ease, backdrop-filter 260ms ease;
  pointer-events: none;
}
.site-header--scrolled {
  background: linear-gradient(180deg, rgba(7,9,11,.94), rgba(7,9,11,.66) 68%, rgba(7,9,11,0));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header > * { pointer-events: auto; }
.brand img { display: block; width: clamp(150px, 16vw, 224px); height: auto; }
.main-nav {
  display: flex; gap: clamp(22px, 3.2vw, 48px); padding-top: 11px;
  font: 500 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: .12em; text-transform: uppercase;
}
.main-nav a { position: relative; padding-bottom: 8px; }
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--amber); transform: scaleX(0); transform-origin: right;
  transition: transform 220ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after {
  transform: scaleX(1); transform-origin: left;
}
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.language-switch {
  display: flex; align-items: center; gap: 8px; padding-top: 9px;
  color: rgba(231,226,216,.58);
  font: 500 9px/1 var(--font-geist-mono), monospace;
  letter-spacing: .11em; text-transform: uppercase;
}
.language-switch::before { content: ''; width: 26px; height: 1px; margin-right: 2px; background: rgba(231,226,216,.26); }
.language-switch a, .language-switch span { min-width: 30px; min-height: 30px; padding: 3px 1px; display: inline-flex; align-items: center; justify-content: center; }
.language-switch a { transition: color 180ms ease; }
.language-switch a:hover, .language-switch a:focus-visible, .language-switch [aria-current="true"] { color: var(--ivory); }
.language-switch [aria-current="true"] { border-bottom: 1px solid var(--amber); }
.mobile-nav { display: none; position: relative; justify-self: end; }
.mobile-nav summary {
  min-height: 40px; list-style: none; cursor: pointer; padding: 8px 0; display: flex; align-items: center;
  font: 500 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: .12em; text-transform: uppercase;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav {
  position: absolute; top: 38px; right: 0; width: min(78vw, 270px);
  padding: 22px; display: grid; gap: 18px;
  background: rgba(7,9,11,.96); border: 1px solid var(--line);
  font: 500 11px/1 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}

.hero-stage { height: 125svh; background: var(--graphite); }
.hero {
  --hero-progress: 0; --hero-scale: 1; --hero-shift: 0px; --hero-radius: 0px; --hero-image-scale: 1.045;
  position: sticky; top: 0; min-height: 100svh; height: 100svh; overflow: hidden; isolation: isolate; background: #0a0c0e;
  border-radius: var(--hero-radius); transform: translate3d(0,var(--hero-shift),0) scale(var(--hero-scale));
  transform-origin: 50% 44%; will-change: transform, border-radius;
}
.hero picture { position: absolute; inset: 0; z-index: -5; }
.hero-image, .hero-shade, .mist, .vanta-fog-layer { position: absolute; inset: 0; }
.hero-image {
  width: 100%; height: 100%; object-fit: cover; object-position: 56% 51%;
  filter: saturate(.8) contrast(1.08) brightness(.82); transform: scale(var(--hero-image-scale));
  transition: transform 80ms linear;
}
.hero-shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7,9,11,.95) 0%, rgba(7,9,11,.62) 27%, rgba(7,9,11,.08) 64%),
    linear-gradient(0deg, rgba(7,9,11,.84) 0%, transparent 38%, rgba(7,9,11,.36) 100%);
}
.vanta-fog-layer {
  z-index: -3; opacity: 0; pointer-events: none; mix-blend-mode: screen;
  transition: opacity 1200ms ease;
}
.vanta-fog-layer--ready { opacity: .19; }
.vanta-fog-layer canvas { width: 100% !important; height: 100% !important; pointer-events: none !important; }
.has-vanta-fog .mist-back { opacity: .12; }
.has-vanta-fog .mist-front { opacity: .09; }
.mist {
  z-index: -2; left: -28%; right: -28%; width: 156%; pointer-events: none;
  background-repeat: repeat-x; will-change: transform;
}
.mist-back {
  top: 34%; bottom: -18%; opacity: .2; filter: blur(34px);
  background-image:
    radial-gradient(ellipse at 12% 70%, rgba(163,176,183,.72) 0 12%, transparent 39%),
    radial-gradient(ellipse at 43% 54%, rgba(117,133,142,.55) 0 14%, transparent 42%),
    radial-gradient(ellipse at 79% 67%, rgba(180,186,186,.5) 0 11%, transparent 36%);
  animation: mist-drift 58s linear infinite;
}
.mist-front {
  top: 62%; bottom: -28%; opacity: .15; filter: blur(54px);
  background-image:
    radial-gradient(ellipse at 24% 65%, rgba(199,201,197,.62) 0 12%, transparent 40%),
    radial-gradient(ellipse at 67% 71%, rgba(136,150,157,.66) 0 14%, transparent 42%);
  animation: mist-drift-reverse 82s linear infinite;
}
@keyframes mist-drift { from { transform: translate3d(-7%,0,0); } to { transform: translate3d(7%,-2%,0); } }
@keyframes mist-drift-reverse { from { transform: translate3d(7%,0,0); } to { transform: translate3d(-7%,2%,0); } }

.hero-content {
  min-height: 100svh; padding: clamp(170px,22vh,250px) clamp(24px,4.2vw,72px) 112px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-title-wrap { position: relative; padding-left: clamp(27px,2.2vw,38px); }
.accent-rule { position: absolute; top: 3%; bottom: 4%; left: 0; width: 2px; background: var(--amber); }
.hero h1 {
  margin: 0; font-size: clamp(62px,7.4vw,122px); font-weight: 400;
  line-height: .82; letter-spacing: -.067em; text-transform: uppercase; text-wrap: balance;
}
.hero h1 span { color: var(--muted); font-weight: 300; }
.hero h1 small {
  display: block; margin: 0 0 clamp(24px,3.2vh,42px); color: var(--ivory);
  font: 500 clamp(8px,.66vw,10px)/1.35 var(--font-geist-mono), monospace;
  letter-spacing: .12em; text-transform: uppercase;
}
.project-meta {
  margin-top: clamp(34px,5vh,62px); margin-left: clamp(27px,2.2vw,38px);
  padding-left: 17px; border-left: 1px solid rgba(231,226,216,.34);
  display: grid; gap: 6px;
  font: 400 9px/1.25 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.project-meta span:first-child { margin-bottom: 7px; color: var(--amber); }
.hero-description {
  max-width: 520px; margin: clamp(27px,3.5vh,42px) 0 0 clamp(27px,2.2vw,38px);
  color: rgba(231,226,216,.84); font-size: clamp(13px,1.05vw,17px); line-height: 1.45;
  letter-spacing: .01em;
}
.hero-foot {
  position: absolute; z-index: 5; bottom: 28px; left: clamp(24px,4.2vw,72px); right: clamp(24px,4.2vw,72px);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px;
  font: 400 9px/1.25 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-foot span:last-child { justify-self: end; }

.studio-index {
  min-height: 104px; padding: 0 clamp(24px,4.2vw,72px);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  color: var(--muted); font: 400 9px/1.25 var(--font-geist-mono), monospace;
  letter-spacing: .1em; text-transform: uppercase;
}
.studio-index span:last-child { justify-self: end; }
.section-space { padding: clamp(92px,11vw,180px) clamp(24px,6.25vw,100px); }
.section-number, .eyebrow, .case-kicker, .bridge-label, .approach-title > span, .contact-top {
  font: 500 9px/1.4 var(--font-geist-mono), monospace;
  letter-spacing: .1em; text-transform: uppercase;
}
.work-intro {
  display: grid; grid-template-columns: minmax(150px,1fr) minmax(0,2.2fr); gap: clamp(48px,8vw,140px);
}
.work-intro h2, .studio-lead h2 {
  margin: 0; font-size: clamp(48px,6.3vw,102px); font-weight: 400;
  line-height: .88; letter-spacing: -.062em; text-transform: uppercase;
}
.work-intro p, .studio-lead p {
  max-width: 700px; margin: clamp(32px,4vw,62px) 0 0;
  color: var(--muted); font-size: clamp(17px,1.55vw,25px); line-height: 1.35; letter-spacing: -.025em;
}
.text-link, .inline-case-link {
  width: fit-content; display: block; padding-bottom: 6px; border-bottom: 1px solid var(--amber);
  font: 500 9px/1.2 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase;
}
.text-link { margin-top: 34px; }
.inline-case-link { margin-top: 22px; color: var(--ivory); font-size: 11px; }

.project { padding: 0 clamp(24px,4.2vw,72px) clamp(120px,14vw,230px); }
.project-heading {
  margin: 0 0 clamp(48px,7vw,110px); display: grid;
  grid-template-columns: minmax(150px,.7fr) minmax(0,1.7fr) minmax(230px,.6fr);
  gap: clamp(32px,5vw,90px); align-items: end;
}
.eyebrow { display: flex; gap: 24px; color: var(--muted); }
.eyebrow span:first-child { color: var(--amber); }
.project-heading h2, .portrait-copy h2 {
  margin: 0; font-size: clamp(62px,8.7vw,142px); font-weight: 400;
  line-height: .8; letter-spacing: -.072em; text-transform: uppercase;
}
.project-heading h2 { font-weight: 500; }
.project-title-link {
  color: inherit; text-decoration: none;
  transition: color 180ms ease;
}
.project-title-link:hover { color: rgba(231,226,216,.78); }
.project-title-link:focus-visible { outline: 1px solid var(--amber); outline-offset: 10px; }
.project-heading p {
  max-width: 390px; margin: 0; color: var(--muted);
  font-size: 15px; line-height: 1.45; letter-spacing: -.015em;
}
.image-block { margin: 0; overflow: hidden; }
.image-block img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}
.image-block:hover img { transform: none; }
.image-block figcaption {
  min-height: 46px; padding-top: 12px; display: flex; justify-content: space-between; gap: 20px;
  color: var(--muted); font: 400 8px/1.35 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.mobile-image-pan { width: 100%; height: 100%; overflow: hidden; }
.mobile-pan-hint { display: none; }
.image-amg-wide { height: auto; aspect-ratio: 16 / 9; }
.image-amg-wide img { object-fit: contain; object-position: center; }
.asymmetric-grid {
  margin-top: clamp(90px,12vw,190px); display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(240px,.42fr); gap: clamp(52px,9vw,150px); align-items: end;
}
.image-amg-front { width: min(46vw,690px); height: min(68vw,1010px); }
.image-amg-front img { object-position: center center; }
.project-note {
  max-width: 420px; margin-bottom: 72px; padding-top: 18px; border-top: 1px solid var(--line);
}
.index-code {
  display: block; margin-bottom: 40px; color: var(--amber);
  font: 400 9px/1 var(--font-geist-mono), monospace; letter-spacing: .1em;
}
.project-note p {
  margin: 0; color: var(--muted); font-size: clamp(16px,1.5vw,23px); line-height: 1.4; letter-spacing: -.02em;
}

.project-camper { padding-top: clamp(70px,8vw,130px); background: var(--graphite); }
.image-camper-wide { height: auto; aspect-ratio: 16 / 9; }
.camper-grid {
  margin-top: clamp(90px,11vw,180px); display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); gap: clamp(28px,4vw,64px); align-items: start;
}
.camper-grid--single { grid-template-columns: minmax(0,1fr); }
.camper-grid--single > figure:first-child { width: min(78%,1120px); height: auto; margin-left: auto; padding-top: 0; aspect-ratio: 8 / 5; }
.camper-grid > figure:first-child { height: min(55vw,760px); padding-top: clamp(110px,13vw,210px); }
.camper-portrait { height: min(77vw,1160px); }
.case-proof {
  margin: clamp(100px,13vw,210px) 0 0; padding: clamp(54px,6vw,92px) 0;
  display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(48px,8vw,130px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.case-kicker { display: block; margin-bottom: 28px; color: var(--amber); }
.case-proof h3 {
  margin: 0; font-size: clamp(38px,4.5vw,72px); font-weight: 400;
  line-height: .92; letter-spacing: -.052em; text-transform: uppercase;
}
.case-proof dl { margin: 0; border-top: 1px solid var(--line); }
.case-proof dl > div {
  min-height: 82px; display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: center;
  border-bottom: 1px solid var(--line);
}
.case-proof dt {
  color: var(--ivory); font-size: 20px; font-weight: 500; letter-spacing: -.03em;
}
.case-proof dd { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }

.portrait-project {
  min-height: 900px; display: grid; grid-template-columns: minmax(320px,.66fr) minmax(0,1.34fr);
  border-bottom: 1px solid var(--line); background: #090b0d;
}
.portrait-copy {
  padding: clamp(120px,12vw,190px) clamp(24px,5vw,80px) 80px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.portrait-copy h2 { margin-top: clamp(90px,10vw,155px); font-size: clamp(62px,7.4vw,118px); }
.portrait-copy > p {
  max-width: 470px; margin: auto 0 50px; color: var(--muted);
  font-size: clamp(16px,1.35vw,21px); line-height: 1.45; letter-spacing: -.018em;
}
.portrait-meta {
  width: 100%; padding-top: 18px; display: grid; gap: 7px; border-top: 1px solid var(--line);
  color: var(--muted); font: 400 8px/1.35 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.portrait-meta a { width: fit-content; margin-top: 10px; padding-bottom: 4px; border-bottom: 1px solid var(--amber); color: var(--ivory); font-size: 11px; }
.portrait-image { margin: 0; min-height: 900px; overflow: hidden; }
.portrait-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 20%; }
.portrait-project--biwak { min-height: 0; }
.portrait-wide { grid-column: 1 / -1; margin: 0; padding: clamp(28px,4vw,64px); border-top: 1px solid var(--line); background: var(--graphite); }
.portrait-wide__media { position: relative; aspect-ratio: 8 / 5; overflow: hidden; background: #0b0d0f; }
.portrait-wide__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portrait-wide figcaption {
  min-height: 42px; padding-top: 12px; display: flex; justify-content: space-between; gap: 20px;
  color: var(--muted); font: 400 8px/1.35 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.image-block figcaption > span,
.portrait-wide figcaption > span,
.case-gallery figcaption > span { min-width: 0; overflow-wrap: anywhere; }
.image-block figcaption > span:last-child,
.portrait-wide figcaption > span:last-child,
.case-gallery figcaption > span:last-child { text-align: right; }

.studio-section {
  background: var(--ivory); color: var(--ink);
  display: grid; grid-template-columns: minmax(150px,.6fr) minmax(0,1.4fr); gap: clamp(50px,8vw,140px);
}
.studio-lead p { color: #555957; }
.studio-proof {
  grid-column: 2; margin-top: clamp(55px,7vw,110px); padding: clamp(28px,3.2vw,52px) 0;
  display: grid; grid-template-columns: minmax(105px,.38fr) minmax(0,1.62fr); gap: clamp(28px,5vw,80px);
  border-top: 1px solid rgba(7,9,11,.32);
}
.studio-proof strong {
  font-size: clamp(58px,7.5vw,118px); font-weight: 500; line-height: .8; letter-spacing: -.07em;
}
.studio-proof span {
  display: block; margin-bottom: 16px; font: 500 10px/1.35 var(--font-geist-mono), monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.studio-proof p { max-width: 690px; margin: 0; color: #555957; font-size: 15px; line-height: 1.55; }
.services { grid-column: 2; margin-top: clamp(55px,7vw,110px); border-top: 1px solid rgba(7,9,11,.32); }
.service-row {
  min-height: 96px; display: grid; grid-template-columns: 58px 1fr 1fr; gap: 24px; align-items: center;
  border-bottom: 1px solid rgba(7,9,11,.32);
}
.service-row > span {
  color: #8b5c22; font: 500 9px/1 var(--font-geist-mono), monospace; letter-spacing: .08em;
}
.service-row h3 { margin: 0; font-size: clamp(24px,2.8vw,46px); font-weight: 500; letter-spacing: -.045em; text-transform: uppercase; transition: color 180ms ease; }
.service-row:hover h3, .service-row:focus-visible h3 { color: #8b5c22; }
.service-row p { margin: 0; color: #555957; font: 400 9px/1.4 var(--font-geist-mono), monospace; letter-spacing: .06em; text-transform: uppercase; }

.approach-section {
  padding: clamp(100px,12vw,190px) clamp(24px,6.25vw,100px);
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(60px,9vw,150px); background: var(--graphite);
}
.approach-title > span { color: var(--amber); }
.approach-title h2 {
  margin: clamp(40px,5vw,74px) 0 0; font-size: clamp(50px,6vw,96px);
  font-weight: 400; line-height: .88; letter-spacing: -.062em; text-transform: uppercase;
}
.approach-section ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.approach-section li {
  min-height: 145px; padding: 28px 0; display: grid; grid-template-columns: 58px 1fr; gap: 22px;
  border-bottom: 1px solid var(--line);
}
.approach-section li > span {
  color: var(--amber); font: 500 9px/1.4 var(--font-geist-mono), monospace;
}
.approach-section h3 { margin: 0 0 11px; font-size: 23px; font-weight: 500; letter-spacing: -.03em; text-transform: uppercase; }
.approach-section p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.mrose-bridge {
  min-height: 560px; padding: clamp(80px,8vw,130px) clamp(24px,6.25vw,100px);
  display: grid; grid-template-columns: 1.6fr .7fr; column-gap: clamp(60px,10vw,170px); align-content: space-between;
  background: #0c0f11; color: var(--ivory); border-top: 1px solid rgba(189,122,40,.55); border-bottom: 1px solid var(--line);
}
.bridge-label { grid-column: 1 / -1; color: var(--amber); }
.mrose-bridge h2 {
  margin: clamp(90px,10vw,150px) 0 0; font-size: clamp(54px,7.3vw,116px);
  font-weight: 500; line-height: .82; letter-spacing: -.071em; text-transform: uppercase;
}
.mrose-bridge p {
  align-self: end; margin: 0; color: var(--muted); font-size: clamp(17px,1.6vw,25px); line-height: 1.35; letter-spacing: -.025em;
}
.mrose-bridge a {
  grid-column: 2; width: fit-content; margin-top: 40px; padding-bottom: 6px; border-bottom: 1px solid var(--amber);
  font: 500 10px/1 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase;
}

.contact-section { min-height: 100svh; padding: 54px clamp(24px,4.2vw,72px) 34px; display: flex; flex-direction: column; }
.contact-top { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); }
.contact-main {
  margin: auto 0; display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(60px,10vw,170px); align-items: end;
}
.contact-main h2 {
  margin: 0; font-size: clamp(56px,8.2vw,132px); font-weight: 400;
  line-height: .82; letter-spacing: -.071em; text-transform: uppercase;
}
.contact-main ul {
  margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line);
}
.contact-main li {
  padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted);
  font-size: 13px; line-height: 1.4;
}
.contact-mail {
  width: fit-content; margin: 70px 0 95px; padding-bottom: 9px; border-bottom: 2px solid var(--amber);
  font-size: clamp(36px,5.4vw,86px); font-weight: 400; line-height: .95; letter-spacing: -.055em; text-transform: uppercase;
}
.site-footer {
  padding-top: 28px; display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 36px; align-items: end;
  border-top: 1px solid var(--line); color: var(--muted);
  font: 400 8px/1.5 var(--font-geist-mono), monospace; letter-spacing: .06em; text-transform: uppercase;
}
.site-footer img { width: 180px; }
.site-footer > div, .site-footer address { display: grid; gap: 5px; }
.site-footer address { margin: 0; font-style: normal; }
.site-footer > div { justify-self: end; text-align: right; }

.legal-page, .not-found { min-height: 100vh; background: var(--ink); color: var(--ivory); }
.legal-header {
  min-height: 110px; padding: 28px clamp(24px,4.2vw,72px); display: flex;
  align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line);
}
.legal-header img { display: block; width: min(210px,48vw); height: auto; }
.legal-header > a:not(:first-child), .legal-footer, .not-found a {
  font: 500 9px/1.4 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase;
}
.legal-content { width: min(980px,calc(100% - 48px)); margin: 0 auto; padding: clamp(90px,11vw,160px) 0; }
.legal-content > .section-number { color: var(--amber); }
.legal-content > h1 {
  margin: 32px 0 clamp(80px,10vw,140px); font-size: clamp(70px,11vw,150px); font-weight: 400;
  line-height: .82; letter-spacing: -.07em; text-transform: uppercase;
}
.legal-content section {
  display: grid; grid-template-columns: minmax(170px,.55fr) minmax(0,1.45fr); column-gap: clamp(40px,8vw,120px);
  padding: 42px 0; border-top: 1px solid var(--line);
}
.legal-content section:last-child { border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: -.025em; text-transform: uppercase; }
.legal-content p, .legal-content address {
  grid-column: 2; margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.65; font-style: normal;
}
.legal-content h2 + address, .legal-content h2 + p { margin-top: 0; }
.legal-content a { color: var(--ivory); border-bottom: 1px solid var(--amber); }
.legal-footer {
  padding: 30px clamp(24px,4.2vw,72px); display: flex; gap: 30px; justify-content: flex-end;
  border-top: 1px solid var(--line); color: var(--muted);
}
.legal-footer span { margin-right: auto; }
.not-found { display: grid; place-items: center; }
.not-found main { width: min(900px,calc(100% - 48px)); padding: 48px 0; }
.not-found img { width: 210px; height: auto; margin-bottom: clamp(90px,15vh,170px); }
.not-found .section-number { color: var(--amber); }
.not-found h1 {
  margin: 32px 0 70px; font-size: clamp(62px,10vw,140px); font-weight: 400;
  line-height: .84; letter-spacing: -.07em; text-transform: uppercase;
}
.not-found a { padding-bottom: 7px; border-bottom: 1px solid var(--amber); }
.not-found a + a { margin-left: 24px; }

/* Static multi-page system */
.inner-page { background: var(--ink); color: var(--ivory); }
.inner-page .site-header { background: linear-gradient(180deg, rgba(7,9,11,.98), rgba(7,9,11,.68) 68%, transparent); }
.page-shell { min-height: 100vh; overflow: hidden; background: var(--ink); }
.subpage-hero {
  position: relative; min-height: 78svh; padding: clamp(160px,20vh,230px) clamp(24px,6.25vw,100px) 70px;
  display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line);
}
.subpage-hero--image { min-height: 92svh; }
.subpage-hero picture, .subpage-hero__shade { position: absolute; inset: 0; }
.subpage-hero picture { z-index: -3; }
.subpage-hero picture img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.76) contrast(1.08) brightness(.66); }
.subpage-hero__shade {
  z-index: -2; background: linear-gradient(90deg, rgba(7,9,11,.95), rgba(7,9,11,.58) 42%, rgba(7,9,11,.1) 76%), linear-gradient(0deg, rgba(7,9,11,.88), transparent 46%);
}
.subpage-hero__content { width: 100%; position: relative; z-index: 1; }
.page-kicker {
  display: flex; gap: 24px; margin-bottom: clamp(35px,5vw,70px); color: var(--muted);
  font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase;
}
.page-kicker span:first-child { color: var(--amber); }
.subpage-hero h1 {
  max-width: 1280px; margin: 0; font-size: clamp(64px,10.4vw,166px); font-weight: 400;
  line-height: .79; letter-spacing: -.074em; text-transform: uppercase;
}
.subpage-hero h1 em { color: var(--muted); font-style: normal; font-weight: 300; }
.studio-page .subpage-hero h1 { max-width: none; font-size: clamp(62px,9.2vw,148px); line-height: .82; letter-spacing: -.048em; }
.subpage-hero__bottom {
  margin-top: clamp(42px,6vw,90px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px,8vw,130px); align-items: end;
}
.subpage-hero__lead { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(18px,1.75vw,28px); line-height: 1.38; letter-spacing: -.025em; }
.subpage-hero__meta { justify-self: end; display: grid; gap: 7px; color: var(--muted); font: 500 9px/1.35 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.subpage-hero__meta strong { color: var(--ivory); font-weight: 500; }
.page-section { padding: clamp(90px,11vw,180px) clamp(24px,6.25vw,100px); }
.page-section--graphite { background: var(--graphite); }
.page-section--ivory { background: var(--ivory); color: var(--ink); }
.editorial-intro { display: grid; grid-template-columns: minmax(140px,.5fr) minmax(0,1.5fr); gap: clamp(50px,9vw,150px); }
.editorial-intro h2 {
  max-width: 1120px; margin: 0; font-size: clamp(48px,7.5vw,118px); font-weight: 400;
  line-height: .86; letter-spacing: -.064em; text-transform: uppercase;
}
.editorial-intro.editorial-intro--portrait h2 { line-height: 1.1; letter-spacing: -.055em; }
.editorial-intro__copy { grid-column: 2; max-width: 760px; margin-top: clamp(45px,7vw,100px); }
.editorial-intro__copy p { margin: 0 0 22px; color: var(--muted); font-size: clamp(17px,1.45vw,23px); line-height: 1.48; letter-spacing: -.02em; }
.page-section--ivory .editorial-intro__copy p { color: #555957; }
.work-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(70px,9vw,150px) clamp(28px,4vw,66px); }
.work-card { display: block; min-width: 0; }
.work-card--wide { grid-column: 1 / -1; }
.work-card__media { margin: 0 0 27px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--graphite); }
.work-card--wide .work-card__media { aspect-ratio: 16 / 9; }
.work-card--portrait-original .work-card__media { aspect-ratio: 1200 / 1799; }
.work-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 350ms ease; }
.work-card:hover img, .work-card:focus-visible img { transform: scale(1.015); filter: brightness(.9); }
.work-card__top { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font: 500 8px/1.35 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.work-card h2, .work-card h3 { margin: 17px 0 12px; font-size: clamp(36px,4.2vw,68px); font-weight: 500; line-height: .9; letter-spacing: -.052em; text-transform: uppercase; }
.work-card p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.work-card__link { display: block; margin-top: 22px; color: var(--amber); font: 500 9px/1.2 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.archive-section { padding: clamp(90px,11vw,180px) clamp(24px,6.25vw,100px); border-top: 1px solid var(--line); }
.archive-section--graphite { background: var(--graphite); }
.archive-section__head {
  margin-bottom: clamp(50px,7vw,100px); display: grid;
  grid-template-columns: minmax(140px,.55fr) minmax(0,1.45fr); gap: clamp(45px,8vw,130px); align-items: end;
}
.archive-section__head span { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; }
.archive-section__head h2 { margin: 0; font-size: clamp(48px,7vw,112px); font-weight: 400; line-height: .86; letter-spacing: -.064em; text-transform: uppercase; }
.archive-section__head p { grid-column: 2; max-width: 700px; margin: 0; color: var(--muted); font-size: clamp(16px,1.35vw,21px); line-height: 1.5; }
.archive-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(55px,7vw,105px) clamp(24px,4vw,64px); }
.archive-card { min-width: 0; margin: 0; }
.archive-card--wide { grid-column: 1 / -1; }
.archive-card__media { position: relative; width: 100%; min-width: 0; aspect-ratio: 3 / 2; overflow: hidden; background: #0b0d0f; }
.archive-card--wide .archive-card__media { aspect-ratio: 16 / 9; }
.archive-card--cinematic .archive-card__media { aspect-ratio: 1920 / 824; }
.archive-card__media > img, .archive-card__media > .mobile-image-pan { position: absolute; inset: 0; }
.archive-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 350ms ease; }
.archive-card:hover img { transform: scale(1.012); filter: brightness(.92); }
.archive-card figcaption { width: 100%; padding-top: 13px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; color: var(--muted); font: 500 8px/1.35 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.archive-card figcaption span:last-child { margin-left: auto; text-align: right; }
.capability-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.capability-card { min-height: clamp(470px,34vw,560px); padding: clamp(34px,4vw,62px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 220ms ease; }
.capability-card:nth-child(even) { border-right: 0; }
.capability-card:nth-child(3) { grid-column: 1 / -1; border-right: 0; }
.capability-card--addon { background: rgba(189,122,40,.055); }
.capability-card:hover, .capability-card:focus-visible { background: rgba(231,226,216,.035); }
.capability-card.capability-card--addon:hover, .capability-card.capability-card--addon:focus-visible { background: rgba(189,122,40,.1); }
.capability-card__index { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; }
.capability-card h2, .capability-card h3 { margin: clamp(60px,7vw,105px) 0 22px; font-size: clamp(38px,4.4vw,72px); font-weight: 400; line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.capability-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.capability-card__link { margin-top: 30px; color: var(--ivory); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.case-hero { min-height: 100svh; }
.case-hero h1 { max-width: 1100px; }
.case-strip {
  padding: 28px clamp(24px,6.25vw,100px); display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  border-bottom: 1px solid var(--line); color: var(--muted); font: 500 8px/1.45 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase;
}
.case-strip div { display: grid; gap: 7px; }
.case-strip strong { color: var(--ivory); font-size: 10px; font-weight: 500; }
.case-strip .client-link { width: fit-content; padding-bottom: 3px; border-bottom: 1px solid var(--amber); color: var(--ivory); transition: color 180ms ease; }
.case-strip .client-link:hover, .case-strip .client-link:focus-visible { color: var(--amber); }
.case-story { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,9vw,150px); }
.case-story h2 {
  margin: 0; font-size: clamp(48px,6.5vw,102px); font-weight: 400; line-height: .87; letter-spacing: -.06em; text-transform: uppercase;
}
.case-story__copy { max-width: 780px; }
.case-story__copy p { margin: 0 0 24px; color: var(--muted); font-size: clamp(17px,1.45vw,23px); line-height: 1.52; letter-spacing: -.018em; }
.case-scope { margin-top: clamp(70px,9vw,140px); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,9vw,150px); }
.case-scope h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.03em; text-transform: uppercase; }
.case-scope dl { margin: 0; border-top: 1px solid var(--line); }
.case-scope dl > div { min-height: 86px; display: grid; grid-template-columns: minmax(140px,.5fr) 1.5fr; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); }
.case-scope dt { color: var(--ivory); font: 500 10px/1.3 var(--font-geist-mono), monospace; letter-spacing: .07em; text-transform: uppercase; }
.case-scope dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.case-gallery { padding: clamp(40px,5vw,80px) clamp(24px,4.2vw,72px) clamp(100px,12vw,190px); display: grid; gap: clamp(32px,5vw,80px); background: var(--graphite); }
.case-gallery figure { margin: 0; overflow: hidden; }
.case-gallery figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.case-gallery__wide { aspect-ratio: 16 / 9; }
.case-gallery__portrait-feature { width: min(760px,64vw); aspect-ratio: 2 / 3; margin: clamp(70px,7vw,120px) auto !important; }
.case-gallery__split { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px,4vw,64px); align-items: start; }
.case-gallery__split figure:first-child { aspect-ratio: 4 / 3; margin-top: clamp(80px,10vw,160px); }
.case-gallery__split figure:last-child { aspect-ratio: 3 / 4; }
.case-gallery__split--stonewave figure:first-child { aspect-ratio: 16 / 9; }
.case-gallery__details { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(20px,2.5vw,40px); align-items: start; }
.case-gallery__details figure { aspect-ratio: 4 / 3; }
.case-gallery__details figure:nth-child(2) { margin-top: clamp(35px,4vw,70px); }
.case-gallery figcaption { padding-top: 12px; display: flex; justify-content: space-between; color: var(--muted); font: 500 8px/1.35 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.production-note { padding: clamp(80px,10vw,160px) clamp(24px,6.25vw,100px); background: var(--amber); color: var(--ink); }
.production-note .case-story__copy p { color: rgba(7,9,11,.72); }
.production-note .text-link { color: var(--ink); border-bottom-color: var(--ink); }

/* Restrained project and archive lightbox */
.case-gallery figure img[role="button"], .archive-card__media img[role="button"] { cursor: zoom-in; }
.has-lightbox { overflow: hidden; }
.image-lightbox {
  position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center;
  padding: clamp(22px,4vw,64px); background: rgba(3,4,5,.965); color: var(--ivory);
  opacity: 0; visibility: hidden; transition: opacity 220ms ease, visibility 220ms ease;
}
.image-lightbox.is-open { opacity: 1; visibility: visible; }
.image-lightbox__figure { width: 100%; height: 100%; margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; place-items: center; gap: 16px; }
.image-lightbox__image { width: auto; max-width: 100%; height: auto; max-height: calc(100svh - 150px); display: block; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.image-lightbox__caption { width: min(100%,1100px); display: flex; justify-content: space-between; gap: 24px; color: rgba(231,226,216,.66); font: 500 8px/1.4 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.image-lightbox__close, .image-lightbox__previous, .image-lightbox__next {
  position: absolute; z-index: 2; width: 48px; height: 48px; padding: 0; display: grid; place-items: center;
  border: 1px solid rgba(231,226,216,.28); border-radius: 50%; background: rgba(7,9,11,.7); color: var(--ivory);
  font: 300 24px/1 Arial,sans-serif; cursor: pointer; transition: border-color 180ms ease, background 180ms ease;
}
.image-lightbox__close:hover, .image-lightbox__close:focus-visible, .image-lightbox__previous:hover, .image-lightbox__previous:focus-visible, .image-lightbox__next:hover, .image-lightbox__next:focus-visible { border-color: var(--amber); background: rgba(7,9,11,.96); }
.image-lightbox__close { top: 22px; right: 22px; }
.image-lightbox__previous { left: 22px; top: 50%; transform: translateY(-50%); }
.image-lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
.next-project { min-height: 620px; padding: clamp(80px,10vw,150px) clamp(24px,6.25vw,100px); display: flex; flex-direction: column; justify-content: space-between; background: #0c0f11; border-top: 1px solid var(--line); }
.next-project span { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; }
.next-project a { font-size: clamp(58px,9vw,145px); font-weight: 400; line-height: .8; letter-spacing: -.07em; text-transform: uppercase; }
.next-project a small { display: block; margin-top: 28px; color: var(--muted); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; }
.service-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px,9vw,150px); }
.service-layout h2 { margin: 0; font-size: clamp(48px,6.8vw,108px); font-weight: 400; line-height: .86; letter-spacing: -.062em; text-transform: uppercase; }
.service-layout__body p { max-width: 760px; margin: 0 0 24px; color: var(--muted); font-size: clamp(17px,1.45vw,23px); line-height: 1.5; }
.deliverables { margin-top: clamp(70px,9vw,140px); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.deliverable { min-height: 240px; padding: 34px 28px 34px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deliverable + .deliverable { padding-left: 28px; }
.deliverable:last-child { border-right: 0; }
.deliverable span { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; }
.deliverable h3 { margin: 70px 0 15px; font-size: 23px; font-weight: 500; letter-spacing: -.035em; text-transform: uppercase; }
.deliverable p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.page-section--pricing { border-top: 1px solid var(--line); background: #0c0f11; }
.pricing-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px,9vw,150px); }
.pricing-kicker, .pricing-item > span, .collaboration-note > span {
  color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace;
  letter-spacing: .1em; text-transform: uppercase;
}
.pricing-intro h2 {
  max-width: 840px; margin: clamp(42px,5vw,74px) 0 0;
  font-size: clamp(48px,6.8vw,108px); font-weight: 400;
  line-height: .86; letter-spacing: -.062em; text-transform: uppercase;
}
.pricing-intro__copy { align-self: end; }
.pricing-intro__copy p {
  max-width: 760px; margin: 0 0 24px; color: var(--muted);
  font-size: clamp(17px,1.45vw,23px); line-height: 1.5;
}
.pricing-grid { margin-top: clamp(70px,9vw,140px); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.pricing-item { min-height: 300px; padding: 34px 30px 38px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-item + .pricing-item { padding-left: 30px; }
.pricing-item:last-child { border-right: 0; }
.pricing-item h3 { min-height: 2.05em; margin: 58px 0 20px; font-size: clamp(23px,2.2vw,35px); font-weight: 500; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.pricing-item strong { display: block; color: var(--ivory); font-size: clamp(17px,1.55vw,24px); font-weight: 500; letter-spacing: -.025em; }
.pricing-item p { max-width: 390px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.52; }
.collaboration-note { margin-top: clamp(56px,7vw,100px); padding: clamp(28px,3.5vw,48px) 0; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px,9vw,150px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collaboration-note p { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(16px,1.25vw,20px); line-height: 1.52; }
.page-section--pricing > .text-link { margin-top: 42px; }
.studio-manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px,10vw,170px); }
.studio-manifesto h2 { margin: 0; font-size: clamp(54px,7.5vw,120px); font-weight: 400; line-height: .84; letter-spacing: -.066em; text-transform: uppercase; }
.studio-manifesto__copy { align-self: end; }
.studio-manifesto__copy p { margin: 0 0 24px; color: var(--muted); font-size: clamp(17px,1.45vw,23px); line-height: 1.5; }
.studio-values { display: grid; grid-template-columns: repeat(3,1fr); margin-top: clamp(90px,12vw,180px); border-top: 1px solid var(--line); }
.studio-value { min-height: 280px; padding: 36px 30px 36px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.studio-value + .studio-value { padding-left: 30px; }
.studio-value:last-child { border-right: 0; }
.studio-value span { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; }
.studio-value h3 { margin: 90px 0 14px; font-size: 24px; font-weight: 500; text-transform: uppercase; }
.studio-value p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.studio-person-feature {
  padding: clamp(70px,8vw,130px) clamp(24px,6.25vw,100px); display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(55px,10vw,170px); align-items: center;
  background: var(--graphite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.studio-person-feature figure { margin: 0; }
.studio-person-feature picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #0b0c0d; }
.studio-person-feature img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 23%; filter: contrast(1.04); }
.studio-person-feature figcaption { margin-top: 12px; color: var(--muted); font: 500 8px/1.35 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.studio-person-feature h2 { margin: clamp(48px,6vw,90px) 0 34px; font-size: clamp(62px,8.5vw,136px); font-weight: 400; line-height: .8; letter-spacing: -.071em; text-transform: uppercase; }
.studio-person-feature p { max-width: 650px; margin: 0 0 36px; color: var(--muted); font-size: clamp(17px,1.45vw,23px); line-height: 1.5; }
.person-hero {
  min-height: 100svh; padding: 118px clamp(24px,4.2vw,72px) clamp(42px,4vw,64px) clamp(24px,6.25vw,100px);
  display: grid; grid-template-columns: minmax(0,1fr) minmax(400px,.76fr); gap: clamp(55px,7vw,120px); align-items: stretch;
  border-bottom: 1px solid var(--line); background: #07090b;
}
.person-hero__copy { align-self: center; padding-top: 46px; }
.person-hero__copy h1 { margin: 0; font-size: clamp(78px,10vw,158px); font-weight: 400; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.person-hero__copy h1 em { color: var(--muted); font-style: normal; font-weight: 300; }
.person-hero__copy > p { max-width: 690px; margin: clamp(52px,6vw,90px) 0 0; color: var(--muted); font-size: clamp(18px,1.55vw,25px); line-height: 1.46; letter-spacing: -.02em; }
.person-hero__copy dl { max-width: 690px; margin: clamp(45px,5vw,76px) 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.person-hero__copy dl div { padding: 18px 24px 0 0; display: grid; gap: 7px; }
.person-hero__copy dt, .person-hero__copy dd { margin: 0; font: 500 8px/1.45 var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.person-hero__copy dt { color: var(--amber); }
.person-hero__copy dd { color: var(--muted); }
.person-hero__portrait { min-height: 0; margin: 0; display: flex; flex-direction: column; }
.person-hero__portrait picture { min-height: 0; flex: 1; display: block; overflow: hidden; background: #0b0c0d; }
.person-hero__portrait img { width: 100%; height: 100%; min-height: 680px; display: block; object-fit: cover; object-position: center 22%; filter: contrast(1.04); }
.person-hero__portrait figcaption { padding-top: 12px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font: 500 8px/1.35 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.person-profile { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px,10vw,170px); align-items: start; }
.person-profile__intro h2 { margin: clamp(52px,6vw,92px) 0 0; font-size: clamp(54px,6.6vw,106px); font-weight: 400; line-height: .84; letter-spacing: -.066em; text-transform: uppercase; }
.person-profile__body { max-width: 780px; padding-top: clamp(70px,9vw,140px); }
.person-profile__body p { margin: 0 0 24px; color: var(--muted); font-size: clamp(17px,1.35vw,22px); line-height: 1.55; }
.person-profile__body .person-profile__lead { color: var(--ivory); font-size: clamp(23px,2.2vw,35px); line-height: 1.32; letter-spacing: -.03em; }
.person-social-link {
  max-width: 520px; margin-top: clamp(46px,6vw,82px); padding: 18px 0 15px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--amber);
  font: 500 9px/1.35 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}
.person-social-link span { color: var(--muted); }
.person-social-link strong { color: var(--ivory); font-weight: 500; }
.person-social-link:hover, .person-social-link:focus-visible { color: var(--amber); border-bottom-color: var(--ivory); }
.person-social-link:hover strong, .person-social-link:focus-visible strong { color: var(--amber); }
.person-principles { display: grid; grid-template-columns: 1fr 1fr; background: var(--graphite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.person-principles article { min-height: 610px; padding: clamp(55px,6vw,95px) clamp(24px,6.25vw,100px); display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.person-principles article:last-child { border-right: 0; }
.person-principles article > span { color: var(--amber); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.person-principles h2 { margin: auto 0 34px; font-size: clamp(46px,5.4vw,86px); font-weight: 400; line-height: .86; letter-spacing: -.061em; text-transform: uppercase; }
.person-principles p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.person-consulting { background: #090b0d; }
.contact-layout { min-height: 100svh; padding: clamp(135px,16vh,190px) clamp(24px,6.25vw,100px) 60px; display: flex; flex-direction: column; }
.contact-layout__top { display: flex; justify-content: space-between; color: var(--muted); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.contact-form-section { margin: clamp(60px,7vw,105px) calc(clamp(24px,6.25vw,100px) * -1) clamp(90px,10vw,160px); padding: clamp(80px,9vw,145px) clamp(24px,6.25vw,100px); display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(60px,9vw,150px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--graphite); }
.contact-form-section__intro h1 { margin: clamp(40px,5vw,78px) 0 32px; font-size: clamp(58px,7.5vw,118px); font-weight: 400; line-height: .82; letter-spacing: -.07em; text-transform: uppercase; }
.contact-form-section__intro h1 em { color: var(--muted); font-style: normal; font-weight: 300; }
.contact-form-section__intro p { max-width: 520px; margin: 0; color: var(--muted); font-size: clamp(16px,1.35vw,21px); line-height: 1.55; }
.contact-direct-compact { margin-top: clamp(46px,5vw,76px); padding-top: 20px; display: grid; justify-items: start; gap: 9px; border-top: 1px solid var(--line); }
.contact-direct-compact span { margin-bottom: 5px; color: var(--muted); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.contact-direct-compact a { width: fit-content; color: var(--ivory); font-size: clamp(15px,1.3vw,20px); line-height: 1.4; border-bottom: 1px solid transparent; }
.contact-direct-compact a:hover { border-color: var(--amber); }
.contact-form-section__body { min-width: 0; }
.project-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; }
.project-form label { min-width: 0; display: grid; gap: 11px; color: var(--muted); font: 500 9px/1.3 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; }
.project-form input, .project-form select, .project-form textarea { width: 100%; min-width: 0; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(231,226,216,.28); border-radius: 0; color: var(--ivory); background: transparent; font: 400 16px/1.5 var(--font-geist-sans); transition: border-color .2s ease, background-color .2s ease; }
.project-form input::placeholder, .project-form textarea::placeholder { color: rgba(203,202,194,.68); }
.project-form select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg,transparent 50%,var(--muted) 50%),linear-gradient(135deg,var(--muted) 50%,transparent 50%); background-position: calc(100% - 10px) 52%,calc(100% - 5px) 52%; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.project-form select option { color: var(--ivory); background: var(--graphite); }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus {
  border-color: var(--amber); background-color: rgba(189,122,40,.045);
}
.project-form input:focus-visible, .project-form select:focus-visible, .project-form textarea:focus-visible { outline: 2px solid var(--amber); outline-offset: 5px; }
.project-form__message { grid-column: 1 / -1; }
.project-form textarea { min-height: 190px; resize: vertical; }
.project-form__footer { margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 32px; align-items: flex-end; border-top: 1px solid var(--line); }
.project-form__footer p { max-width: 560px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.project-form__footer p a { color: var(--ivory); border-bottom: 1px solid var(--line); }
.project-form button { flex: 0 0 auto; padding: 16px 22px; border: 1px solid var(--amber); color: var(--ink); background: var(--amber); font: 600 9px/1 var(--font-geist-mono), monospace; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background-color .2s ease; }
.project-form button:hover, .project-form button:focus-visible { color: var(--amber); background: transparent; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.form-status { display: none; margin: 0 0 38px; padding: 22px 24px; border: 1px solid var(--line); background: rgba(7,9,11,.55); }
.form-status:target { display: grid; gap: 6px; }
.form-status strong { color: var(--ivory); font-size: 16px; font-weight: 500; }
.form-status span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.form-status--success { border-color: rgba(181,126,44,.72); }
.form-status--error { border-color: rgba(180,92,76,.72); }
.contact-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.contact-details div { display: grid; gap: 7px; color: var(--muted); font: 500 9px/1.4 var(--font-geist-mono), monospace; letter-spacing: .07em; text-transform: uppercase; }
.contact-details strong { color: var(--ivory); font-weight: 500; }
.subpage-footer { padding: 40px clamp(24px,4.2vw,72px); display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 36px; align-items: end; border-top: 1px solid var(--line); color: var(--muted); font: 400 8px/1.5 var(--font-geist-mono), monospace; letter-spacing: .06em; text-transform: uppercase; background: var(--ink); }
.subpage-footer img { width: 170px; height: auto; }
.subpage-footer address, .subpage-footer nav { display: grid; gap: 5px; margin: 0; font-style: normal; }
.subpage-footer nav { justify-self: end; text-align: right; }
.portrait-case-hero picture img { object-position: center 24%; }
.service-image-hero picture img { object-position: center 42%; }
.brand-case-hero picture img { object-position: center 48%; }
.film-case-hero picture img { object-position: center 54%; }
.portrait-case-gallery { display: block; }
.portrait-case-gallery figure { width: min(760px,76vw); margin: 0 auto; aspect-ratio: 3 / 4; }
.stonewave-case-hero picture img { object-position: center 58%; }
.drone-case-hero picture img { object-position: center 52%; }
.case-gallery__drone { margin-top: clamp(60px,8vw,130px) !important; }

.compare-section {
  padding: clamp(90px,11vw,175px) clamp(24px,4.2vw,72px);
  display: grid; grid-template-columns: minmax(260px,.52fr) minmax(0,1.48fr);
  gap: clamp(48px,8vw,130px); align-items: center;
  background: #0a0c0e; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.compare-copy { min-width: 0; }
.compare-copy h2 {
  margin: clamp(38px,5vw,76px) 0 30px; font-size: clamp(40px,3vw,52px); font-weight: 400;
  line-height: .88; letter-spacing: -.06em; text-transform: uppercase;
}
.compare-copy p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.image-compare { min-width: 0; }
.image-compare__frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--graphite); isolation: isolate; cursor: ew-resize; }
.image-compare__after, .image-compare__before, .image-compare__before img {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover;
}
.image-compare__after { z-index: 1; }
.image-compare__before { z-index: 2; clip-path: inset(0 calc(100% - var(--compare-position)) 0 0); }
.image-compare__line {
  position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--compare-position); width: 1px;
  background: rgba(231,226,216,.9); transform: translateX(-50%); pointer-events: none;
}
.image-compare__line::after {
  content: '↔'; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px;
  display: grid; place-items: center; border: 1px solid rgba(231,226,216,.75); border-radius: 50%;
  background: rgba(7,9,11,.8); color: var(--ivory); font: 500 15px/1 var(--font-geist-mono), monospace;
  transform: translate(-50%,-50%); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.image-compare__range {
  position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
}
.image-compare__frame:focus-within { outline: 2px solid var(--amber); outline-offset: 5px; }
.image-compare__labels {
  padding-top: 13px; display: flex; justify-content: space-between; color: var(--muted);
  font: 500 8px/1.3 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase;
}

@media (max-width: 1100px) {
  .compare-section { grid-template-columns: 1fr; }
  .compare-copy { max-width: 760px; }
}


@media (max-width: 900px) {
  .project-heading { grid-template-columns: 1fr 1.5fr; }
  .project-heading p { grid-column: 2; }
  .case-proof, .approach-section, .contact-main { grid-template-columns: 1fr; }
  .case-proof dl { margin-top: 20px; }
  .portrait-project { grid-template-columns: .8fr 1.2fr; }
  .mrose-bridge { grid-template-columns: 1fr; }
  .mrose-bridge p, .mrose-bridge a { grid-column: 1; max-width: 560px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > div { justify-self: start; text-align: left; }
  .subpage-hero__bottom, .case-story, .case-scope, .service-layout, .studio-manifesto, .studio-person-feature, .person-hero, .person-profile, .contact-form-section { grid-template-columns: 1fr; }
  .studio-person-feature figure { width: min(620px,82vw); }
  .person-hero { padding-top: 130px; }
  .person-hero__copy { padding-top: 0; }
  .person-hero__portrait { min-height: 780px; }
  .subpage-hero__meta { justify-self: start; }
  .case-strip { grid-template-columns: repeat(2,1fr); }
  .subpage-footer { grid-template-columns: 1fr 1fr; }
  .subpage-footer nav { justify-self: start; text-align: left; }
}

@media (max-width: 720px) {
  .site-header { min-height: 92px; padding: 22px 20px; gap: 15px; }
  .brand img { width: 164px; }
  .main-nav { display: none; }
  .language-switch { padding-top: 0; gap: 2px; }
  .language-switch a, .language-switch span { min-width: 36px; min-height: 40px; font-size: 10px; }
  .language-switch::before { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav nav { gap: 6px; }
  .mobile-nav nav a { min-height: 40px; display: flex; align-items: center; }
  .hero-stage { height: 100svh; }
  .hero { position: relative; transform: none; border-radius: 0; }
  .hero-image { object-position: 67% 50%; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7,9,11,.94) 0%, rgba(7,9,11,.5) 48%, rgba(7,9,11,.12) 100%),
      linear-gradient(0deg, rgba(7,9,11,.86) 0%, transparent 44%, rgba(7,9,11,.38) 100%);
  }
  .hero-content { padding: 150px 20px 118px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(58px,19vw,86px); }
  .hero-description { margin-left: 27px; font-size: 12px; }
  .hero-foot { left: 20px; right: 20px; grid-template-columns: 1fr auto; }
  .hero-foot span:first-child { display: none; }
  .hero-foot span:last-child { grid-column: 2; }
  .studio-index {
    min-height: 105px; padding: 22px 20px; display: flex; align-items: flex-start;
    flex-direction: column; justify-content: center; gap: 7px;
    font-size: 10px;
  }
  .studio-index span:last-child { align-self: auto; }
  .section-space { padding: 96px 20px; }
  .work-intro, .studio-section { grid-template-columns: 1fr; gap: 42px; }
  .work-intro h2, .studio-lead h2 { font-size: clamp(42px,11.8vw,58px); }
  .project { padding-left: 20px; padding-right: 20px; padding-bottom: 132px; }
  .project-heading { grid-template-columns: 1fr; gap: 30px; }
  .project-heading p { grid-column: auto; }
  .project-heading h2 { font-size: clamp(48px,14vw,68px); }
  .image-amg-wide, .image-camper-wide { height: auto; aspect-ratio: 16 / 9; }
  .asymmetric-grid { grid-template-columns: 1fr; gap: 68px; }
  .image-amg-front {
    width: calc(100% - 48px); height: auto; aspect-ratio: 2 / 3;
    justify-self: center;
  }
  .project-note { margin: 0; }
  .project-camper { padding-top: 48px; }
  .camper-grid { grid-template-columns: minmax(0,1fr); gap: 58px; }
  .camper-grid--single > figure:first-child { width: 100%; margin-left: 0; }
  .camper-grid > figure:first-child { height: auto; padding-top: 0; aspect-ratio: 8 / 5; }
  .camper-portrait {
    width: calc(100% - 48px); height: auto; aspect-ratio: 2 / 3;
    justify-self: center;
  }
  .case-proof h3 { font-size: 43px; }
  .case-proof dl > div { grid-template-columns: 82px 1fr; }
  .portrait-project { grid-template-columns: minmax(0,1fr); overflow: clip; }
  .portrait-project > *, .portrait-copy, .portrait-image, .portrait-wide, .portrait-wide__media, .mobile-image-pan { min-width: 0; max-width: 100%; }
  .portrait-copy { min-height: 610px; padding-left: 20px; padding-right: 20px; }
  .portrait-copy h2 { font-size: clamp(44px,12.5vw,62px); }
  .portrait-copy > p { margin: 28px 0 50px; }
  .portrait-image {
    width: calc(100% - 48px); min-height: 0; margin-inline: auto; aspect-ratio: 2 / 3;
    justify-self: center;
  }
  .portrait-wide { padding: 20px; }
  .portrait-wide__media { aspect-ratio: 8 / 5; }
  .studio-proof, .services { grid-column: 1; }
  .studio-proof { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 36px 1fr; padding: 20px 0; }
  .service-row p { grid-column: 2; }
  .approach-section { padding-left: 20px; padding-right: 20px; }
  .approach-title h2 { font-size: clamp(42px,11.8vw,58px); }
  .mrose-bridge { min-height: 720px; padding-left: 20px; padding-right: 20px; grid-template-columns: minmax(0,1fr); }
  .mrose-bridge > * { min-width: 0; max-width: 100%; }
  .mrose-bridge h2 { font-size: clamp(40px,11.2vw,54px); line-height: .88; letter-spacing: -.058em; }
  .contact-section { padding-left: 20px; padding-right: 20px; }
  .contact-top { flex-direction: column; gap: 7px; }
  .contact-main { margin-top: 140px; }
  .contact-main h2 { font-size: clamp(44px,12.5vw,62px); }
  .contact-mail { margin-top: 100px; font-size: clamp(33px,10vw,52px); }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer img { width: 160px; margin-bottom: 28px; }
  .legal-header { padding: 22px 20px; }
  .legal-header > a:not(:first-child) { font-size: 8px; }
  .legal-content { width: calc(100% - 40px); }
  .legal-content > h1 { max-width: 100%; font-size: clamp(42px,13.5vw,60px); line-height: .86; letter-spacing: -.058em; overflow-wrap: anywhere; }
  .legal-content section { grid-template-columns: 1fr; gap: 24px; }
  .legal-content p, .legal-content address { grid-column: 1; }
  .legal-footer { padding: 28px 20px; flex-wrap: wrap; justify-content: flex-start; }
  .legal-footer span { flex: 0 0 100%; }
  .subpage-hero { min-height: 82svh; padding: 140px 20px 46px; }
  .subpage-hero--image { min-height: 92svh; }
  .subpage-hero h1 { max-width: 100%; font-size: clamp(48px,14.5vw,72px); line-height: .84; letter-spacing: -.062em; }
  .archive-page .subpage-hero h1 { line-height: .93; letter-spacing: -.055em; }
  .archive-page .subpage-hero h1 em { display: inline-block; margin-top: .15em; }
  .studio-page .subpage-hero h1 { font-size: clamp(45px,12.2vw,60px); line-height: .86; letter-spacing: -.04em; }
  .subpage-hero__bottom { margin-top: 42px; }
  .page-section { padding-left: 20px; padding-right: 20px; }
  .editorial-intro { grid-template-columns: minmax(0,1fr); gap: 35px; }
  .editorial-intro > * { min-width: 0; max-width: 100%; }
  .editorial-intro h2 { font-size: clamp(38px,10.8vw,50px); line-height: .9; letter-spacing: -.052em; }
  .editorial-intro__copy { grid-column: 1; margin-top: 10px; }
  .work-grid, .capability-grid { grid-template-columns: 1fr; }
  .capability-card:nth-child(3) { grid-column: 1; }
  .work-card--wide { grid-column: 1; }
  .work-card--wide .work-card__media, .work-card__media { aspect-ratio: 4 / 5; }
  .work-card--portrait-original .work-card__media { aspect-ratio: 1200 / 1799; }
  .archive-section { padding: 80px 20px 110px; }
  .archive-section__head { grid-template-columns: minmax(0,1fr); gap: 28px; }
  .archive-section__head > *, .archive-section__head p { grid-column: 1; min-width: 0; max-width: 100%; }
  .archive-section__head h2 { font-size: clamp(42px,12vw,58px); line-height: .9; }
  .archive-grid { grid-template-columns: minmax(0,1fr); gap: 58px; }
  .archive-card--wide { grid-column: 1; }
  .archive-card__media, .archive-card--wide .archive-card__media { aspect-ratio: 3 / 2; }
  .capability-card, .capability-card:nth-child(even) { min-height: 390px; border-right: 0; }
  .capability-card h2, .capability-card h3 { margin-top: 54px; }
  .case-strip { padding: 24px 20px; grid-template-columns: 1fr 1fr; }
  .case-gallery { padding-left: 20px; padding-right: 20px; gap: 58px; }
  .case-gallery figure:not([data-mobile-pan]) { aspect-ratio: auto !important; }
  .case-gallery figure:not([data-mobile-pan]) > img { height: auto !important; object-fit: contain; }
  .case-gallery [data-mobile-pan] { aspect-ratio: 4 / 5; }
  .case-gallery__portrait-feature {
    width: calc(100% - 48px); margin: 0 auto !important;
  }
  .case-gallery__split { grid-template-columns: minmax(0,1fr); gap: 58px; }
  .case-gallery__split figure:first-child { margin-top: 0; }
  .case-gallery__split--stonewave figure:first-child { aspect-ratio: 4 / 5; }
  .case-gallery__split figure:last-child {
    width: calc(100% - 48px); aspect-ratio: 2 / 3;
    justify-self: center;
  }
  .case-gallery__details { grid-template-columns: minmax(0,1fr); gap: 58px; }
  .case-gallery__details figure { width: calc(100% - 48px); justify-self: center; }
  .case-gallery__details figure:nth-child(odd) { justify-self: center; }
  .case-gallery__details figure:nth-child(even) { margin-top: 0; justify-self: center; }
  .image-block figcaption, .portrait-wide figcaption, .case-gallery figcaption {
    display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px;
  }
  .case-scope dl > div { grid-template-columns: 100px 1fr; }
  .deliverables, .studio-values, .pricing-grid { grid-template-columns: 1fr; }
  .deliverable, .deliverable + .deliverable, .studio-value, .studio-value + .studio-value { padding: 28px 0; border-right: 0; }
  .deliverable h3, .studio-value h3 { margin-top: 55px; }
  .pricing-intro, .collaboration-note { grid-template-columns: minmax(0,1fr); gap: 36px; }
  .pricing-intro h2 { font-size: clamp(36px,10.6vw,48px); line-height: .9; letter-spacing: -.052em; }
  .pricing-item, .pricing-item + .pricing-item { min-height: 0; padding: 30px 0 34px; border-right: 0; }
  .pricing-item h3 { min-height: 0; margin-top: 48px; }
  .studio-person-feature { padding-left: 20px; padding-right: 20px; }
  .studio-person-feature figure { width: 100%; }
  .studio-person-feature h2 { font-size: clamp(62px,18vw,92px); }
  .person-hero { padding: 132px 20px 42px; gap: 70px; }
  .person-hero__copy h1 { font-size: clamp(78px,22vw,112px); }
  .person-hero__copy dl { grid-template-columns: 1fr; gap: 18px; }
  .person-hero__portrait { min-height: auto; }
  .person-hero__portrait picture { aspect-ratio: 4 / 5; }
  .person-hero__portrait img { min-height: 0; }
  .person-profile { gap: 15px; }
  .person-profile__body { padding-top: 45px; }
  .person-principles { grid-template-columns: 1fr; }
  .person-principles article { min-height: 520px; padding-left: 20px; padding-right: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .person-principles article:last-child { border-bottom: 0; }
  .next-project { min-height: 500px; padding-left: 20px; padding-right: 20px; }
  .next-project a { max-width: 100%; font-size: clamp(42px,12.5vw,62px); line-height: .86; letter-spacing: -.058em; }
  .production-note .case-story h2 { max-width: 100%; font-size: clamp(32px,9.35vw,42px); line-height: .9; letter-spacing: -.05em; }
  .contact-layout { padding: 140px 20px 40px; }
  .contact-layout__top { flex-direction: column; gap: 8px; }
  .contact-form-section { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .project-form__grid { grid-template-columns: 1fr; }
  .project-form__message { grid-column: 1; }
  .project-form__footer { align-items: stretch; flex-direction: column; }
  .project-form button { width: 100%; min-height: 52px; }
  .contact-details { grid-template-columns: 1fr; }
  .subpage-footer { padding: 36px 20px; grid-template-columns: 1fr; }
  .subpage-footer img { margin-bottom: 24px; }
  .subpage-footer a { min-height: 40px; display: inline-flex; align-items: center; }
  .text-link, .inline-case-link, .person-social-link, .portrait-meta a,
  .contact-direct-compact a, .contact-details a {
    min-height: 40px; display: inline-flex; align-items: center;
  }
  .compare-section { padding-left: 20px; padding-right: 20px; grid-template-columns: 1fr; }
  .image-compare__frame { aspect-ratio: 4 / 5; }

  .is-pan-enabled { position: relative; }
  .mobile-image-pan {
    width: 100%; overflow-x: auto; overflow-y: hidden; max-width: 100%;
    overscroll-behavior-x: contain;
    scrollbar-width: none; touch-action: pan-x pan-y;
  }
  .mobile-image-pan::-webkit-scrollbar { display: none; }
  .mobile-image-pan > img {
    width: auto !important; min-width: 100%; max-width: none !important;
    height: 100% !important; object-fit: cover;
  }
  .mobile-pan-hint {
    position: absolute; z-index: 4; top: 12px; right: 12px;
    display: block; padding: 7px 9px; border: 1px solid rgba(231,226,216,.25);
    background: rgba(7,9,11,.68); color: rgba(231,226,216,.86);
    font: 500 8px/1 var(--font-geist-mono), monospace; letter-spacing: .09em;
    text-transform: uppercase; pointer-events: none;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    transition: opacity 220ms ease;
  }
  .is-pan-enabled.has-panned .mobile-pan-hint { opacity: 0; }

  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .image-lightbox { padding: 72px 16px 24px; }
  .image-lightbox__image { max-height: calc(100svh - 170px); }
  .image-lightbox__caption { padding: 0 4px; justify-content: center; flex-wrap: wrap; text-align: center; }
  .image-lightbox__close { top: 16px; right: 16px; }
  .image-lightbox__previous, .image-lightbox__next { display: none; }

  .hero-foot, .project-meta, .section-number, .eyebrow, .case-kicker, .bridge-label,
  .approach-title > span, .contact-top, .image-block figcaption, .portrait-meta,
  .portrait-wide figcaption, .work-card__top, .work-card__link, .archive-card figcaption,
  .case-strip, .case-gallery figcaption, .image-lightbox__caption, .contact-layout__top,
  .project-form label, .contact-details div, .site-footer, .subpage-footer,
  .person-hero__copy dt, .person-hero__copy dd, .person-hero__portrait figcaption,
  .studio-person-feature figcaption, .image-compare__labels {
    font-size: 10px;
    line-height: 1.45;
  }
  .text-link, .inline-case-link, .project-form button, .contact-direct-compact span,
  .person-social-link, .portrait-meta a, .next-project span { font-size: 11px; }
  .project-heading, .project-heading > *, .case-story, .case-story > *, .case-scope,
  .case-scope > *, .studio-manifesto, .studio-manifesto > *, .studio-person-feature,
  .studio-person-feature > *, .person-hero, .person-hero > *, .person-profile,
  .person-profile > *, .production-note, .production-note > * {
    min-width: 0;
    max-width: 100%;
  }
  .case-story h2, .service-layout h2, .studio-manifesto h2, .person-profile__intro h2 {
    font-size: clamp(36px,10.6vw,48px);
    line-height: .9;
    letter-spacing: -.052em;
  }
}

@media (max-width: 360px) {
  .archive-section__head h2 { font-size: 36px; letter-spacing: -.045em; }
  .mrose-bridge h2 { font-size: 36px; letter-spacing: -.045em; }
  .editorial-intro h2 { font-size: 34px; letter-spacing: -.045em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mist, .reveal { animation: none; }
  .hero-stage { height: 100svh; }
  .hero { position: relative; transform: none; border-radius: 0; }
  .vanta-fog-layer { display: none; }
  .main-nav a::after, .skip-link, .image-block img, .hero-image, .site-header { transition: none; }
}


/* V2.3: complete photographs, readable controls, calm motion. */
.reveal { animation: none; clip-path: none; }
.case-gallery figure, .case-gallery__wide, .case-gallery__split figure,
.case-gallery__details figure, .work-card .work-card__media,
.archive-card .archive-card__media { aspect-ratio: auto !important; }
.case-gallery figure img, .work-card .work-card__media img,
.archive-card .archive-card__media img { position: static; width: 100%; height: auto !important; object-fit: contain; transform: none !important; }
.image-block img { height: auto; object-fit: contain; }
.image-block { aspect-ratio: auto; }
.case-gallery figure { align-self: start; }
.image-compare__frame { aspect-ratio: var(--image-ratio, 16 / 9); }
.image-compare__after, .image-compare__before img { object-fit: contain; }
.studio-values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.studio-values > *, .contact-form-section > * { min-width: 0; }
.studio-values h3 { overflow-wrap: anywhere; }
.project-heading { grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr); gap: 28px clamp(36px,5vw,80px); }
.project-heading > .eyebrow { grid-column: 1 / -1; }
.project-heading h2 { font-size: clamp(52px,7.2vw,116px); line-height: .98; overflow-wrap: anywhere; }
.project-heading p { grid-column: 2; }
.contact-form-section__intro { container-type: inline-size; }
.contact-form-section__intro h1 { font-size: clamp(48px, 17cqw, 100px); line-height: .98; overflow-wrap: anywhere; }
.editorial-intro--portrait h2 { font-size: clamp(40px,5.8vw,92px); overflow-wrap: anywhere; }
.hero-description { font-size: clamp(16px,1.2vw,19px); line-height: 1.55; max-width: 390px; }
.main-nav { gap: clamp(18px,2.2vw,36px); }
.main-nav a, .language-switch, .mobile-nav summary, .text-link, .inline-case-link,
.project-form label, .project-form button, .capability-card__link, .work-card__link,
.person-social-link { font-size: 14px; line-height: 1.5; }
.hero-foot, .project-meta, .section-number, .eyebrow, .page-kicker, .case-kicker,
.image-block figcaption, .case-gallery figcaption, .archive-card figcaption,
.work-card__top, .subpage-hero__meta, .image-compare__labels,
.site-footer, .subpage-footer, .studio-index, .pricing-kicker { font-size: 12px; line-height: 1.5; }
.hero-foot a, .text-link, .inline-case-link, .language-switch > *, .mobile-nav summary,
.site-footer a, .subpage-footer a { min-height: 44px; display: inline-flex; align-items: center; }
.image-block figcaption, .case-gallery figcaption, .archive-card figcaption, .work-card__top { flex-wrap: wrap; gap: 8px 24px; }
.capability-card p, .compare-copy p { font-size: 16px; }
.pricing-scope { max-width: 850px; color: var(--muted); font-size: 16px; line-height: 1.6; margin: 32px 0; }
.inline-case-link { display: flex; width: fit-content; max-width: 100%; margin-top: 18px; }
.language-switch a, .language-switch span, .mobile-nav nav a, .case-strip .client-link,
.case-scope a, .mrose-bridge a { font-size: 14px; line-height: 1.5; min-height: 44px; }
.page-section--pricing { scroll-margin-top: 125px; }
.site-shell .project { padding-top: clamp(64px,7vw,112px); padding-bottom: clamp(64px,7vw,112px); }
.site-shell .section-space { padding-top: clamp(64px,7vw,112px); padding-bottom: clamp(64px,7vw,112px); }
@media (max-width: 1100px) {
  .studio-values { grid-template-columns: minmax(0,1fr); }
  .studio-values .studio-value { min-height: 0; padding: 28px 0; border-right: 0; }
  .studio-values .studio-value h3 { margin-top: 24px; }
  .main-nav { display: none; }
  .mobile-nav { display: block; }
  .project-heading { grid-template-columns: minmax(0,1fr); }
  .project-heading p { grid-column: 1; max-width: 620px; }
}
@media (max-width: 720px) {
  .hero-description { font-size: 16px; line-height: 1.5; max-width: 340px; }
  .project-heading h2 { font-size: clamp(42px,11.5vw,76px); }
  .editorial-intro--portrait h2 { font-size: clamp(34px,9.7vw,50px); line-height: 1.1; }
  .site-shell .project, .site-shell .section-space { padding-top: 56px; padding-bottom: 56px; }
  .case-gallery figure { margin-inline: auto; }
  .image-compare__frame { aspect-ratio: var(--image-ratio,16 / 9); }
  .hero-foot { flex-wrap: wrap; gap: 10px 18px; }
  .hero-foot > span:last-child { display: none; }
  .site-footer a, .subpage-footer a { font-size: 12px; }
}
