@font-face {
  font-family: "Smiley Sans Display";
  src: url("assets/fonts/smiley-sans-display.woff2") format("woff2");
  font-display: swap;
}

:root {
  --paper: #f1f3f4;
  --white: #fbfcfc;
  --ink: #101417;
  --graphite: #1b2228;
  --steel: #7d8991;
  --line: #aeb7bd;
  --blue: #2257d6;
  --orange: #ef6a32;
  --display: "Smiley Sans Display", "Arial Narrow", sans-serif;
  --body: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(24px, 4vw, 72px);
  --header-height: 76px;
}

* {
  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);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

a,
button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

a,
button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

figure,
h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

address {
  font-style: normal;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

:focus-visible {
  outline: 3px solid #ad3d19;
  outline-offset: 4px;
}

input,
select,
textarea {
  caret-color: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 14px;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease-out;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(16, 20, 23, 0.38);
  background: rgba(241, 243, 244, 0.95);
  transition: background 180ms ease-out, border-color 180ms ease-out;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 252, 0.99);
  border-color: var(--ink);
}

.brand {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-type {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-type small {
  color: #4d5960;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.desktop-nav a {
  min-width: 92px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(16, 20, 23, 0.22);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease-out, color 160ms ease-out;
}

.desktop-nav a:last-child {
  border-right: 1px solid rgba(16, 20, 23, 0.22);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="true"] {
  background: var(--blue);
  color: var(--white);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 180ms ease-out;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  display: grid;
  align-content: space-between;
  padding: 36px var(--gutter) 24px;
  background: var(--ink);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 0s linear 180ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu nav {
  border-top: 1px solid rgba(251, 252, 252, 0.35);
}

.mobile-menu a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(251, 252, 252, 0.28);
  text-decoration: none;
}

.mobile-menu a span {
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
}

.mobile-menu a small {
  color: #b6c5cf;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.menu-close {
  min-height: 50px;
  border: 1px solid rgba(251, 252, 252, 0.6);
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(480px, 48%) 1fr;
  grid-template-rows: 1fr auto;
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(86px, 10vw, 154px) var(--gutter) 104px;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--gutter);
  width: 1px;
  background: rgba(16, 20, 23, 0.35);
}

.eyebrow,
.section-index,
.micro {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  color: #4f5b63;
}

.eyebrow span {
  padding: 4px 8px;
  background: var(--blue);
  color: var(--white);
}

.hero-word {
  position: absolute;
  z-index: -1;
  left: calc(var(--gutter) - 12px);
  top: 20%;
  color: #d7dde1;
  font-family: var(--display);
  font-size: clamp(130px, 15vw, 250px);
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -0.1em;
  writing-mode: vertical-rl;
  opacity: 0.72;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 660px;
  font-family: var(--display);
  font-size: clamp(56px, 6.5vw, 108px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 2px solid var(--orange);
  color: #3f4a51;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease-out, color 160ms ease-out;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--orange);
  font-size: 18px;
}

.chrom-line {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 28px;
  width: 100%;
  height: 92px;
  color: var(--blue);
  pointer-events: none;
}

.chrom-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.hero-visual {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: var(--graphite);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--blue);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.82) contrast(1.03);
}

.hero-visual figcaption,
.base-visual figcaption,
.direction-row figcaption,
.process-step figcaption,
.development-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  padding: 6px 9px;
  background: rgba(16, 20, 23, 0.9);
  color: var(--white);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.hero-visual figcaption span {
  margin-right: 16px;
  color: #7da0ff;
}

.hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  background: var(--white);
}

.hero-index span,
.hero-index strong {
  padding: 12px var(--gutter);
  border-right: 1px solid rgba(16, 20, 23, 0.25);
}

.hero-index span {
  padding-bottom: 0;
  color: #65727a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-index strong {
  padding-top: 2px;
  font-size: 13px;
}

.hero-index span:nth-of-type(n + 2),
.hero-index strong:nth-of-type(n + 2) {
  grid-row: auto;
}

.hero-index {
  grid-template-rows: auto auto;
  grid-auto-flow: column;
}

.base-section {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  min-height: 820px;
  border-bottom: 1px solid var(--ink);
}

.base-visual {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--graphite);
}

.base-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.base-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--gutter);
  background: var(--white);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  color: var(--blue);
}

.section-index::before {
  content: "";
  width: 44px;
  height: 3px;
  background: currentColor;
}

.base-copy h2,
.section-heading h2,
.process-heading h2,
.development-copy h2,
.contact-intro h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 86px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.lead-copy {
  max-width: 620px;
  margin-top: 34px;
  color: #3f4b52;
  font-size: 18px;
}

.fact-lines {
  margin-top: 52px;
  border-top: 2px solid var(--ink);
}

.fact-lines div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact-lines dt {
  color: #637179;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.fact-lines dd {
  font-weight: 700;
}

.directions-section {
  padding: 110px var(--gutter) 130px;
  border-bottom: 1px solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 74px;
  border-bottom: 2px solid var(--ink);
}

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading > p:last-child {
  max-width: 520px;
  padding-top: 16px;
  border-top: 2px solid var(--orange);
  color: #46535b;
}

.direction-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1.36fr) minmax(280px, 0.64fr);
  gap: 38px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.direction-number {
  align-self: start;
  padding-top: 6px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.direction-row figure {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--graphite);
}

.direction-row figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue);
}

.direction-row img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.direction-copy {
  padding: 34px 0;
}

.direction-copy .micro {
  color: #5e6d75;
}

.direction-copy h3 {
  margin: 16px 0 24px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.direction-copy p:last-child {
  max-width: 400px;
  color: #49555d;
}

.direction-row-reverse {
  grid-template-columns: 92px minmax(280px, 0.64fr) minmax(0, 1.36fr);
}

.direction-row-reverse figure {
  grid-column: 3;
}

.direction-row-reverse .direction-copy {
  grid-column: 2;
  grid-row: 1;
}

.direction-row-reverse .direction-number {
  grid-column: 1;
  grid-row: 1;
}

.process-section {
  position: relative;
  padding: 118px var(--gutter) 140px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(251, 252, 252, 0.08);
}

.process-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(251, 252, 252, 0.42);
}

.process-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: #7da0ff;
}

.process-heading > p:last-child {
  color: #b8c2c8;
}

.process-track {
  position: absolute;
  z-index: 2;
  left: calc(var(--gutter) + 36px);
  top: 510px;
  bottom: 180px;
  width: 2px;
  background: rgba(125, 160, 255, 0.22);
}

.process-track span {
  display: block;
  width: 100%;
  height: var(--process-progress, 0%);
  background: var(--blue);
}

.process-step {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 74px minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 36px;
  align-items: center;
  padding: 68px 0;
  border-bottom: 1px solid rgba(251, 252, 252, 0.22);
}

.step-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  background: var(--ink);
}

.step-meta span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid #7da0ff;
  background: var(--ink);
  color: #9bb5ff;
  font-family: var(--mono);
  font-size: 10px;
}

.step-meta small {
  color: #96a3aa;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.step-copy h3 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.95;
}

.step-copy p {
  max-width: 390px;
  margin-top: 22px;
  color: #b9c3c9;
}

.process-step figure {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-top: 3px solid var(--blue);
  background: #080b0d;
}

.process-step img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.process-step-alt {
  grid-template-columns: 74px minmax(0, 1.38fr) minmax(260px, 0.62fr);
}

.process-step-alt figure {
  grid-column: 2;
}

.process-step-alt .step-copy {
  grid-column: 3;
  grid-row: 1;
}

.development-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  min-height: 980px;
  border-bottom: 1px solid var(--ink);
}

.development-visual {
  position: sticky;
  top: var(--header-height);
  align-self: start;
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--graphite);
}

.development-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.development-copy {
  padding: 110px var(--gutter) 130px;
  background: var(--white);
}

.timeline {
  list-style: none;
  margin-top: 70px;
  padding: 0;
  border-top: 2px solid var(--ink);
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.timeline strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.05;
}

.timeline p {
  color: #48545b;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  min-height: 760px;
  border-bottom: 1px solid var(--ink);
}

.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--gutter);
  background: var(--paper);
}

.contact-intro > p:not(.section-index) {
  max-width: 560px;
  margin-top: 30px;
  color: #46525a;
}

.contact-intro address {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px 24px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.contact-intro address span {
  color: #637179;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.contact-intro address strong,
.contact-intro address a {
  font-weight: 700;
  text-decoration: none;
}

#inquiry-form {
  align-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  padding: 110px var(--gutter);
  border-left: 1px solid var(--ink);
  background: var(--white);
}

.field {
  display: grid;
  gap: 9px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: #56646c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--blue);
}

.submit-button {
  grid-column: 1 / -1;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transition: background 160ms ease-out;
}

.submit-button:hover {
  background: var(--blue);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 26px;
  color: #a43f1d;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  min-height: 160px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.6fr) minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px var(--gutter);
  background: var(--ink);
  color: #b9c2c7;
  font-size: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.footer-brand img {
  width: 42px;
  height: 42px;
  padding: 4px;
  background: var(--white);
}

.footer-brand strong {
  font-size: 14px;
}

html.motion-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 380ms ease-out, transform 380ms ease-out;
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .desktop-nav a {
    min-width: 78px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(420px, 46%) 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 82px);
  }

  .base-section {
    grid-template-columns: 1fr 1fr;
  }

  .direction-row,
  .direction-row-reverse {
    grid-template-columns: 58px minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
  }

  .direction-row-reverse figure {
    grid-column: 2;
  }

  .direction-row-reverse .direction-copy {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-copy {
    min-height: 680px;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .hero-word {
    left: auto;
    right: var(--gutter);
    top: 14%;
    writing-mode: horizontal-tb;
    font-size: clamp(120px, 24vw, 190px);
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(60px, 10.5vw, 94px);
  }

  .hero-visual {
    min-height: 62vw;
    max-height: 720px;
  }

  .hero-index {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .hero-index span,
  .hero-index strong {
    padding-left: var(--gutter);
  }

  .base-section,
  .development-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .base-visual {
    min-height: 64vw;
  }

  .base-copy,
  .development-copy,
  .contact-intro,
  #inquiry-form {
    padding-top: 86px;
    padding-bottom: 94px;
  }

  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading .section-index,
  .process-heading .section-index {
    margin-bottom: 0;
  }

  .direction-row,
  .direction-row-reverse {
    grid-template-columns: 48px 1fr;
    gap: 24px;
  }

  .direction-row figure,
  .direction-row-reverse figure {
    grid-column: 2;
    min-height: 58vw;
  }

  .direction-row img {
    min-height: 58vw;
  }

  .direction-row .direction-copy,
  .direction-row-reverse .direction-copy {
    grid-column: 2;
    grid-row: auto;
  }

  .direction-row .direction-number,
  .direction-row-reverse .direction-number {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .process-track {
    left: calc(var(--gutter) + 18px);
    top: 530px;
  }

  .process-step,
  .process-step-alt {
    grid-template-columns: 40px 1fr;
    gap: 22px;
  }

  .process-step .step-meta,
  .process-step-alt .step-meta {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .process-step .step-copy,
  .process-step-alt .step-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .process-step figure,
  .process-step-alt figure {
    grid-column: 2;
    grid-row: 2;
    min-height: 52vw;
  }

  .process-step img {
    min-height: 52vw;
  }

  .development-visual {
    position: relative;
    top: auto;
    height: 68vw;
  }

  #inquiry-form {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

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

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-type strong {
    font-size: 16px;
  }

  .brand-type small {
    font-size: 8px;
  }

  .mobile-menu {
    padding-inline: 20px;
  }

  .mobile-menu a {
    min-height: 70px;
  }

  .hero-copy {
    min-height: 650px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 34px;
  }

  .hero-word {
    top: 13%;
    right: 10px;
    font-size: 112px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-index {
    grid-template-columns: 1fr 1fr;
  }

  .hero-index span,
  .hero-index strong {
    padding-right: 12px;
    padding-left: 12px;
  }

  .base-section,
  .development-section,
  .contact-section {
    min-height: auto;
  }

  .base-visual,
  .development-visual {
    min-height: 350px;
    height: 350px;
  }

  .base-copy,
  .directions-section,
  .process-section,
  .development-copy,
  .contact-intro,
  #inquiry-form {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .base-copy h2,
  .section-heading h2,
  .process-heading h2,
  .development-copy h2,
  .contact-intro h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .lead-copy {
    font-size: 16px;
  }

  .fact-lines div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .section-heading {
    padding-bottom: 52px;
  }

  .direction-row,
  .direction-row-reverse {
    grid-template-columns: 26px 1fr;
    gap: 14px;
    padding: 46px 0;
  }

  .direction-row figure,
  .direction-row-reverse figure,
  .direction-row img {
    min-height: 280px;
  }

  .direction-copy h3 {
    font-size: 54px;
  }

  .process-track {
    display: none;
  }

  .process-step,
  .process-step-alt {
    grid-template-columns: 26px 1fr;
    gap: 14px;
    padding: 48px 0;
  }

  .step-meta span {
    width: 26px;
    height: 26px;
  }

  .process-step figure,
  .process-step-alt figure,
  .process-step img {
    min-height: 260px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-intro address {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-intro address strong,
  .contact-intro address a {
    margin-bottom: 12px;
  }

  #inquiry-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .field-wide,
  .submit-button,
  .form-status {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
