    :root {
      --paper: #f5f3ed;
      --paper-raised: #fbfaf7;
      --field: #eceae3;
      --ink: #101817;
      --ink-soft: #353b38;
      --muted: #60645f;
      --quiet: #858982;
      --line: #d7d4cc;
      --line-dark: #b8b5ad;
      --accent: #59685f;
      --dark: #101412;
      --dark-muted: #b9bdb6;
      --outer: #e8e7e2;
      --header-h: 80px;
      --pad-x: clamp(24px, 4vw, 64px);
      --section-y: clamp(72px, 7.5vw, 118px);
      --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
      --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      --ease: cubic-bezier(.2,.75,.25,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--outer); }
    .anchor-target {
      display: block;
      height: 0;
      scroll-margin-top: 96px;
    }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--outer);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { color: inherit; }
    ::selection { background: #cdd3cd; color: var(--ink); }

    .skip-link {
      position: fixed;
      z-index: 1000;
      left: 16px;
      top: 12px;
      padding: 10px 14px;
      background: var(--ink);
      color: var(--paper);
      transform: translateY(-180%);
      transition: transform .2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    .site-shell {
      position: relative;
      width: min(1600px, calc(100% - 48px));
      margin: 24px auto;
      overflow: clip;
      border: 1px solid var(--line);
      background: var(--paper);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      column-gap: clamp(28px, 3.2vw, 64px);
      align-items: center;
      min-height: var(--header-h);
      padding: 0 var(--pad-x);
      border-bottom: 1px solid var(--line);
      background: color-mix(in srgb, var(--paper) 95%, transparent);
      backdrop-filter: blur(12px);
      transition: min-height .24s var(--ease), box-shadow .24s ease, background .24s ease;
    }

    .site-header.is-scrolled {
      min-height: 68px;
      background: color-mix(in srgb, var(--paper) 98%, transparent);
      box-shadow: 0 8px 28px rgba(16, 24, 23, .035);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      width: max-content;
      max-width: 100%;
      min-width: 0;
    }

    .brand-wordmark {
      display: block;
      width: clamp(420px, 29vw, 580px);
      max-width: min(36vw, 580px);
      height: auto;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 2vw, 34px);
      justify-self: stretch;
      min-width: 0;
    }

    .desktop-nav a,
    .footer-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1;
      transition: color .18s ease;
    }

    .desktop-nav a::after,
    .footer-link::after {
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 4px;
      height: 1px;
      background: currentColor;
      content: "";
      transition: right .22s var(--ease);
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible,
    .footer-link:hover,
    .footer-link:focus-visible { color: var(--ink); }
    .desktop-nav a:hover::after,
    .desktop-nav a:focus-visible::after,
    .footer-link:hover::after,
    .footer-link:focus-visible::after { right: 0; }

    .header-action {
      justify-self: end;
      white-space: nowrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border: 1px solid var(--ink);
      border-radius: 1px;
      background: var(--ink);
      color: var(--paper-raised);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .01em;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button .arrow,
    .text-link .arrow,
    .row-link .arrow { margin-left: 12px; transition: transform .2s var(--ease); }
    .button:hover .arrow,
    .button:focus-visible .arrow,
    .text-link:hover .arrow,
    .text-link:focus-visible .arrow,
    .row-link:hover .arrow,
    .row-link:focus-visible .arrow { transform: translateX(4px); }
    .button:hover, .button:focus-visible { background: #28312e; }

    .button--outline {
      background: transparent;
      color: var(--ink);
      border-color: var(--line-dark);
    }
    .button--outline:hover,
    .button--outline:focus-visible {
      color: var(--paper);
      background: var(--ink);
      border-color: var(--ink);
    }

    .button--light {
      color: var(--dark);
      background: var(--paper);
      border-color: var(--paper);
    }
    .button--light:hover,
    .button--light:focus-visible { background: #dedbd2; }

    .mobile-toggle {
      display: none;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      border: 0;
      background: none;
      cursor: pointer;
    }
    .mobile-toggle__icon { position: relative; width: 19px; height: 12px; }
    .mobile-toggle__icon::before,
    .mobile-toggle__icon::after {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--ink);
      content: "";
      transition: transform .22s ease, top .22s ease;
    }
    .mobile-toggle__icon::before { top: 2px; }
    .mobile-toggle__icon::after { top: 10px; }

    .mobile-menu {
      position: fixed;
      z-index: 90;
      inset: 0;
      display: grid;
      grid-template-rows: 1fr auto;
      padding: 110px 24px 0;
      visibility: hidden;
      opacity: 0;
      background: var(--paper);
      transition: opacity .22s ease, visibility .22s ease;
    }
    .mobile-menu.is-open { visibility: visible; opacity: 1; }
    .mobile-menu__links { display: flex; flex-direction: column; align-self: center; }
    .mobile-menu__links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      border-bottom: 1px solid var(--line);
      font-size: clamp(30px, 9vw, 48px);
      line-height: 1;
      letter-spacing: -.035em;
    }
    .mobile-menu__footer { padding: 28px 0; border-top: 1px solid var(--line); }
    .mobile-menu__footer p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
    .mobile-menu__etching { height: 118px; margin: 34px -24px 0; overflow: hidden; border-top: 1px solid var(--line); }

    main { overflow: clip; }

    .eyebrow,
    .section-index,
    .meta-label,
    .project-code,
    .diagram-label {
      font-family: var(--mono);
      font-size: 11px;
      line-height: 1.35;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .eyebrow, .section-index, .meta-label { color: var(--muted); }
    .eyebrow--offset { margin-top: 12px; }

    .hero-main {
      display: grid;
      grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
      min-height: 680px;
      border-bottom: 1px solid var(--line);
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(72px, 8vw, 132px) var(--pad-x) clamp(64px, 6vw, 92px);
    }

    .hero-copy h1 {
      max-width: 760px;
      margin: 22px 0 30px;
      font-size: clamp(56px, 5.35vw, 82px);
      font-weight: 400;
      line-height: .98;
      letter-spacing: -.055em;
    }

    .hero-copy p {
      max-width: 540px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(17px, 1.4vw, 20px);
      line-height: 1.5;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

    .hero-visual {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-left: 1px solid var(--line);
      background: var(--paper-raised);
    }

    .visual-plate-label {
      position: absolute;
      z-index: 2;
      top: 24px;
      left: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--quiet);
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .visual-plate-label::before { width: 32px; height: 1px; background: var(--line-dark); content: ""; }

    .hero-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-visual picture,
    .value-visual picture,
    .project-visual--blended picture,
    .footer-landscape picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .svg-ink { stroke: var(--ink); fill: none; stroke-width: 1.2; vector-effect: non-scaling-stroke; }
    .svg-ink-thin { stroke: var(--ink); fill: none; stroke-width: .72; vector-effect: non-scaling-stroke; }
    .svg-muted { stroke: var(--line-dark); fill: none; stroke-width: .75; vector-effect: non-scaling-stroke; }
    .svg-accent { stroke: var(--accent); fill: none; stroke-width: 1.35; vector-effect: non-scaling-stroke; }
    .svg-accent-thin { stroke: var(--accent); fill: none; stroke-width: .78; vector-effect: non-scaling-stroke; }
    .svg-paper-fill { fill: var(--paper-raised); stroke: var(--ink); stroke-width: 1.15; vector-effect: non-scaling-stroke; }
    .svg-field-fill { fill: var(--field); stroke: var(--ink); stroke-width: 1.05; vector-effect: non-scaling-stroke; }
    .svg-text { fill: var(--muted); font: 9px var(--mono); letter-spacing: .08em; }
    .svg-accent-text { fill: var(--accent); font: 9px var(--mono); letter-spacing: .08em; }

    .hero-information {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--line);
    }

    .info-cell {
      min-height: 142px;
      padding: 27px clamp(24px, 3vw, 42px) 25px;
    }
    .info-cell + .info-cell { border-left: 1px solid var(--line); }
    .info-value { margin: 16px 0 8px; font-size: clamp(22px, 2vw, 30px); line-height: 1.1; letter-spacing: -.025em; }
    .info-copy { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

    .statement-section,
    .section-intro {
      display: grid;
      grid-template-columns: 3fr 1fr 8fr;
      column-gap: 0;
      padding: var(--section-y) var(--pad-x);
      border-bottom: 1px solid var(--line);
    }

    .statement-marker,
    .intro-marker { grid-column: 1; }
    .statement-copy,
    .intro-copy { grid-column: 3; }

    .statement-copy h2,
    .intro-copy h2 {
      max-width: 950px;
      margin: 0;
      font-size: clamp(34px, 3.35vw, 50px);
      font-weight: 400;
      line-height: 1.14;
      letter-spacing: -.04em;
    }

    .statement-copy p,
    .intro-copy p {
      max-width: 670px;
      margin: 30px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .value-section { padding: var(--section-y) var(--pad-x); border-bottom: 1px solid var(--line); }
    .value-frame {
      display: grid;
      grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
      min-height: 750px;
      border: 1px solid var(--line);
      background: var(--paper-raised);
    }

    .value-visual {
      position: relative;
      overflow: hidden;
      border-right: 1px solid var(--line);
      background: var(--paper);
    }
    .value-visual img {
      position: absolute;
      left: 50%;
      bottom: clamp(-46px, -6%, -24px);
      z-index: 0;
      width: auto;
      height: 100%;
      max-width: 112%;
      object-fit: contain;
      object-position: center bottom;
      transform: translateX(-50%);
    }
    .value-visual::before,
    .value-visual::after {
      position: absolute;
      inset: 0;
      pointer-events: none;
      content: "";
    }
    .value-visual::before {
      z-index: 2;
      height: min(34%, 240px);
      background: linear-gradient(
        to bottom,
        var(--paper) 0%,
        rgba(245, 243, 237, .82) 18%,
        rgba(245, 243, 237, 0) 100%
      );
    }
    .value-visual::after {
      z-index: 1;
      background: rgba(245, 243, 237, .08);
    }
    .value-overlay { opacity: 0; transition: opacity .28s ease; }
    .value-overlay.is-active { opacity: 1; }

    .value-content {
      display: flex;
      flex-direction: column;
      padding: clamp(44px, 4.5vw, 72px);
    }
    .value-content h2 {
      max-width: 540px;
      margin: 18px 0 46px;
      font-size: clamp(40px, 3.8vw, 58px);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -.05em;
    }

    .accordion { margin-top: auto; }
    .accordion-item { border-top: 1px solid var(--line); }
    .accordion-item:last-child { border-bottom: 1px solid var(--line); }
    .accordion-trigger {
      display: grid;
      grid-template-columns: 44px 1fr 32px;
      align-items: center;
      width: 100%;
      min-height: 88px;
      padding: 0;
      border: 0;
      background: none;
      text-align: left;
      cursor: pointer;
    }
    .accordion-number { color: var(--quiet); font-family: var(--mono); font-size: 11px; }
    .accordion-title { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; letter-spacing: -.025em; transition: color .2s ease; }
    .accordion-symbol {
      position: relative;
      justify-self: end;
      width: 17px;
      height: 17px;
    }
    .accordion-symbol::before,
    .accordion-symbol::after {
      position: absolute;
      top: 8px;
      left: 1px;
      width: 15px;
      height: 1px;
      background: currentColor;
      content: "";
      transition: transform .22s ease;
    }
    .accordion-symbol::after { transform: rotate(90deg); }
    .accordion-item.is-active .accordion-symbol::after { transform: rotate(0); }
    .accordion-item.is-active .accordion-title { color: var(--accent); }
    .accordion-panel {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows .32s var(--ease), opacity .26s ease;
    }
    .accordion-panel > div { overflow: hidden; }
    .accordion-panel p { margin: 0 32px 34px 44px; color: var(--muted); font-size: 16px; line-height: 1.58; }
    .accordion-item.is-active .accordion-panel { grid-template-rows: 1fr; opacity: 1; }

    .lens-section { border-bottom: 1px solid var(--line); }
    .lens-section .section-intro { border-bottom: 0; padding-bottom: 56px; }
    .lens-matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin: 0 var(--pad-x) var(--section-y);
      border: 1px solid var(--line);
    }
    .lens-card {
      display: grid;
      grid-template-rows: auto minmax(184px, auto) minmax(88px, auto) 1fr;
      min-height: 452px;
      padding: 30px;
    }
    .lens-card + .lens-card { border-left: 1px solid var(--line); }
    .lens-copy {
      display: grid;
      grid-template-rows: minmax(58px, auto) auto;
      align-content: start;
      margin-top: 48px;
    }
    .lens-card h3 { margin: 0 0 18px; font-size: 24px; font-weight: 400; line-height: 1.15; letter-spacing: -.03em; }
    .lens-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
    .lens-proof {
      min-height: 88px;
      margin-top: 0;
      padding-top: 18px;
      border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
    }
    .lens-proof span {
      display: block;
      margin-bottom: 8px;
      color: var(--quiet);
      font-family: var(--mono);
      font-size: 10px;
      line-height: 1.35;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .lens-proof p {
      max-width: none;
      color: var(--ink-soft);
      font-size: clamp(11px, .82vw, 13px);
      line-height: 1.45;
      white-space: nowrap;
    }
    .mini-diagram {
      align-self: end;
      display: block;
      width: 100%;
      height: 72px;
      margin-top: 30px;
      overflow: visible;
    }

    @media (min-width: 1181px) {
      .lens-copy { min-height: 152px; }
    }

    .portfolio-section { border-bottom: 1px solid var(--line); }
    .portfolio-section .section-intro { border-bottom: 0; padding-bottom: 56px; }
    .feature-projects {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 0 var(--pad-x) 62px;
    }
    .project-plate { border: 1px solid var(--line); background: var(--paper-raised); }
    .project-visual {
      position: relative;
      height: clamp(360px, 34vw, 490px);
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background: var(--field);
    }
    .project-visual svg { width: 100%; height: 100%; }
    .project-visual--blended {
      background: var(--paper);
    }
    .project-visual--blended img {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      height: auto;
      max-width: none;
      object-fit: contain;
      object-position: center;
      transform: translate(-50%, -50%);
      mix-blend-mode: normal;
    }
    .project-visual--blended::before,
    .project-visual--blended::after {
      content: none;
    }
    .project-visual--chivalry img {
      left: 50%;
      top: 54%;
      width: 100%;
      transform: translate(-50%, -50%);
    }
    .project-visual--litfin img {
      top: 56%;
      width: 100%;
      height: auto;
      max-width: none;
    }
    .project-plate__body { padding: 26px 28px 30px; }
    .project-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 18px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
    .project-meta span + span::before { margin-right: 18px; color: var(--line-dark); content: "/"; }
    .project-plate h3 { margin: 20px 0 14px; font-size: clamp(28px, 2.5vw, 38px); font-weight: 400; line-height: 1.05; letter-spacing: -.04em; }
    .project-plate p { max-width: 590px; margin: 0 0 26px; color: var(--muted); font-size: 15px; }

    .text-link,
    .row-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      font-size: 13px;
      font-weight: 500;
    }

    .portfolio-summary {
      display: grid;
      grid-template-columns: .8fr 1.35fr 1.2fr;
      margin: 0 var(--pad-x) 28px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .portfolio-summary > div {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 112px;
      padding: 24px 28px 22px 0;
    }
    .portfolio-summary > div + div {
      padding-left: 28px;
      border-left: 1px solid var(--line);
    }
    .portfolio-summary span {
      color: var(--ink);
      font-size: clamp(22px, 2.2vw, 34px);
      line-height: 1.05;
      letter-spacing: -.035em;
    }
    .portfolio-summary p {
      margin: 22px 0 0;
      color: var(--muted);
      font-family: var(--mono);
      font-size: 10px;
      line-height: 1.4;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .portfolio-register { margin: 0 var(--pad-x) var(--section-y); border-top: 1px solid var(--line); }
    .portfolio-header,
    .portfolio-row {
      display: grid;
      grid-template-columns: 7% 22% 18% 38% 15%;
      align-items: center;
    }
    .portfolio-header {
      min-height: 52px;
      color: var(--quiet);
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .portfolio-row {
      min-height: 116px;
      border-top: 1px solid var(--line);
      transition: background .18s ease;
    }
    .portfolio-row:last-child { border-bottom: 1px solid var(--line); }
    a.portfolio-row:hover { background: var(--field); }
    .portfolio-row > div,
    .portfolio-header > div { padding: 16px 18px 16px 0; }
    .portfolio-name { font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
    .portfolio-category,
    .portfolio-date { color: var(--muted); font-family: var(--mono); font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: .04em; }
    .portfolio-header > div:last-child,
    .portfolio-date { text-align: center; }
    .portfolio-header > div:last-child,
    .portfolio-row > .portfolio-date { padding-right: 0; }
    .portfolio-description { color: var(--muted); font-size: 14px; line-height: 1.45; }
    .portfolio-row .row-link { justify-content: space-between; }

    .process-section { padding: var(--section-y) var(--pad-x); border-bottom: 1px solid var(--line); }
    .process-heading {
      display: grid;
      grid-template-columns: 3fr 1fr 8fr;
      margin-bottom: 56px;
    }
    .process-heading .intro-marker { grid-column: 1; }
    .process-heading h2 {
      grid-column: 3;
      max-width: 790px;
      margin: 0;
      font-size: clamp(38px, 3.6vw, 54px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -.045em;
    }
    .process-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid var(--line-dark);
    }
    .process-grid::before {
      position: absolute;
      top: -1px;
      left: 0;
      width: var(--process-progress, 0%);
      height: 1px;
      background: var(--accent);
      content: "";
      transition: width 1.1s var(--ease);
    }
    .process-step { min-height: 255px; padding: 28px 22px 0 0; }
    .process-step + .process-step { padding-left: 22px; border-left: 1px solid var(--line); }
    .process-number { color: var(--line-dark); font-family: var(--mono); font-size: 34px; line-height: 1; }
    .process-step h3 { margin: 52px 0 14px; font-size: 23px; font-weight: 400; line-height: 1.15; letter-spacing: -.025em; }
    .process-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

    .team-section { border-bottom: 1px solid var(--line); }
    .team-section .section-intro { border-bottom: 0; padding-bottom: 56px; }
    .team-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 18px; padding: 0 var(--pad-x) var(--section-y); }
    .team-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: var(--paper-raised); }
    .team-image { aspect-ratio: 1 / 1; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--field); }
    .team-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(.96); }
    .team-copy { display: flex; flex: 1; flex-direction: column; padding: 24px 22px 26px; }
    .team-copy h3 { margin: 0 0 8px; font-size: clamp(22px, 1.8vw, 30px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
    .role { margin: 0 0 22px; color: var(--accent); font-family: var(--mono); font-size: 10px; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
    .team-copy p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.5; }
    .bio-button { align-self: flex-start; padding: 0; border: 0; background: none; cursor: pointer; }
    .team-copy .bio-button { margin-top: auto; }
    .closing-cta {
      position: relative;
      isolation: isolate;
      min-height: 520px;
      overflow: hidden;
      padding: clamp(60px, 7vw, 96px) var(--pad-x);
      background: var(--dark);
      color: var(--paper);
    }
    .closing-cta::before {
      position: absolute;
      z-index: 1;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(16, 20, 18, .98) 0%,
        rgba(16, 20, 18, .9) 46%,
        rgba(16, 20, 18, .24) 70%,
        rgba(16, 20, 18, .04) 100%
      );
      content: "";
      pointer-events: none;
    }
    .closing-cta__inner { position: relative; z-index: 2; max-width: 760px; }
    .closing-cta .eyebrow { color: var(--dark-muted); }
    .closing-cta h2 { margin: 20px 0 28px; font-size: clamp(44px, 5vw, 72px); font-weight: 400; line-height: 1.02; letter-spacing: -.055em; }
    .closing-cta p { max-width: 620px; margin: 0 0 34px; color: var(--dark-muted); font-size: 17px; }
    .cta-drawing {
      position: absolute;
      z-index: 0;
      right: clamp(8px, 2vw, 32px);
      bottom: clamp(18px, 2.6vw, 36px);
      display: block;
      width: min(52vw, 760px);
      opacity: .76;
      filter: grayscale(1) brightness(1.34) contrast(1.14);
      mix-blend-mode: screen;
      pointer-events: none;
    }
    .cta-drawing img {
      display: block;
      width: 100%;
      height: auto;
    }

    .desktop-nav a[aria-current="page"],
    .footer-link[aria-current="page"] { color: var(--ink); }

    .contact-page { background: var(--paper); }
    .contact-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(42px, 6vw, 92px);
      align-items: end;
      min-height: clamp(560px, 62vw, 780px);
      padding: clamp(88px, 10vw, 146px) var(--pad-x) clamp(54px, 6vw, 82px);
      border-bottom: 1px solid var(--line);
    }
    .contact-hero__intro { max-width: 900px; }
    .contact-hero h1 {
      margin: 22px 0 30px;
      font-size: clamp(56px, 7vw, 108px);
      font-weight: 400;
      line-height: .96;
      letter-spacing: -.06em;
    }
    .contact-hero__intro p {
      max-width: 720px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.45;
    }
    .contact-form-section {
      padding: var(--section-y) var(--pad-x);
      border-bottom: 1px solid var(--line);
    }
    .contact-form-panel {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
      gap: clamp(32px, 5vw, 78px);
      align-items: start;
      padding: clamp(28px, 4vw, 48px);
      border: 1px solid var(--line);
      background: var(--paper-raised);
    }
    .contact-form-heading h2 {
      margin: 22px 0 20px;
      font-size: clamp(34px, 4vw, 58px);
      font-weight: 400;
      line-height: 1;
      letter-spacing: -.045em;
    }
    .contact-form-heading p {
      max-width: 460px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }
    .contact-form { min-width: 0; }
    .form-honeypot { display: none; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .form-field {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .form-field--full { grid-column: 1 / -1; }
    .form-field label {
      color: var(--ink);
      font-family: var(--mono);
      font-size: 11px;
      line-height: 1.4;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      min-height: 52px;
      border: 1px solid var(--line);
      border-radius: 1px;
      background: var(--paper);
      color: var(--ink);
      padding: 13px 14px;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .form-field textarea {
      min-height: 170px;
      resize: vertical;
    }
    .form-field select { appearance: auto; }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: 2px solid rgba(89, 104, 95, .35);
      outline-offset: 2px;
      border-color: var(--ink);
      background: var(--paper-raised);
      box-shadow: 0 0 0 3px rgba(89, 104, 95, .16);
    }
    .form-helper,
    .form-disclaimer,
    .form-consent {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }
    .form-consent { max-width: 420px; }
    .form-consent a {
      color: var(--ink);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .contact-form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 20px;
      align-items: center;
      margin-top: 26px;
    }
    .contact-form-actions .button { min-width: 190px; }
    .form-disclaimer { max-width: 310px; }

    .thank-you-section {
      display: grid;
      align-items: center;
      min-height: clamp(520px, 56vw, 700px);
      padding: clamp(92px, 11vw, 150px) var(--pad-x);
      border-bottom: 1px solid var(--line);
    }
    .thank-you-panel { max-width: 850px; }
    .thank-you-panel h1 {
      margin: 22px 0 26px;
      font-size: clamp(56px, 7vw, 104px);
      font-weight: 400;
      line-height: .98;
      letter-spacing: -.06em;
    }
    .thank-you-panel p {
      max-width: 660px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.45;
    }
    .thank-you-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .legal-page { background: var(--paper); }
    .legal-hero {
      display: grid;
      align-content: end;
      min-height: clamp(420px, 46vw, 620px);
      padding: clamp(92px, 11vw, 150px) var(--pad-x) clamp(54px, 6vw, 82px);
      border-bottom: 1px solid var(--line);
    }
    .legal-hero h1 {
      max-width: 900px;
      margin: 22px 0 26px;
      font-size: clamp(56px, 7vw, 104px);
      font-weight: 400;
      line-height: .98;
      letter-spacing: -.06em;
    }
    .legal-hero p {
      max-width: 660px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.45;
    }
    .legal-content {
      display: grid;
      gap: 0;
      padding: 0 var(--pad-x) var(--section-y);
    }
    .legal-content article {
      display: grid;
      grid-template-columns: minmax(180px, 3fr) minmax(0, 7fr);
      gap: clamp(28px, 5vw, 72px);
      padding: clamp(34px, 5vw, 66px) 0;
      border-bottom: 1px solid var(--line);
    }
    .legal-content h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(22px, 2vw, 30px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -.03em;
    }
    .legal-content p {
      max-width: 780px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }
    .site-footer { position: relative; min-height: 0; background: var(--paper); }
    .footer-top {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 5fr 2fr 2fr 3fr;
      gap: 36px;
      padding: 64px var(--pad-x) clamp(4px, .35vw, 6px);
    }
    .footer-brand img {
      width: clamp(190px, 14vw, 260px);
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }
    .footer-brand p { max-width: 330px; margin: 26px 0 50px; color: var(--muted); font-size: 15px; }
    .footer-legal { color: var(--muted); font-size: 12px; line-height: 1.7; }
    .footer-column h3 { margin: 0 0 18px; color: var(--quiet); font-size: 15px; font-weight: 400; }
    .footer-column nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-column .footer-link { min-height: 34px; font-size: 19px; line-height: 1.3; }
    .footer-contact-copy { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
    .footer-landscape { position: relative; inset: auto; height: clamp(720px, 56vw, 980px); overflow: hidden; }
    .footer-landscape img {
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
    .footer-landscape::before,
    .footer-landscape::after {
      position: absolute;
      inset: 0;
      pointer-events: none;
      content: "";
    }
    .footer-landscape::before {
      z-index: 2;
      height: min(34%, 240px);
      background: linear-gradient(
        to bottom,
        var(--paper) 0%,
        rgba(245, 243, 237, .82) 18%,
        rgba(245, 243, 237, 0) 100%
      );
    }
    .footer-landscape::after {
      z-index: 1;
      background: rgba(245, 243, 237, .08);
    }

    dialog {
      width: min(760px, calc(100% - 38px));
      max-height: min(760px, calc(100dvh - 38px));
      overflow: auto;
      color: var(--ink);
      background: var(--paper-raised);
      box-shadow: 0 30px 90px rgba(16,24,23,.18);
    }
    dialog::backdrop { background: rgba(16, 20, 18, .46); backdrop-filter: blur(3px); }
    .dialog-inner { position: relative; padding: clamp(34px, 6vw, 66px); }
    .dialog-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
    }
    .dialog-close::before,
    .dialog-close::after { position: absolute; width: 18px; height: 1px; background: var(--ink); content: ""; }
    .dialog-close::before { transform: rotate(45deg); }
    .dialog-close::after { transform: rotate(-45deg); }
    .dialog-inner h2 { margin: 42px 0 8px; font-size: clamp(36px, 5vw, 54px); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; }
    .dialog-role { color: var(--accent); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
    .dialog-bio { max-width: 66ch; margin-top: 30px; color: var(--muted); font-size: 16px; line-height: 1.65; }
    .dialog-bio p { margin: 0 0 18px; }
    .bio-social-link {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-top: 8px;
      border: 1px solid var(--line);
      color: var(--ink);
      transition: color .2s ease, background .2s ease, border-color .2s ease;
    }
    .bio-social-link:hover,
    .bio-social-link:focus-visible {
      color: var(--paper);
      background: var(--ink);
      border-color: var(--ink);
    }
    .bio-social-link svg { width: 18px; height: 18px; }

    .reveal { opacity: 1; transform: none; }

    :focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    @media (prefers-reduced-motion: no-preference) {
      .hero-copy .eyebrow,
      .hero-copy h1,
      .hero-copy p,
      .hero-actions { opacity: 0; transform: translateY(12px); animation: hero-in .68s var(--ease) forwards; }
      .hero-copy h1 { animation-delay: .08s; }
      .hero-copy p { animation-delay: .15s; }
      .hero-actions { animation-delay: .22s; }
      .hero-visual::after {
        position: absolute;
        z-index: 4;
        inset: 0;
        background: var(--paper-raised);
        content: "";
        animation: plate-reveal .82s .08s var(--ease) forwards;
        transform-origin: top;
      }
      .reveal { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s var(--ease); }
      .reveal.is-visible { opacity: 1; transform: none; }
      @keyframes hero-in { to { opacity: 1; transform: none; } }
      @keyframes plate-reveal { to { transform: scaleY(0); } }
    }

    @media (max-width: 1180px) {
      :root { --pad-x: 36px; }
      .site-shell { width: calc(100% - 32px); margin: 16px auto; }
      .site-header { grid-template-columns: auto minmax(0, 1fr) auto; column-gap: 28px; }
      .brand-wordmark { width: min(360px, 30vw); max-width: min(34vw, 360px); }
      .hero-main { grid-template-columns: 1fr 1fr; min-height: 650px; }
      .hero-copy h1 { font-size: clamp(54px, 5.6vw, 68px); }
      .value-frame { min-height: 690px; }
      .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .footer-top { grid-template-columns: 4fr 2fr 2fr 3fr; }
    }

    @media (max-width: 1080px) {
      .header-action { display: none; }
      .site-header { grid-template-columns: auto minmax(0, 1fr); }
      .desktop-nav { justify-content: flex-end; }
      .brand-wordmark { width: min(380px, 36vw); max-width: min(40vw, 380px); }
    }

    @media (max-width: 980px) {
      :root { --pad-x: 28px; --section-y: 84px; }
      .site-shell { width: 100%; margin: 0; border-left: 0; border-right: 0; }
      .desktop-nav, .header-action { display: none; }
      .site-header { grid-template-columns: minmax(0, 1fr) auto; min-height: 68px; column-gap: 18px; }
      .brand-wordmark { width: min(380px, calc(100vw - 132px)); max-width: calc(100vw - 132px); }
      .mobile-toggle { display: inline-flex; }
      .hero-main { grid-template-columns: 1fr; }
      .hero-copy { min-height: 600px; }
      .hero-visual { min-height: 620px; border-top: 1px solid var(--line); border-left: 0; }
      .hero-information { grid-template-columns: 1fr 1fr; }
      .info-cell:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
      .statement-section, .section-intro { grid-template-columns: 2fr 1fr 5fr; }
      .value-frame { grid-template-columns: 1fr; }
      .value-visual { min-height: 610px; border-right: 0; border-bottom: 1px solid var(--line); }
      .value-content { min-height: 620px; }
      .lens-matrix { grid-template-columns: repeat(2, 1fr); }
      .lens-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
      .lens-card:nth-child(4) { border-top: 1px solid var(--line); }
      .feature-projects { grid-template-columns: 1fr; }
      .portfolio-header { display: none; }
      .portfolio-row { grid-template-columns: 80px 1.2fr .8fr 1.7fr 110px; }
      .process-grid { grid-template-columns: repeat(3, 1fr); }
      .process-step:nth-child(4), .process-step:nth-child(5) { border-top: 1px solid var(--line); }
      .process-step:nth-child(4) { border-left: 0; padding-left: 0; }
      .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .contact-hero { grid-template-columns: 1fr; align-items: start; min-height: auto; }
      .contact-form-panel { grid-template-columns: 1fr; }
      .thank-you-section { min-height: 560px; }
      .closing-cta { min-height: 540px; }
      .closing-cta__inner { max-width: 700px; }
      .cta-drawing { width: min(82vw, 780px); right: clamp(20px, 4vw, 42px); bottom: 24px; opacity: .72; }
      .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
      .footer-brand p { margin: 0; }
      .footer-legal { grid-column: 2; }
    }

    @media (max-width: 720px) {
      :root { --pad-x: 20px; --section-y: 64px; }
      body { background: var(--paper); }
      .site-header { padding: 0 20px; }
      .brand-wordmark { width: min(310px, calc(100vw - 112px)); max-width: calc(100vw - 112px); }
      .hero-copy { min-height: auto; padding: 88px 20px 64px; }
      .hero-copy h1 { margin-top: 18px; font-size: clamp(44px, 13vw, 56px); line-height: .99; }
      .hero-copy p { font-size: 17px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-actions .button { width: 100%; }
      .hero-visual { min-height: 475px; }
      .visual-plate-label { top: 18px; left: 20px; }
      .hero-information { grid-template-columns: 1fr; }
      .info-cell { min-height: auto; padding: 26px 20px; }
      .info-cell + .info-cell, .info-cell:nth-child(3) { grid-column: auto; border-top: 1px solid var(--line); border-left: 0; }
      .statement-section, .section-intro { display: block; }
      .statement-copy, .intro-copy { margin-top: 42px; }
      .statement-copy h2, .intro-copy h2 { font-size: clamp(32px, 9.2vw, 42px); }
      .statement-copy p, .intro-copy p { font-size: 16px; }
      .value-section { padding-left: 0; padding-right: 0; }
      .value-frame { border-left: 0; border-right: 0; }
      .value-visual { min-height: 440px; }
      .value-content { min-height: 610px; padding: 46px 20px 52px; }
      .value-content h2 { margin-bottom: 38px; font-size: clamp(38px, 11vw, 50px); }
      .accordion-panel p { margin-left: 44px; margin-right: 12px; }
      .lens-section .section-intro { padding-bottom: 44px; }
      .lens-matrix { grid-template-columns: 1fr; margin-left: 20px; margin-right: 20px; }
      .lens-card {
        display: block;
        min-height: auto;
        padding: 28px;
      }
      .lens-card + .lens-card { border-top: 1px solid var(--line); border-left: 0; }
      .lens-copy { display: block; margin-top: 38px; }
      .lens-proof { min-height: 0; margin-top: 28px; }
      .lens-proof p { font-size: 13px; white-space: normal; }
      .mini-diagram { height: 64px; margin-top: 30px; }
      .portfolio-section .section-intro { padding-bottom: 44px; }
      .feature-projects { padding-left: 20px; padding-right: 20px; }
      .project-visual { height: 380px; }
      .portfolio-summary {
        grid-template-columns: 1fr;
        margin-left: 20px;
        margin-right: 20px;
      }
      .portfolio-summary > div {
        min-height: 0;
        padding: 22px 0;
      }
      .portfolio-summary > div + div {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
      }
      .portfolio-summary span { font-size: 24px; }
      .portfolio-summary p { margin-top: 14px; }
      .portfolio-register { margin-left: 20px; margin-right: 20px; }
      .portfolio-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px 16px;
        min-height: 0;
        padding: 26px 0;
      }
      .portfolio-row > div { padding: 0; }
      .portfolio-row .project-code { grid-column: 1; grid-row: 1; }
      .portfolio-name { grid-column: 1; grid-row: 2; margin-top: 8px; font-size: 25px; }
      .portfolio-category { grid-column: 1; grid-row: 3; }
      .portfolio-description { grid-column: 1 / -1; grid-row: 4; margin-top: 12px; }
      .portfolio-date { grid-column: 2; grid-row: 1; text-align: right; }
      .portfolio-row .row-link { grid-column: 1 / -1; grid-row: 5; margin-top: 8px; justify-content: flex-start; }
      .process-heading { display: block; margin-bottom: 42px; }
      .process-heading h2 { margin-top: 54px; }
      .process-grid { display: block; border-top: 0; }
      .process-grid::before { display: none; }
      .process-step {
        position: relative;
        min-height: 0;
        padding: 26px 0 28px 54px !important;
        border-top: 1px solid var(--line) !important;
        border-left: 0 !important;
      }
      .process-step:last-child { border-bottom: 1px solid var(--line); }
      .process-number { position: absolute; left: 0; top: 30px; font-size: 18px; }
      .process-step h3 { margin: 0 0 10px; }
      .team-section .section-intro { padding-bottom: 44px; }
      .team-grid { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
      .team-image { aspect-ratio: 4 / 3; }
      .team-copy { padding: 24px; }
      .contact-hero { gap: 34px; padding: 88px 20px 54px; }
      .contact-hero h1 { font-size: clamp(44px, 13vw, 60px); }
      .contact-form-section { padding: 64px 20px; }
      .contact-form-panel { padding: 24px; }
      .contact-form-heading h2 { font-size: clamp(34px, 10vw, 44px); }
      .form-grid { grid-template-columns: 1fr; }
      .contact-form-actions { display: grid; }
      .contact-form-actions .button { width: 100%; }
      .form-disclaimer,
      .form-consent { max-width: none; }
      .thank-you-section { min-height: 520px; padding: 88px 20px 72px; }
      .legal-hero { min-height: 420px; padding: 88px 20px 54px; }
      .legal-hero h1 { font-size: clamp(44px, 13vw, 60px); }
      .legal-content { padding: 0 20px 64px; }
      .legal-content article { display: block; padding: 34px 0; }
      .legal-content h2 { margin-bottom: 16px; }
      .thank-you-panel h1 { font-size: clamp(44px, 13vw, 60px); }
      .thank-you-actions { flex-direction: column; }
      .thank-you-actions .button { width: 100%; }
      .closing-cta { min-height: 680px; padding-top: 68px; padding-bottom: 300px; }
      .closing-cta h2 { font-size: clamp(44px, 13vw, 60px); }
      .closing-cta::before {
        background: linear-gradient(
          180deg,
          rgba(16, 20, 18, .98) 0%,
          rgba(16, 20, 18, .94) 52%,
          rgba(16, 20, 18, .18) 76%,
          rgba(16, 20, 18, .02) 100%
        );
      }
      .cta-drawing { width: 112%; right: -6%; bottom: 28px; opacity: .76; }
      .site-footer { min-height: 1150px; }
      .footer-top { display: block; padding: 56px 20px 6px; }
      .footer-brand { display: block; padding-bottom: 54px; }
      .footer-brand p { margin: 24px 0 38px; }
      .footer-legal { margin-top: 22px; }
      .footer-column { padding: 30px 0; border-top: 1px solid var(--line); }
      .footer-column:last-child { padding-bottom: 18px; }
      .footer-column nav { gap: 10px; }
      .footer-column .footer-link { min-height: 44px; }
      .footer-landscape { position: relative; inset: auto; height: 520px; }
    }
