:root {
  --ink: #121513;
  --ink-soft: #202522;
  --paper: #eeeae1;
  --paper-deep: #ded8ca;
  --muted: #687069;
  --muted-strong: #4f5750;
  --line: rgba(18, 21, 19, 0.16);
  --line-light: rgba(238, 234, 225, 0.22);
  --red: #b34732;
  --red-deep: #913623;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body:has(.site-header.is-scrolled) { background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img, video { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 16px clamp(20px, 4.2vw, 72px);
  color: var(--paper);
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; width: max-content; align-items: center; }
.brand img { width: 152px; height: 70px; object-fit: contain; object-position: left center; }
.site-header.is-scrolled .brand img { filter: invert(1); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav a[aria-current="page"] { opacity: 1; }
.desktop-nav a, .nav-cta { opacity: 0.88; transition: opacity 180ms ease, transform 180ms ease; }
.desktop-nav a:hover, .nav-cta:hover { opacity: 1; transform: translateY(-1px); }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; height: auto; margin: 0; overflow: hidden; background: #1c211f; }
.hero-video, .hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: none; }
.hero-video {
  filter: none;
  will-change: auto;
  backface-visibility: hidden;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 10, 0.28) 0%, rgba(8, 12, 10, 0.12) 38%, rgba(8, 12, 10, 0.62) 100%),
    linear-gradient(90deg, rgba(8, 12, 10, 0.42) 0%, transparent 58%);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; padding: 0 clamp(24px, 6vw, 88px) 92px; }
.kicker, .section-label {
  margin: 0 0 24px;
  color: currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero h1, .display { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; text-wrap: balance; }
.hero h1 { max-width: 15ch; font-size: clamp(2.45rem, 4.8vw, 4.8rem); }
.hero-lede { max-width: 35ch; margin: 34px 0 0; color: rgba(238, 234, 225, 0.92); font-size: clamp(1.0625rem, 1.35vw, 1.25rem); font-weight: 450; line-height: 1.55; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 50px; padding: 13px 18px; border: 1px solid transparent; transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.98); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { background: #fffdf8; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 12px; width: max-content; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; letter-spacing: 0.03em; }
.text-link span, .nav-cta span, .application-row b, .footer-bottom a span { transition: transform 180ms var(--ease-out); }
.text-link:hover span, .nav-cta:hover span, .application-row:hover b, .footer-bottom a:hover span { transform: translate(3px, -3px); }
.text-link-light { color: var(--paper); }
.hero-media figcaption { display: none; }
.hero-media-controls {
  position: absolute;
  right: clamp(24px, 4.2vw, 72px);
  top: 96px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}
.media-toggle,
.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(238, 234, 225, 0.65);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.media-toggle-icon,
.sound-toggle-icon { font-size: 17px; line-height: 0.7; }
.media-toggle:focus-visible,
.sound-toggle:focus-visible { outline: 2px solid var(--paper); outline-offset: 5px; }
.hero-footer { position: absolute; right: clamp(24px, 4.2vw, 72px); bottom: 38px; left: clamp(24px, 8vw, 140px); z-index: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; color: rgba(238, 234, 225, 0.68); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-line { height: 1px; background: rgba(238, 234, 225, 0.4); }

.section-light { color: var(--ink); background: var(--paper); }
.section-dark { color: var(--paper); background: var(--ink); }
.section-ink { color: var(--paper); background: var(--ink-soft); }
.section-red { color: var(--paper); background: var(--red); }
.section-frame { width: min(100%, 1500px); margin: 0 auto; padding: clamp(72px, 10vw, 140px) clamp(24px, 7vw, 120px); }
.display { font-size: clamp(2.4rem, 4.8vw, 4.7rem); }
.body-copy { max-width: 39ch; margin: 28px 0 0; font-size: clamp(1.0625rem, 1.25vw, 1.1875rem); font-weight: 450; line-height: 1.6; text-wrap: pretty; }
.manifesto > .section-frame {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(20px, 3vw, 36px);
  text-align: center;
}
.manifesto {
  scroll-margin-top: 96px;
}
.manifesto .section-label {
  margin-left: auto;
  margin-right: auto;
}
.manifesto .display {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.15rem, 4.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.material-orbit {
  overflow: hidden;
  padding: 0;
}
.material-orbit-stage {
  position: relative;
  height: clamp(280px, 32vw, 400px);
  perspective: 1300px;
  perspective-origin: 50% 50%;
}
.material-orbit-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 0 2vw;
  transform-style: preserve-3d;
  will-change: transform;
}
.orbit-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 380px);
  background: transparent;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
}
.orbit-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(18, 21, 19, 0.18);
  backface-visibility: hidden;
}
.manifesto .approach-caption.section-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 18px;
  padding-right: clamp(24px, 8vw, 140px);
  padding-bottom: clamp(48px, 7vw, 80px);
  padding-left: clamp(24px, 8vw, 140px);
  text-align: center;
}
.manifesto .approach-caption .body-copy {
  width: min(34ch, 100%);
  max-width: min(34ch, 100%);
  margin: 0;
  text-align: center;
}

.material-story {
  display: grid;
  grid-template-columns: 1fr;
  background: #0c0e0d;
  color: var(--paper);
}
.story-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 10px;
  padding: 10px;
  background: #0c0e0d;
}
.story-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #151817;
}
.story-shot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.story-shot:hover img { transform: scale(1.03); }
.story-shot-main {
  min-height: clamp(360px, 58vh, 720px);
}
.story-shot-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: clamp(360px, 58vh, 720px);
}
.story-shot-stack .story-shot { min-height: 0; }
.story-copy {
  display: flex;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 7vw, 88px) clamp(48px, 7vw, 84px);
  background: #0c0e0d;
}
.story-copy-inner {
  width: min(100%, 760px);
}
.story-copy .section-label {
  margin-bottom: 18px;
  color: rgba(238, 234, 225, 0.58);
}
.story-copy .display {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.1rem, 4.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.story-copy .body-copy {
  max-width: 36ch;
  margin-top: 22px;
  color: rgba(238, 234, 225, 0.88);
  font-size: clamp(1.0625rem, 1.2vw, 1.15rem);
  font-weight: 450;
}
.story-copy .text-link {
  margin-top: 34px;
  color: var(--paper);
}

.collection-heading {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}
.collection-heading .section-label {
  margin: 0;
}
.collection-heading .display {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.collection-heading .body-copy {
  max-width: 34ch;
  margin: 2px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.2vw, 1.125rem);
  font-weight: 450;
  line-height: 1.55;
}
.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  padding-top: 0;
  padding-bottom: 22px;
}
.collection-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
}
.collection-search-label {
  position: relative;
  display: block;
  width: min(100%, 360px);
}
.collection-search-label span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translateY(-50%);
}
.collection-search {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px 11px 78px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 70%, #fff 30%);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
}
.collection-search:focus {
  border-color: color-mix(in srgb, var(--ink) 45%, transparent);
  background: #fff;
}
.collection-count {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.collection-nav-group {
  display: flex;
  gap: 8px;
}
.collection-swipe-hint {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.stack-carousel {
  position: relative;
  padding: 8px 0 28px;
}
.stack-stage {
  position: relative;
  width: min(100%, 1120px);
  height: clamp(280px, 42vw, 500px);
  margin: 0 auto;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  outline: none;
}
.stack-stage:active { cursor: grabbing; }
.stack-stage:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 560px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ebe6db;
  box-shadow:
    0 2px 8px rgba(18, 21, 19, 0.06),
    0 18px 40px rgba(18, 21, 19, 0.12),
    0 40px 80px rgba(18, 21, 19, 0.10);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 520ms var(--ease-out),
    opacity 420ms var(--ease-out),
    filter 420ms ease,
    box-shadow 420ms ease;
  will-change: transform, opacity;
}
.stack-card.is-active {
  pointer-events: auto;
  box-shadow:
    0 4px 12px rgba(18, 21, 19, 0.08),
    0 24px 48px rgba(18, 21, 19, 0.14),
    0 48px 96px rgba(18, 21, 19, 0.12);
}
.stack-card[hidden] { display: none !important; }
.stack-card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ebe6db;
  pointer-events: none;
  -webkit-user-drag: none;
}
.stack-caption {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 22px;
  text-align: center;
}
.stack-caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.stack-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.collection-nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}
.collection-nav:hover { background: #fff; }
.collection-nav:active { transform: scale(0.96); }
.collection-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.collection-empty {
  margin: 0;
  padding-top: 0;
  padding-bottom: 18px;
  color: var(--muted);
  text-align: center;
}
.collection-footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: clamp(72px, 10vw, 140px);
}
.projects {
  padding-bottom: clamp(64px, 9vw, 120px);
}
.projects-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 720px;
  padding-bottom: 44px;
  text-align: center;
}
.projects-heading .display {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.projects-heading .body-copy {
  max-width: 42ch;
  margin: 0;
}
.project-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 32vw, 430px);
  gap: clamp(16px, 1.8vw, 26px);
  overflow-x: auto;
  padding: 0 clamp(24px, 7vw, 120px) 34px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(24px, 7vw, 120px);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
}
.project-grid:active { cursor: grabbing; }
.project-grid::-webkit-scrollbar { display: none; }
.project-rail-wrap { overflow: hidden; }
.project-rail-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 2px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-rail-line {
  position: relative;
  display: block;
  width: min(180px, 22vw);
  height: 1px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 18%, transparent);
}
.project-rail-line i {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--ink);
  transition: transform 120ms linear;
}
.project-card {
  grid-column: auto;
  min-width: 0;
  scroll-snap-align: start;
}
.project-card-link {
  display: grid;
  gap: 16px;
  color: inherit;
  transition: transform 260ms var(--ease-out);
}
.project-card-link:hover,
.project-card-link:focus-visible { transform: translateY(-7px); }
.project-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e7e1d7;
  border-radius: 18px;
  box-shadow: 0 6px 12px rgba(18, 21, 19, 0.08), 0 22px 42px rgba(18, 21, 19, 0.14);
}
.project-card-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease-out), filter 400ms ease;
}
.project-card-link:hover .project-card-media img,
.project-card-link:focus-visible .project-card-media img { transform: scale(1.035); filter: saturate(1.05); }
.project-card-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(238, 234, 225, 0.9);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}
.project-card-link:hover .project-card-arrow,
.project-card-link:focus-visible .project-card-arrow { opacity: 1; transform: translateY(0); }
.project-card-meta { display: grid; gap: 7px; }
.project-card-meta strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.project-card-meta > span:last-child { color: var(--muted-strong); font-size: 14px; font-weight: 500; line-height: 1.45; }
.project-card-type { color: var(--muted-strong); font-size: 11px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.projects-footer { display: flex; justify-content: center; padding-top: 52px; padding-bottom: 0; }

.applications {
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: clip;
}
.float-stage {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 120px) 24px;
  overflow: hidden;
  isolation: isolate;
}
.float-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(12, 14, 13, 0.18), rgba(12, 14, 13, 0.72) 70%, rgba(12, 14, 13, 0.92)),
    linear-gradient(180deg, rgba(32, 37, 34, 0.2), rgba(18, 21, 19, 0.55));
  z-index: 2;
  pointer-events: none;
}
.float-cards {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.float-card {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #151817;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.25),
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 48px 90px rgba(0, 0, 0, 0.22);
  transform:
    translate3d(0, 40px, 0)
    rotate(var(--r))
    scale(calc(var(--s) * 0.92));
  opacity: 0;
  z-index: var(--z);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
  transition-delay: var(--d);
  will-change: transform, opacity;
}
.float-card-main {
  width: clamp(180px, 24vw, 340px);
  aspect-ratio: 4 / 5;
}
.float-card-back { opacity: 0.72; }
.float-card-deep { opacity: 0.42; filter: blur(0.35px) brightness(0.82); }
.float-stage.is-float-active .float-card-deep { opacity: 0.52; }
.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 360ms var(--ease-out), transform 520ms var(--ease-out);
}
.float-stage.is-float-active .float-card:hover,
.float-stage.is-float-active .float-card.is-focused,
.float-stage.is-float-active .float-card.is-near {
  z-index: 8;
  filter: brightness(1.08) saturate(1.08);
  transform: translate3d(0, -14px, 0) rotate(0deg) scale(calc(var(--s) + 0.12));
}
.float-card:hover img,
.float-card.is-focused img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.06);
}
.float-card::after {
  content: 'View sample';
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(238, 234, 225, 0.88);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
  pointer-events: none;
}
.float-card:hover::after,
.float-card.is-focused::after {
  opacity: 1;
  transform: translateY(0);
}
.float-stage.is-float-active .float-card {
  opacity: 1;
  transform:
    translate3d(0, 0, 0)
    rotate(var(--r))
    scale(var(--s));
}
.float-stage.is-float-active .float-card:nth-child(odd) {
  animation: float-drift-a 7.5s var(--ease-in-out) infinite alternate;
  animation-delay: calc(var(--d) + 900ms);
}
.float-stage.is-float-active .float-card:nth-child(even) {
  animation: float-drift-b 8.5s var(--ease-in-out) infinite alternate;
  animation-delay: calc(var(--d) + 900ms);
}
@keyframes float-drift-a {
  from { translate: 0 0; }
  to { translate: 0 -10px; }
}
@keyframes float-drift-b {
  from { translate: 0 0; }
  to { translate: 0 12px; }
}
.float-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: min(720px, 92vw);
  text-align: center;
  color: var(--paper);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 900ms var(--ease-out) 120ms,
    transform 900ms var(--ease-out) 120ms;
}
.float-stage.is-float-active .float-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.float-copy .section-label {
  margin: 0;
  color: rgba(238, 234, 225, 0.62);
}
.float-copy .display {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.applications-lede {
  max-width: 34ch;
  margin: 4px 0 0;
  color: rgba(238, 234, 225, 0.9);
  font-weight: 450;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.float-copy .body-copy {
  margin-top: 0;
}
@media (hover: hover) and (pointer: fine) {
  .float-card {
    cursor: zoom-in;
  }
}
.applications-bottom {
  padding-top: 8px;
  padding-bottom: 0;
}
.application-list {
  margin-top: 0;
  border-top: 1px solid var(--line-light);
}
.application-row {
  display: grid;
  grid-template-columns: 48px minmax(160px, 1fr) minmax(180px, 0.9fr);
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(238, 234, 225, 0.82);
  transition: color 180ms ease, transform 220ms var(--ease-out);
}
.application-row:hover {
  color: var(--paper);
  transform: translateX(6px);
}
.application-row > span:first-child { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; }
.application-row strong { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 400; letter-spacing: -0.03em; }
.application-row > span:nth-child(3) { justify-self: end; font-size: 12px; letter-spacing: 0.04em; }
.application-row b { display: inline-block; margin-left: 12px; font-weight: 400; }

.inquiry { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr); gap: clamp(40px, 7vw, 120px); padding: clamp(80px, 11vw, 150px) clamp(24px, 7vw, 120px); }
.inquiry-copy .display {
  max-width: 13ch;
  font-size: clamp(2.15rem, 4.3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.inquiry-copy .body-copy { color: rgba(238, 234, 225, 0.9); font-weight: 450; }
.inquiry-form { display: grid; align-content: start; gap: 10px; max-width: 520px; padding-top: 6px; }
.inquiry-form label { margin-top: 17px; color: rgba(238, 234, 225, 0.74); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 13px 0; color: var(--paper); background: transparent; border: 0; border-bottom: 1px solid rgba(238, 234, 225, 0.42); border-radius: 0; outline: 0; resize: vertical; }
.inquiry-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 8px) 52%, 100% 52%; background-size: 8px 8px, 8px 8px; background-repeat: no-repeat; }
.inquiry-form option { color: var(--ink); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--paper); }
.inquiry-form .button { width: max-content; margin-top: 28px; }
.form-note { margin: 4px 0 0; color: rgba(238, 234, 225, 0.84); font-size: 13px; font-weight: 450; line-height: 1.5; }

.site-footer { padding: 38px clamp(24px, 4.2vw, 72px) 26px; }
.footer-top { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 80px; }
.footer-top img { width: 132px; height: 58px; object-fit: contain; object-position: left center; }
.footer-top p { max-width: 260px; margin: 0; color: rgba(238, 234, 225, 0.68); font-size: 13px; text-align: end; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line-light); color: rgba(238, 234, 225, 0.58); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); }

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out),
    filter 900ms var(--ease-out);
  will-change: opacity, transform, filter;
}
.js .reveal-delay { transition-delay: 120ms; }
.js .reveal-delay-2 { transition-delay: 220ms; }
.js .reveal-delay-3 { transition-delay: 320ms; }
.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.js .hero-copy-intro { opacity: 0; transform: translateY(28px); transition: opacity 1100ms ease, transform 1100ms var(--ease-out); }
.js .hero-copy-intro.is-intro-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: grid; justify-self: end; gap: 5px; width: 42px; height: 42px; padding: 12px 9px; color: currentColor; background: transparent; border: 1px solid currentColor; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% - 1px); right: 20px; left: 20px; display: grid; gap: 0; padding: 10px 18px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
  .mobile-menu a:last-child { border-bottom: 0; }
  .site-header.is-scrolled .menu-toggle { color: var(--ink); }
  .hero-copy { padding: 0 24px 84px; }
  .material-story { grid-template-columns: 1fr; }
  .story-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .story-shot-main { min-height: 58vw; }
  .story-shot-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .story-shot-stack .story-shot {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .story-copy {
    padding: 40px 32px 56px;
  }
  .float-stage {
    min-height: min(92svh, 780px);
    padding: 80px 20px 72px;
  }
  .float-card {
    width: clamp(110px, 28vw, 170px);
    border-radius: 14px;
  }
  .float-card-main {
    width: clamp(140px, 36vw, 210px);
  }
  .float-copy .display {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .inquiry { grid-template-columns: 1fr; }
  .inquiry-form { max-width: none; }
}

@media (max-width: 620px) {
  .site-header { min-height: 72px; padding: 11px 20px; }
  .brand img { width: 128px; height: 60px; }
  .mobile-menu { right: 20px; left: 20px; }
  .hero-media { height: auto; inset: 0; }
  .hero-video { transform: none; }
  .hero-copy { padding: 0 24px 80px; width: 100%; }
  .hero h1 { max-width: 13ch; font-size: clamp(2.2rem, 9.6vw, 3.15rem); line-height: 1.08; letter-spacing: -0.018em; }
  .hero-lede { max-width: 31ch; margin-top: 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 32px; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-media figcaption { display: none; }
  .hero-media-controls { top: 84px; right: 24px; gap: 14px; }
  .media-toggle,
  .sound-toggle { min-height: 40px; font-size: 10px; }
  .hero-footer { right: 24px; bottom: 24px; left: 24px; grid-template-columns: 1fr auto; gap: 12px; font-size: 9px; }
  .hero-footer span:first-child { display: none; }
  .hero-footer .hero-line { grid-column: auto; width: 100%; }
  .hero-footer span:last-child { grid-column: auto; }
  .section-frame { padding-right: 24px; padding-left: 24px; }
  .display { font-size: clamp(2.35rem, 11vw, 3.7rem); line-height: 1.08; }
  .manifesto .body-copy { margin-left: 0; }
  .manifesto > .section-frame {
    padding-top: 48px;
    padding-bottom: 14px;
    text-align: center;
  }
  .manifesto .display {
    font-size: clamp(2.15rem, 9.4vw, 3.1rem);
  }
  .material-orbit { padding-bottom: 0; }
  .material-orbit-stage { height: 250px; }
  .orbit-card { width: min(78vw, 320px); }
  .material-orbit-track { gap: 12px; padding: 0 16px; }
  .manifesto .approach-caption.section-frame {
    padding-top: 14px;
    padding-right: 24px;
    padding-bottom: 56px;
    padding-left: 24px;
  }
  .story-shot-main { min-height: 72vw; }
  .story-shot-stack .story-shot { aspect-ratio: 1 / 1.05; }
  .story-copy {
    padding: 36px 24px 52px;
  }
  .story-copy .display { max-width: 11ch; }
  .collection-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    padding-bottom: 18px;
  }
  .collection-heading .display {
    max-width: 11ch;
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }
  .collection-heading .body-copy {
    max-width: 28ch;
    margin-top: 0;
    font-size: 0.98rem;
    line-height: 1.4;
  }
  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 14px;
  }
  .collection-search-label { width: 100%; }
  .collection-search { font-size: 16px; }
  .collection-controls {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
  .project-grid {
    grid-auto-columns: minmax(78vw, 78vw);
    gap: 18px;
    padding: 0 24px 18px;
    scroll-padding-inline: 24px;
  }
  .project-card,
  .project-card-feature,
  .project-card-wide {
    grid-column: auto;
    scroll-snap-align: start;
  }
  .project-rail-controls { padding-left: 24px; padding-right: 24px; }
  .project-rail-line { width: min(150px, 38vw); }
  .project-card-media,
  .project-card-feature .project-card-media,
  .project-card-wide .project-card-media {
    aspect-ratio: 4 / 3;
    border-radius: 15px;
  }
  .projects-heading {
    padding-bottom: 28px;
  }
  .projects-heading .display {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }
  .projects-footer { padding-top: 28px; }
  .stack-stage {
    height: clamp(220px, 66vw, 330px);
  }
  .stack-card {
    width: min(84vw, 360px);
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  .collection-footer {
    justify-content: center;
    padding-bottom: 88px;
  }
  .float-stage {
    min-height: min(88svh, 720px);
    padding: 72px 16px 64px;
  }
  .float-card {
    width: clamp(96px, 30vw, 140px);
  }
  .float-card {
    width: clamp(104px, 28vw, 128px);
    aspect-ratio: 3 / 4;
    border-radius: 13px;
  }
  .float-card-main {
    width: clamp(142px, 39vw, 170px);
    aspect-ratio: 4 / 5;
  }
  /* Mobile uses a deliberate six-image composition, not the full desktop scatter. */
  .float-card:nth-child(1) { top: 14% !important; left: 6% !important; }
  .float-card:nth-child(2) { top: 9% !important; left: 70% !important; }
  .float-card:nth-child(4) { top: 39% !important; left: 50% !important; }
  .float-card:nth-child(5) { top: 65% !important; left: 8% !important; }
  .float-card:nth-child(9) { top: 56% !important; left: 72% !important; }
  .float-card:nth-child(10) { top: 78% !important; left: 46% !important; }
  .float-card:nth-child(3),
  .float-card:nth-child(6),
  .float-card:nth-child(7),
  .float-card:nth-child(8),
  .float-card:nth-child(11),
  .float-card:nth-child(12),
  .float-card:nth-child(13) {
    display: none;
  }
  .float-copy {
    max-width: 290px;
    gap: 12px;
    padding: 0 8px;
  }
  .float-copy .section-label { font-size: 10px; }
  .float-copy .display {
    max-width: 10ch;
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
    line-height: 0.99;
  }
  .applications-lede {
    max-width: 26ch;
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .application-list { margin-top: 8px; }
  .application-list { margin-top: 8px; }
  .application-row { grid-template-columns: 30px minmax(0, 1fr); gap: 3px 12px; padding: 22px 0; }
  .application-row > span:first-child { grid-row: span 2; align-self: start; padding-top: 5px; }
  .application-row strong { font-size: 1.35rem; line-height: 1.15; }
  .application-row > span:nth-child(3) { grid-column: 2; justify-self: start; max-width: none; padding-top: 3px; color: rgba(238, 234, 225, 0.62); font-size: 11px; line-height: 1.4; text-align: start; }
  .application-row b { margin-left: 6px; }
  .inquiry { gap: 62px; padding: 100px 24px 112px; }
  .inquiry-form input, .inquiry-form select, .inquiry-form textarea { font-size: 16px; }
  .inquiry-form .button { width: 100%; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 28px; padding-bottom: 62px; }
  .footer-top p { text-align: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .js .reveal,
  .float-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none;
    transition: none !important;
    animation: none !important;
  }
  .float-stage.is-float-active .float-card {
    opacity: 1;
  }
  .stack-card {
    transition: none !important;
  }
  .js .hero-copy-intro { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
::selection { color: var(--paper); background: var(--red); }
