:root {
  --black: #050505;
  --white: #f7f7f5;
  --muted: #9e9e9a;
  --line: rgba(255, 255, 255, 0.13);
  --dark-line: rgba(4, 4, 4, 0.14);
  --paper: #ededeb;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --sans: "Inter", "Manrope", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip { position: fixed; left: 18px; top: -60px; z-index: 20; font-family: var(--mono); font-size: 12px; }
.skip:focus { top: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease, transform .32s ease, opacity .24s ease;
}
.site-header.is-scrolled,
.nav-open .site-header {
  background: rgba(5,5,5,.72);
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}
.site-header.is-story-hidden {
  transform: translate3d(0, -108%, 0);
  opacity: 0;
  pointer-events: none;
}
.brand, nav a { font-size: 16px; font-weight: 900; line-height: 1; }
.brand { padding-bottom: 9px; color: #fff; }
nav { display: flex; gap: clamp(28px, 3vw, 48px); }
nav a {
  position: relative;
  padding-bottom: 9px;
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
nav a.active::after, nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid currentColor;
}
.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  padding: 6px 0;
}

.section-dark { background: var(--black); color: var(--white); }
.hero {
  min-height: 100vh;
  position: relative;
  padding: 26px 28px 34px;
  display: grid;
  grid-template-columns: 39vw 1fr;
  overflow: hidden;
}
.hero::before, .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  display: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25vw 23vh;
  opacity: 0.45;
  z-index: 1;
}
.hero-media {
  position: absolute;
  left: 0;
  top: 0;
  width: min(39vw, 560px);
  height: min(100vh, 820px);
  overflow: hidden;
  background: #050505;
  filter: saturate(.78) contrast(1.08) brightness(.92);
  pointer-events: auto;
  --tile-left: 0px;
  --tile-top: 0px;
  --tile-width: 100%;
  --tile-height: 100%;
}
.hero-media::after {
  z-index: 2;
  background: rgba(0, 0, 0, .08);
}
.hero-tiles {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(10, 1fr);
  overflow: hidden;
  perspective: 620px;
  transform-style: preserve-3d;
}
.hero-tile {
  display: block;
  background-image: url("/assets/xqd-hero.jpg");
  background-size: var(--hero-cover-width, 100%) var(--hero-cover-height, 100%);
  background-position: calc(var(--hero-cover-left, 0px) - var(--tile-left)) calc(var(--hero-cover-top, 0px) - var(--tile-top));
  background-repeat: no-repeat;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform .42s cubic-bezier(.16,1,.3,1),
    opacity .28s ease;
}
.hero-copy {
  grid-column: 2;
  align-self: center;
  justify-self: end;
  max-width: 508px;
  margin-top: 54px;
  z-index: 2;
}
.hero-copy p {
  margin: 42px 0 0;
  font-size: clamp(22px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.42;
}
.button-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.button {
  min-height: 60px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.8);
  font-size: 16px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--black); border-color: var(--white); }
.button-outline { background: transparent; color: var(--white); }
.hero-title {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  z-index: 2;
  pointer-events: none;
}
.hero-title p {
  margin: 0 0 10px 18px;
  color: rgba(255,255,255,.62);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  font-style: italic;
}
.hero .button {
  font-weight: 900;
}
.hero h1, .contact h2 {
  margin: 0;
  font-size: clamp(72px, 12vw, 174px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero h1 {
  font-size: clamp(58px, 8.2vw, 132px);
  font-weight: 400;
  white-space: normal;
}
.stripe {
  height: 54px;
  margin-top: 34px;
  background: linear-gradient(90deg, #f8c3a9 0%, #eb7d59 48%, #f04f25 100%);
}

.poster-masonry {
  position: relative;
  padding: clamp(88px, 7vw, 112px) 28px clamp(72px, 9vw, 132px);
  overflow: hidden;
  background: #050505;
}
.poster-masonry-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  columns: 3;
  column-gap: clamp(14px, 2.4vw, 24px);
}
.poster-masonry-item {
  position: relative;
  width: 100%;
  margin: 0 0 clamp(14px, 2.4vw, 24px);
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
  cursor: zoom-in;
}
.poster-masonry-item:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}
.poster-masonry-item.reveal {
  filter: blur(6px) brightness(.82);
  transition:
    opacity 1s ease var(--reveal-delay, 0ms),
    transform 1s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    clip-path 1s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    filter 1s ease var(--reveal-delay, 0ms);
}
.poster-masonry-item.reveal.in-view {
  filter: blur(0) brightness(1);
}
.poster-masonry-item img {
  width: 100%;
  height: auto;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s ease;
}
.poster-masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.11), transparent 34%, rgba(0,0,0,.12));
  pointer-events: none;
}
@media (hover: hover) {
  .poster-masonry-item:hover img {
    transform: scale(1.018);
    filter: saturate(1.04) contrast(1.02);
  }
}

.poster-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--white);
}
.poster-lightbox::backdrop {
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.poster-lightbox-surface {
  width: 100%;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 88px 24px 48px;
  background: rgba(5,5,5,.82);
}
.poster-lightbox-media {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: calc(100dvh - 136px);
  margin: 0;
  align-items: flex-start;
  justify-content: center;
}
.poster-lightbox-image {
  width: auto;
  max-width: none;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 100px rgba(0,0,0,.56);
  opacity: 1;
  transition: opacity .24s ease;
}
.poster-lightbox[data-state="loading"] .poster-lightbox-image {
  opacity: 0;
}
.poster-lightbox-controls {
  position: fixed;
  top: 22px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.poster-lightbox-control {
  min-width: 58px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--white);
  font: 500 12px/1 var(--sans);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.poster-lightbox-control:hover,
.poster-lightbox-control:focus-visible {
  background: var(--white);
  color: var(--black);
}
.poster-lightbox-control:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--white);
  outline-offset: -3px;
}
.poster-lightbox-control:disabled {
  opacity: .34;
  cursor: not-allowed;
}
.poster-lightbox-zoom-value {
  min-width: 52px;
  padding: 0 10px;
  color: rgba(255,255,255,.72);
  font: 500 11px/1 var(--mono);
  text-align: center;
}
.poster-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 3;
  min-width: 70px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(5,5,5,.72);
  color: var(--white);
  font: 500 13px/1 var(--sans);
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.poster-lightbox-close:hover,
.poster-lightbox-close:focus-visible {
  background: var(--white);
  color: var(--black);
}
.poster-lightbox-close:active {
  transform: scale(.97);
}
.poster-lightbox-close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
body.poster-lightbox-open {
  overflow: hidden;
}

section { padding: 108px 28px; }
.section-number, .mono, .meta, .capability span, .service-grid span, .collab-grid span, footer span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
}
#apropos {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}
#apropos::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: min(46vh, 520px);
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, .48) 56%, #050505 100%);
  pointer-events: none;
}
.apropos-unicorn-bg {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #111 url("/assets/benjamin-contact-background-clean-1440.jpg") center top / cover no-repeat;
  pointer-events: none;
}
.apropos-unicorn-bg > div,
.apropos-unicorn-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
#apropos > :not(.apropos-unicorn-bg) {
  position: relative;
  z-index: 1;
}
.split, .section-heading, .contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
h2 {
  margin: 38px 0 0;
  font-size: clamp(62px, 8vw, 124px);
  font-weight: 300;
  line-height: .96;
}
#apropos .copy-xl {
  max-width: 620px;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.7;
  font-weight: 500;
}
.copy-xl {
  max-width: 600px;
  font-size: clamp(25px, 2.25vw, 35px);
  line-height: 1.45;
}
.copy-xl p { margin: 0 0 34px; }
.capability-grid, .service-grid, .collab-grid {
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.capability, .service-grid article, .collab-grid article {
  min-height: 225px;
  padding: 32px 64px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability h3, .service-grid h3, .collab-grid h3 {
  margin: 24px 0 10px;
  font-size: clamp(28px, 2.3vw, 35px);
  font-weight: 300;
  line-height: 1;
}
.collab-grid h3 {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.15;
  white-space: nowrap;
}
.capability p, .service-grid p, .collab-grid p, .section-heading > p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.65;
}

.projects {
  position: relative;
  height: var(--project-scroll-height, 560vh);
  padding: 0;
  background: #111;
}
.project-scroll-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  padding: 86px 28px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 52% 54%, rgba(255,255,255,.045), transparent 30%),
    linear-gradient(180deg, #111 0%, #0d0d0d 56%, #080808 100%);
}
.section-heading { align-items: start; position: relative; }
.section-heading > p {
  max-width: 560px;
  margin: 76px 0 0;
  font-size: clamp(20px, 1.75vw, 26px);
  color: rgba(255,255,255,.82);
}
.projects .section-heading > p {
  max-width: 520px;
  margin-top: 48px;
  margin-right: 120px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.25;
}
.projects .section-heading h2 {
  font-size: clamp(74px, 7.6vw, 112px);
  line-height: .92;
  font-weight: 300;
}
.carousel-controls {
  position: absolute;
  right: 0;
  top: 80px;
  display: flex;
  gap: 14px;
}
.carousel-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.project-scroll-heading { flex: none; }
.project-viewport {
  flex: 1;
  min-height: 0;
  margin-top: 38px;
  overflow: visible;
}
.project-track {
  display: flex;
  gap: clamp(42px, 5vw, 86px);
  width: max-content;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.project-progress {
  flex: 1;
  width: auto;
  height: 2px;
  margin: 0;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.project-progress span {
  display: block;
  width: var(--project-progress, 0%);
  height: 100%;
  min-width: 44px;
  background: var(--white);
  transform-origin: left center;
  transition: width .18s ease;
}
.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(260px, .72fr);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(26px, 3vw, 54px);
  align-content: center;
  width: min(76vw, 1080px);
  height: 100%;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  opacity: .28;
  transform: scale(.985);
  transition: opacity .35s ease, transform .35s ease;
}
.project-card.is-active { opacity: 1; transform: scale(1); }
.project-card:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 8px;
}
.project-card img {
  grid-row: 1 / 4;
  width: 100%;
  max-height: 48vh;
  aspect-ratio: 1.77;
  object-fit: cover;
  object-position: top center;
  align-self: center;
  background: #111;
  filter: saturate(.8) contrast(1.08);
}
.project-card .meta { align-self: end; margin: 0 0 18px; }
.project-card h3 {
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 2.15vw, 34px);
  line-height: 1.06;
  font-weight: 400;
}
.project-card dl { display: grid; grid-template-columns: 90px 1fr; row-gap: 16px; margin: 0; }
.project-card dt { font-family: var(--mono); color: var(--muted); font-size: 11px; letter-spacing: .14em; }
.project-card dd { margin: 0; text-align: right; font-size: 16px; color: rgba(255,255,255,.86); overflow: visible; text-overflow: clip; }
.project-scroll-footer {
  flex: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
}
.project-scroll-count {
  min-width: 72px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}
.project-scroll-count span { color: var(--white); }
.project-scroll-footer .text-link { flex: none; margin: 0 64px 0 0; }
.text-link { display: table; margin: 72px 0 0 auto; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 16px; }

.portfolio-story {
  --portfolio-accent: #fb4617;
  --project-surface-inset: 28px;
  --project-content-inset: clamp(32px, 5.6vw, 76px);
  position: relative;
  height: 440vh;
  padding: 0;
  overflow: clip;
  background: #111;
}
.portfolio-story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.portfolio-story-track {
  display: flex;
  width: 420vw;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.portfolio-story-panel {
  flex: 0 0 100vw;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding: 94px 28px 18px;
  overflow: hidden;
  background: #111;
}
.portfolio26-showcase,
.benjamin79-showcase {
  overflow: visible;
}
.portfolio-story.is-near-start .portfolio26-showcase::before,
.portfolio-story.is-near-end .benjamin79-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 6;
  width: 112px;
  height: 100%;
  background: #111;
  pointer-events: none;
}
.portfolio-story.is-near-start .portfolio26-showcase::before { right: -112px; }
.portfolio-story.is-near-end .benjamin79-showcase::before { left: -112px; }
.portfolio26-statement {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.96);
}
.portfolio26-label {
  position: absolute;
  z-index: 3;
  top: 51%;
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.38);
}
.portfolio26-label-left { left: 28px; }
.portfolio26-label-right { right: 28px; }
.portfolio26-scene-wrap,
.benjamin79-scene-wrap {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(46vw, 760px);
  height: min(30vw, 480px);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.benjamin79-scene-wrap {
  top: 50%;
  width: min(46vw, 760px);
  height: min(40vw, 560px);
}
.portfolio26-scene,
.benjamin79-scene {
  width: 100%;
  height: 100%;
  isolation: isolate;
  mix-blend-mode: normal;
  filter: none;
}
.portfolio26-scene canvas,
.benjamin79-scene canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}
.portfolio-story-panel h2 {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  margin: 0;
  color: var(--portfolio-accent);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 400;
  line-height: .84;
  white-space: nowrap;
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
.benjamin79-statement {
  position: relative;
  z-index: 3;
  max-width: 660px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.96);
}
.benjamin79-showcase h2 { font-size: clamp(68px, 7.6vw, 112px); }

.project-services-panel {
  flex-basis: 220vw;
  padding: 0;
  background: #111;
}
.project-services-surface {
  position: absolute;
  inset: var(--project-surface-inset);
  overflow: hidden;
  contain: paint;
  border-radius: 7px;
  background:
    radial-gradient(circle at 58% 50%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(180deg, #f8c3a9 0%, #eb7d59 48%, #f04f25 100%);
  color: #fff;
}
.project-services-surface::before {
  display: none;
}
.project-services-head {
  position: absolute;
  left: var(--project-content-inset);
  top: clamp(40px, 4.8vw, 70px);
  z-index: 2;
}
.project-services-kicker {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.68);
}
.project-services-head h2 {
  position: static;
  margin: 0;
  left: auto;
  bottom: auto;
  color: #ef4f28;
  font-size: clamp(68px, 7.4vw, 112px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.project-story-heading {
  position: absolute;
  top: clamp(40px, 4.8vw, 70px);
  left: calc(var(--project-surface-inset) + var(--project-content-inset));
  right: calc(var(--project-surface-inset) + var(--project-content-inset));
  z-index: 7;
  margin: 0;
  color: #ef4f28;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: clamp(108px, 9vw, 138px);
  pointer-events: none;
  clip-path: inset(0 0 0 var(--project-heading-clip-left, 100%));
}
.project-story-heading.is-interactive {
  pointer-events: auto;
}
.project-story-heading-copy {
  position: absolute;
  top: 0;
  left: 0;
  opacity: var(--project-heading-title-opacity, 0);
  transform: translate3d(var(--project-heading-offset, 100vw), 0, 0);
  will-change: opacity, transform;
}
.project-story-heading p {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.68);
}
.project-story-heading strong {
  display: block;
  font-size: clamp(68px, 7.4vw, 112px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.project-story-link {
  display: flex;
  flex: none;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  margin: 0 0 0 auto;
  padding: 0 0 8px;
  color: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 16px;
  text-decoration: none;
  opacity: var(--project-heading-cta-opacity, 0);
  will-change: opacity;
}
.project-story-link span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.72);
}
.project-services-grid {
  position: absolute;
  left: var(--project-content-inset);
  right: var(--project-content-inset);
  top: auto;
  bottom: clamp(24px, 4vw, 56px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-template-rows: 1fr;
  align-items: end;
  gap: clamp(14px, 1.8vw, 26px);
  opacity: var(--project-content-opacity, 1);
  clip-path: inset(0);
}
.project-service-card {
  display: grid;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
.project-service-card-meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.project-service-card-meta span {
  grid-column: 2;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.94);
  text-align: right;
  justify-self: end;
}
.project-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 42px rgba(111, 37, 13, .22);
}
.project-service-card.is-wide img { aspect-ratio: 1.5 / 1; }
.project-service-card strong {
  grid-column: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
  white-space: nowrap;
}
.project-service-card small {
  max-width: 430px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.3;
}
@media (min-width: 701px) {
  .project-services-head { display: none; }
}

.services {
  background: var(--paper);
  color: var(--black);
  margin: 0;
  padding: 94px 64px;
}
.services .section-heading > p, .services .section-number { color: rgba(0,0,0,.65); }
.services .service-grid { border-color: var(--dark-line); }
.service-grid article { border-color: var(--dark-line); min-height: 400px; }
.service-grid p { color: rgba(0,0,0,.78); }
.service-grid ul { list-style: none; padding: 26px 0 0; margin: 32px 0 0; border-top: 1px solid var(--dark-line); }
.service-grid li { margin: 16px 0; color: rgba(0,0,0,.6); }
.service-grid li::before { content: "—"; margin-right: 24px; color: rgba(0,0,0,.5); }
.service-foot { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; color: rgba(0,0,0,.75); }
.text-link.dark { border-color: var(--dark-line); }

.collaborations { min-height: 920px; border-top: 1px solid var(--line); }
.collab-grid article { min-height: 245px; }
.collab-grid small { color: var(--muted); font-size: 15px; }
.contact { padding-top: 54px; }
.contact-top strong { display: block; margin-top: 18px; font-size: 20px; font-weight: 400; }
.contact-top p { max-width: 640px; font-size: clamp(22px, 2vw, 29px); line-height: 1.45; }
.contact h2 {
  margin-top: 80px;
  line-height: 1.08;
  padding: .08em 0 .04em;
}
.contact-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 92px 0 100px;
  border-bottom: 1px solid var(--line);
}
.contact-actions > div:first-child a[href^="mailto"] { display: block; margin-top: 28px; font-size: 23px; }
.contact-actions .button-row { align-items: center; flex-wrap: nowrap; }
.contact-actions .button { height: 60px; margin-top: 0; font-size: 16px; white-space: nowrap; }
.contact-phone { display: block; margin-top: 18px; line-height: 1.7; }
.site-footer {
  min-height: 290px;
  padding: 65px 28px 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
.site-footer h2 {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.site-footer p, .site-footer a {
  display: block;
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.4;
}
.site-footer div:last-child {
  align-self: start;
  color: rgba(255,255,255,.58);
}
.site-footer span { display: block; margin-bottom: 28px; }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  clip-path: inset(18% 0 0 0);
  transition:
    opacity .85s ease var(--reveal-delay, 0ms),
    transform .95s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    clip-path .95s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.section-loaded .reveal.in-view { clip-path: inset(0 0 0 0); }

@media (max-width: 900px) {
  .site-header { padding: 18px; }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }
  nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 82px 28px 40px;
    background: rgba(5,5,5,.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .24s ease, transform .24s ease;
  }
  nav a {
    width: max-content;
    font-size: clamp(34px, 12vw, 56px);
    font-weight: 400;
    line-height: .95;
  }
  .nav-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero {
    min-height: 100svh;
    display: block;
    padding: 18px;
    isolation: isolate;
  }
  .hero-media {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    filter: saturate(.72) contrast(1.08) brightness(.76);
  }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(5,5,5,.12) 0%, rgba(5,5,5,.28) 45%, rgba(5,5,5,.78) 100%);
  }
  .hero-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(46svh + 60px);
    z-index: 3;
    max-width: none;
    margin: 0;
  }
  .hero-copy p {
    margin-top: 26px;
    font-size: 12px;
    line-height: 1.45;
  }
  .hero .button-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .button {
    min-height: 38px;
    margin: 0 0 10px;
    padding: 0 14px;
    font-size: 11px;
    gap: 18px;
  }
  .hero .button { margin: 0; }
  .hero-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 28px;
    z-index: 3;
    margin-top: 0;
  }
  .hero-title p {
    margin: 0 0 12px;
    font-size: 11px;
    line-height: 1.35;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(24px, 7.25vw, 34px);
    line-height: .88;
    white-space: nowrap;
  }
  .contact h2 { font-size: clamp(54px, 20vw, 86px); white-space: normal; }
  .stripe { height: 16px; margin-top: 18px; }
  section { padding: 84px 18px; }
  .split, .section-heading, .contact-top { grid-template-columns: 1fr; gap: 28px; }
  h2 { font-size: clamp(58px, 17vw, 88px); }
  #apropos .copy-xl { font-size: 19px; line-height: 1.68; }
  .copy-xl { font-size: 23px; }
  .capability-grid, .service-grid, .collab-grid { grid-template-columns: 1fr; margin-top: 64px; }
  .capability, .service-grid article, .collab-grid article { padding: 28px 18px; border-right: 0; }
  .collab-grid h3 {
    font-size: clamp(24px, 7vw, 30px);
    white-space: normal;
  }
  .section-heading > p { margin-top: 0; }
  .project-scroll-stage { min-height: 620px; padding: 78px 18px 18px; }
  .projects .section-heading { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .projects .section-heading h2 { font-size: 48px; line-height: .92; }
  .projects .section-heading > p { display: none; }
  .carousel-controls { display: none; }
  .project-viewport { margin-top: 26px; }
  .project-track { gap: 20px; }
  .project-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    width: calc(100vw - 36px);
  }
  .project-card img { grid-row: auto; max-height: 42vh; }
  .project-card .meta { margin: 14px 0 8px; }
  .project-card h3 { margin-bottom: 12px; padding-bottom: 12px; font-size: 28px; }
  .project-card dl { row-gap: 7px; }
  .project-card dd { font-size: 12px; }
  .project-progress { width: 100%; margin-top: 16px; }
  .project-scroll-footer { gap: 12px; padding-top: 12px; }
  .project-scroll-footer .project-progress { margin: 0; }
  .project-scroll-footer .text-link { margin-right: 58px; font-size: 11px; padding-bottom: 7px; }
  .portfolio-story { height: 315vh; }
  .portfolio-story-track { width: 300vw; }
  .portfolio-story-panel { min-height: 700px; height: 100svh; padding: 76px 18px 18px; }
  .portfolio26-statement { max-width: 330px; font-size: 20px; line-height: 1.5; }
  .portfolio26-scene-wrap { top: 49%; width: 116vw; height: 72vw; }
  .benjamin79-scene-wrap { top: 49%; width: 116vw; height: 82vw; }
  .portfolio26-label { top: 63%; }
  .portfolio26-label-left { left: 18px; }
  .portfolio26-label-right { right: 18px; }
  .portfolio-story-panel h2 { left: 18px; bottom: 16px; font-size: clamp(48px, 14vw, 64px); }
  .benjamin79-statement { max-width: 340px; font-size: 20px; line-height: 1.5; }
  .project-services-panel { flex-basis: 100vw; }
  .project-services-surface { inset: 10px; border-radius: 6px; }
  .project-services-head { left: 22px; top: 28px; }
  .project-services-kicker { margin-bottom: 12px; font-size: 9px; }
  .project-services-head h2 { font-size: clamp(58px, 18vw, 82px); white-space: normal; letter-spacing: -.045em; }
  .project-story-heading { display: none !important; }
  .project-services-grid {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 22px;
    grid-template-columns: 1fr;
    align-content: end;
    overflow: hidden;
    gap: 14px;
  }
  .project-service-card { gap: 6px; }
  .project-service-card:nth-child(n+3) { display: none; }
  .project-service-card-meta { gap: 10px; }
  .project-service-card-meta span { font-size: 11px; }
  .project-service-card img,
  .project-service-card.is-wide img { aspect-ratio: 1.65 / 1; }
  .project-service-card strong { font-size: 11px; }
  .project-service-card small { font-size: 11px; line-height: 1.35; }
  .services { margin: 0; padding: 72px 18px; }
  .service-foot, .contact-actions { display: block; }
  .contact-actions .button-row { display: flex; align-items: center; flex-wrap: nowrap; margin-top: 34px; }
  .contact-actions .button { height: 38px; min-height: 38px; margin: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; padding: 32px 18px 48px; }
  .site-footer h2 { font-size: 16px; }
}

@media (max-width: 760px) {
  .poster-masonry {
    padding: 78px 18px 72px;
  }
  .poster-masonry-grid {
    columns: 2;
    column-gap: 10px;
  }
  .poster-masonry-item {
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .poster-lightbox-surface {
    padding: 72px 12px 28px;
  }
  .poster-lightbox-media {
    min-height: calc(100dvh - 100px);
  }
  .poster-lightbox-image {
    border-radius: 4px;
  }
  .poster-lightbox-controls {
    top: 14px;
    left: 14px;
    min-height: 38px;
  }
  .poster-lightbox-control {
    min-width: 48px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }
  .poster-lightbox-zoom-value {
    min-width: 46px;
    padding: 0 7px;
    font-size: 10px;
  }
  .poster-lightbox-close {
    top: 14px;
    right: 14px;
    min-width: 64px;
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; clip-path: none; }
  .project-track { will-change: auto; }
  .portfolio-story-track { transform: none !important; }
  .portfolio-story { height: auto; }
  .portfolio-story-pin { position: relative; height: auto; }
  .portfolio-story-track { display: block; width: 100%; }
  .project-story-heading { display: none; }
  .project-services-head { display: block; }
  .portfolio26-scene,
  .benjamin79-scene {
    background: radial-gradient(circle, rgba(251,70,23,.24), transparent 45%);
  }
}

.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;
}
.projects-page,
.projects-page body {
  width: 100%;
  height: 100%;
}
.projects-page {
  overflow: hidden;
}
.rotonde-main {
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}
.rotonde-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 52%, rgba(255,255,255,.025), transparent 36%), #050505;
}
.rotonde-title {
  position: absolute;
  left: 50%;
  top: 96px;
  z-index: 4;
  margin: 0;
  transform: translateX(-50%);
  color: #888;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  line-height: 1.4;
}
.rotonde-index {
  position: absolute;
  left: 28px;
  top: 112px;
  z-index: 4;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
}
.rotonde-stage {
  position: absolute;
  inset: 0;
  perspective: 980px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: none;
}
.rotonde-stage:active {
  cursor: grabbing;
}
.rotonde-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.canvas-rotonde .rotonde-card,
.webgl-rotonde .rotonde-card {
  display: none;
}
.webgl-rotonde .rotonde-canvas {
  outline: none;
}
.rotonde-instructions[data-hidden="true"] {
  opacity: 0;
}
.rotonde-card {
  --x: 0px;
  --y: 0px;
  --z: 0px;
  --rotate: 0deg;
  --scale: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(300px, 47vw, 690px);
  transform: translate(-50%, -50%) translate3d(var(--x), var(--y), var(--z)) rotateY(var(--rotate)) scale(var(--scale));
  transform-style: preserve-3d;
  opacity: var(--card-opacity, .86);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .8s ease, filter .8s ease;
  filter: brightness(var(--brightness, .76));
}
.rotonde-card h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1;
}
.rotonde-card img {
  width: 100%;
  aspect-ratio: 1.77;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0,0,0,.58);
}
.rotonde-card-index,
.rotonde-tech,
.rotonde-instructions {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: #858585;
}
.rotonde-card-index {
  margin: 0 0 14px;
}
.rotonde-tech {
  margin: 16px 0 0;
}
.rotonde-card.is-active {
  --brightness: 1;
  --card-opacity: 1;
  z-index: 3;
}
.rotonde-card[data-slot="0"] { --x: 0px; --y: 38px; --z: 120px; --rotate: 0deg; --scale: 1; }
.rotonde-card[data-slot="1"] { --x: 650px; --y: 30px; --z: -100px; --rotate: -18deg; --scale: .8; }
.rotonde-card[data-slot="2"] { --x: 440px; --y: -410px; --z: -230px; --rotate: -14deg; --scale: .54; }
.rotonde-card[data-slot="3"] { --x: -560px; --y: -390px; --z: -260px; --rotate: 14deg; --scale: .56; }
.rotonde-card[data-slot="4"] { --x: -760px; --y: 92px; --z: -140px; --rotate: 17deg; --scale: .72; }
.rotonde-card[data-slot="5"] { --x: 380px; --y: 430px; --z: -210px; --rotate: -12deg; --scale: .58; }
.rotonde-instructions {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 5;
  transform: translateX(-50%);
}
.rotonde-progress {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 5;
  width: 356px;
  height: 2px;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  list-style: none;
}
.rotonde-progress li {
  flex: 1;
  background: rgba(255,255,255,.16);
}
.rotonde-progress li.is-active {
  background: var(--white);
}
.rotonde-controls {
  position: absolute;
  right: 28px;
  bottom: 44px;
  z-index: 5;
  display: none;
  gap: 12px;
}
.rotonde-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.02);
  color: var(--white);
  cursor: pointer;
}
.rotonde-controls button:hover {
  background: var(--white);
  color: var(--black);
}
.project-open .site-header,
.project-open .rotonde-title,
.project-open .rotonde-index,
.project-open .rotonde-instructions,
.project-open .rotonde-progress {
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s ease;
}
.project-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #050505;
  color: var(--white);
  pointer-events: none;
  scrollbar-width: none;
}
.project-overlay::-webkit-scrollbar { display: none; }
.project-overlay[hidden] {
  display: none;
}
.project-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.99) 0%, rgba(5,5,5,.94) 27%, rgba(5,5,5,.62) 46%, rgba(5,5,5,.2) 100%),
    linear-gradient(0deg, rgba(5,5,5,.8), transparent 42%, rgba(5,5,5,.36));
  opacity: 0;
  transition: opacity .55s ease;
}
.project-overlay[data-state="open"] {
  pointer-events: auto;
}
.project-overlay[data-state="open"]::before {
  opacity: 1;
}
.project-overlay-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.project-overlay-nav.is-scrolled {
  background: rgba(5,5,5,.72);
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}
.project-overlay-brand,
.project-overlay-nav a {
  color: #fff;
  text-decoration: none;
}
.project-overlay-brand {
  padding-bottom: 9px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.project-overlay-nav nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 3vw, 48px);
}
.project-overlay-nav nav a {
  position: relative;
  padding-bottom: 9px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.project-overlay-nav nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid currentColor;
}
.project-overlay-copy {
  display: none;
}
.project-overlay[data-state="open"] .project-overlay-copy {
  display: none;
}
.project-overlay-meta,
.project-overlay-count,
.project-overlay-specs dt {
  font-family: var(--mono);
  color: #777;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-overlay h2 {
  margin: 24px 0 18px;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: 0;
}
.project-overlay-role {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-style: italic;
  line-height: 1.35;
}
.project-overlay-desc {
  max-width: 330px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.72;
}
.project-overlay-count {
  margin: 0 0 18px;
  color: #555;
}
.project-overlay-specs {
  display: none;
}
.project-overlay-specs div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.project-overlay-specs dt,
.project-overlay-specs dd {
  margin: 0;
}
.project-overlay-specs dd {
  color: rgba(255,255,255,.78);
  font-size: 16px;
}
.project-overlay-case {
  display: none;
}
.project-overlay-case > p {
  margin: 0 0 14px;
  font-family: var(--mono);
  color: rgba(255,255,255,.46);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-overlay-case dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.project-overlay-case div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
}
.project-overlay-case dt,
.project-overlay-case dd {
  margin: 0;
}
.project-overlay-case dt {
  font-family: var(--mono);
  color: rgba(255,255,255,.36);
  font-size: 10px;
  letter-spacing: .12em;
}
.project-overlay-case dd {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.62;
}
.project-overlay-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(72px, 11vh, 126px);
  width: calc(100vw - 200px);
  margin: 0 auto;
  padding: 0 0 150px;
  transform: none;
  opacity: 0;
  transition: opacity .68s ease;
  pointer-events: auto;
}
.project-overlay-gallery.is-long-strip {
  display: block;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 0 0 72px;
  background: #050505;
}
.project-long-strip-hero.project-overlay-gallery-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  margin: 0;
  padding: clamp(112px, 14vh, 168px) 48px 0;
  background: #050505;
}
.project-long-strip-hero img {
  display: block;
  flex: 0 0 auto;
  width: min(900px, 100%);
  max-width: 100%;
  height: auto;
}
.project-long-strip-item {
  display: block;
  width: min(900px, 100%);
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
}
.project-long-strip-item.project-overlay-gallery-item {
  min-height: 0;
}
.project-long-strip-item img {
  display: block;
  width: 100%;
  height: auto;
}
.project-overlay-gallery-item {
  min-height: calc(100vh - 118px);
  z-index: 0;
  position: relative;
  overflow: visible;
  opacity: 1;
}
.project-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(26px, 3.2vw, 46px) 0;
  background: transparent;
  border-top: 0;
  box-shadow: none;
}
.project-showcase.is-reverse {
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
}
.project-showcase.is-reverse .project-showcase-note {
  order: 0;
}
.project-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.09);
  pointer-events: none;
}
.project-showcase::after {
  display: none;
}
.project-showcase-note {
  position: sticky;
  top: 92px;
  display: block;
  align-self: start;
  color: rgba(255,255,255,.78);
}
.project-showcase-note p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.38);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-showcase-note h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 400;
  line-height: 1;
}
.project-showcase-note span,
.project-showcase-note small {
  display: block;
}
.project-showcase-note span {
  margin: 0 0 10px;
  color: rgba(255,255,255,.76);
  font-size: clamp(13px, 1vw, 16px);
  font-style: italic;
}
.project-showcase-note small {
  max-width: 220px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.78;
}
.project-case-hero {
  width: 100vw;
  min-height: 100vh;
  margin-left: calc((100vw - 100%) / -2);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #050505;
}
.project-case-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.35), rgba(5,5,5,.78)),
    linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.42) 50%, rgba(5,5,5,.96)),
    var(--project-image) center / cover no-repeat;
  filter: blur(7px) saturate(.72) brightness(.62);
  transform: scale(1.05);
  opacity: .66;
}
.project-case-hero--supermade .project-case-hero-media {
  background:
    linear-gradient(180deg, rgba(5,5,5,.08), rgba(5,5,5,.55)),
    linear-gradient(90deg, rgba(5,5,5,.64), rgba(5,5,5,.08) 50%, rgba(5,5,5,.64)),
    url("/assets/supermade-case-hero.jpg") center 52% / cover no-repeat;
  filter: blur(3px) saturate(.86) brightness(1.04);
  opacity: .9;
}
.project-case-hero--cotosen .project-case-hero-media {
  background:
    linear-gradient(180deg, rgba(5,5,5,.1), rgba(5,5,5,.7)),
    linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.12) 52%, rgba(5,5,5,.82)),
    url("/assets/cotosen-cover.jpg") center center / cover no-repeat;
  filter: blur(3px) saturate(.72) brightness(.72);
  opacity: .78;
}
.project-case-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 56px));
  text-align: center;
}
.project-case-hero-content p,
.project-case-hero-content dt {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-case-hero-content h2 {
  margin: 22px 0 10px;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 300;
  line-height: .95;
  white-space: nowrap;
}
.project-case-hero-content span {
  display: block;
  color: rgba(255,255,255,.64);
  font-size: 14px;
}
.project-case-hero-content > small {
  display: block;
  max-width: 100%;
  margin: 34px auto 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.9;
}
.project-case-link {
  display: table;
  margin: 18px auto 0;
  padding-bottom: 5px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.32);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.project-case-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.74);
}
.project-case-hero-content dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: left;
}
.project-case-hero-content dd {
  margin: 8px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.55;
}
.project-pillar-selector {
  width: 100%;
  min-width: 0;
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  align-content: center;
  gap: clamp(42px, 5vw, 72px);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 0;
}
.project-pillar-selector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.09);
}
.project-pillar-head {
  width: min(760px, 100%);
}
.project-pillar-head p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.36);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-pillar-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: .98;
}
.project-pillar-head small {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.8;
}
.project-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.project-pillar-options {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.project-pillar-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-pillar-hint {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  line-height: 1.6;
}
.project-pillar-grid--single {
  grid-template-columns: minmax(0, 1fr);
}
.project-pillar-grid--single .project-pillar-card {
  cursor: default;
}
.project-pillar-grid--single .project-pillar-card:hover {
  transform: none;
}
.project-pillar-card {
  min-width: 0;
  min-height: 220px;
  padding: 28px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(6,6,6,.82);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background-color .24s ease, color .24s ease, transform .24s ease;
}
.project-pillar-card:hover,
.project-pillar-card.is-active {
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.024)),
    rgba(18,18,18,.94);
}
.project-pillar-card:hover {
  transform: translateY(-2px);
}
.project-pillar-card span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255,255,255,.38);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
}
.project-pillar-card strong {
  display: block;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1;
}
.project-pillar-card small {
  display: block;
  max-width: 280px;
  margin-top: 18px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.75;
}
.project-pillar-card.is-active small,
.project-pillar-card:hover small {
  color: rgba(255,255,255,.68);
}
.project-overlay-gallery-item[hidden] {
  display: none !important;
}
.project-aigc-section {
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-content: center;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 92px);
  padding: clamp(72px, 9vh, 112px) 0;
}
.project-aigc-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.09);
}
.project-aigc-copy p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.36);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-aigc-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1;
}
.project-aigc-copy small {
  display: block;
  margin-top: 24px;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.9;
}
.project-aigc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.project-aigc-grid article {
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(6,6,6,.82);
}
.project-aigc-grid span {
  display: block;
  margin-bottom: 72px;
  color: rgba(255,255,255,.36);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
}
.project-aigc-grid h4 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 300;
  line-height: 1;
}
.project-aigc-grid p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.78;
}
.project-campaign-section {
  display: block;
  min-height: auto;
}
.project-campaign-section > .project-aigc-copy {
  max-width: 640px;
  padding-top: clamp(72px, 9vh, 112px);
}
.project-campaign-cases {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(36px, 4.6vw, 64px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.project-campaign-case {
  padding: 0 0 clamp(88px, 10vh, 140px);
}
.project-campaign-case-head {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: 18px clamp(32px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 54px);
}
.project-campaign-case-head p {
  grid-column: 1;
  margin: 0 0 8px;
  color: rgba(255,255,255,.36);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-campaign-case-head h4 {
  grid-column: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 300;
  line-height: 1.05;
}
.project-campaign-case-head small {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 480px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.9;
}
.project-campaign-devices {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 68px) clamp(28px, 3.2vw, 54px);
  align-items: start;
}
.project-campaign-devices .is-pc-device {
  grid-column: span 6;
}
.project-campaign-devices .is-mobile-device {
  grid-column: span 3;
}
.project-campaign-devices .project-device--pc {
  max-width: none;
  justify-self: stretch;
}
.project-campaign-devices .project-device--pc:not(.has-device-overflow) {
  width: 100%;
  justify-self: stretch;
}
.project-campaign-devices.has-multiple-mobile .project-device--mobile {
  width: clamp(176px, 12vw, 222px);
  margin-right: 0;
}
.project-campaign-devices.has-multiple-mobile .is-mobile-device .project-device-label {
  width: clamp(176px, 12vw, 222px);
  margin-right: 0;
}
.project-campaign-devices .project-device-progress {
  top: 44px;
}
.project-flow-section {
  position: relative;
  min-height: auto;
  align-content: start;
  grid-template-columns: 1fr;
  row-gap: clamp(24px, 3.4vw, 48px);
  padding-top: clamp(34px, 4.4vw, 70px);
  padding-bottom: clamp(96px, 10vh, 138px);
}
.project-flow-note {
  position: relative;
  top: auto;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  gap: 12px;
  align-items: start;
  padding: 0;
  border: 0;
}
.project-flow-heading {
  grid-column: 1;
}
.project-flow-heading p {
  margin: 0 0 8px;
}
.project-flow-heading h3 {
  max-width: 420px;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}
.project-flow-copy {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: max-content;
  gap: 6px;
  padding-top: 2px;
}
.project-flow-copy span,
.project-flow-principle span {
  margin: 0;
  color: rgba(255,255,255,.36);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-flow-copy small,
.project-flow-principle small {
  max-width: 520px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.78;
  white-space: nowrap;
}
.project-flow-devices {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 36px);
  align-items: start;
  width: 100%;
}
.project-flow-principle {
  position: relative;
  left: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: max-content;
  gap: 6px;
  max-width: none;
  margin-top: calc(clamp(24px, 3.4vw, 48px) * -0.58);
}
.project-flow-section.has-pc-device .is-pc-device {
  grid-column: 1 / span 9;
}
.project-flow-section.has-pc-device .is-mobile-device {
  grid-column: span 3;
}
.project-flow-section.has-three-devices .is-pc-device {
  grid-column: 1 / span 8;
}
.project-flow-section.has-three-devices .is-mobile-device {
  grid-column: span 2;
}
.project-flow-section.has-multiple-mobile:not(.has-pc-device) .project-flow-devices {
  grid-template-columns: repeat(auto-fit, minmax(230px, 270px));
  justify-content: start;
  gap: clamp(38px, 5vw, 72px);
}
.project-flow-section.has-multiple-mobile:not(.has-pc-device) .is-mobile-device {
  grid-column: auto;
}
.project-flow-section.has-one-device .project-flow-devices {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.project-flow-section.has-one-device .project-device-block {
  grid-column: 1 / span 8;
}
.project-device-block {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.project-flow-devices .is-pc-device {
  align-self: start;
}
.project-flow-devices .is-mobile-device {
  min-width: 0;
}
.is-mobile-device .project-device-label {
  width: clamp(214px, 15vw, 270px);
  justify-self: center;
  margin-right: 36px;
}
.project-device-label {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-device-label span {
  margin-right: 10px;
  color: rgba(255,255,255,.78);
}
.project-device {
  --screen-window: min(63vh, 700px);
  position: relative;
  width: 100%;
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    rgba(16,16,16,.82);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 38px 110px rgba(0,0,0,.66),
    inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
}
.project-device--pc {
  max-width: 980px;
}
.project-device--pc:not(.has-device-overflow) {
  width: min(100%, 980px);
  justify-self: end;
}
.project-flow-devices .project-device--pc {
  max-width: none;
  justify-self: stretch;
}
.project-flow-devices .project-device--pc:not(.has-device-overflow) {
  width: 100%;
  justify-self: stretch;
}
.project-device--pc:not(.has-device-overflow) .project-device-screen {
  height: auto;
  aspect-ratio: 16 / 9;
}
.project-device--mobile {
  --screen-window: 667px;
  width: clamp(214px, 15vw, 270px);
  justify-self: center;
  margin-right: 36px;
  padding: 10px;
  overflow: visible;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.035) 18%, rgba(0,0,0,.78)),
    #090909;
  box-shadow:
    0 34px 95px rgba(0,0,0,.68),
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.project-flow-section.has-multiple-mobile .project-device--mobile {
  width: clamp(188px, 13vw, 232px);
  margin-right: 0;
}
.project-flow-section.has-multiple-mobile .is-mobile-device .project-device-label {
  width: clamp(188px, 13vw, 232px);
  margin-right: 0;
}
.project-flow-section.has-one-device .project-device--mobile {
  justify-self: start;
}
.project-flow-section.has-one-device .is-mobile-device .project-device-label {
  justify-self: start;
  margin-right: 0;
}
.project-device--pc .project-device-bar {
  display: flex;
}
.project-device--mobile .project-device-bar {
  display: none;
}
.project-device-bar {
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-device-bar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
}
.project-device-bar em {
  margin-left: auto;
  font-style: normal;
}
.project-device-screen {
  position: relative;
  height: var(--screen-window);
  overflow: hidden;
  background: #0a0a0a;
}
.project-device--mobile .project-device-screen {
  height: auto;
  aspect-ratio: 375 / 812;
  border-radius: 28px;
  clip-path: inset(0 round 28px);
  contain: paint;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: radial-gradient(#fff, #000);
  mask-image: radial-gradient(#fff, #000);
  -webkit-mask-clip: padding-box;
  mask-clip: padding-box;
}
.project-device-screen img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.94) contrast(1.03);
  transform: translate3d(0, 0, 0);
}
.project-device--mobile .project-device-screen img {
  border-radius: inherit;
  clip-path: inset(0 round 28px);
}
.project-showcase.is-scrollable .project-device-screen img {
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.project-campaign-case .project-device-screen img {
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.project-device-progress {
  position: absolute;
  right: -34px;
  top: 44px;
  bottom: 26px;
  z-index: 4;
  width: 20px;
  height: auto;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,.18) 8px 10px, transparent 10px);
  cursor: ns-resize;
  opacity: .86;
  touch-action: none;
  pointer-events: auto;
}
.project-device:not(.has-device-overflow) .project-device-progress {
  opacity: 0;
  pointer-events: none;
}
.project-device-progress i {
  display: block;
  width: 4px;
  height: 46px;
  margin: 0 auto;
  border-radius: inherit;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 14px rgba(255,255,255,.38);
  transition: transform .22s cubic-bezier(.16,1,.3,1), height .22s ease;
}
.project-device--mobile .project-device-progress {
  top: 48px;
  right: -30px;
  bottom: 22px;
}
.project-device-hint {
  display: none;
}
.project-device--mobile .project-device-hint {
  display: none;
}
.project-device::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255,255,255,.18), transparent 18%, transparent 72%, rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 28%);
  mix-blend-mode: screen;
  opacity: .42;
}
.project-device--mobile::before {
  inset: 10px;
  border-radius: 28px;
}
.project-device--mobile::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 22%;
  min-width: 54px;
  max-width: 66px;
  height: 17px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 74% 50%, rgba(34,34,34,.92) 0 3px, transparent 4px),
    linear-gradient(180deg, #030303, #111);
  transform: translateX(-50%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
}
@media (hover: hover) {
  .project-showcase.is-scrollable .project-device-screen img {
    transition-duration: .28s;
  }
  .project-device-progress:hover i,
  .project-device.is-dragging .project-device-progress i {
    height: 58px;
  }
}
.project-showcase.is-mobile .project-showcase-note {
  max-width: none;
}
.project-showcase.is-mobile {
  grid-template-columns: minmax(150px, 230px) minmax(238px, 340px);
  align-items: start;
  justify-content: end;
}
.project-showcase.is-mobile .project-showcase-note {
  display: block;
}
.project-showcase.is-mobile .project-showcase-note p {
  margin-bottom: 18px;
}
.project-showcase.is-mobile .project-showcase-note h3 {
  font-size: clamp(22px, 2vw, 32px);
}
.project-showcase.is-mobile.is-reverse .project-device {
  order: 0;
}
.project-overlay-spacer {
  display: none;
}
.project-overlay[data-state="open"] .project-overlay-gallery {
  opacity: 1;
}
.project-overlay-close {
  position: fixed;
  right: 28px;
  top: 86px;
  z-index: 3;
  width: auto;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: rgba(5,5,5,.62);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 40px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s ease .25s, transform .35s ease .25s, background .25s ease;
}
.project-overlay[data-state="open"] .project-overlay-close {
  opacity: 1;
  transform: translateY(0);
}
.project-overlay-close:hover {
  background: var(--white);
  color: var(--black);
}
@media (max-width: 900px) {
  .rotonde-section { min-height: 100vh; }
  .rotonde-title {
    top: 130px;
    font-size: 10px;
  }
  .rotonde-index {
    left: 18px;
    top: 110px;
    font-size: 10px;
  }
  .rotonde-card {
    width: 76vw;
  }
  .rotonde-card h3 {
    font-size: 22px;
  }
  .rotonde-card[data-slot="0"] { --x: 0px; --y: 26px; --z: 120px; --rotate: 0deg; --scale: 1; }
  .rotonde-card[data-slot="1"] { --x: 260px; --y: 22px; --z: -80px; --rotate: -18deg; --scale: .72; }
  .rotonde-card[data-slot="2"] { --x: 160px; --y: -270px; --z: -180px; --rotate: -12deg; --scale: .48; }
  .rotonde-card[data-slot="3"] { --x: -170px; --y: -260px; --z: -180px; --rotate: 12deg; --scale: .5; }
  .rotonde-card[data-slot="4"] { --x: -260px; --y: 70px; --z: -100px; --rotate: 18deg; --scale: .7; }
  .rotonde-card[data-slot="5"] { --x: 120px; --y: 260px; --z: -160px; --rotate: -12deg; --scale: .5; }
  .rotonde-instructions {
    width: 100%;
    text-align: center;
    bottom: 72px;
    font-size: 9px;
  }
  .rotonde-progress {
    width: 220px;
    bottom: 56px;
    gap: 8px;
  }
  .rotonde-controls {
    display: none;
  }
  .project-overlay-copy {
    position: relative;
    top: auto;
    left: auto;
    max-height: none;
    overflow: visible;
    margin: 0;
    padding: 92px 21px 36px;
    width: calc(100vw - 42px);
  }
  .project-overlay h2 {
    font-size: clamp(36px, 12vw, 56px);
  }
  .project-overlay-role {
    font-size: 16px;
  }
  .project-overlay-desc {
    font-size: 13px;
    max-width: none;
  }
  .project-overlay-case {
    display: block;
  }
  .project-overlay-gallery {
    width: calc(100vw - 56px);
    margin: 0;
    padding: 0 0 104px;
    gap: 76px;
    grid-template-columns: minmax(0, 1fr);
  }
  .project-long-strip-hero.project-overlay-gallery-item {
    padding: 164px 0 0;
  }
  .project-long-strip-item {
    width: 100%;
    margin: 0;
  }
  .project-overlay-nav {
    inset: 0 0 auto;
    padding: 18px;
  }
  .project-overlay-nav nav {
    justify-content: flex-end;
    gap: 18px;
    overflow-x: auto;
  }
  .project-overlay-nav nav a {
    flex: 0 0 auto;
    font-size: 12px;
  }
  .project-overlay-brand {
    font-size: 16px;
  }
  .project-case-hero {
    min-height: 100vh;
  }
  .project-case-hero-content {
    width: calc(100% - 32px);
  }
  .project-case-hero-content h2 {
    font-size: clamp(30px, 10vw, 46px);
    white-space: nowrap;
  }
  .project-case-hero-content dl {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .project-pillar-selector {
    min-height: auto;
    padding: 64px 0;
    gap: 34px;
  }
  .project-pillar-head h3 {
    font-size: clamp(30px, 10vw, 42px);
  }
  .project-pillar-grid {
    grid-template-columns: 1fr;
  }
  .project-pillar-card {
    min-height: 174px;
    padding: 24px;
  }
  .project-pillar-card span {
    margin-bottom: 34px;
  }
  .project-aigc-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 0;
  }
  .project-aigc-copy h3 {
    font-size: clamp(30px, 10vw, 42px);
  }
  .project-aigc-grid {
    grid-template-columns: 1fr;
  }
  .project-aigc-grid article {
    min-height: 190px;
    padding: 24px;
  }
  .project-aigc-grid span {
    margin-bottom: 36px;
  }
  .project-campaign-section > .project-aigc-copy {
    padding-top: 64px;
  }
  .project-campaign-case-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-campaign-case-head small {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }
  .project-campaign-devices {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-campaign-devices .is-pc-device,
  .project-campaign-devices .is-mobile-device {
    grid-column: auto;
  }
  .project-campaign-devices .project-device--mobile,
  .project-campaign-devices.has-multiple-mobile .project-device--mobile {
    width: min(260px, 74vw);
    margin-right: 30px;
  }
  .project-campaign-devices .is-mobile-device .project-device-label,
  .project-campaign-devices.has-multiple-mobile .is-mobile-device .project-device-label {
    width: min(260px, 74vw);
    margin-right: 30px;
  }
  .project-overlay-gallery-item {
    min-height: auto;
    aspect-ratio: auto;
  }
  .project-overlay-gallery-item.has-real-screen {
    aspect-ratio: auto;
  }
  .project-showcase,
  .project-showcase.is-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 20px 0;
  }
  .project-showcase.is-reverse .project-showcase-note {
    order: 0;
  }
  .project-showcase.is-mobile,
  .project-showcase.is-mobile.is-reverse {
    grid-template-columns: 1fr;
  }
  .project-showcase.is-mobile.is-reverse .project-device {
    order: 0;
  }
  .project-showcase::before {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 100vw;
    transform: translateX(-50%);
  }
  .project-showcase::after {
    right: 8px;
    top: 64px;
    font-size: 48px;
  }
  .project-showcase-note {
    position: relative;
    top: auto;
    display: block;
    padding: 0 4px;
  }
  .project-showcase-note h3 {
    font-size: clamp(24px, 8vw, 38px);
  }
  .project-showcase-note span {
    font-size: 14px;
  }
  .project-showcase-note small {
    max-width: none;
    font-size: 12px;
  }
  .project-flow-note {
    min-height: auto;
    gap: 10px;
    padding-top: 18px;
  }
  .project-flow-section {
    grid-template-columns: 1fr;
  }
  .project-flow-copy {
    display: grid;
    grid-template-columns: max-content;
    gap: 6px;
    padding-top: 10px;
  }
  .project-flow-copy span:nth-of-type(2) {
    margin-top: 0;
    padding-top: 0;
  }
  .project-flow-copy small {
    max-width: none;
  }
  .project-flow-principle {
    grid-template-columns: max-content;
    gap: 6px;
    margin-top: -18px;
  }
  .project-flow-devices,
  .project-flow-section.has-three-devices .project-flow-devices,
  .project-flow-section.has-one-device .project-flow-devices {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-flow-section.has-pc-device .is-pc-device,
  .project-flow-section.has-pc-device .is-mobile-device,
  .project-flow-section.has-three-devices .is-pc-device,
  .project-flow-section.has-three-devices .is-mobile-device,
  .project-flow-section.has-one-device .project-device-block {
    grid-column: auto;
  }
  .project-flow-section.has-one-device .project-device--mobile {
    justify-self: center;
  }
  .project-device {
    --screen-window: min(62vh, 520px);
  }
  .project-device--pc {
    max-width: none;
    justify-self: stretch;
  }
  .project-device--mobile {
    --screen-window: 520px;
    width: min(260px, 74vw);
    margin-right: 30px;
  }
  .is-mobile-device .project-device-label,
  .project-flow-section.has-one-device .is-mobile-device .project-device-label {
    width: min(260px, 74vw);
    justify-self: center;
    margin-right: 30px;
  }
  .project-overlay-close {
    right: 28px;
    top: 104px;
  }
}

.contact-actions > .button-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.contact-actions > .button-row .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  transform: translateY(14px) scale(.96);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}
.top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.top-button:hover {
  filter: brightness(1.12);
}
.top-button:focus-visible {
  outline: 1px solid rgba(255,255,255,.78);
  outline-offset: 4px;
}
.top-button img {
  display: block;
  width: 48px;
  height: 48px;
}

@media (max-width: 720px) {
  .top-button {
    right: 18px;
    bottom: 72px;
    width: 48px;
    height: 48px;
  }
  .top-button img {
    width: 48px;
    height: 48px;
  }
}

/* Standalone About / Resume */
.about-page {
  min-height: 100%;
  background: #000;
}

.about-page .site-header {
  background: rgba(0, 0, 0, .82);
}

.about-resume-page {
  min-height: 100svh;
  padding: 142px 28px 88px;
  background: #000;
}

.about-resume-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(56px, 6vw, 92px);
  align-items: start;
}

.about-resume-profile {
  position: sticky;
  top: 118px;
}

.about-resume-heading {
  margin-bottom: 22px;
}

.about-resume-heading > span {
  display: block;
  margin-bottom: 3px;
  color: rgba(247, 247, 245, .72);
  font-size: 24px;
  line-height: 1;
}

.about-resume-heading h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.about-resume-photo {
  height: 322px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #111;
}

.about-resume-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(1) contrast(1.05);
}

.about-resume-identity {
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.about-resume-identity strong,
.about-resume-identity span {
  display: block;
}

.about-resume-identity strong {
  margin-bottom: 5px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.035em;
}

.about-resume-identity span {
  color: rgba(247, 247, 245, .7);
  font-size: 15px;
  line-height: 1.35;
}

.resume-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: #000;
  color: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.resume-download span {
  font-size: 14px;
  font-weight: 600;
}

.resume-download small {
  color: inherit;
  font-family: var(--mono);
  font-size: 9px;
  opacity: .62;
  white-space: nowrap;
}

.resume-download:hover,
.resume-download:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #000;
  outline: 0;
}

.about-resume-content {
  min-width: 0;
}

.about-resume-section {
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.about-resume-section + .about-resume-section {
  padding-top: 32px;
}

.about-resume-section-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 22px;
}

.about-resume-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

.about-resume-section-heading span {
  color: rgba(247, 247, 245, .45);
  font-size: 11px;
}

.about-resume-intro {
  max-width: 800px;
  margin: 0 0 22px;
  color: rgba(247, 247, 245, .72);
  font-size: 15px;
  line-height: 1.75;
}

.about-resume-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin: 0;
}

.about-resume-fields div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
}

.about-resume-fields dt,
.about-resume-fields dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.about-resume-fields dt {
  color: rgba(247, 247, 245, .42);
}

.about-resume-fields dd {
  color: rgba(247, 247, 245, .86);
  font-weight: 600;
}

.about-resume-education {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.about-resume-education strong {
  font-size: 15px;
  font-weight: 500;
}

.about-resume-education span {
  color: rgba(247, 247, 245, .5);
  font-family: var(--mono);
  font-size: 11px;
}

.about-resume-experience {
  border-bottom: 0;
}

.about-resume-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-resume-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  bottom: 11px;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

.about-resume-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 0 0 18px 22px;
}

.about-resume-timeline li:last-child {
  padding-bottom: 0;
}

.about-resume-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

.about-resume-timeline time,
.about-resume-timeline > li > span {
  color: rgba(247, 247, 245, .5);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
}

.about-resume-timeline > li > span {
  white-space: nowrap;
}

.about-resume-timeline strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(247, 247, 245, .9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.about-resume-timeline p {
  margin: 0;
  color: rgba(247, 247, 245, .48);
  font-size: 11px;
  line-height: 1.55;
}

.about-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 34px;
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: #000;
  color: rgba(247, 247, 245, .5);
  font-family: var(--mono);
  font-size: 10px;
}

.about-footer a {
  color: rgba(247, 247, 245, .78);
}

.about-footer a:hover,
.about-footer a:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .about-resume-page {
    padding: 108px 18px 64px;
  }

  .about-resume-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-resume-profile {
    position: static;
  }

  .about-resume-heading > span {
    font-size: 20px;
  }

  .about-resume-heading h1 {
    font-size: 38px;
  }

  .about-resume-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .about-resume-fields {
    grid-template-columns: 1fr;
  }

  .about-resume-timeline li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 0 0 26px 22px;
  }

  .about-resume-timeline > li > span {
    order: -1;
  }

  .about-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px 40px;
  }
}

@media (max-width: 520px) {
  .about-resume-section-heading {
    display: block;
  }

  .about-resume-section-heading h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .about-resume-education {
    display: grid;
    justify-content: start;
    gap: 8px;
  }
}
