:root {
  --ink: #111310;
  --ink-soft: #1b1e1a;
  --paper: #f1eee7;
  --white: #fffdf7;
  --gray: #a9ada7;
  --green: #607b68;
  --green-dark: #354d3e;
  --violet: #68627d;
  --line-dark: rgba(17, 19, 16, 0.2);
  --line-light: rgba(255, 253, 247, 0.25);
  --gutter: clamp(20px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 1001;
  background: rgba(255,255,255,.12);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--green);
}

.site-header {
  position: fixed;
  inset: 2px 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  min-height: 68px;
  background: rgba(17, 19, 16, .92);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand-type strong {
  font-size: 16px;
  letter-spacing: .12em;
}

.brand-type small {
  font-size: 8px;
  letter-spacing: .2em;
  opacity: .65;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: .08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  color: inherit;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle > span:nth-child(2) { top: 16px; }
.menu-toggle > span:nth-child(3) { top: 24px; }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 100px var(--gutter) 40px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
}

.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  width: min(100%, 560px);
  display: grid;
}

.mobile-menu .eyebrow {
  margin-bottom: 24px;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1.1;
}

.mobile-menu a em {
  min-width: 28px;
  font-size: 11px;
  font-style: normal;
  color: var(--green);
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.eyebrow.dark {
  color: rgba(17,19,16,.58);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0b0d0c;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% center;
  transform: scale(1.015);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,9,8,.9) 0%, rgba(7,9,8,.72) 34%, rgba(7,9,8,.12) 72%, rgba(7,9,8,.28) 100%),
    linear-gradient(0deg, rgba(7,9,8,.68), transparent 48%);
}

.hero-thread {
  position: absolute;
  inset: auto 0 18%;
  height: 190px;
  opacity: .6;
}

.hero-thread svg {
  width: 100%;
  height: 100%;
}

.hero-thread path {
  fill: none;
  stroke: #e5dfd2;
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 150px var(--gutter) 72px;
}

.hero-kicker {
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: .22em;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: clamp(60px, 9.8vw, 152px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  padding-left: clamp(22px, 12vw, 190px);
  color: var(--paper);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 44px;
  padding-left: clamp(0px, 12vw, 190px);
}

.hero-bottom p {
  max-width: 480px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.8;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  top: 112px;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.56);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 190px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .12em;
}

.text-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.text-link.light {
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.profile {
  position: relative;
  padding: clamp(90px, 12vw, 180px) var(--gutter) clamp(100px, 13vw, 200px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 3fr);
  align-items: start;
  gap: 30px;
}

.section-heading h2,
.business-intro h2,
.manufacturing-title h2,
.scale-heading h2,
.development-heading h2,
.contact h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.section-heading h2 {
  font-size: clamp(46px, 6.8vw, 104px);
  line-height: 1.02;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(0, 1.65fr);
  align-items: end;
  gap: clamp(44px, 8vw, 130px);
  margin-top: clamp(70px, 11vw, 160px);
}

.profile-copy {
  padding-bottom: 14px;
}

.profile-copy p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(17,19,16,.68);
}

.profile-copy .lead {
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.55;
  color: var(--ink);
}

.profile-copy .text-link {
  margin-top: 20px;
}

.profile-media {
  margin: 0;
}

.profile-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.profile-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(17,19,16,.62);
}

.statement {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 3fr);
  gap: 30px;
  margin-top: clamp(90px, 13vw, 190px);
  align-items: center;
}

.statement-line {
  height: 1px;
  background: var(--line-dark);
}

.statement p {
  margin: 0;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: clamp(40px, 7vw, 105px);
  line-height: 1;
  letter-spacing: -.055em;
}

.business {
  background: var(--ink);
  color: var(--white);
  padding-top: clamp(90px, 11vw, 160px);
}

.business-intro {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 3fr);
  gap: 30px;
  padding: 0 var(--gutter) clamp(70px, 9vw, 130px);
}

.business-intro h2 {
  font-size: clamp(46px, 6.8vw, 104px);
  line-height: 1.02;
}

.product-stage {
  position: relative;
  margin: 0;
  min-height: min(76vw, 900px);
  overflow: hidden;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,19,16,.08), transparent 44%, rgba(17,19,16,.34));
}

.product-stage img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.product-stage-label {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: clamp(36px, 6vw, 90px);
  display: grid;
}

.product-stage-label span {
  font-size: 11px;
  letter-spacing: .28em;
}

.product-stage-label strong {
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: clamp(54px, 10vw, 150px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.06em;
}

.business-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.business-ribbon > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 26px;
  border-right: 1px solid var(--line-light);
}

.business-ribbon em {
  font-size: 10px;
  font-style: normal;
  color: var(--green);
}

.business-ribbon strong {
  margin-top: auto;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.business-ribbon span {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.46);
}

.manufacturing {
  background: var(--paper);
  color: var(--ink);
  padding-top: clamp(100px, 13vw, 190px);
}

.manufacturing-title {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 2.2fr) minmax(220px, .8fr);
  gap: 30px;
  align-items: end;
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
}

.manufacturing-title h2 {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.02;
}

.manufacturing-title > p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(17,19,16,.65);
}

.process-band {
  min-height: clamp(520px, 63vw, 860px);
  display: grid;
  grid-template-columns: 38% 62%;
}

.process-band:nth-of-type(even) {
  grid-template-columns: 62% 38%;
}

.process-band img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.process-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 6vw, 92px) var(--gutter);
}

.process-no,
.process-en {
  font-size: 10px;
  letter-spacing: .2em;
}

.process-no {
  margin-bottom: auto;
}

.process-en {
  margin: 0 0 18px;
  opacity: .58;
}

.process-copy h3 {
  margin: 0;
  font-family: "STSong", "Songti SC", Georgia, serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.055em;
}

.process-copy > p:last-child {
  max-width: 420px;
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.85;
  opacity: .7;
}

.process-band-dark { background: #0d1010; color: var(--white); }
.process-band-violet { background: #575169; color: var(--white); }
.process-band-gray { background: #c5c5c0; color: var(--ink); }
.process-band-light { background: var(--white); color: var(--ink); }

.scale-section {
  padding: clamp(100px, 13vw, 190px) var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.scale-heading {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 3fr);
  gap: 30px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.scale-heading h2 {
  font-size: clamp(44px, 6.4vw, 98px);
  line-height: 1.03;
}

.scale-list {
  border-top: 1px solid var(--line-light);
}

.scale-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(200px, 2fr) minmax(100px, .7fr);
  align-items: baseline;
  min-height: 180px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.scale-row > span {
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.58);
}

.scale-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(80px, 13vw, 190px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.07em;
}

.scale-row em {
  font-size: 13px;
  font-style: normal;
  color: var(--green);
}

.scale-note {
  margin: 28px 0 0 auto;
  max-width: 520px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.7;
}

.development {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}

.development-image,
.development-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.development-image {
  object-fit: cover;
  object-position: center;
}

.development-overlay {
  background: linear-gradient(90deg, rgba(13,17,14,.88), rgba(13,17,14,.38) 58%, rgba(13,17,14,.15));
}

.development-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: end;
  gap: clamp(40px, 9vw, 160px);
  min-height: 1000px;
  padding: clamp(100px, 13vw, 180px) var(--gutter) 80px;
}

.development-heading h2 {
  margin-top: 24px;
  font-size: clamp(58px, 8vw, 122px);
  line-height: .98;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.timeline li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.timeline time {
  font-size: 12px;
  color: var(--green);
}

.timeline p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  background: var(--green-dark);
}

.contact-copy,
.inquiry-form {
  padding: clamp(80px, 9vw, 140px) var(--gutter);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}

.contact h2 {
  margin-top: 30px;
  font-size: clamp(44px, 5.6vw, 86px);
  line-height: 1.03;
}

.address-block {
  margin-top: auto;
  padding-top: 70px;
}

.address-block span {
  display: block;
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.56);
}

.address-block p {
  margin: 0;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.6;
}

.contact-copy .text-link {
  margin-top: 36px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-row {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.form-row label {
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.62);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 8px 0;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
}

.form-row:focus-within {
  border-bottom-color: var(--white);
}

.inquiry-form button {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.inquiry-form button:hover,
.inquiry-form button:focus-visible {
  background: transparent;
  color: var(--white);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding: 30px var(--gutter);
  background: #0a0c0a;
  border-top: 1px solid var(--line-light);
  font-size: 11px;
  color: rgba(255,255,255,.58);
}

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

.footer-brand .brand-mark {
  width: 36px;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: .1em;
}

.site-footer p {
  margin: 0;
}

.site-footer > a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(.2,.75,.2,1), transform 700ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }

  .section-heading,
  .business-intro,
  .scale-heading {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: .8fr 1.2fr;
    gap: 46px;
  }

  .manufacturing-title {
    grid-template-columns: 1fr 2fr;
  }

  .manufacturing-title > p:last-child {
    grid-column: 2;
    max-width: 500px;
  }

  .process-band,
  .process-band:nth-of-type(even) {
    grid-template-columns: 42% 58%;
  }

  .process-band:nth-of-type(even) img { order: 2; }
  .process-band:nth-of-type(even) .process-copy { order: 1; }

  .development,
  .development-content {
    min-height: 880px;
  }

  .development-content {
    grid-template-columns: 1fr;
  }

  .timeline {
    max-width: 620px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 700px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
}

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

  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-type strong { font-size: 14px; }
  .brand-type small { display: none; }

  .hero-content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 38px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7,9,8,.93) 0%, rgba(7,9,8,.66) 45%, rgba(7,9,8,.12) 78%),
      linear-gradient(90deg, rgba(7,9,8,.5), transparent);
  }

  .hero-thread {
    bottom: 23%;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
    line-height: .98;
  }

  .hero h1 span:last-child {
    padding-left: 0;
  }

  .hero-bottom {
    display: block;
    padding-left: 0;
    margin-top: 30px;
  }

  .hero-bottom p {
    max-width: 330px;
    font-size: 13px;
  }

  .hero-bottom .text-link {
    margin-top: 24px;
  }

  .hero-index {
    top: 92px;
  }

  .section-heading h2,
  .business-intro h2,
  .manufacturing-title h2,
  .scale-heading h2,
  .development-heading h2,
  .contact h2 {
    font-size: clamp(40px, 12.6vw, 60px);
  }

  .profile-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .profile-copy { order: 2; }
  .profile-media { order: 1; }

  .profile-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement p {
    font-size: clamp(40px, 14vw, 58px);
  }

  .business-ribbon {
    grid-template-columns: repeat(6, 76vw);
  }

  .business-ribbon > div {
    min-height: 150px;
  }

  .product-stage {
    min-height: 78svh;
  }

  .product-stage img {
    object-position: 48% center;
  }

  .manufacturing-title {
    grid-template-columns: 1fr;
  }

  .manufacturing-title > p:last-child {
    grid-column: auto;
  }

  .process-band,
  .process-band:nth-of-type(even) {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .process-band:nth-of-type(even) img,
  .process-band:nth-of-type(even) .process-copy {
    order: initial;
  }

  .process-band img {
    min-height: 56vw;
    aspect-ratio: 4 / 3;
  }

  .process-copy {
    min-height: 390px;
    padding: 30px var(--gutter) 46px;
  }

  .scale-row {
    grid-template-columns: 1fr auto;
    min-height: 150px;
  }

  .scale-row > span {
    grid-column: 1 / -1;
  }

  .scale-row strong {
    font-size: clamp(74px, 27vw, 118px);
  }

  .development,
  .development-content {
    min-height: 900px;
  }

  .development-image {
    object-position: 60% center;
  }

  .development-overlay {
    background: linear-gradient(0deg, rgba(13,17,14,.92), rgba(13,17,14,.55) 64%, rgba(13,17,14,.16));
  }

  .development-content {
    padding-top: 120px;
    padding-bottom: 40px;
  }

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

  .contact-copy {
    min-height: 620px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-row label {
    padding-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 190px;
  }

  .site-footer > a {
    justify-self: start;
  }
}

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