@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Unbounded:wght@500;600&display=swap");

:root {
  --black: #292a27;
  --paper: #dcd7cc;
  --bright: #ebe6dc;
  --ink: #24241f;
  --muted: #706d65;
  --line: rgba(36, 36, 31, 0.19);
  --red: #8f6560;
  --acid: #b7bd4d;
  --nav: 132px;
  --overlap: 30px;
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::after {
  position: fixed;
  z-index: 20;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, p { margin-top: 0; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--bright);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.profile-shell {
  min-height: 100vh;
}
.portrait-panel {
  position: fixed;
  z-index: 0;
  inset: 0 52% 0 0;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}
.portrait-panel > img {
  width: 108%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translateX(2.5%);
}
.portrait-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 72%, rgba(41, 42, 39, .06) 88%, rgba(41, 42, 39, .22)),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .75));
}
.portrait-signature {
  position: absolute;
  right: 44px;
  bottom: 38px;
  left: 44px;
  display: grid;
  grid-template-columns: 9px 1fr;
  align-items: center;
  gap: 4px 12px;
}
.portrait-signature .signal {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  grid-row: 1 / 3;
}
.portrait-signature p {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
}
.portrait-signature > span:last-child {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portrait-index {
  position: absolute;
  top: 28px;
  left: 34px;
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
}

.content-panel {
  position: relative;
  z-index: 2;
  width: calc(52% + var(--overlap));
  min-width: 0;
  margin-left: calc(48% - var(--overlap));
  background: transparent;
  box-shadow: -40px 0 70px rgba(41, 42, 39, .1);
  backdrop-filter: blur(4px);
}
.mobile-header { display: none; }
.section-nav {
  position: fixed;
  z-index: 30;
  inset: 0 0 0 auto;
  display: flex;
  width: var(--nav);
  border-left: 1px solid var(--line);
  background: rgba(220, 215, 204, .94);
  flex-direction: column;
  backdrop-filter: blur(12px);
}
.section-nav a {
  position: relative;
  display: flex;
  min-height: 0;
  padding: 22px 19px;
  border-bottom: 1px solid var(--line);
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  transition: background 180ms ease;
}
.section-nav a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  content: "";
  transform: scaleY(0);
  transition: transform 180ms ease;
}
.section-nav a:hover,
.section-nav a[aria-current="page"] { background: var(--bright); }
.section-nav a[aria-current="page"]::before { transform: scaleY(1); }
.section-nav span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
}
.section-nav strong {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.sections {
  height: 100vh;
  margin-right: var(--nav);
  overflow: hidden;
}
.page-section {
  height: 100%;
  padding: 30px clamp(32px, 5vw, 78px) 70px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}
.page-section[hidden] { display: none; }
.about-section,
.manifest-section,
.work-section {
  background: linear-gradient(
    90deg,
    rgba(220, 215, 204, 0),
    rgba(220, 215, 204, .46) 14%,
    rgba(220, 215, 204, .74) 34%,
    rgba(220, 215, 204, .9) 62%,
    rgba(220, 215, 204, .98) 100%,
    var(--paper) 100%
  );
  backdrop-filter: blur(4px);
}
.section-topline {
  display: flex;
  margin-bottom: clamp(58px, 9vh, 110px);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.about-title p,
.manifest-hero > p,
.work-intro > p,
.contacts-kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-title h1,
.manifest-hero h1,
.work-intro h1,
.contacts-content h1,
.placeholder h1 {
  max-width: 820px;
  margin-bottom: clamp(60px, 10vh, 120px);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(34px, 4.35vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.manifest-content {
  display: grid;
  max-width: 980px;
  margin-left: auto;
  gap: 70px;
}
.manifest-hero h1 {
  font-size: clamp(34px, 3.8rem, 62px);
  letter-spacing: 0;
}
.manifest-lead {
  display: grid;
  gap: 28px;
  font-size: clamp(19px, 1.35rem, 23px);
  line-height: 1.65;
}
.manifest-lead p,
.manifest-block > p,
.model-copy p {
  margin-bottom: 0;
}
.manifest-kicker {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.manifest-grid {
  display: grid;
  margin-top: 18px;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.manifest-grid > div {
  min-width: 0;
  padding: 0;
}
.manifest-grid h2,
.model-copy h2 {
  margin-bottom: 18px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(19px, 1.45rem, 27px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}
.manifest-grid p,
.manifest-economy p,
.model-copy p {
  color: #514f48;
  font-size: 15px;
  line-height: 1.68;
}
.operating-model {
  display: grid;
  min-height: 520px;
  border-block: 1px solid var(--line);
  align-items: center;
  gap: 34px;
  grid-template-columns: 1fr;
}
.model-copy {
  max-width: 720px;
  padding: 38px 0 0;
}
.model-diagram {
  position: relative;
  width: min(100%, 560px);
  min-height: 500px;
  margin: 0 auto 34px;
  overflow: hidden;
  isolation: isolate;
}
.model-diagram::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(143, 101, 96, .24);
  background:
    radial-gradient(circle at center, rgba(183, 189, 77, .2), transparent 38%),
    repeating-linear-gradient(90deg, rgba(36, 36, 31, .08) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(36, 36, 31, .08) 0 1px, transparent 1px 48px);
  content: "";
  transform: rotate(-2deg);
}
.model-core,
.model-node,
.model-ring {
  position: absolute;
}
.model-core {
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(36, 36, 31, .72);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bright);
  text-align: center;
  place-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 60px rgba(41, 42, 39, .24);
}
.model-core span {
  margin-bottom: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}
.model-core strong {
  color: rgba(235, 230, 220, .68);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.model-node {
  z-index: 4;
  display: grid;
  width: 150px;
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(36, 36, 31, .22);
  background: rgba(235, 230, 220, .92);
  box-shadow: 0 18px 42px rgba(41, 42, 39, .12);
  gap: 7px;
}
.model-node::before {
  position: absolute;
  inset: -4px auto auto -4px;
  width: 11px;
  height: 11px;
  background: var(--acid);
  content: "";
}
.model-node span {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}
.model-node small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.model-node-market { top: 4%; left: 36%; }
.model-node-strategy { top: 22%; right: 3%; }
.model-node-product { right: 8%; bottom: 16%; }
.model-node-tech { bottom: 4%; left: 36%; }
.model-node-data { bottom: 16%; left: 4%; }
.model-node-team { top: 22%; left: 1%; }
.model-ring {
  z-index: 2;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(143, 101, 96, .48);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.model-ring-one {
  width: 62%;
  height: 62%;
  animation: modelPulse 4.8s ease-in-out infinite;
}
.model-ring-two {
  width: 82%;
  height: 82%;
  border-style: dashed;
  animation: modelRotate 32s linear infinite;
}
.product-flow-model {
  display: grid;
  width: min(100%, 980px);
  margin-left: auto;
  gap: 28px;
}
.flow-intro {
  max-width: 760px;
}
.flow-intro h2 {
  margin-bottom: 18px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(22px, 1.6rem, 30px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}
.flow-intro p:last-child {
  margin: 0;
  color: #514f48;
  font-size: 15px;
  line-height: 1.68;
}
.product-flow-grid {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 30px 30px 72px;
  border-radius: 8px;
  border: 1px solid rgba(41, 42, 39, .14);
  background:
    linear-gradient(90deg, rgba(41, 42, 39, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(41, 42, 39, .035) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(183, 189, 77, .18), transparent 24%),
    radial-gradient(circle at 87% 66%, rgba(73, 169, 179, .12), transparent 28%),
    rgba(235, 230, 220, .58);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  box-shadow: 0 24px 72px rgba(41, 42, 39, .12);
  color: var(--ink);
  isolation: isolate;
}
.flow-vertical-map {
  display: grid;
  gap: 22px;
}
.flow-vertical-map::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(143, 101, 96, .11);
  border-radius: 8px;
  content: "";
}
.flow-motion-path {
  position: absolute;
  top: 52px;
  bottom: 122px;
  left: 35px;
  width: 24px;
  pointer-events: none;
}
.flow-motion-path::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: linear-gradient(180deg, rgba(143, 101, 96, .08), rgba(73, 169, 179, .58), rgba(183, 189, 77, .32), rgba(143, 101, 96, .18));
  content: "";
}
.flow-arrow {
  position: absolute;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(143, 101, 96, .12), 0 0 24px rgba(73, 169, 179, .45);
  animation: flowArrowPulse 4.8s linear infinite;
}
.flow-arrow::after {
  position: relative;
  top: 10px;
  left: 1px;
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  content: "";
  transform: rotate(45deg);
}
.flow-arrow-one { top: 5%; }
.flow-arrow-two { top: 31%; animation-delay: .7s; }
.flow-arrow-three { top: 57%; animation-delay: 1.4s; }
.flow-arrow-four { top: 82%; animation-delay: 2.1s; }
.flow-column,
.flow-rail {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(41, 42, 39, .13);
  border-radius: 8px;
  background: rgba(248, 244, 235, .76);
  box-shadow: 0 18px 44px rgba(41, 42, 39, .08);
  gap: 18px;
}
.flow-column::before,
.flow-rail::before {
  position: absolute;
  top: 25px;
  left: -38px;
  width: 38px;
  height: 1px;
  background: rgba(73, 169, 179, .54);
  content: "";
}
.flow-column::after,
.flow-rail::after {
  position: absolute;
  top: 20px;
  left: -43px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #49a9b3;
  box-shadow: 0 0 0 5px rgba(73, 169, 179, .14);
  content: "";
}
.flow-column header {
  display: grid;
  max-width: 760px;
  gap: 10px;
}
.flow-column header span,
.flow-rail-heading span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.flow-column h3 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(20px, 1.45rem, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}
.flow-column p {
  max-width: 760px;
  margin: 0;
  color: #514f48;
  font-size: 14px;
  line-height: 1.62;
}
.flow-signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 10px;
}
.flow-signal-card {
  display: grid;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(73, 169, 179, .38);
  border-radius: 6px;
  background: rgba(255, 252, 244, .72);
  align-content: center;
  gap: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
}
.flow-signal-card i {
  color: #49a9b3;
  font-style: normal;
  font-weight: 800;
}
.flow-signal-card strong,
.flow-box,
.flow-rail-stack div {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.flow-process-list,
.flow-stage-list,
.flow-rail-stack {
  display: grid;
  gap: 10px;
}
.flow-process-list {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.flow-box-list {
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
}
.flow-process-step {
  min-width: 0;
  border: 1px solid rgba(41, 42, 39, .12);
  border-radius: 6px;
  background: rgba(235, 230, 220, .52);
}
.flow-process-list .flow-process-step {
  display: grid;
  min-height: 72px;
  padding: 13px;
  align-content: center;
  gap: 6px;
}
.flow-process-step span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.flow-process-step strong {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}
.flow-process-step small {
  color: #6b675f;
  font-size: 11px;
  line-height: 1.35;
}
.flow-stage-list {
  position: relative;
  margin: 4px 0 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  list-style: none;
  row-gap: 14px;
}
.flow-stage-list::before {
  display: none;
}
.flow-stage {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  padding: 8px;
  border: 2px solid rgba(73, 169, 179, .52);
  border-radius: 50%;
  background: rgba(255, 252, 244, .92);
  align-content: center;
  justify-items: center;
  gap: 4px;
  box-shadow: 0 12px 28px rgba(73, 169, 179, .1);
  text-align: center;
}
.flow-stage b {
  display: block;
  font-size: 10px;
  line-height: 1.05;
  letter-spacing: 0;
}
.flow-stage small {
  display: block;
  max-width: 62px;
  color: #6b675f;
  font-size: 8px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}
.flow-stage-live {
  border-color: var(--red);
  background: rgba(143, 101, 96, .12);
  box-shadow: 0 0 0 7px rgba(143, 101, 96, .08), 0 18px 34px rgba(143, 101, 96, .12);
}
.flow-box {
  display: grid;
  min-height: 58px;
  padding: 12px 8px;
  place-items: center;
  text-align: center;
}
.flow-foundation {
  position: relative;
  display: grid;
  margin-top: 2px;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 10px;
}
.flow-foundation div {
  display: grid;
  color: #514f48;
  place-items: center;
  text-align: center;
}
.flow-foundation span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border: 1px solid rgba(73, 169, 179, .42);
  border-radius: 50%;
  background: rgba(255, 252, 244, .66);
  color: #49a9b3;
  place-items: center;
  box-shadow: 0 10px 26px rgba(73, 169, 179, .1);
}
.flow-foundation small {
  max-width: 88px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
}
.flow-rail {
  grid-template-columns: minmax(180px, .56fr) minmax(0, 1fr);
  align-items: center;
}
.flow-rail-heading {
  display: grid;
  gap: 8px;
}
.flow-rail-heading strong {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(18px, 1.2rem, 24px);
  font-weight: 500;
  letter-spacing: 0;
}
.flow-rail-stack {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}
.flow-rail-stack div {
  display: grid;
  min-height: 54px;
  padding: 12px 8px;
  border: 1px solid rgba(143, 101, 96, .22);
  border-radius: 6px;
  background: rgba(255, 252, 244, .68);
  color: var(--ink);
  place-items: center;
  text-align: center;
}
.manifest-grid-compact {
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.manifest-grid-compact > div {
  display: grid;
  align-content: start;
  gap: 18px;
}
.manifest-grid-compact span {
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
}
.manifest-economy {
  display: grid;
  gap: 24px;
  padding-bottom: 20px;
}
.manifest-closing {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  color: var(--ink) !important;
  font-weight: 700;
}
@keyframes modelPulse {
  0%, 100% { opacity: .34; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: .82; transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes modelRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes flowArrowPulse {
  0%, 100% { opacity: .22; transform: translateY(-8px) scale(.84); }
  45% { opacity: 1; transform: translateY(10px) scale(1); }
  70% { opacity: .48; transform: translateY(22px) scale(.92); }
}

.story {
  max-width: 690px;
  margin-left: auto;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
}
.story > p { margin-bottom: 34px; }
.story .lead {
  margin-bottom: 58px;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.55;
}
.story-note {
  display: grid;
  margin: 58px 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}
.story-note span {
  color: var(--red);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 12px;
}
.story-note p { margin: 0; font-weight: 600; }
.story-quote {
  position: relative;
  margin: 72px 0;
  padding: 42px 0 42px 42px;
  border-left: 7px solid var(--red);
}
.story-quote::after {
  position: absolute;
  top: -15px;
  right: 5%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  mix-blend-mode: multiply;
}
.story-quote p {
  max-width: 580px;
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(24px, 2.25vw, 38px);
  line-height: 1.25;
  letter-spacing: -.04em;
}
.story .closing {
  margin: 70px 0 20px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  font-weight: 700;
}

.contacts-content {
  display: flex;
  min-height: calc(100vh - 230px);
  flex-direction: column;
  justify-content: center;
}

.projects-section {
  padding-right: clamp(32px, 5vw, 78px);
  background: linear-gradient(
    90deg,
    rgba(53, 54, 51, 0),
    rgba(53, 54, 51, .4) 14%,
    rgba(53, 54, 51, .66) 34%,
    rgba(53, 54, 51, .86) 62%,
    rgba(53, 54, 51, .96) 100%
  );
  color: var(--bright);
  backdrop-filter: blur(4px);
}
.project-header {
  max-width: 900px;
}
.projects-section .section-topline {
  margin-bottom: clamp(28px, 4vh, 48px);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .54);
}
.project-heading {
  display: flex;
  margin-bottom: clamp(28px, 4vh, 46px);
  align-items: end;
  gap: 24px;
  justify-content: space-between;
}
.project-heading p {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.project-heading h1 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.06em;
}
.project-stage {
  max-width: 900px;
  outline: none;
}
.project-track {
  display: grid;
  gap: 24px;
}
.project-card {
  position: relative;
  min-height: clamp(460px, 64vh, 660px);
  overflow: hidden;
  background: #4b4b46;
  isolation: isolate;
}
.project-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(.88);
}
.project-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 30, 28, .02) 22%, rgba(29, 30, 28, .14) 48%, rgba(29, 30, 28, .84) 100%),
    linear-gradient(90deg, rgba(29, 30, 28, .11), transparent 60%);
  content: "";
}
.project-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: calc(100% - 28px);
  padding: clamp(24px, 3.2vw, 45px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.project-number {
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(29, 30, 28, .58);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--acid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-card h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(27px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.project-card-copy > p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.58;
}
.project-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(235, 230, 220, .72);
  color: var(--bright);
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}
.project-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 6px;
  margin-top: 16px;
}
.project-link-row .project-link {
  margin-top: 0;
}
.project-link-separator {
  color: rgba(235, 230, 220, .62);
  font-size: 10px;
  line-height: 1;
  transform: translateY(-1px);
}
.project-link:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.project-card details {
  max-width: 570px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}
.project-card summary {
  padding: 15px 0 0;
  color: var(--bright);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
}
.project-card summary::after {
  margin-left: 10px;
  color: var(--acid);
  content: "+";
}
.project-card details[open] summary::after { content: "−"; }
.project-card details p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.55;
}

.work-intro h1 { margin-bottom: 44px; }
.work-summary {
  display: grid;
  margin-bottom: 90px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}
.work-summary span {
  display: flex;
  padding: 20px 12px;
  color: var(--muted);
  font-size: 11px;
  flex-direction: column;
  gap: 3px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.work-summary span + span { border-left: 1px solid var(--line); }
.work-summary strong {
  color: var(--ink);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(23px, 2.1vw, 34px);
  letter-spacing: -.05em;
}
.work-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.work-card {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  background: #e7e2d8;
}
.work-card::after {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}
.work-meta {
  display: flex;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.work-card h2 {
  max-width: 670px;
  margin-bottom: 22px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.05em;
}
.work-card > p {
  max-width: 680px;
  margin-bottom: 22px;
  color: #514f48;
  font-size: 16px;
  line-height: 1.7;
}
.work-card .work-result {
  padding-left: 18px;
  border-left: 3px solid var(--acid);
  color: var(--ink);
  font-weight: 700;
}
.work-card > a,
.work-links a {
  display: inline-flex;
  margin-top: 15px;
  border-bottom: 1px solid;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.work-card a:hover { color: var(--red); }
.work-links { display: flex; gap: 24px; }
.work-card-compact { background: #42433f; color: var(--bright); }
.work-card-compact > p,
.work-card-compact .work-meta { color: rgba(255, 255, 255, .63); }

.contacts-section {
  background:
    linear-gradient(
      90deg,
      rgba(143, 107, 102, 0),
      rgba(143, 107, 102, .4) 14%,
      rgba(143, 107, 102, .66) 34%,
      rgba(143, 107, 102, .84) 62%,
      rgba(127, 100, 97, .96) 100%
    ),
    linear-gradient(145deg, rgba(143, 107, 102, .9), rgba(127, 100, 97, .94));
  color: var(--bright);
  backdrop-filter: blur(4px);
}
.contacts-section .section-topline {
  border-color: rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .68);
}
.contacts-kicker { color: var(--acid); }
.contacts-content h1 { margin-bottom: clamp(55px, 8vh, 90px); }
.contact-list { border-top: 1px solid rgba(255, 255, 255, .36); }
.contact-list a {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .36);
  align-items: center;
  grid-template-columns: 110px 1fr auto;
  transition: padding 180ms ease, background 180ms ease;
}
.contact-list a:hover { padding-inline: 14px; background: rgba(0, 0, 0, .09); }
.contact-list span {
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-list strong {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(17px, 2vw, 27px);
  font-weight: 500;
}
.contact-list i { font-size: 24px; font-style: normal; }
.contacts-note {
  margin: 50px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  :root { --nav: 94px; }
  .portrait-panel { right: 55%; }
  .content-panel {
    width: calc(55% + var(--overlap));
    margin-left: calc(45% - var(--overlap));
  }
  .page-section { padding-inline: 30px; }
}

@media (max-height: 920px) and (min-width: 761px) {
  .page-section { padding-top: 24px; padding-bottom: 42px; }
  .projects-section .section-topline { margin-bottom: 24px; }
  .project-heading { margin-bottom: 24px; }
  .project-heading p { margin-bottom: 6px; font-size: 9px; }
  .project-heading h1 { font-size: clamp(34px, 4vw, 58px); }
  .project-card { min-height: clamp(420px, 62vh, 600px); }
  .project-card-copy { padding: clamp(20px, 2.5vw, 34px); }
  .project-card h2 { font-size: clamp(25px, 2.65vw, 40px); }
  .project-card-copy > p { font-size: clamp(13px, .95vw, 16px); line-height: 1.5; }
  .project-card details { margin-top: 14px; }
}

@media (max-height: 780px) and (min-width: 761px) {
  .project-heading h1 { font-size: clamp(30px, 3.4vw, 48px); }
  .project-card { min-height: clamp(380px, 60vh, 540px); }
  .project-card-copy { padding: 20px 24px; }
  .project-number { margin-bottom: 9px; }
  .project-card h2 { margin-bottom: 12px; font-size: clamp(23px, 2.3vw, 34px); }
  .project-card-copy > p { font-size: 13px; }
}

@media (max-width: 760px) {
  .profile-shell { display: block; }
  .portrait-panel {
    position: relative;
    z-index: auto;
    inset: auto;
    height: 42vh;
    min-height: 330px;
  }
  .portrait-panel > img {
    width: 100%;
    object-position: 50% 45%;
    transform: none;
  }
  .portrait-signature { right: 20px; bottom: 18px; left: 20px; }
  .portrait-index { top: 18px; left: 20px; }
  .content-panel {
    width: auto;
    margin: 0;
    background: var(--paper);
    box-shadow: none;
    backdrop-filter: none;
  }
  .mobile-header {
    position: sticky;
    z-index: 40;
    top: 0;
    display: flex;
    height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(220, 215, 204, .96);
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
  }
  .mobile-header a { font-family: "Unbounded", Arial, sans-serif; font-size: 12px; }
  .mobile-header button {
    padding: 7px 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .section-nav {
    position: fixed;
    inset: 58px 0 auto;
    display: none;
    width: auto;
    border: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
  }
  .section-nav[data-open] { display: grid; grid-template-columns: 1fr 1fr; }
  .section-nav a { min-height: 92px; padding: 15px 18px; }
  .section-nav strong { font-size: 11px; writing-mode: initial; transform: none; }
  .sections {
    height: auto;
    min-height: calc(100vh - 58px);
    margin: 0;
    overflow: visible;
  }
  .page-section {
    height: auto;
    min-height: calc(100vh - 58px);
    padding: 24px 20px 70px;
    overflow: visible;
  }
  .section-topline { margin-bottom: 55px; }
  .section-topline span:last-child { display: none; }
  .about-title h1,
  .manifest-hero h1,
  .work-intro h1,
  .contacts-content h1,
  .placeholder h1 {
    margin-bottom: 65px;
    font-size: clamp(31px, 10vw, 48px);
  }
  .story { font-size: 16px; line-height: 1.72; }
  .story .lead { font-size: 20px; }
  .story-note { grid-template-columns: 80px 1fr; }
  .story-quote { padding-left: 24px; }
  .story-quote p { font-size: 25px; }
  .manifest-content { gap: 46px; }
  .manifest-hero h1 {
    font-size: clamp(31px, 2.35rem, 42px);
    letter-spacing: 0;
  }
  .manifest-lead { font-size: 18px; line-height: 1.62; }
  .product-flow-model {
    width: auto;
    margin-left: 0;
  }
  .product-flow-grid {
    padding: 26px 18px 26px 48px;
  }
  .flow-motion-path {
    left: 21px;
  }
  .flow-column,
  .flow-rail {
    padding: 18px;
  }
  .flow-column::before,
  .flow-rail::before {
    left: -26px;
    width: 26px;
  }
  .flow-column::after,
  .flow-rail::after {
    left: -31px;
  }
  .flow-signal-grid,
  .flow-process-list,
  .flow-box-list,
  .flow-rail-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-stage-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 16px;
  }
  .flow-stage-list::before {
    display: none;
  }
  .flow-foundation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-rail {
    grid-template-columns: 1fr;
  }
  .manifest-grid,
  .manifest-grid-compact,
  .operating-model {
    grid-template-columns: 1fr;
  }
  .manifest-grid > div { padding: 22px 0; border-right: 0; }
  .operating-model { min-height: 0; padding-block: 34px; }
  .model-copy { padding: 0; }
  .model-diagram {
    width: 100%;
    min-height: 640px;
    margin: 0;
  }
  .model-diagram::before { inset: 3% 8%; }
  .model-core {
    top: 50%;
    width: 172px;
    min-height: 172px;
    padding: 22px;
  }
  .model-core span { font-size: 19px; }
  .model-node {
    width: min(44%, 160px);
    min-height: 92px;
    padding: 13px;
  }
  .model-node-market { top: 1%; left: 28%; }
  .model-node-strategy { top: 19%; right: 0; }
  .model-node-product { right: 0; bottom: 19%; }
  .model-node-tech { bottom: 1%; left: 28%; }
  .model-node-data { bottom: 19%; left: 0; }
  .model-node-team { top: 19%; left: 0; }
  .contacts-content { min-height: calc(100vh - 180px); }
  .projects-section {
    min-height: calc(100vh - 58px);
    padding-right: 20px;
  }
  .project-heading { align-items: center; }
  .project-heading p { max-width: 180px; }
  .project-heading h1 { font-size: 38px; }
  .project-track { gap: 18px; }
  .project-card { min-height: 500px; }
  .project-card-copy { max-height: 82%; padding: 25px; }
  .project-card h2 { font-size: 30px; }
  .work-summary { margin-bottom: 55px; grid-template-columns: 1fr; }
  .work-summary span + span { border-top: 1px solid var(--line); border-left: 0; }
  .work-card { padding: 30px 22px; }
  .work-meta { margin-bottom: 38px; padding-right: 20px; }
  .work-card h2 { font-size: 30px; }
  .contact-list a { grid-template-columns: 1fr auto; gap: 7px; }
  .contact-list span { grid-column: 1 / -1; }
  .contact-list strong { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
