:root {
  --ink: #171716;
  --paper: #e9e5dc;
  --paper-deep: #dcd6c9;
  --white: #f4f1eb;
  --blue: #6792ff;
  --line: rgba(23, 23, 22, .22);
  --line-light: rgba(244, 241, 235, .28);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-ease-mask: cubic-bezier(.76, 0, .24, 1);
  --motion-duration-fast: .35s;
  --motion-duration-base: .72s;
  --motion-duration-slow: 1.15s;
  --surface-radius: 18px;
  --surface-shadow: 0 22px 70px rgba(8, 10, 14, .18), 0 2px 0 rgba(244, 241, 235, .16) inset;
  --surface-shadow-dark: 0 28px 80px rgba(0, 0, 0, .36), 0 1px 0 rgba(244, 241, 235, .16) inset;
  --glass-line: rgba(244, 241, 235, .24);
  --scroll-progress: 0;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
  scrollbar-width: none;
}
body:not(.is-loaded) { overflow: hidden; }
body:not(.is-loaded) .site-header,
body:not(.is-loaded) .hero-kicker,
body:not(.is-loaded) .hero-bottom,
body:not(.is-loaded) .hero-stamp { opacity: 0; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.preloader-inner {
  width: min(520px, 76vw);
}
.preloader-brand {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--sans);
  font-size: clamp(34px, 6vw, 76px);
  line-height: .82;
  letter-spacing: -.09em;
  font-weight: 600;
}
.preloader-brand-line {
  display: block;
  transform: translateY(110%);
}
.preloader-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(244,241,235,.55);
  font: 9px var(--mono);
  letter-spacing: .1em;
}
.preloader-progress {
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(244,241,235,.22);
}
.preloader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.cinematic-scroll-light {
  position: fixed;
  z-index: 15;
  top: -34vh;
  left: -10vw;
  width: 120vw;
  height: 68vh;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, var(--scroll-light-shift, 0), 0);
  background:
    radial-gradient(ellipse at center, rgba(244, 241, 235, .18), transparent 46%),
    linear-gradient(180deg, transparent 0%, rgba(103, 146, 255, .08) 46%, rgba(244, 241, 235, .12) 50%, transparent 56%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transition: opacity .28s ease, transform .75s var(--motion-ease);
}
.cinematic-scroll-light.is-visible {
  opacity: .72;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform, opacity;
  transition: opacity .25s ease;
}
.custom-cursor.is-visible { opacity: 1; }
.custom-cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(103,146,255,.9);
  border-radius: 50%;
  background: rgba(103,146,255,.035);
  box-shadow: 0 0 18px rgba(103,146,255,.2);
  transform: translate(-50%, -50%) scale(1);
  transition: transform .35s var(--motion-ease), background .35s ease, border-color .35s ease;
}
.custom-cursor-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(103,146,255,.75);
  transform: translate(-50%, -50%);
}
.custom-cursor-label {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--white);
  font: 8px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .35s var(--motion-ease);
}
.custom-cursor.is-interactive .custom-cursor-ring {
  border-color: var(--white);
  background: rgba(103,146,255,.12);
  transform: translate(-50%, -50%) scale(1.7);
}
.custom-cursor.is-interactive .custom-cursor-label {
  opacity: .8;
  transform: translateY(0);
}
html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none !important;
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .custom-cursor { display: none; }
}

/* Shared signature form: a restrained CSS 3D object that evolves from frame to vision to motion. */
.signature-form {
  position: absolute;
  pointer-events: none;
  transform-style: preserve-3d;
  isolation: isolate;
}
.signature-form .form-orbit,
.signature-form .form-shell,
.signature-form .form-signal,
.signature-form .form-core {
  position: absolute;
  display: block;
}
.signature-form .form-orbit {
  border: 1px solid rgba(103, 146, 255, .42);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.signature-form .form-orbit--outer {
  inset: 13% -10% 15% -10%;
  transform: rotateX(68deg) rotateZ(22deg);
}
.signature-form .form-orbit--inner {
  inset: 25% 5% 25% 5%;
  border-color: rgba(244, 241, 235, .42);
  transform: rotateX(68deg) rotateZ(-34deg) translateZ(10px);
}
.signature-form .form-shell {
  inset: 14% 29% 16% 29%;
  border: 1px solid rgba(244, 241, 235, .65);
  border-radius: 44% 56% 48% 52% / 24% 31% 69% 76%;
  background: linear-gradient(135deg, rgba(244, 241, 235, .16), rgba(244, 241, 235, .02) 43%, rgba(103, 146, 255, .18));
  box-shadow: 0 0 0 1px rgba(103, 146, 255, .14) inset, 0 26px 40px rgba(0, 0, 0, .24);
  transform: rotateY(-24deg) rotateX(12deg) translateZ(24px);
}
.signature-form .form-core {
  inset: 18% 17%;
  border-radius: 48% 52% 42% 58%;
  background: radial-gradient(circle at 35% 26%, rgba(244, 241, 235, .58), rgba(103, 146, 255, .22) 20%, rgba(23, 23, 22, .82) 66%);
  box-shadow: 0 0 32px rgba(103, 146, 255, .22);
  transform: translateZ(12px);
}
.signature-form .form-signal {
  width: 38%;
  height: 1px;
  top: 50%;
  left: 31%;
  background: linear-gradient(90deg, transparent, rgba(244, 241, 235, .72), var(--blue), transparent);
  transform: rotateZ(-18deg) translateZ(34px);
}
.hero-signature {
  z-index: 1;
  width: min(48vw, 690px);
  height: min(48vw, 690px);
  right: -9vw;
  top: 17%;
  opacity: .7;
  transform: perspective(1200px) rotateX(58deg) rotateY(-20deg) rotateZ(-18deg);
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, .3));
}
.hero-signature[data-stage="frame"] .form-shell {
  background: transparent;
  box-shadow: none;
  border-color: rgba(244, 241, 235, .7);
}
.hero-signature[data-stage="frame"] .form-core {
  background: transparent;
  border: 1px dashed rgba(103, 146, 255, .52);
  box-shadow: none;
}
.manifesto { position: relative; overflow: hidden; }
.manifesto-object {
  width: 290px;
  height: 290px;
  right: 8vw;
  top: 35%;
  z-index: 1;
  opacity: .54;
  transform: perspective(900px) rotateX(59deg) rotateY(26deg) rotateZ(18deg);
  filter: drop-shadow(0 22px 38px rgba(23, 23, 22, .22));
}
.manifesto-object[data-stage="vision"] .form-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, .48), rgba(203, 214, 230, .18) 36%, rgba(103, 146, 255, .28));
  border-color: rgba(255, 255, 255, .8);
  box-shadow: 0 24px 50px rgba(23, 23, 22, .2), 0 0 0 1px rgba(255, 255, 255, .28) inset;
}
.manifesto-object[data-stage="vision"] .form-core {
  background: radial-gradient(circle at 34% 22%, rgba(255, 255, 255, .72), rgba(103, 146, 255, .34) 27%, rgba(23, 23, 22, .36) 75%);
}
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 98px;
  padding: 0 5.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: height .72s var(--motion-ease), padding .72s var(--motion-ease), background .55s ease, backdrop-filter .55s ease, box-shadow .55s ease;
  will-change: height, padding, background, backdrop-filter;
}
body.scrolled .site-header {
  height: 72px;
  padding-left: 3.6vw;
  padding-right: 3.6vw;
  background: rgba(23,23,22,.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(244,241,235,.12);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: block; width: 30px; height: 30px; }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-name { font-size: 16px; letter-spacing: -.04em; font-weight: 600; }
.brand-name em { font-family: var(--display); font-weight: 500; letter-spacing: -.03em; }
.desktop-nav { display: flex; gap: clamp(24px, 3vw, 54px); margin-left: 9vw; }
.desktop-nav a, .header-contact, .eyebrow, .location, .section-topline, .project-meta, .scroll-cue, .contact-footer {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.desktop-nav a { opacity: .74; transition: opacity .25s; }
.desktop-nav a:hover { opacity: 1; }
.header-contact {
  border: 1px solid rgba(244,241,235,.65);
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 15px 0 18px;
  transition: background .25s, color .25s;
}
.header-contact:hover { background: var(--white); color: var(--ink); }
.arrow { font-family: var(--sans); font-size: 16px; letter-spacing: 0; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(90deg, transparent calc(20% - 1px), rgba(244,241,235,.28) 20%, transparent calc(20% + 1px)),
    linear-gradient(90deg, transparent calc(40% - 1px), rgba(244,241,235,.22) 40%, transparent calc(40% + 1px)),
    linear-gradient(90deg, transparent calc(60% - 1px), rgba(244,241,235,.22) 60%, transparent calc(60% + 1px)),
    linear-gradient(90deg, transparent calc(80% - 1px), rgba(244,241,235,.28) 80%, transparent calc(80% + 1px));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--motion-ease) .35s;
}
body.is-loaded .hero::before {
  transform: translate3d(0, calc(var(--scroll-progress) * 18px), 0) scaleY(1);
}
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image {
  background-image: url("https://images.unsplash.com/photo-1531058020387-3be344556be6?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.025);
  will-change: transform;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,10,.56) 0%, rgba(10,10,10,.05) 34%, rgba(10,10,10,.22) 57%, rgba(10,10,10,.82) 100%),
    linear-gradient(90deg, rgba(8,8,8,.42), transparent 58%);
  will-change: transform;
}
.hero-content {
  position: relative;
  min-height: 100svh;
  padding: 145px 5.2vw 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  will-change: transform;
}
.hero-kicker { display: flex; justify-content: space-between; align-items: center; color: rgba(244,241,235,.82); transform: translateY(13px); }
.location { color: rgba(244,241,235,.55); }
.hero h1 {
  margin: auto 0;
  max-width: 910px;
  font-size: clamp(70px, 10.6vw, 172px);
  line-height: .83;
  letter-spacing: -.09em;
  font-weight: 500;
}
.hero h1 .hero-line { display: block; height: .86em; overflow: hidden; }
.hero h1 .hero-line > * {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(115%) skewY(5deg);
}
.hero h1 .hero-line > *::selection { background: var(--blue); }
h1 i, h2 i, .display-copy i { font-family: var(--display); font-weight: 500; letter-spacing: -.08em; }
.blue-dot { color: var(--blue); }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; transform: translateY(14px); }
.hero-bottom p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(244,241,235,.73); }
.scroll-cue { display: flex; align-items: center; gap: 13px; color: rgba(244,241,235,.75); }
.scroll-cue { transition: gap .35s var(--motion-ease), color .25s ease; }
.scroll-cue:hover { gap: 20px; color: var(--white); }
.scroll-line { display: block; width: 38px; height: 1px; background: rgba(244,241,235,.65); transform-origin: left center; transition: transform .35s var(--motion-ease); }
.scroll-cue:hover .scroll-line { transform: scaleX(1.35); }
.scroll-arrow { font-family: var(--sans); font-size: 19px; line-height: 10px; }
.hero-stamp {
  position: absolute; right: 5.2vw; top: 45%; color: rgba(244,241,235,.58);
  font-family: var(--display); font-size: 24px; line-height: .72; text-align: center;
  transform: translateY(14px);
}
.hero-stamp span { color: var(--blue); font-family: var(--sans); font-size: 11px; }

.paper-section { background: var(--paper); }
.manifesto { padding: 48px 5.2vw 0; }
.section-topline {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 17px; border-bottom: 1px solid var(--line); opacity: .72;
}
.section-topline span:nth-child(2) { text-align: center; }
.section-topline span:last-child { text-align: right; }
.section-number { color: var(--blue); }
.manifesto-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; padding: 104px 0 120px; }
.display-copy {
  margin: 0; font-size: clamp(54px, 7.5vw, 124px); line-height: .88; letter-spacing: -.09em;
  font-weight: 500;
}
.outline-text { color: transparent; -webkit-text-stroke: 1px rgba(23,23,22,.65); }
.manifesto-side { padding-top: 14px; max-width: 370px; }
.large-body { margin: 0 0 35px; font-size: 22px; line-height: 1.2; letter-spacing: -.045em; }
.small-body { max-width: 320px; margin: 0 0 43px; font-size: 13px; line-height: 1.5; opacity: .66; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-family: var(--mono); text-transform: uppercase; font-size: 10px; letter-spacing: .1em; }
.text-link span { font-family: var(--sans); font-size: 16px; line-height: 8px; }
.dark-link { transition: gap .35s var(--motion-ease); }
.dark-link:hover { gap: 24px; }
.marquee {
  width: calc(100% + 10.4vw);
  margin-left: -5.2vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  opacity: .58;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-track > span {
  display: block;
  flex: 0 0 auto;
  padding-right: 2.5em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.dark-section { background: var(--ink); color: var(--white); }
.work-section { padding: 48px 5.2vw 120px; }
.light-line { border-color: var(--line-light); color: rgba(244,241,235,.68); }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding: 100px 0 68px; }
.section-heading-row h2, .services-heading h2, .studio-copy h2, .contact-content h2 {
  margin: 0; font-weight: 500; font-size: clamp(52px, 7.4vw, 119px); line-height: .84; letter-spacing: -.09em;
}
.work-intro { max-width: 282px; padding-bottom: 4px; }
.work-intro p { margin: 0 0 34px; color: rgba(244,241,235,.65); font-size: 13px; line-height: 1.5; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { padding: 9px 12px; border: 1px solid rgba(244,241,235,.28); background: transparent; border-radius: 40px; color: rgba(244,241,235,.65); cursor: pointer; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .35s var(--motion-ease); }
.filter:hover { transform: translateY(-2px); }
.filter:hover, .filter.active { color: var(--ink); background: var(--white); border-color: var(--white); }
.work-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.project { position: relative; overflow: hidden; min-height: 440px; color: var(--white); }
.project-large { grid-row: span 2; min-height: 720px; }
.project-wide { grid-column: 2; min-height: 350px; }
.project-image, .project-overlay { position: absolute; inset: 0; }
.project-image {
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--card-shift, 0%), 0) scale(var(--image-scale, 1.01));
  will-change: transform;
}
.project-image[data-image-reveal], .studio-image[data-image-reveal] {
  will-change: transform, clip-path;
}
.image-one { background-image: url("https://images.unsplash.com/photo-1549490349-8643362247b5?auto=format&fit=crop&w=1400&q=85"); }
.image-two { background-image: url("https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=1200&q=85"); }
.image-three { background-image: url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1200&q=85"); }
.image-four { background-image: url("https://images.unsplash.com/photo-1531366936337-7c912a4589a7?auto=format&fit=crop&w=1400&q=85"); }
.project-overlay { background: linear-gradient(180deg, rgba(10,10,10,.46), transparent 37%, rgba(10,10,10,.84)); }
.project-overlay { transition: background .9s var(--motion-ease); }
.project:hover .project-overlay { background: linear-gradient(180deg, rgba(10,10,10,.28), transparent 42%, rgba(10,10,10,.9)); }
.project-meta, .project-title { position: absolute; left: 24px; right: 24px; display: flex; justify-content: space-between; }
.project-meta { top: 23px; color: rgba(244,241,235,.72); }
.project-title { bottom: 23px; align-items: flex-end; }
.project-title h3 { margin: 0; font-size: clamp(25px, 3vw, 44px); font-weight: 400; letter-spacing: -.065em; }
.project-title span { font-size: 24px; }
.project.hidden { display: none; }

.stats-section { padding: 48px 5.2vw 112px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 86px;
}
.stat {
  min-height: 178px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.stat-number {
  display: block;
  margin: 0 0 26px;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .78;
  letter-spacing: -.1em;
  font-weight: 500;
}
.stat-number span {
  color: var(--blue);
  font-size: .34em;
  letter-spacing: -.04em;
  vertical-align: top;
}
.stat-label {
  display: block;
  max-width: 140px;
  font: 10px/1.35 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .64;
}

.services-section { padding: 48px 5.2vw 125px; }
.services-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; padding: 100px 0 88px; }
.services-heading p { max-width: 285px; margin: 0 0 7px; font-size: 13px; line-height: 1.5; opacity: .68; }
.service-list { border-top: 1px solid var(--line); }
.service-row { min-height: 100px; display: grid; grid-template-columns: .12fr 1fr .75fr 25px; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .45s var(--motion-ease), background .35s ease; }
.service-row:hover { padding: 0 18px; background: var(--paper-deep); }
.service-index { font-family: var(--mono); font-size: 10px; color: var(--blue); }
.service-row h3 { margin: 0; font-size: clamp(22px, 2.4vw, 35px); font-weight: 500; letter-spacing: -.06em; }
.service-row p { margin: 0; font-size: 12px; opacity: .62; }
.service-arrow { font-size: 21px; text-align: right; transition: transform .35s var(--motion-ease); }
.service-row:hover .service-arrow { transform: translate(3px, -3px); }

.studio-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; }
.studio-image { min-height: 600px; background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.38)), url("https://images.unsplash.com/photo-1520034475321-cbe63696469a?auto=format&fit=crop&w=1600&q=85"); background-size: cover; background-position: center; transform: scale(var(--image-scale, 1)); transform-origin: center; will-change: transform, clip-path; }
.studio-copy { position: relative; padding: 48px 5.2vw 55px; display: flex; flex-direction: column; align-items: flex-start; }
.studio-copy .section-topline { width: 100%; }
.studio-copy h2 { margin: auto 0 52px; }
.studio-copy > p { max-width: 360px; color: rgba(244,241,235,.65); font-size: 14px; line-height: 1.45; margin: 0 0 16px; }
.light-link { color: var(--white); margin-top: 34px; transition: gap .35s var(--motion-ease); }
.light-link:hover { gap: 24px; }
.studio-signature { margin-top: auto; font-family: var(--display); font-size: 29px; font-style: italic; color: var(--blue); }

.team-section {
  position: relative;
  overflow: hidden;
  padding: 48px 5.2vw 42px;
  background:
    radial-gradient(circle at 22% 54%, rgba(103,146,255,.11), transparent 28%),
    linear-gradient(135deg, rgba(244,241,235,.035), transparent 38%),
    #121619;
  isolation: isolate;
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background:
    linear-gradient(90deg, transparent 0 11.9%, rgba(244,241,235,.14) 12%, transparent 12.1%),
    linear-gradient(180deg, transparent 0 74%, rgba(103,146,255,.1) 74.1%, transparent 74.3%);
}
.team-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  padding: 105px 0 68px;
}
.team-heading .eyebrow {
  display: block;
  margin-bottom: 20px;
  color: rgba(244,241,235,.54);
}
.team-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7.4vw, 119px);
  line-height: .86;
  letter-spacing: -.09em;
  font-weight: 500;
}
.team-heading p {
  max-width: 285px;
  margin: 0 0 8px;
  color: rgba(244,241,235,.62);
  font-size: 13px;
  line-height: 1.5;
}
.team-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(275px, .68fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: center;
  min-height: 650px;
  padding: 32px 0 58px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.earth-stage {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  isolation: isolate;
}
.earth-aura {
  position: absolute;
  inset: 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,146,255,.23), rgba(103,146,255,.05) 46%, transparent 70%);
  filter: blur(26px);
  opacity: .8;
  transform: scale(1.04);
}
.earth-canvas,
.earth-markers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.earth-canvas {
  display: block;
  overflow: visible;
}
.earth-markers {
  pointer-events: none;
}
.earth-marker {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, filter .3s ease;
}
.earth-marker::before,
.earth-marker::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(103,146,255,.88);
}
.earth-marker::after {
  inset: 3px;
  border: 1px solid rgba(103,146,255,.62);
  background: transparent;
  box-shadow: none;
  animation: markerPulse 2.6s ease-in-out infinite;
}
.earth-marker-label {
  position: absolute;
  left: 19px;
  top: -3px;
  padding: 5px 7px;
  border: 1px solid rgba(244,241,235,.24);
  background: rgba(18,22,25,.82);
  color: rgba(244,241,235,.88);
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-4px);
  transition: opacity .3s ease, transform .3s var(--motion-ease);
}
.earth-marker:hover,
.earth-marker:focus-visible,
.earth-marker.is-active {
  z-index: 5;
  filter: brightness(1.25);
}
.earth-marker:hover .earth-marker-label,
.earth-marker:focus-visible .earth-marker-label,
.earth-marker.is-active .earth-marker-label {
  opacity: 1;
  transform: translateX(0);
}
.earth-marker:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 3px;
}
@keyframes markerPulse {
  0%, 100% { transform: scale(.74); opacity: .42; }
  50% { transform: scale(1.55); opacity: .08; }
}
.earth-stage-meta {
  position: absolute;
  right: 5%;
  bottom: 3%;
  left: 5%;
  display: flex;
  justify-content: space-between;
  color: rgba(244,241,235,.43);
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 475px;
  padding: 20px 0 0;
}
.team-panel-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244,241,235,.54);
  font: 9px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.team-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244,241,235,.42);
}
.team-panel-status i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 9px var(--blue);
}
.team-panel-body {
  padding: 54px 0 42px;
}
.team-panel-country {
  display: block;
  margin-bottom: 17px;
  color: var(--blue);
  font: 10px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.team-panel h3 {
  margin: 0 0 25px;
  font-size: clamp(35px, 4.2vw, 64px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 500;
}
.team-panel-body p {
  max-width: 290px;
  margin: 0;
  color: rgba(244,241,235,.6);
  font-size: 13px;
  line-height: 1.5;
}
.team-panel-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 45px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.team-panel-stat strong {
  color: var(--white);
  font-size: 48px;
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 500;
}
.team-panel-stat span {
  color: rgba(244,241,235,.44);
  font: 9px var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.team-members {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}
.team-members li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244,241,235,.12);
  color: rgba(244,241,235,.66);
  font: 10px var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.team-members li span:first-child { color: var(--blue); }
.team-footnote {
  margin: 20px 0 0;
  color: rgba(244,241,235,.38);
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-section { padding: 48px 5.2vw 34px; background: var(--paper-deep); min-height: 720px; display: flex; flex-direction: column; }
.contact-content { display: flex; justify-content: space-between; align-items: center; flex: 1; padding: 75px 8vw 90px 0; }
.contact-content h2 { line-height: .98; padding-bottom: .08em; }
.contact-circle { width: 155px; height: 155px; flex: 0 0 155px; border-radius: 50%; background: var(--blue); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--mono); font-size: 10px; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; transition: transform .55s var(--motion-ease), background .35s ease; will-change: transform; }
.contact-circle strong { margin-top: 17px; font: 22px var(--sans); }
.contact-circle:hover { transform: rotate(-9deg) scale(1.05); background: var(--white); }
.contact-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); padding-top: 17px; opacity: .72; }
.contact-footer span:nth-child(2) { text-align: center; }
.contact-footer span:last-child { text-align: right; }

.reveal, [data-reveal] { opacity: 0; transform: translate3d(0, 26px, 0); will-change: opacity, transform; }
.section-topline[data-reveal] { transform: translateY(14px); }
.display-copy, .section-heading-row h2, .services-heading h2, .studio-copy h2, .contact-content h2 { will-change: clip-path, opacity, transform; }
.reveal.visible:not(.project) { opacity: 1; transform: none; }
.reveal.visible:not(.project), [data-reveal].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 800px) {
  .site-header { height: 76px; padding: 0 6vw; }
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 46px; height: 46px; padding: 0 9px; border: 1px solid rgba(244,241,235,.5); background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; height: 1px; background: var(--white); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { display: block; visibility: hidden; pointer-events: none; position: fixed; z-index: 25; inset: 0; background: var(--ink); color: var(--white); transform: translateY(-100%); transition: transform .55s cubic-bezier(.8,0,.2,1), visibility 0s linear .55s; }
  .mobile-menu.open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .mobile-menu-inner { height: 100%; padding: 116px 8vw 50px; display: flex; flex-direction: column; }
  .mobile-menu nav { margin: auto 0; display: flex; flex-direction: column; }
  .mobile-menu nav a { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line-light); font-size: 39px; letter-spacing: -.07em; }
  .mobile-menu small { align-self: flex-start; margin-top: 6px; color: var(--blue); font: 10px var(--mono); letter-spacing: .1em; }
  .mobile-email { font: 12px var(--mono); letter-spacing: .04em; display: flex; justify-content: space-between; }
  .hero-content { padding: 120px 6vw 30px; }
  .hero-kicker { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero h1 { margin-top: auto; margin-bottom: 75px; font-size: clamp(62px, 17vw, 125px); }
  .hero-bottom { display: block; }
  .hero-bottom p { font-size: 12px; }
  .scroll-cue { margin-top: 30px; }
  .hero-stamp { display: none; }
  .manifesto, .work-section, .services-section, .contact-section { padding-left: 6vw; padding-right: 6vw; }
  .marquee { width: calc(100% + 12vw); margin-left: -6vw; }
  .stats-section { padding-left: 6vw; padding-right: 6vw; padding-bottom: 86px; }
  .section-topline { font-size: 9px; }
  .section-topline span:nth-child(2) { text-align: left; }
  .section-topline span:last-child { text-align: right; }
  .manifesto-grid { display: block; padding: 70px 0 80px; }
  .display-copy { font-size: clamp(53px, 15vw, 95px); }
  .manifesto-side { padding-top: 65px; }
  .large-body { font-size: 20px; }
  .section-heading-row, .services-heading { display: block; padding: 70px 0 52px; }
  .section-heading-row h2, .services-heading h2 { font-size: clamp(56px, 16vw, 100px); }
  .section-heading-row {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 0;
  }
  .section-heading-row h2 {
    max-width: 9ch;
    line-height: .96;
    padding: 0 .08em .14em 0;
  }
  .work-intro {
    position: relative;
    z-index: 2;
    padding-top: 38px;
    max-width: 100%;
  }
  .work-intro p { max-width: 290px; }
  .work-grid { display: block; }
  .project, .project-large, .project-wide { min-height: 440px; margin-bottom: 16px; }
  .project-wide { margin-bottom: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 64px; }
  .stat { min-height: 148px; }
  .stat-number { margin-bottom: 20px; font-size: clamp(55px, 17vw, 90px); }
  .services-heading p { padding-top: 40px; max-width: 300px; }
  .service-list {
    align-items: center;
    gap: 14px;
    border-top: 0;
  }
  .service-row {
    width: min(100%, 348px);
    min-height: 110px;
    margin-inline: auto;
    grid-template-columns: 32px 1fr 18px;
    gap: 11px;
    border: 1px solid rgba(23, 23, 22, .1);
    border-radius: var(--surface-radius);
    background: rgba(244, 241, 235, .42);
    box-shadow: var(--surface-shadow);
  }
  .service-row p { grid-column: 2; grid-row: 2; margin-top: -24px; font-size: 11px; }
  .service-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .studio-section { display: flex; flex-direction: column; }
  .studio-image { min-height: 500px; }
  .studio-copy { min-height: 650px; padding: 42px 6vw; }
  .studio-copy h2 { margin: auto 0 42px; font-size: clamp(54px, 15vw, 96px); }
  .contact-section { min-height: 650px; }
  .contact-content {
    display: block;
    padding: 75px 0 75px;
  }
  .contact-content h2 {
    max-width: 8ch;
    font-size: clamp(57px, 16vw, 100px);
    line-height: .98;
    padding: 0 .1em .18em 0;
  }
  .contact-circle { margin: 56px 0 0 auto; }
  .contact-footer { grid-template-columns: 1fr 1fr; gap: 16px 10px; font-size: 8px; }
  .contact-footer span:nth-child(2) { text-align: right; }
  .contact-footer span:last-child { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 420px) {
  .location { font-size: 8px; }
  .project, .project-large, .project-wide { min-height: 370px; }
  .stats-grid { gap: 12px; }
  .stat { min-height: 132px; }
  .stat-label { font-size: 8px; }
  .service-row {
    width: min(100%, 332px);
  }
  .service-row h3 { font-size: 22px; }
  .service-row p { font-size: 10px; }
}

/* Dimensional studio pass: lightweight CSS depth layered over the original motion system. */
:root {
  --paper-glow: rgba(255, 255, 255, .58);
  --depth-ink: #101214;
  --chrome: linear-gradient(118deg, rgba(255,255,255,.72), rgba(177,188,205,.2) 34%, rgba(255,255,255,.07) 51%, rgba(83,101,128,.28) 78%, rgba(255,255,255,.48));
}

.hero {
  isolation: isolate;
}
.hero-image {
  filter: saturate(.74) contrast(1.08);
}
.hero-overlay {
  background:
    radial-gradient(circle at 76% 48%, rgba(103,146,255,.16), transparent 24%),
    linear-gradient(180deg, rgba(10,10,10,.56) 0%, rgba(10,10,10,.05) 34%, rgba(10,10,10,.22) 57%, rgba(10,10,10,.82) 100%),
    linear-gradient(90deg, rgba(8,8,8,.42), transparent 58%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(244,241,235,.12);
  opacity: .68;
  transform: perspective(800px) rotateX(1deg) rotateY(-2deg);
  box-shadow: 0 0 0 1px rgba(103,146,255,.06) inset, 0 0 90px rgba(103,146,255,.08);
}

.paper-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.62), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 32%),
    var(--paper);
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(23,23,22,.08) 66.1%, transparent 66.3%),
    linear-gradient(180deg, transparent 0 24%, rgba(23,23,22,.07) 24.1%, transparent 24.25%);
}
.manifesto::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -18vw;
  top: 24%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(103,146,255,.14), transparent 63%);
  filter: blur(12px);
}
.manifesto-object {
  width: min(31vw, 390px);
  height: min(31vw, 390px);
}
.manifesto-object::before {
  content: "";
  position: absolute;
  inset: -11%;
  border: 1px solid rgba(23,23,22,.14);
  border-radius: 50%;
  transform: translateZ(-22px) rotate(24deg);
}

.process-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 0 44px;
  perspective: 1100px;
}
.process-stage {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 17px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--surface-radius);
  background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.08));
  box-shadow: var(--surface-shadow);
  transform: rotateX(3deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .6s var(--motion-ease), box-shadow .6s var(--motion-ease);
}
.process-stage:hover {
  transform: translateY(-7px) rotateX(1deg) rotateY(-2deg) translateZ(16px);
  box-shadow: 0 28px 72px rgba(8,10,14,.22), 0 2px 0 rgba(255,255,255,.42) inset;
}
.process-stage::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -42px;
  bottom: -72px;
  border: 1px solid rgba(103,146,255,.34);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(18deg);
  opacity: .7;
}
.process-stage-index {
  color: var(--blue);
  font: 10px var(--mono);
  letter-spacing: .1em;
}
.process-stage strong {
  align-self: end;
  position: relative;
  z-index: 1;
  font-size: clamp(21px, 2.1vw, 31px);
  letter-spacing: -.07em;
  font-weight: 500;
}
.process-stage > span:last-child {
  grid-column: 1 / -1;
  color: rgba(23,23,22,.58);
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stage-art {
  position: absolute;
  top: 44px;
  right: 28px;
  width: 90px;
  height: 75px;
  border: 1px solid rgba(23,23,22,.32);
  transform: rotateX(62deg) rotateZ(-22deg);
  transform-style: preserve-3d;
  opacity: .72;
}
.stage-art::before, .stage-art::after, .stage-art > span {
  content: "";
  position: absolute;
  inset: 10px 17px;
  border: 1px solid currentColor;
  border-radius: 46% 54% 42% 58%;
  transform: translateZ(12px) rotate(18deg);
}
.stage-art::after {
  inset: 20px 28px;
  transform: translateZ(22px) rotate(-16deg);
  border-color: var(--blue);
}
.stage-art > span { inset: 4px 8px; transform: translateZ(-9px) rotate(34deg); opacity: .55; }
.process-stage--frame .stage-art { color: rgba(23,23,22,.58); border-style: dashed; }
.process-stage--frame .stage-art > span { border-style: dashed; }
.process-stage--vision .stage-art {
  color: rgba(244,241,235,.88);
  border-color: rgba(103,146,255,.52);
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(103,146,255,.22));
  box-shadow: 0 15px 24px rgba(23,23,22,.16), 0 1px 0 rgba(255,255,255,.8) inset;
}
.process-stage--vision .stage-art::before { background: var(--chrome); }
.process-stage--motion .stage-art {
  color: rgba(23,23,22,.58);
  border-color: var(--blue);
  transform: rotateX(62deg) rotateZ(24deg) skewX(-12deg);
}
.process-stage--motion .stage-art::after { box-shadow: 24px -11px 0 -1px rgba(103,146,255,.32); }

.work-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 22%, rgba(103,146,255,.13), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.025), transparent 32%),
    var(--ink);
  isolation: isolate;
}
.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .2;
  background: linear-gradient(90deg, transparent 0 12%, rgba(244,241,235,.18) 12.05%, transparent 12.1%, transparent 88%, rgba(244,241,235,.12) 88.05%, transparent 88.1%);
}
.project {
  border: 1px solid rgba(244,241,235,.2);
  border-radius: var(--surface-radius);
  background: var(--depth-ink);
  box-shadow: var(--surface-shadow-dark);
  transform: perspective(1100px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .7s var(--motion-ease), box-shadow .7s var(--motion-ease), border-color .5s ease;
}
.project:hover {
  border-color: rgba(103,146,255,.56);
  transform: perspective(1100px) translateY(-9px) rotateX(1.4deg) rotateY(-1.4deg) translateZ(18px);
  box-shadow: 0 38px 90px rgba(0,0,0,.5), 0 2px 0 rgba(244,241,235,.2) inset;
}
.project::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border-radius: calc(var(--surface-radius) - 1px);
  background: linear-gradient(118deg, rgba(255,255,255,.18), transparent 22%, transparent 72%, rgba(103,146,255,.16));
  mix-blend-mode: screen;
}
.project-image { filter: saturate(.82) contrast(1.05); }
.project-meta, .project-title { z-index: 2; }

.stats-grid {
  perspective: 1000px;
}
.stat {
  position: relative;
  min-height: 222px;
  padding: 24px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--surface-radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(103,146,255,.14), transparent 26%),
    linear-gradient(140deg, rgba(255,255,255,.58), rgba(255,255,255,.08));
  box-shadow: var(--surface-shadow);
  transform: rotateX(2deg);
  transition: transform .6s var(--motion-ease), box-shadow .6s var(--motion-ease);
}
.stat::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(103,146,255,.3);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-22deg);
}
.stat:hover {
  transform: translateY(-7px) rotateX(0) rotateY(-2deg);
  box-shadow: 0 30px 72px rgba(8,10,14,.2), 0 2px 0 rgba(255,255,255,.42) inset;
}

.services-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 11.9%, rgba(23,23,22,.08) 12%, transparent 12.1%),
    var(--paper);
}
.service-list {
  border-top: 0;
  perspective: 1100px;
}
.service-row {
  position: relative;
  margin: 12px 0;
  padding: 0 20px;
  border: 1px solid rgba(23,23,22,.16);
  border-radius: var(--surface-radius);
  background: linear-gradient(110deg, rgba(255,255,255,.62), rgba(255,255,255,.12));
  box-shadow: 0 14px 38px rgba(23,23,22,.1), 0 1px 0 rgba(255,255,255,.65) inset;
  transform: rotateX(2deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .55s var(--motion-ease), box-shadow .55s var(--motion-ease), background .35s ease;
}
.service-row:nth-child(2) { transform: translateX(2.2vw) rotateX(2deg) translateZ(4px); }
.service-row:nth-child(3) { transform: translateX(1vw) rotateX(2deg) translateZ(8px); }
.service-row:hover {
  background: linear-gradient(110deg, rgba(255,255,255,.82), rgba(103,146,255,.1));
  transform: translateX(2.4vw) translateY(-7px) rotateX(0) rotateY(-1deg) translateZ(18px);
  box-shadow: 0 28px 62px rgba(23,23,22,.2), 0 1px 0 rgba(255,255,255,.72) inset;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(103,146,255,.18), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.2), transparent 30%),
    var(--paper-deep);
  isolation: isolate;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 12% 5.2vw 15%;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(23,23,22,.12);
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

@media (max-width: 800px) {
  .hero::after { inset: 7% 6%; }
  .manifesto-object { width: 250px; height: 250px; right: -44px; top: 42%; opacity: .36; }
  .process-rail { grid-template-columns: 1fr; gap: 10px; padding-bottom: 28px; }
  .process-stage { min-height: 148px; }
  .stage-art { right: 24px; }
  .project, .project:hover { transform: none; }
  .project::before { opacity: .62; }
  .stat { min-height: 178px; padding: 18px 15px 16px; transform: none; }
  .stat:hover { transform: translateY(-4px); }
  .service-row, .service-row:nth-child(2), .service-row:nth-child(3), .service-row:hover {
    transform: none;
  }
  .service-row { padding: 0 13px; }
  .contact-section::before { inset: 11% 6vw 13%; }
}

@media (prefers-reduced-motion: reduce) {
  .process-stage, .stat, .service-row, .project { transform: none !important; }
}

/* Work section refinement: compact editorial mosaic, less dashboard-like surface treatment. */
.work-section {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(244,241,235,.08) 12.05%, transparent 12.1%),
    #131516;
}
.work-section::before {
  opacity: .13;
}
.section-heading-row {
  padding-top: 78px;
  padding-bottom: 48px;
}
.work-grid {
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: minmax(218px, auto) minmax(218px, auto) minmax(190px, auto);
  gap: 16px;
  align-items: stretch;
}
.project {
  min-height: 0;
  border-radius: 4px;
  border-color: rgba(244,241,235,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.28), 0 1px 0 rgba(244,241,235,.14) inset;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  --card-lift: 0px;
  --card-depth: 0px;
  --project-reveal-y: 0px;
  --project-filter-y: 0px;
  --card-glow-x: 50%;
  --card-glow-y: 50%;
  transform: perspective(1100px) translateY(var(--project-reveal-y)) translateY(var(--project-filter-y)) translateY(var(--card-lift)) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y)) translateZ(var(--card-depth));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s var(--motion-ease), border-color .35s ease, box-shadow .55s var(--motion-ease);
}
.project-large {
  grid-row: span 2;
  min-height: 452px;
}
.project-small {
  min-height: 218px;
}
.project-wide {
  grid-column: 1 / -1;
  min-height: 190px;
}
.project:hover {
  border-color: rgba(103,146,255,.48);
  --card-lift: -5px;
  --card-depth: 8px;
  box-shadow: 0 26px 60px rgba(0,0,0,.38), 0 1px 0 rgba(244,241,235,.2) inset;
}
.project::before {
  border-radius: 3px;
  background:
    radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(255,255,255,.2), transparent 22%),
    linear-gradient(118deg, rgba(255,255,255,.13), transparent 26%, transparent 76%, rgba(103,146,255,.1));
  opacity: .72;
  transition: opacity .35s ease;
}

.project.is-tilting::before {
  opacity: 1;
}
.project-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,.28), transparent 42%, rgba(10,10,10,.72));
}
.project:hover .project-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,.18), transparent 46%, rgba(10,10,10,.78));
}
.project-meta,
.project-title {
  left: 18px;
  right: 18px;
}
.project-meta {
  top: 17px;
  font-size: 9px;
}
.project-title {
  bottom: 17px;
}
.project-title h3 {
  font-size: clamp(22px, 2.4vw, 36px);
}
.project-title span {
  font-size: 20px;
}

@media (max-width: 800px) {
  .project,
  .project:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project,
  .project:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* Meet The Team editorial refinement: reference-led, globe-preserving treatment. */
.team-section {
  padding-top: 34px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 13% 58%, rgba(103,146,255,.08), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(244,241,235,.035), transparent 26%),
    #111313;
}

.team-section::before {
  opacity: .22;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(244,241,235,.12) 12.05%, transparent 12.1%),
    linear-gradient(180deg, transparent 0 72%, rgba(244,241,235,.08) 72.1%, transparent 72.25%);
}

.team-section > .section-topline {
  color: rgba(244,241,235,.56);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(220px, .5fr);
  align-items: end;
  gap: 7vw;
  padding: 92px 0 58px;
}

.team-heading .eyebrow {
  margin-bottom: 22px;
  color: rgba(244,241,235,.44);
}

.team-heading h2 {
  max-width: 760px;
  font-size: clamp(58px, 8.4vw, 132px);
  line-height: .82;
  letter-spacing: -.095em;
}

.team-heading h2 i {
  color: rgba(244,241,235,.92);
}

.team-heading p {
  max-width: 250px;
  margin: 0 0 4px;
  color: rgba(244,241,235,.56);
  font-size: 12px;
  line-height: 1.55;
}

.team-experience {
  grid-template-columns: minmax(0, 1.38fr) minmax(250px, .62fr);
  gap: clamp(28px, 6vw, 96px);
  min-height: 610px;
  padding: 26px 0 48px;
  border-top-color: rgba(244,241,235,.22);
  border-bottom-color: rgba(244,241,235,.16);
}

.earth-stage {
  width: min(100%, 690px);
  justify-self: start;
  background:
    radial-gradient(circle at 50% 48%, rgba(103,146,255,.055), transparent 37%),
    radial-gradient(circle at 50% 50%, transparent 49%, rgba(244,241,235,.045) 49.2%, transparent 49.6%);
}

.earth-aura {
  inset: 7%;
  background:
    radial-gradient(circle, rgba(103,146,255,.18), rgba(103,146,255,.035) 48%, transparent 72%);
  filter: blur(30px);
  opacity: .72;
}

.earth-marker::before {
  background: #b5c8ff;
  box-shadow: 0 0 9px rgba(181,200,255,.9);
}

.earth-marker::after {
  border-color: rgba(181,200,255,.58);
}

.earth-marker-label {
  left: 21px;
  padding: 4px 6px;
  border-color: rgba(244,241,235,.2);
  background: rgba(17,19,19,.88);
  color: rgba(244,241,235,.82);
  font-size: 8px;
  letter-spacing: .11em;
}

.earth-stage-meta {
  color: rgba(244,241,235,.34);
}

.team-panel {
  min-height: 430px;
  padding-top: 18px;
  border-left: 1px solid rgba(244,241,235,.14);
  padding-left: clamp(22px, 3vw, 46px);
}

.team-panel-topline {
  padding-bottom: 15px;
  border-bottom-color: rgba(244,241,235,.2);
  color: rgba(244,241,235,.45);
}

.team-panel-body {
  padding: 58px 0 40px;
}

.team-panel-country {
  margin-bottom: 21px;
  color: #9db5ff;
  font-size: 9px;
  letter-spacing: .15em;
}

.team-panel h3 {
  margin-bottom: 26px;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: .84;
}

.team-panel-body p {
  max-width: 260px;
  color: rgba(244,241,235,.55);
  font-size: 12px;
  line-height: 1.55;
}

.team-panel-stat {
  margin-top: 42px;
  padding-top: 15px;
  border-top-color: rgba(244,241,235,.18);
}

.team-panel-stat strong {
  font-size: 44px;
  font-weight: 500;
}

.team-members {
  border-top-color: rgba(244,241,235,.2);
}

.team-members li {
  padding: 12px 0;
  border-bottom-color: rgba(244,241,235,.1);
  color: rgba(244,241,235,.58);
  font-size: 9px;
  letter-spacing: .08em;
}

.team-footnote {
  margin-top: 17px;
  color: rgba(244,241,235,.3);
}

@media (max-width: 800px) {
  .team-heading {
    display: block;
    padding: 70px 0 46px;
  }

  .team-heading h2 {
    font-size: clamp(54px, 15vw, 96px);
  }

  .team-heading p {
    max-width: 290px;
    margin-top: 42px;
  }

  .team-experience {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 0;
    padding: 24px 0 42px;
  }

  .earth-stage {
    width: 100%;
    max-width: 620px;
    align-self: center;
  }

  .team-panel {
    width: 100%;
    min-height: 0;
    padding: 25px 0 0;
    border-top: 1px solid rgba(244,241,235,.14);
    border-left: 0;
  }

  .team-panel-body {
    padding: 36px 0 30px;
  }
}

@media (max-width: 800px) {
  .section-heading-row {
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .work-grid {
    grid-template-rows: none;
    gap: 12px;
  }
  .project,
  .project-large,
  .project-small,
  .project-wide {
    min-height: 0;
    aspect-ratio: 1.32 / 1;
    margin-bottom: 0;
  }
  .project-wide {
    aspect-ratio: 1.9 / 1;
  }
}

@media (max-width: 420px) {
  .project,
  .project-large,
  .project-small,
  .project-wide {
    aspect-ratio: 1.18 / 1;
  }
  .project-wide {
    aspect-ratio: 1.55 / 1;
  }
}

/* Heading and production-readiness fixes. */
.hero h1 {
  line-height: .9;
}
.hero h1 .hero-line {
  height: 1em;
  line-height: .9;
  padding-bottom: .06em;
}
h1 i,
h2 i,
.display-copy i {
  line-height: .95;
}
.display-copy,
.section-heading-row h2,
.services-heading h2,
.studio-copy h2,
.contact-content h2 {
  line-height: .91;
}
.display-copy {
  padding-bottom: .04em;
}
.stat-number {
  line-height: .88;
}
:where(a, button):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 420px) {
  .location,
  .stat-label,
  .contact-footer {
    font-size: 9px;
  }
}

@media (max-width: 800px) {
  .section-topline {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 10px;
  }
  .section-topline span:nth-child(2) {
    text-align: left;
  }
  .service-row {
    min-height: 110px;
    grid-template-rows: auto auto;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    transform: none !important;
  }
  .service-row h3 {
    align-self: end;
  }
  .service-row p {
    align-self: start;
    margin-top: 0;
    line-height: 1.35;
  }
  .mobile-email,
  .contact-footer a {
    overflow-wrap: anywhere;
  }
}

/* Final responsive guardrails: keep type, surfaces, and decorative depth from competing for space. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.manifesto-grid > *,
.section-heading-row > *,
.services-heading > *,
.studio-copy,
.contact-content > *,
.service-row > * {
  min-width: 0;
}

.display-copy,
.section-heading-row h2,
.services-heading h2,
.studio-copy h2,
.contact-content h2,
.service-row h3,
.project-title h3 {
  text-wrap: balance;
}

.section-topline span,
.service-row p,
.work-intro p,
.services-heading p,
.studio-copy > p {
  overflow-wrap: break-word;
}

.project-meta,
.project-title {
  gap: 12px;
  flex-wrap: wrap;
}

.project-title h3 {
  max-width: calc(100% - 36px);
}

@media (min-width: 801px) and (max-width: 1100px) {
  .site-header,
  .hero-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .desktop-nav {
    gap: 24px;
    margin-left: 4vw;
  }
  .hero-content {
    padding-top: 126px;
    padding-bottom: 34px;
  }
  .hero h1 {
    max-width: 760px;
    font-size: clamp(66px, 10vw, 124px);
  }
  .manifesto,
  .work-section,
  .stats-section,
  .services-section,
  .contact-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .manifesto-grid {
    gap: 4vw;
  }
  .display-copy {
    font-size: clamp(48px, 7vw, 82px);
  }
  .large-body {
    font-size: 19px;
  }
  .section-heading-row h2,
  .services-heading h2,
  .studio-copy h2 {
    font-size: clamp(50px, 7vw, 86px);
  }
  .section-heading-row,
  .services-heading {
    gap: 28px;
  }
  .work-grid {
    gap: 13px;
  }
  .project-large {
    min-height: 414px;
  }
  .project-small {
    min-height: 200px;
  }
  .project-wide {
    min-height: 176px;
  }
  .stats-grid {
    gap: 14px;
  }
  .stat {
    min-height: 190px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .stat-number {
    font-size: clamp(52px, 7vw, 92px);
  }
  .service-row {
    grid-template-columns: 42px 1fr 1fr 22px;
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .studio-copy {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .contact-content {
    padding-right: 3vw;
  }
  .contact-circle {
    width: 132px;
    height: 132px;
    flex-basis: 132px;
  }
}

@media (max-width: 800px) {
  .mobile-menu-inner {
    overflow-y: auto;
  }
  .hero h1 {
    max-width: 100%;
    text-wrap: balance;
  }
  .hero-bottom p {
    max-width: 30ch;
    text-wrap: balance;
  }
  .manifesto-object {
    width: 180px;
    height: 180px;
    right: -94px;
    top: 62%;
    opacity: .18;
  }
  .process-stage {
    min-width: 0;
  }
  .project-meta {
    align-items: flex-start;
  }
  .project-title {
    align-items: flex-end;
    flex-wrap: nowrap;
  }
  .project-title h3 {
    min-width: 0;
    overflow-wrap: break-word;
  }
  .stat-number {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 104px;
    padding-bottom: 24px;
  }
  .hero h1 {
    margin-bottom: 52px;
    font-size: clamp(48px, 16vw, 82px);
    letter-spacing: -.1em;
  }
  .hero h1 .hero-line {
    padding-bottom: .1em;
  }
  .hero-signature {
    width: min(62vw, 260px);
    height: min(62vw, 260px);
    right: -25vw;
    top: 28%;
    opacity: .4;
  }
  .section-topline {
    column-gap: 7px;
    letter-spacing: .07em;
  }
  .manifesto-grid {
    padding-top: 58px;
    padding-bottom: 68px;
  }
  .display-copy {
    font-size: clamp(43px, 14.4vw, 70px);
    letter-spacing: -.1em;
  }
  .manifesto-side {
    padding-top: 54px;
  }
  .large-body {
    font-size: 18px;
  }
  .section-heading-row,
  .services-heading {
    padding-top: 58px;
    padding-bottom: 42px;
  }
  .section-heading-row h2 {
    max-width: 8.4ch;
  }
  .section-heading-row h2,
  .services-heading h2,
  .studio-copy h2,
  .contact-content h2 {
    font-size: clamp(46px, 14.5vw, 76px);
    letter-spacing: -.1em;
  }
  .work-intro {
    padding-top: 32px;
  }
  .filters {
    gap: 6px;
  }
  .filter {
    padding: 8px 10px;
  }
  .project-meta,
  .project-title {
    left: 14px;
    right: 14px;
  }
  .project-meta {
    top: 14px;
    font-size: 8px;
  }
  .project-title {
    bottom: 14px;
  }
  .project-title h3 {
    font-size: clamp(20px, 6.6vw, 28px);
  }
  .project-title span {
    font-size: 18px;
  }
  .stats-grid {
    gap: 10px;
  }
  .stat {
    min-height: 126px;
    padding: 15px 12px 13px;
  }
  .stat-number {
    margin-bottom: 15px;
    font-size: clamp(38px, 14vw, 62px);
  }
  .stat-label {
    max-width: 18ch;
    font-size: 8px;
  }
  .services-heading p {
    padding-top: 30px;
  }
  .service-row {
    min-height: 104px;
    grid-template-columns: 26px minmax(0, 1fr) 16px;
    gap: 8px;
    padding: 14px 10px;
  }
  .service-row h3 {
    font-size: clamp(19px, 6vw, 24px);
  }
  .service-row p {
    font-size: 10px;
    line-height: 1.3;
  }
  .service-index {
    font-size: 8px;
  }
  .studio-image {
    min-height: 390px;
  }
  .studio-copy {
    min-height: 610px;
    padding-top: 36px;
    padding-bottom: 38px;
  }
  .studio-copy h2 {
    margin-bottom: 34px;
  }
  .studio-copy > p {
    font-size: 13px;
  }
  .contact-section {
    min-height: 620px;
  }
  .contact-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .contact-circle {
    width: 126px;
    height: 126px;
    flex-basis: 126px;
    margin-top: 42px;
  }
  .contact-footer {
    column-gap: 8px;
    font-size: 8px;
    letter-spacing: .06em;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .brand-name {
    font-size: 14px;
  }
  .hero-content,
  .manifesto,
  .work-section,
  .stats-section,
  .services-section,
  .contact-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .hero h1 {
    font-size: clamp(44px, 15.2vw, 66px);
  }
  .hero-bottom p {
    font-size: 11px;
  }
  .section-topline {
    font-size: 8px;
  }
  .display-copy {
    font-size: clamp(40px, 13.6vw, 60px);
  }
  .project,
  .project-large,
  .project-small,
  .project-wide {
    aspect-ratio: 1.08 / 1;
  }
  .project-wide {
    aspect-ratio: 1.38 / 1;
  }
  .stat {
    padding-left: 10px;
    padding-right: 10px;
  }
  .stat-number {
    font-size: clamp(35px, 13.5vw, 54px);
  }
  .service-row p {
    font-size: 9px;
  }
}

@media (max-width: 800px) and (max-height: 680px) {
  .hero-content {
    padding-top: 92px;
    padding-bottom: 18px;
  }
  .hero h1 {
    margin-bottom: 30px;
  }
  .scroll-cue {
    margin-top: 17px;
  }
  .mobile-menu-inner {
    padding-top: 92px;
    padding-bottom: 28px;
  }
  .mobile-menu nav a {
    padding: 12px 0;
    font-size: clamp(28px, 8vw, 38px);
  }
}
