:root {
      --paper: #f5f5f3;
      --paper-bright: #ffffff;
      --ink: #090909;
      --ink-muted: #5d5d59;
      --clay: #090909;
      --spring: #d5d5d1;
      --river: #ddddda;
      --line: rgba(9, 9, 9, 0.24);
      --line-light: rgba(255, 255, 255, 0.28);
      --header-height: 72px;
      --page-gutter: clamp(22px, 3.2vw, 52px);
      --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
      --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--paper);
    }

    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      line-height: 1.42;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; }
    img { display: block; max-width: 100%; }
    figure { margin: 0; }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 100;
      padding: 10px 14px;
      transform: translateY(-150%);
      background: var(--paper-bright);
      color: var(--ink);
      font-weight: 700;
    }

    .skip-link:focus { transform: translateY(0); }

    .eyebrow {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 760;
      letter-spacing: 0.15em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      height: var(--header-height);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.92);
      background: color-mix(in srgb, var(--paper) 92%, transparent);
      backdrop-filter: none;
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-inline: var(--page-gutter);
    }

    .site-mark {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      text-decoration: none;
    }

    .site-mark-wordmark {
      width: 90px;
      height: 24px;
      display: block;
      object-fit: contain;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.5vw, 40px);
    }

    .site-nav a {
      min-height: 44px;
      display: flex;
      align-items: center;
      font-size: 0.75rem;
      font-weight: 680;
      letter-spacing: 0.06em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] { color: var(--clay); }

    .about-hero {
      min-height: calc(100svh - var(--header-height));
      display: grid;
      grid-template-columns: 1fr;
      border-bottom: 1px solid var(--ink);
    }

    .hero-copy {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 64px;
      padding: clamp(34px, 4vw, 58px) var(--page-gutter) clamp(44px, 5vw, 72px);
    }

    .hero-copy .eyebrow { color: var(--clay); }

    .hero-title {
      max-width: 980px;
      margin: auto 0 0;
      font-family: var(--display);
      font-size: clamp(4.6rem, 9.2vw, 10.4rem);
      font-weight: 720;
      letter-spacing: -0.077em;
      line-height: 0.82;
      text-wrap: balance;
    }

    .hero-position {
      max-width: 750px;
      margin: 0;
      color: var(--ink-muted);
      font-size: clamp(1.15rem, 1.65vw, 1.6rem);
      font-weight: 520;
      letter-spacing: -0.025em;
      line-height: 1.34;
    }

    .hero-position-wrap {
      display: grid;
      justify-items: start;
      gap: 18px;
    }

    .hero-follow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 5px;
      border-bottom: 1px solid currentColor;
      font-size: 0.75rem;
      font-weight: 720;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .hero-follow:hover { color: var(--clay); }

    .hero-art {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-left: 1px solid var(--line);
      background: var(--river);
    }

    .hero-art img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      animation: quiet-shift 18s ease-in-out infinite alternate;
    }

    .current-work {
      display: grid;
      grid-template-columns: minmax(320px, 37%) minmax(0, 63%);
      min-height: 620px;
      border-bottom: 1px solid var(--ink);
    }

    .work-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 54px;
      padding: clamp(38px, 5vw, 68px) var(--page-gutter);
      border-right: 1px solid var(--ink);
    }

    .work-copy .eyebrow { color: var(--clay); }

    .work-title {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(3.7rem, 6.4vw, 7.4rem);
      font-weight: 720;
      letter-spacing: -0.068em;
      line-height: 0.84;
    }

    .work-type {
      max-width: 380px;
      margin: 24px 0 0;
      color: var(--ink-muted);
      font-size: clamp(1rem, 1.35vw, 1.28rem);
      font-weight: 540;
    }

    .work-link {
      width: max-content;
      padding-bottom: 5px;
      border-bottom: 1px solid currentColor;
      font-size: 0.75rem;
      font-weight: 720;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .work-link:hover { color: var(--clay); }

    .work-field {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: var(--spring);
    }

    .work-field::before {
      content: "";
      position: absolute;
      left: -15%;
      bottom: -42%;
      width: 72%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--river);
    }

    .work-field::after {
      content: "";
      position: absolute;
      right: -8%;
      top: -22%;
      width: 55%;
      aspect-ratio: 1;
      border: clamp(46px, 6vw, 92px) solid rgba(255, 255, 255, 0.82);
      border-radius: 50%;
    }

    .work-disc {
      position: absolute;
      z-index: 2;
      right: 16%;
      top: 14%;
      width: clamp(86px, 9vw, 140px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--clay);
    }

    .company-people {
      display: grid;
      grid-template-columns: minmax(300px, 42%) minmax(0, 58%);
      border-bottom: 1px solid var(--ink);
      background: var(--paper-bright);
    }

    .people-heading {
      padding: clamp(42px, 6vw, 84px) var(--page-gutter);
      border-right: 1px solid var(--line);
    }

    .people-heading h2 {
      max-width: 620px;
      margin: clamp(62px, 8vw, 120px) 0 0;
      font-family: var(--display);
      font-size: clamp(3rem, 5.2vw, 6rem);
      font-weight: 680;
      letter-spacing: -0.06em;
      line-height: 0.94;
      text-wrap: balance;
    }

    .people-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .person {
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 11px;
      padding: clamp(38px, 5vw, 70px) var(--page-gutter);
      border-right: 1px solid var(--line);
    }

    .person:last-child { border-right: 0; }

    .person strong {
      font-family: var(--display);
      font-size: clamp(3rem, 4.5vw, 5.2rem);
      font-weight: 690;
      letter-spacing: -0.058em;
      line-height: 0.9;
    }

    .person span { color: var(--ink-muted); }

    .site-footer {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: clamp(24px, 4vw, 70px);
      min-height: 116px;
      padding: 28px var(--page-gutter);
      background: var(--paper);
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .footer-links a,
    .copyright {
      color: var(--ink-muted);
      font-size: 0.75rem;
      font-weight: 620;
      text-decoration: none;
    }

    .footer-links a:hover { color: var(--clay); }

    :focus-visible {
      outline: 3px solid var(--clay);
      outline-offset: 5px;
    }

    @keyframes quiet-shift {
      from { transform: scale(1.001) translate3d(0, 0, 0); }
      to { transform: scale(1.02) translate3d(-0.7%, 0.4%, 0); }
    }

    @media (max-width: 900px) {
      .about-hero { grid-template-columns: 1fr; }
      .current-work { grid-template-columns: minmax(290px, 42%) minmax(0, 58%); }
      .company-people { grid-template-columns: 1fr; }
      .people-heading { border-right: 0; border-bottom: 1px solid var(--line); }
      .people-heading h2 { margin-top: 54px; }
    }

    @media (max-width: 720px) {
      :root {
        --header-height: 64px;
        --page-gutter: 20px;
      }

      .about-hero,
      .current-work { grid-template-columns: 1fr; }

      .hero-copy { min-height: 600px; }
      .hero-title { font-size: clamp(4.6rem, 21vw, 7.2rem); }

      .hero-art {
        min-height: 76vw;
        max-height: 540px;
        border-top: 1px solid var(--line);
        border-left: 0;
      }

      .hero-art img { object-position: 50% 58%; }

      .work-copy {
        min-height: 500px;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
      }

      .work-title { font-size: clamp(4rem, 18vw, 6rem); }
      .work-field { min-height: 560px; }

      .people-list { grid-template-columns: 1fr; }
      .person { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
      .person:last-child { border-bottom: 0; }
    }

    @media (max-width: 520px) {
      .work-field { min-height: 570px; }

      .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .footer-links { flex-wrap: wrap; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }
