:root {
      --ink: #2b2926;
      --paper: #f2f0e8;
      --paper-2: #e8e4d8;
      --orange: #D6832B;
      --tomato: #aea313; /* retired: tomato slot now carries green */
      --blue: #5E5C60;
      --green: #aea313;
      --line: rgba(23, 23, 22, 0.22);
      --white-line: rgba(255, 255, 255, 0.35);
      --max: 1440px;
      --pad: clamp(20px, 4vw, 64px);
      --display: "Oxygen", "Helvetica Neue", Arial, sans-serif;
      --body: "Karla", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.45;
      overflow-x: hidden;
    }
    ::selection { background: var(--orange); color: var(--ink); }
    img { display: block; width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { color: inherit; }

    .skip-link {
      position: fixed;
      left: 12px;
      top: -80px;
      z-index: 1000;
      background: var(--orange);
      color: var(--ink);
      padding: 12px 16px;
      font-weight: 800;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 12px; }

    .eyebrow {
      margin: 0 0 14px;
      font-size: 12px;
      line-height: 1;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .display {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(48px, 7.5vw, 112px);
      font-weight: 800;
      line-height: .82;
      letter-spacing: -.064em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(38px, 5vw, 80px);
      font-weight: 800;
      line-height: .9;
      letter-spacing: -.052em;
      text-transform: uppercase;
    }

    .lede {
      margin: 0;
      max-width: 760px;
      font-size: clamp(20px, 2.4vw, 34px);
      line-height: 1.18;
      letter-spacing: -.025em;
    }

    .shell { width: min(100%, var(--max)); margin: 0 auto; }
    .section { padding: clamp(84px, 10vw, 160px) var(--pad); }

    .brand {
      display: inline-flex;
      align-items: flex-end;
      gap: 8px;
      min-width: 170px;
      position: relative;
    }
    .brand-mark {
      position: relative;
      color: var(--orange);
      font-family: var(--display);
      font-size: 48px;
      line-height: .74;
      letter-spacing: -.12em;
      font-weight: 500;
      transform: translateY(-1px);
    }
    .brand-mark::before {
      content: "";
      position: absolute;
      width: 43px;
      height: 4px;
      left: 0;
      top: -11px;
      background: currentColor;
      transform: rotate(-4deg);
      transform-origin: left center;
    }
    .brand-word {
      font-family: var(--display);
      font-size: 21px;
      line-height: 1;
      letter-spacing: .02em;
      font-weight: 700;
      text-transform: lowercase;
    }

    .site-header {
      position: fixed;
      z-index: 100;
      inset: 0 0 auto 0;
      padding: 18px var(--pad);
      color: #fff;
      transition: background .3s ease, color .3s ease, padding .3s ease, border .3s ease;
    }
    .site-header.scrolled {
      padding-top: 12px;
      padding-bottom: 12px;
      background: rgba(242, 240, 232, .94);
      color: var(--ink);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
    }
    .site-header.scrolled .brand-mark { color: var(--orange); }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: clamp(18px, 2.2vw, 36px);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .nav a { position: relative; padding: 8px 0; }
    .nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      height: 2px;
      left: 0;
      right: 100%;
      bottom: 3px;
      background: currentColor;
      transition: right .25s ease;
    }
    .nav a:hover::after, .nav a:focus-visible::after { right: 0; }
    .nav-cta {
      border: 1px solid currentColor;
      padding: 12px 17px !important;
      transition: background .2s ease, color .2s ease;
    }
    .nav-cta:hover, .nav-cta:focus-visible { background: var(--orange); color: var(--ink); border-color: var(--orange); }
    .menu-button {
      display: flex;
      width: 46px;
      height: 46px;
      border: 1px solid currentColor;
      background: transparent;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
      width: 22px;
      height: 2px;
      background: currentColor;
      display: block;
      position: relative;
      transition: transform .25s ease, opacity .25s ease;
    }
    .menu-button span::before,
    .menu-button span::after { content: ""; position: absolute; left: 0; }
    .menu-button span::before { top: -7px; }
    .menu-button span::after { top: 7px; }
    .menu-open .menu-button span { background: transparent; }
    .menu-open .menu-button span::before { transform: translateY(7px) rotate(45deg); }
    .menu-open .menu-button span::after { transform: translateY(-7px) rotate(-45deg); }

    .hero {
      min-height: 82svh;
      position: relative;
      display: flex;
      color: #fff;
      background: var(--ink);
      overflow: hidden;
    }
    .hero-media {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(13, 13, 12, .82) 0%, rgba(13, 13, 12, .38) 45%, rgba(13, 13, 12, .1) 76%),
        linear-gradient(0deg, rgba(13, 13, 12, .48), transparent 45%),
        url("../images/web-24-1.webp?v=20260806b");
      background-size: cover;
      background-position: center center;
      transform: scale(1.015);
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      width: 100%;
      min-height: 82svh;
      padding: clamp(135px, 16vh, 190px) var(--pad) 46px;
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(220px, .5fr);
      grid-template-rows: 1fr auto;
      gap: 40px;
      align-items: end;
    }
    .hero-copy { max-width: 1060px; }
    .hero .display { max-width: 950px; }
    .hero .display .accent { color: var(--orange); }
    .hero-sub {
      margin: 34px 0 0;
      max-width: 650px;
      font-size: clamp(19px, 2vw, 28px);
      line-height: 1.22;
      letter-spacing: -.018em;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      min-width: 190px;
      border: 1px solid currentColor;
      padding: 15px 18px;
      text-transform: uppercase;
      letter-spacing: .11em;
      font-size: 12px;
      font-weight: 800;
      background: transparent;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      cursor: pointer;
    }
    .button::after { content: "↗"; font-size: 18px; line-height: 1; }
    .button:hover, .button:focus-visible { transform: translateY(-3px); }
    .button-primary { background: var(--orange); color: var(--ink); border-color: var(--orange); }
    .button-primary:hover, .button-primary:focus-visible { background: #fff; border-color: #fff; }
    .button-light { color: #fff; }
    .button-light:hover, .button-light:focus-visible { background: #fff; color: var(--ink); }
    .button-dark:hover, .button-dark:focus-visible { background: var(--ink); color: var(--paper); }

    .hero-note {
      align-self: end;
      justify-self: end;
      max-width: 260px;
      padding: 22px 0 0;
      border-top: 1px solid var(--white-line);
      font-size: 13px;
      letter-spacing: .03em;
    }
    .hero-note strong { display: block; margin-bottom: 9px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
    .hero-bottom {
      grid-column: 1 / -1;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      border-top: 1px solid var(--white-line);
      padding-top: 18px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .scroll-cue { display: flex; align-items: center; gap: 12px; }
    .scroll-cue::before { content: ""; width: 34px; height: 1px; background: currentColor; }

    .marquee {
      overflow: hidden;
      background: var(--orange);
      border-bottom: 1px solid var(--ink);
      border-top: 1px solid var(--ink);
    }
    .marquee-track {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px 34px;
      padding: 16px var(--pad);
      font-family: var(--display);
      font-size: 16px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .marquee-track span:not(:last-child)::after { content: "✦"; margin-left: 34px; }

    .manifesto {
      background: var(--paper);
      position: relative;
      overflow: hidden;
    }
    .manifesto-grid {
      display: grid;
      grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
      gap: clamp(40px, 9vw, 140px);
      align-items: start;
    }
    .manifesto-copy { position: relative; }
    .manifesto .section-title { max-width: 1030px; }
    .manifesto .section-title em { color: var(--orange); font-style: normal; }
    .manifesto .lede { margin-top: 42px; margin-left: min(13vw, 190px); }
    .manifesto-shape {
      position: absolute;
      right: -95px;
      bottom: -105px;
      width: 250px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 40px solid var(--blue);
      opacity: .9;
    }

    .proof {
      padding: 0 var(--pad) clamp(84px, 10vw, 140px);
      background: var(--paper);
    }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .proof-item {
      min-height: 170px;
      padding: 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .proof-item strong {
      font-family: var(--display);
      font-size: clamp(28px, 3.5vw, 54px);
      line-height: .9;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }
    .proof-item span { max-width: 180px; font-size: 13px; }

    .work { background: var(--ink); color: var(--paper); }
    .work-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 40px;
      margin-bottom: clamp(46px, 7vw, 90px);
    }
    .work-head .lede { max-width: 530px; font-size: clamp(18px, 2vw, 26px); }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: clamp(16px, 2vw, 30px);
      align-items: start;
    }
    .project { position: relative; }
    .project:nth-child(1) { grid-column: 1 / span 8; }
    .project:nth-child(2) { grid-column: 9 / span 4; margin-top: 130px; }
    .project:nth-child(3) { grid-column: 1 / span 5; margin-top: 90px; }
    .project:nth-child(4) { grid-column: 7 / span 6; margin-top: 10px; }
    .project-image {
      position: relative;
      overflow: hidden;
      background: #2a2a28;
    }
    .project:nth-child(1) .project-image { aspect-ratio: 1.48; }
    .project:nth-child(2) .project-image { aspect-ratio: .84; }
    .project:nth-child(3) .project-image { aspect-ratio: 1.05; }
    .project:nth-child(4) .project-image { aspect-ratio: 1.35; }
    .project-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
    .project:nth-child(2) .project-image img { object-position: 60% center; }
    .project:hover .project-image img { transform: scale(1.035); }
    .project-index {
      position: absolute;
      z-index: 2;
      top: 12px;
      left: 12px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--paper);
      color: var(--ink);
      font-size: 11px;
      font-weight: 900;
    }
    .project-meta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      padding-top: 15px;
      border-top: 1px solid var(--white-line);
      margin-top: 14px;
    }
    .project-title {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(24px, 3vw, 42px);
      line-height: .94;
      text-transform: uppercase;
      letter-spacing: -.035em;
    }
    .project-scope { margin: 4px 0 0; font-size: 12px; opacity: .72; letter-spacing: .05em; }
    .project-arrow { font-size: 26px; line-height: 1; }
    .work-footer { display: flex; justify-content: center; margin-top: clamp(70px, 10vw, 140px); }

    .services { background: var(--paper-2); }
    .services-head {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 60px;
      margin-bottom: clamp(60px, 9vw, 120px);
    }
    .services-head .lede { max-width: 660px; }
    .service-list { border-top: 1px solid var(--ink); }
    .service-row {
      display: grid;
      grid-template-columns: 80px minmax(220px, .65fr) minmax(260px, 1fr) 42px;
      gap: 28px;
      align-items: start;
      padding: 34px 0;
      border-bottom: 1px solid var(--ink);
      transition: padding-left .25s ease, background .25s ease;
    }
    .service-row:hover { padding-left: 18px; background: rgba(255,255,255,.32); }
    .service-number { font-size: 12px; font-weight: 900; letter-spacing: .1em; }
    .service-name {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(28px, 3.9vw, 58px);
      font-weight: 800;
      line-height: .9;
      letter-spacing: -.045em;
      text-transform: uppercase;
    }
    .service-description { margin: 0; max-width: 610px; font-size: clamp(17px, 1.7vw, 23px); line-height: 1.34; }
    .service-arrow { font-size: 28px; text-align: right; }

    .perspective {
      position: relative;
      min-height: 88svh;
      display: grid;
      align-items: end;
      background: var(--ink);
      color: #fff;
      overflow: hidden;
    }
    .perspective-media {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 55% 45%;
    }
    .perspective-media img { height: 100%; object-fit: cover; }
    .perspective-media img:first-child { object-position: center; }
    .perspective-media img:last-child { object-position: 58% center; }
    .perspective-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(15,15,14,.72), rgba(15,15,14,.08) 53%, rgba(15,15,14,.22));
    }
    .perspective-copy {
      position: relative;
      z-index: 2;
      padding: clamp(100px, 12vw, 180px) var(--pad) 54px;
      max-width: 1150px;
    }
    .perspective .section-title { max-width: 1050px; }
    .perspective .section-title span { color: var(--orange); }
    .perspective-bottom {
      margin-top: 44px;
      display: grid;
      grid-template-columns: minmax(0, 620px) auto;
      gap: 50px;
      align-items: end;
    }
    .perspective-bottom p { margin: 0; font-size: clamp(18px, 2vw, 27px); }


    .team-preview {
      background: var(--ink);
      color: #fff;
      border-top: 1px solid var(--white-line);
    }
    .team-preview-head {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: clamp(40px, 7vw, 110px);
      align-items: end;
      margin-bottom: clamp(54px, 8vw, 100px);
    }
    .team-preview-head .lede {
      max-width: 660px;
      font-size: clamp(19px, 2vw, 28px);
    }
    .team-preview-grid {
      display: grid;
      grid-template-columns: 1.18fr 1fr 1fr;
      border-top: 1px solid var(--white-line);
      border-left: 1px solid var(--white-line);
    }
    .team-card {
      display: flex;
      min-width: 0;
      flex-direction: column;
      border-right: 1px solid var(--white-line);
      border-bottom: 1px solid var(--white-line);
      background: rgba(255,255,255,.02);
    }
    .team-card-image {
      position: relative;
      aspect-ratio: 1 / 1.08;
      overflow: hidden;
      background: var(--paper-2);
    }
    .team-card:first-child .team-card-image { aspect-ratio: 1.12 / 1; }
    .team-card-image::after {
      content: "";
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
      pointer-events: none;
    }
    .team-card img {
      height: 100%;
      object-fit: cover;
      transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
      filter: saturate(.9) contrast(1.02);
    }
    .team-card:hover img, .team-card:focus-visible img { transform: scale(1.035); filter: saturate(1); }
    .team-card:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
    .team-card-body {
      flex: 1;
      min-height: 260px;
      padding: clamp(22px, 2.4vw, 34px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 36px;
      position: relative;
    }
    .team-card-body::before {
      content: "";
      position: absolute;
      height: 5px;
      left: 0;
      top: 0;
      width: 33%;
      background: var(--orange);
    }
    .team-name {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 60px);
      font-weight: 800;
      line-height: .88;
      letter-spacing: -.045em;
      text-transform: uppercase;
    }
    .team-role {
      display: block;
      margin-top: 12px;
      font-size: 11px;
      line-height: 1.35;
      letter-spacing: .13em;
      text-transform: uppercase;
      font-weight: 900;
      opacity: .7;
    }
    .team-note { margin: 0; max-width: 390px; font-size: 16px; line-height: 1.45; }
    .team-preview-footer {
      margin-top: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding-top: 24px;
      border-top: 1px solid var(--white-line);
    }
    .team-preview-footer p { margin: 0; max-width: 620px; font-size: 14px; opacity: .72; }

    .process { background: var(--paper); }
    .process-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 70px; }
    .process-head .lede { max-width: 570px; font-size: clamp(18px, 2vw, 26px); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--ink);
      border-left: 1px solid var(--ink);
    }
    .step {
      min-height: 390px;
      padding: 24px;
      border-right: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .step::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      right: -70px;
      bottom: -70px;
      background: var(--orange);
      transition: right .3s ease, bottom .3s ease;
    }
    .step:nth-child(2)::after { background: var(--blue); }
    .step:nth-child(3)::after { background: var(--blue); }
    .step:nth-child(4)::after { background: var(--orange); }
    .step:hover::after { right: -35px; bottom: -35px; }
    .step-num { font-size: 12px; font-weight: 900; letter-spacing: .12em; }
    .step h3 {
      margin: 0 0 18px;
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 60px);
      line-height: .88;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }
    .step p { margin: 0; max-width: 250px; font-size: 15px; }

    .press {
      background: var(--orange);
      padding-top: clamp(70px, 8vw, 120px);
      padding-bottom: clamp(70px, 8vw, 120px);
    }
    .press-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
    .press-quote {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(34px, 4.4vw, 64px);
      line-height: .95;
      letter-spacing: -.045em;
      text-transform: uppercase;
      max-width: 920px;
    }
    .press-copy { align-self: end; max-width: 660px; font-size: clamp(19px, 2vw, 28px); }
    .press-logos {
      grid-column: 1 / -1;
      margin-top: 55px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid var(--ink);
      border-left: 1px solid var(--ink);
    }
    .press-logo {
      min-height: 120px;
      border-right: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      display: grid;
      place-items: center;
      padding: 18px;
      font-family: var(--display);
      font-size: clamp(20px, 2vw, 31px);
      font-weight: 900;
      letter-spacing: -.02em;
      text-align: center;
      text-transform: uppercase;
    }

    .ecosystem { background: var(--ink); color: var(--paper); }
    .ecosystem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
    .ecosystem-cards { display: grid; gap: 14px; }
    .ecosystem-card {
      min-height: 260px;
      padding: 28px;
      border: 1px solid var(--white-line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: border-color .2s ease;
    }
    .ecosystem-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -110px;
      top: -110px;
      background: var(--orange);
      transition: transform .45s ease;
    }
    .ecosystem-card:nth-child(2)::before { background: var(--blue); }
    .ecosystem-card:hover { border-color: var(--paper); }
    .ecosystem-card:hover::before { transform: scale(1.35); }
    .ecosystem-card h3 {
      position: relative;
      margin: 0;
      max-width: 500px;
      font-family: var(--display);
      font-size: clamp(33px, 4.2vw, 62px);
      line-height: .9;
      letter-spacing: -.05em;
      text-transform: uppercase;
    }
    .ecosystem-card p { position: relative; margin: 0; max-width: 560px; font-size: 15px; opacity: .8; }
    .ecosystem-link { position: relative; font-size: 12px; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }

    .contact { background: var(--paper); }
    .contact-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: clamp(60px, 9vw, 130px);
      align-items: start;
    }
    .contact-copy { position: sticky; top: 120px; }
    .contact-copy .lede { margin-top: 34px; max-width: 560px; }
    .contact-details {
      margin-top: 48px;
      padding-top: 22px;
      border-top: 1px solid var(--ink);
      font-size: 14px;
    }
    .contact-details a { text-decoration: underline; text-underline-offset: 4px; }
    .project-form { border-top: 1px solid var(--ink); }
    .field {
      border-bottom: 1px solid var(--ink);
      padding: 22px 0;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 24px;
      align-items: start;
    }
    .field label { font-size: 11px; line-height: 1.2; letter-spacing: .13em; font-weight: 900; text-transform: uppercase; padding-top: 5px; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
      color: var(--ink);
      outline: 0;
      font-size: clamp(18px, 2vw, 27px);
      line-height: 1.25;
    }
    .field select { cursor: pointer; }
    .field textarea { min-height: 120px; resize: vertical; }
    .field input::placeholder, .field textarea::placeholder { color: rgba(23,23,22,.42); }
    .field:focus-within { background: rgba(232,131,36,.11); }
    .form-footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 28px; }
    .form-note { max-width: 330px; margin: 0; font-size: 12px; opacity: .68; }
    .form-status { margin-top: 18px; min-height: 24px; font-weight: 800; }

    .site-footer {
      background: var(--orange);
      color: var(--ink);
      padding: 38px var(--pad) 24px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 50px;
      align-items: end;
      padding-bottom: 42px;
    }
    .footer-line {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(40px, 6vw, 92px);
      font-weight: 800;
      line-height: .84;
      letter-spacing: -.055em;
      text-transform: uppercase;
    }
    .footer-nav { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 10px 34px; font-size: 12px; line-height: 1.8; letter-spacing: .11em; font-weight: 900; text-transform: uppercase; }
    .footer-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
    .footer-bottom {
      border-top: 1px solid var(--ink);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 10px;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      z-index: 90;
      inset: 0;
      padding: 120px var(--pad) 40px;
      background: var(--orange);
      color: var(--ink);
    }
    .mobile-menu nav { display: grid; }
    .mobile-menu a {
      border-top: 1px solid var(--ink);
      padding: 16px 0;
      font-family: var(--display);
      font-size: clamp(34px, 10vw, 60px);
      font-weight: 800;
      line-height: .9;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }
    .mobile-menu a:last-child { border-bottom: 1px solid var(--ink); }
    .menu-open .mobile-menu { display: block; }

    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1120px) {
      .nav { display: none; }
      .menu-button { display: flex; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-note { display: none; }
      .manifesto-grid,
      .services-head,
      .team-preview-head,
      .press-grid,
      .ecosystem-grid,
      .contact-grid { grid-template-columns: 1fr; }
      .manifesto .lede { margin-left: 0; }
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .work-head, .process-head { align-items: start; flex-direction: column; }
      .service-row { grid-template-columns: 46px minmax(180px, .65fr) 1fr 30px; gap: 18px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .team-preview-grid { grid-template-columns: repeat(2, 1fr); }
      .team-card:first-child { grid-column: 1 / -1; }
      .team-card:first-child .team-card-image { aspect-ratio: 1.8 / 1; }
      .perspective-bottom { grid-template-columns: 1fr; }
      .press-logos { grid-template-columns: repeat(3, 1fr); }
      .contact-copy { position: static; }
      .footer-top { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .site-header { padding-top: 14px; padding-bottom: 14px; }
      .brand-mark { font-size: 42px; }
      .brand-word { font-size: 18px; }
      .hero-media { background-position: 57% center; }
      .hero-grid { padding-top: 150px; padding-bottom: 28px; }
      .hero-bottom span:last-child { display: none; }
      .manifesto-grid { grid-template-columns: 1fr; gap: 26px; }
      .manifesto-shape { width: 170px; right: -90px; }
      .proof-grid { grid-template-columns: 1fr; }
      .proof-item { min-height: 135px; }
      .work-head { margin-bottom: 46px; }
      .work-grid { display: block; }
      .project, .project:nth-child(n) { margin: 0 0 58px; }
      .project:nth-child(n) .project-image { aspect-ratio: 1.18; }
      .project:nth-child(2) .project-image img { object-position: center; }
      .service-row { grid-template-columns: 34px 1fr 26px; }
      .service-description { grid-column: 2 / 4; font-size: 16px; }
      .perspective { min-height: 94svh; }
      .perspective-media { grid-template-columns: 1fr; }
      .perspective-media img:first-child { display: none; }
      .perspective-media::after { background: linear-gradient(0deg, rgba(15,15,14,.78), rgba(15,15,14,.08) 70%); }
      .team-preview-grid { grid-template-columns: 1fr; }
      .team-card:first-child { grid-column: auto; }
      .team-card:first-child .team-card-image, .team-card-image { aspect-ratio: 1 / 1.02; }
      .team-card-body { min-height: 225px; }
      .team-preview-footer { align-items: stretch; flex-direction: column; }
      .team-preview-footer .button { width: 100%; }
      .process-grid { grid-template-columns: 1fr; }
      .step { min-height: 300px; }
      .press-logos { grid-template-columns: repeat(2, 1fr); }
      .ecosystem-card { min-height: 240px; }
      .field { grid-template-columns: 1fr; gap: 9px; }
      .field label { padding-top: 0; }
      .form-footer { align-items: stretch; flex-direction: column; }
      .form-footer .button { width: 100%; }
      .footer-nav { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; }
    }
