/* Editorial engineering portfolio. See DESIGN.md for intent and motion contracts. */
:root {
  color-scheme:dark;
  --bg:#181917;
  --surface:#20221f;
  --text:#f4f1e9;
  --muted:#b3b5ac;
  --faint:#979d90;
  --line:#3a3d36;
  --accent:#ff856a;
  --accent-fill:#ff856a;
  --on-accent:#181917;
  --paper:#e5ddcc;
  --ink:#252721;
  --header-height:82px;
  --container:1320px;
  --ease:cubic-bezier(.22,1,.36,1)
}
:root[data-theme=light] {
  color-scheme:light;
  --bg:#f4f1e9;
  --surface:#eae7de;
  --text:#242620;
  --muted:#575d50;
  --faint:#68705f;
  --line:#c9ccbe;
  --accent:#a4311d;
  --accent-fill:#a4311d;
  --on-accent:#fff9ef
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-height) + 24px)
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased
}
button,a {
  -webkit-tap-highlight-color:transparent
}
button {
  font:inherit
}
a {
  color:inherit;
  text-decoration:none
}
button,a {
  touch-action:manipulation
}
button {
  cursor:pointer
}
img {
  display:block;
  max-width:100%;
  height:auto
}
picture {
  display:block
}
figure,p,h1,h2,h3,h4 {
  margin:0
}
ul {
  list-style:none;
  padding:0;
  margin:0
}
em {
  font-family:Georgia,'Times New Roman',serif;
  font-weight:400;
  letter-spacing:-.055em
}
::selection {
  background:var(--accent-fill);
  color:var(--on-accent)
}
:focus-visible {
  outline:3px solid var(--accent);
  outline-offset:6px
}
button:focus-visible {
  outline-offset:4px
}
[hidden] {
  display:none!important
}
.container {
  width:min(var(--container),calc(100% - 96px));
  margin-inline:auto
}
.section {
  padding-block:116px
}
.eyebrow,.project-topline,.lab-topline,.hero-footnote,.process-step>span,dt,.case-delivery>span {
  font-family:'Courier New',monospace;
  font-size:12px;
  line-height:1.5;
  letter-spacing:.09em;
  font-weight:700
}
.eyebrow {
  margin-bottom:26px;
  color:var(--accent)
}
h2 {
  font-size:clamp(40px,4.5vw,66px);
  line-height:1.04;
  letter-spacing:-.06em;
  font-weight:500
}
h3,h4 {
  line-height:1.12;
  letter-spacing:-.045em
}
p {
  color:var(--muted)
}
.top-anchor {
  position:absolute;
  top:0
}
.skip-link {
  position:fixed;
  top:10px;
  left:20px;
  transform:translateY(-150%);
  z-index:100;
  background:var(--text);
  color:var(--bg);
  padding:12px 20px
}
.skip-link:focus {
  transform:none
}
.site-header {
  position:fixed;
  inset:0 0 auto;
  z-index:50;
  height:var(--header-height);
  background:var(--bg);
  border-bottom:1px solid transparent
}
.site-header.is-scrolled {
  border-color:var(--line)
}
.nav-wrap {
  height:100%;
  display:flex;
  align-items:center;
  gap:28px
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.035em
}
.brand-mark {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid var(--accent);
  border-radius:50%;
  color:var(--accent);
  font-size:12px;
  transform:rotate(-12deg)
}
.site-nav {
  display:flex;
  gap:28px;
  margin-left:auto;
  font-size:13px
}
.site-nav a {
  padding-block:12px;
  position:relative
}
.site-nav a:after,.text-link:after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:5px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s var(--ease)
}
.site-nav a:hover:after,.text-link:hover:after {
  transform:scaleX(1)
}
.theme-toggle {
  width:42px;
  height:42px;
  flex-shrink:0;
  display:grid;
  place-items:center;
  background:none;
  border:1px solid var(--line);
  border-radius:50%;
  color:var(--text)
}
.theme-toggle svg {
  width:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5
}
.icon-moon {
  display:none
}
:root[data-theme=light] .icon-sun {
  display:none
}
:root[data-theme=light] .icon-moon {
  display:block
}
.nav-toggle {
  display:none
}
.hero {
  padding-top:160px;
  padding-bottom:0
}
.hero-eyebrow {
  display:flex;
  gap:18px;
  color:var(--muted);
  margin-bottom:36px
}
.hero h1 {
  font-size:clamp(68px,8.3vw,124px);
  line-height:.98;
  font-weight:500;
  letter-spacing:-.065em;
  max-width:1150px
}
.hero h1 em {
  color:var(--accent);
  font-size:1.1em
}
.hero-period {
  display:inline-block;
  font-family:Arial,sans-serif;
  color:var(--accent);
  font-size:.7em;
  font-weight:400;
  margin-left:.5em;
  vertical-align:12%
}
.hero-bottom {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8%;
  align-items:center;
  margin-top:62px
}
.hero-copy {
  max-width:470px
}
.hero-lead {
  font-size:20px;
  line-height:1.55;
  color:var(--muted);
  text-wrap:pretty
}
.hero-actions {
  display:flex;
  gap:26px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:30px
}
.button,.project-link {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  min-height:54px;
  padding:15px 22px;
  font-size:14px;
  font-weight:700;
  border:1px solid var(--line);
  border-radius:3px;
  transition:background .2s,color .2s,transform .25s var(--ease)
}
.button-primary,.project-link {
  background:var(--accent-fill);
  border-color:var(--accent-fill);
  color:var(--on-accent)
}
.button span,.project-link span,.text-link span {
  display:inline-block;
  transition:transform .25s var(--ease)
}
.text-link {
  position:relative;
  font-size:14px;
  padding:14px 0
}
.text-link span {
  margin-left:8px
}
.hero-footnote {
  margin-top:66px;
  display:flex;
  justify-content:space-between;
  padding:24px 0;
  border-top:1px solid var(--line);
  color:var(--faint)
}
.hero-footnote a {
  color:var(--text)
}
.hero-footnote a span {
  margin-left:20px
}
.system-lab {
  border-top:1px solid var(--line);
  padding-top:18px;
  min-width:0
}
.lab-topline {
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--faint);
  font-size:10px
}
.assembly {
  display:block;
  width:100%;
  height:auto;
  overflow:visible;
  margin-top:6px
}
.assembly-grid {
  stroke:var(--line);
  stroke-width:.5;
  opacity:.6;
  fill:none
}
.assembly-wire {
  stroke:var(--accent);
  stroke-width:1;
  stroke-dasharray:4 6;
  fill:none;
  transition:opacity .4s
}
.assembly-node {
  transition:transform .7s var(--ease);
  transform-box:view-box
}
.assembly-node rect {
  fill:var(--bg);
  stroke:var(--text);
  stroke-width:1.5;
  transition:rx .6s,fill .4s
}
.assembly-node path {
  stroke:var(--accent);
  stroke-width:2;
  fill:none
}
.node-a {
  transform:translate(90px,90px)
}
.node-b {
  transform:translate(270px,90px)
}
.node-c {
  transform:translate(450px,90px)
}
.node-c rect {
  fill:var(--accent-fill);
  stroke:var(--accent-fill)
}
.node-c path {
  stroke:var(--on-accent)
}
.assembly text {
  fill:var(--faint);
  font-family:'Courier New',monospace;
  font-size:10px;
  text-anchor:middle;
  letter-spacing:1px
}
.system-lab[data-stage="1"] .node-a {
  transform:translate(140px,60px) rotate(-20deg)
}
.system-lab[data-stage="1"] .node-b {
  transform:translate(280px,110px) rotate(25deg)
}
.system-lab[data-stage="1"] .node-c {
  transform:translate(395px,50px) rotate(-15deg)
}
.system-lab[data-stage="1"] .assembly-wire {
  opacity:0
}
.system-lab[data-stage="2"] .node-a {
  transform:translate(120px,90px)
}
.system-lab[data-stage="2"] .node-c {
  transform:translate(420px,90px)
}
.system-lab[data-stage="2"] .node-c rect,.system-lab[data-stage="1"] .node-c rect {
  fill:var(--bg);
  stroke:var(--text)
}
.system-lab[data-stage="2"] .node-c path,.system-lab[data-stage="1"] .node-c path {
  stroke:var(--accent)
}
.lab-controls {
  display:none;
  gap:4px
}
.js-enabled .lab-controls {
  display:flex
}
.lab-controls button {
  flex:1;
  text-align:left;
  min-height:44px;
  border:0;
  border-bottom:1px solid var(--line);
  background:none;
  color:var(--muted);
  padding:8px 0;
  font-family:'Courier New',monospace;
  font-size:12px
}
.lab-controls button[aria-pressed=true] {
  color:var(--accent);
  border-color:var(--accent)
}
.lab-description {
  font-size:12px;
  line-height:1.5;
  min-height:36px;
  margin-top:12px;
  max-width:440px
}
.section-heading-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:60px
}
.section-heading-row>p {
  max-width:300px;
  font-size:15px
}
.projects-section {
  padding-top:96px
}
.featured-cases {
  margin-top:64px
}
.case-study {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  padding-bottom:80px;
  border-bottom:1px solid var(--line);
  margin-bottom:80px;
  align-items:center
}
.case-visual {
  position:relative;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:58px 32px 26px;
  min-height:660px;
  overflow:hidden;
  border-radius:4px
}
.case-visual-quokka {
  background:#ddcfb8;
  background-image:radial-gradient(ellipse at 35% 35%,#f5ebd9,transparent 70%);
  color:var(--ink)
}
.phone-shell {
  width:min(246px,65%);
  padding:7px;
  background:#252824;
  border:1px solid #686b60;
  border-radius:37px;
  transform:rotate(-6deg);
  box-shadow:20px 35px 40px #362c222b;
  margin:12px 0 44px;
  flex-shrink:0
}
.phone-shell picture,.phone-shell img {
  border-radius:30px;
  overflow:hidden;
  width:100%;
  height:auto
}
.case-visual figcaption {
  font-family:'Courier New',monospace;
  font-size:10px;
  line-height:1.5;
  letter-spacing:.08em;
  text-align:center
}
.project-topline {
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
  font-size:10px
}
.project-index {
  color:var(--faint)
}
.project-label {
  color:var(--accent);
  text-align:right
}
.case-copy h3 {
  font-size:clamp(44px,4.8vw,68px);
  font-weight:500;
  margin-bottom:24px
}
.case-lead {
  font-size:24px;
  line-height:1.4;
  color:var(--text);
  letter-spacing:-.025em
}
.case-facts {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  margin:36px 0 26px
}
.case-facts>div {
  border-top:1px solid var(--line);
  padding-top:16px
}
dt {
  color:var(--faint);
  font-size:10px;
  text-transform:uppercase
}
dd {
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55
}
.case-delivery {
  border-top:1px solid var(--line);
  padding-top:18px
}
.case-delivery>span {
  color:var(--faint);
  font-size:10px;
  text-transform:uppercase
}
.case-delivery p {
  font-size:14px;
  margin-top:10px
}
.project-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px 16px;
  margin-top:24px
}
.project-tags li {
  font-family:'Courier New',monospace;
  font-size:10px;
  color:var(--faint)
}
.project-link {
  margin-top:30px
}
.case-study-reverse {
  grid-template-columns:1fr 1.1fr
}
.case-study-reverse .case-copy {
  grid-column:1;
  grid-row:1
}
.case-study-reverse .case-visual {
  grid-column:2;
  grid-row:1
}
.case-visual-portal {
  background:#ccd7d1;
  color:#293a30;
  min-height:560px;
  padding:44px 28px 24px;
  gap:30px
}
.case-visual-portal picture {
  width:100%;
  box-shadow:0 24px 40px #253a322b;
  border-radius:4px;
  overflow:hidden
}
.case-visual-portal img {
  width:100%;
  height:auto
}
.secondary-projects-heading {
  margin-bottom:36px
}
.secondary-projects-heading h3 {
  font-size:34px;
  font-weight:500;
  max-width:600px
}
.compact-projects {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px
}
.compact-project {
  border-top:1px solid var(--line);
  padding-top:22px;
  min-width:0
}
.compact-project h4 {
  font-size:26px;
  font-weight:500;
  min-height:88px;
  margin-bottom:26px
}
.compact-project .project-topline {
  margin-bottom:22px
}
.compact-project-visual {
  padding:16px 12px;
  background:var(--surface);
  margin-bottom:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  min-height:200px
}
.compact-project-visual img {
  width:100%;
  height:148px;
  object-fit:contain
}
.compact-project-visual figcaption {
  font-size:10px;
  color:var(--faint);
  font-family:'Courier New',monospace;
  text-align:center
}
.compact-case-details {
  margin:0
}
.compact-case-details>div+div {
  margin-top:20px
}
.compact-case-details dd {
  font-size:14px
}
.compact-project .project-tags {
  padding-top:20px;
  border-top:1px solid var(--line)
}
.section-muted {
  background:var(--paper);
  color:var(--ink)
}
.section-muted .eyebrow {
  color:#97432b
}
.section-muted p,.section-muted li {
  color:#53574b
}
.split-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8%
}
.about-copy .large-copy {
  font-size:28px;
  line-height:1.45;
  color:var(--ink);
  letter-spacing:-.025em
}
.about-copy p+p {
  margin-top:24px;
  font-size:16px
}
.responsibilities {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8%;
  border-top:1px solid #b8bdac;
  margin-top:72px;
  padding-top:36px
}
.responsibilities h3 {
  font-size:28px;
  font-weight:500
}
.responsibilities li {
  padding:14px 0;
  border-bottom:1px solid #c4c8ba;
  font-size:16px
}
.responsibilities li:before {
  content:'↗';
  display:inline-block;
  margin-right:16px;
  color:#97432b
}
.process-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:60px
}
.process-step {
  padding-top:26px;
  border-top:1px solid var(--line)
}
.process-step>span {
  color:var(--accent);
  font-size:10px
}
.process-step h3 {
  font-size:27px;
  font-weight:500;
  margin:28px 0 18px
}
.process-step p {
  font-size:15px
}
.contact-section {
  padding-top:20px
}
.contact-card {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:8%;
  border-top:1px solid var(--line);
  padding-top:70px
}
.contact-card h2 {
  font-size:clamp(44px,4.5vw,66px)
}
.contact-card p {
  margin-top:28px;
  max-width:450px;
  font-size:15px
}
.contact-actions {
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  gap:24px
}
.contact-email {
  font-size:clamp(13px,1.3vw,18px);
  border-bottom:1px solid var(--line);
  padding-bottom:6px;
  overflow-wrap:anywhere
}
.site-footer {
  border-top:1px solid var(--line);
  padding-block:28px
}
.footer-wrap {
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:11px;
  color:var(--faint)
}
@media(hover:hover) and (pointer:fine) {
  .button-primary:hover,.project-link:hover {
    background:var(--text);
    border-color:var(--text);
    color:var(--bg)
  }
  .button:hover span {
    transform:translateY(3px)
  }
  .project-link:hover span,.text-link:hover span {
    transform:translate(3px,-3px)
  }
  .theme-toggle:hover {
    border-color:var(--accent)
  }
  .lab-controls button:hover {
    color:var(--text)
  }
}
@media(min-width:1600px) {
  .hero {
    padding-top:180px
  }
  .hero h1 {
    font-size:132px
  }
}
@media(max-width:1100px) {
  .container {
    width:calc(100% - 56px)
  }
  .site-nav {
    gap:20px
  }
  .nav-wrap {
    gap:20px
  }
  .hero h1 {
    font-size:9vw
  }
  .hero-bottom {
    gap:6%
  }
  .hero-lead {
    font-size:18px
  }
  .hero-actions {
    gap:14px
  }
  .case-study,.case-study-reverse {
    gap:36px;
    grid-template-columns:1fr 1fr
  }
  .case-visual {
    min-height:590px;
    padding-inline:20px
  }
  .case-visual-portal {
    min-height:480px
  }
  .case-lead {
    font-size:21px
  }
  .case-facts {
    grid-template-columns:1fr;
    gap:18px;
    margin-top:26px
  }
  .compact-projects {
    gap:24px
  }
  .compact-project h4 {
    font-size:23px;
    min-height:104px
  }
  .compact-project-visual {
    padding:12px 6px
  }
  .project-topline {
    letter-spacing:.02em
  }
}
@media(max-width:800px) {
  :root {
    --header-height:72px
  }
  .container {
    width:calc(100% - 40px)
  }
  .section {
    padding-block:76px
  }
  .brand {
    font-size:13px
  }
  .brand-mark {
    width:30px;
    height:30px;
    font-size:10px
  }
  .nav-wrap {
    gap:10px
  }
  .theme-toggle {
    width:40px;
    height:40px;
    position:relative;
    z-index:3
  }
  .nav-toggle {
    position:relative;
    z-index:3;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    margin-left:auto;
    width:40px;
    height:40px;
    border:1px solid var(--line);
    border-radius:50%;
    background:var(--bg);
    color:var(--text)
  }
  .nav-toggle span {
    width:16px;
    height:1px;
    background:currentColor;
    transition:transform .2s,opacity .2s
  }
  .nav-toggle[aria-expanded=true] span:nth-child(1) {
    transform:translateY(6px) rotate(45deg)
  }
  .nav-toggle[aria-expanded=true] span:nth-child(2) {
    opacity:0
  }
  .nav-toggle[aria-expanded=true] span:nth-child(3) {
    transform:translateY(-6px) rotate(-45deg)
  }
  .js-enabled .site-nav {
    position:fixed;
    inset:0;
    min-height:100dvh;
    padding:calc(var(--header-height) + 48px) 24px 60px;
    background:var(--bg);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:12px;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transition:opacity .2s,visibility .2s;
    z-index:2;
    font-size:36px
  }
  .js-enabled .site-nav.is-open {
    visibility:visible;
    opacity:1;
    pointer-events:auto
  }
  .site-nav a {
    padding:8px 0
  }
  .menu-open {
    overflow:hidden
  }
  html:not(.js-enabled) .site-header {
    position:relative;
    height:auto
  }
  html:not(.js-enabled) .nav-wrap {
    flex-wrap:wrap;
    padding-block:12px
  }
  html:not(.js-enabled) .site-nav {
    display:flex;
    flex-wrap:wrap;
    order:3;
    width:100%;
    margin:0;
    gap:18px
  }
  html:not(.js-enabled) .nav-toggle,html:not(.js-enabled) .theme-toggle {
    display:none
  }
  .hero {
    padding-top:128px;
    padding-bottom:0
  }
  .hero h1 {
    font-size:10.4vw
  }
  .hero-bottom {
    gap:32px;
    grid-template-columns:1fr 1fr;
    margin-top:40px
  }
  .hero-eyebrow {
    font-size:10px;
    gap:12px;
    margin-bottom:26px
  }
  .hero-lead {
    font-size:16px
  }
  .hero-actions {
    margin-top:24px;
    gap:4px
  }
  .button {
    font-size:13px;
    min-height:50px
  }
  .hero-footnote {
    margin-top:42px;
    font-size:9px
  }
  .lab-topline {
    font-size:8px
  }
  .lab-controls button {
    font-size:10px
  }
  .lab-description {
    font-size:11px;
    min-height:50px
  }
  .section-heading-row {
    align-items:flex-start;
    gap:28px
  }
  .section-heading-row>p {
    max-width:220px;
    font-size:13px
  }
  .featured-cases {
    margin-top:46px
  }
  .case-study,.case-study-reverse {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:30px;
    margin-bottom:52px;
    padding-bottom:52px
  }
  .case-copy {
    order:0
  }
  .case-visual {
    order:1;
    min-height:0;
    padding:46px 24px 24px
  }
  .phone-shell {
    width:230px;
    margin-bottom:40px
  }
  .case-copy h3 {
    font-size:48px
  }
  .case-lead {
    max-width:500px
  }
  .case-facts {
    grid-template-columns:1fr 1fr
  }
  .case-visual-portal {
    padding:36px 24px 24px
  }
  .compact-projects {
    grid-template-columns:1fr;
    gap:40px
  }
  .compact-project {
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:28px
  }
  .compact-project .project-topline,.compact-project h4 {
    grid-column:1/-1
  }
  .compact-project h4 {
    min-height:0;
    font-size:30px;
    margin-bottom:28px
  }
  .compact-project .project-tags {
    grid-column:1/-1
  }
  .compact-project-visual {
    align-self:start;
    margin:0;
    min-height:200px
  }
  .compact-project-visual img {
    height:auto;
    max-height:240px
  }
  .split-layout,.responsibilities {
    gap:36px
  }
  .about-copy .large-copy {
    font-size:23px
  }
  .process-grid {
    gap:22px
  }
  .process-step h3 {
    font-size:23px
  }
  .process-step p {
    font-size:13px
  }
  .contact-card {
    padding-top:50px;
    grid-template-columns:1fr;
    gap:36px
  }
  .contact-actions {
    gap:20px
  }
  .contact-section {
    padding-top:0
  }
}
@media(max-width:540px) {
  .hero h1 {
    font-size:12vw;
    line-height:1.03;
    letter-spacing:-.065em
  }
  .hero h1 em {
    font-size:1.17em
  }
  .hero-period {
    margin-left:.35em
  }
  .hero {
    padding-top:124px
  }
  .hero-bottom {
    grid-template-columns:1fr;
    gap:36px;
    margin-top:32px
  }
  .hero-lead {
    font-size:17px;
    max-width:400px
  }
  .hero-actions {
    gap:20px
  }
  .hero-footnote {
    margin-top:28px;
    font-size:8px;
    gap:20px;
    align-items:center
  }
  .hero-footnote>span {
    max-width:165px
  }
  .hero-footnote a span {
    margin-left:6px
  }
  .system-lab {
    padding-top:14px
  }
  .assembly {
    max-height:142px
  }
  .lab-topline {
    font-size:9px
  }
  .lab-controls button {
    font-size:11px
  }
  .lab-description {
    min-height:34px;
    font-size:11px
  }
  .section-heading-row {
    display:block
  }
  .section-heading-row>p {
    max-width:310px;
    margin-top:24px;
    font-size:14px
  }
  h2 {
    font-size:42px
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:20px
  }
  .featured-cases {
    margin-top:38px
  }
  .project-topline {
    margin-bottom:20px
  }
  .case-copy h3 {
    font-size:48px;
    margin-bottom:20px
  }
  .case-lead {
    font-size:22px
  }
  .case-facts {
    grid-template-columns:1fr;
    gap:18px;
    margin-top:28px
  }
  .case-visual {
    padding-top:38px
  }
  .phone-shell {
    width:220px;
    max-width:75%;
    margin:10px 0 34px
  }
  .case-visual-portal {
    padding:24px 14px 20px;
    gap:22px
  }
  .case-visual figcaption {
    font-size:9px
  }
  .secondary-projects-heading h3 {
    font-size:30px
  }
  .compact-project {
    display:block
  }
  .compact-project h4 {
    font-size:29px
  }
  .compact-project-visual {
    margin-bottom:24px;
    padding:20px 12px
  }
  .compact-project-visual img {
    max-height:260px
  }
  .split-layout,.responsibilities {
    grid-template-columns:1fr;
    gap:30px
  }
  .about-copy .large-copy {
    font-size:25px
  }
  .responsibilities {
    margin-top:44px;
    padding-top:30px
  }
  .responsibilities-heading .eyebrow {
    margin-bottom:16px
  }
  .process-grid {
    grid-template-columns:1fr;
    gap:30px;
    margin-top:38px
  }
  .process-step h3 {
    font-size:28px;
    margin-top:18px
  }
  .process-step p {
    font-size:15px
  }
  .contact-card h2 {
    font-size:40px
  }
  .contact-email {
    font-size:14px
  }
  .footer-wrap {
    flex-wrap:wrap;
    gap:10px;
    font-size:10px
  }
  .footer-wrap>a {
    margin-left:auto
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }
  .button:hover span,.project-link:hover span,.text-link:hover span {
    transform:none
  }
  .phone-shell {
    transform:none
  }
}
.lab-controls {
  border:0;
  margin:0;
  padding:0;
  min-width:0
}
@media(min-width:801px) {
  .hero {
    padding-top:144px
  }
  .hero h1 {
    font-size:clamp(68px,7.4vw,112px)
  }
  .hero-bottom {
    margin-top:38px
  }
  .hero-footnote {
    margin-top:40px
  }
}
/* A short landscape viewport must scroll the menu independently of the locked page. */
@media (max-width:800px) {
  .js-enabled .site-nav {
    overflow-y:auto;
    overscroll-behavior:contain;
  }
}
@media (max-width:800px) and (max-height:540px) {
  .js-enabled .site-nav {
    justify-content:flex-start;
    padding-top:calc(var(--header-height) + 16px);
  }
}
