:root {
  --black: #080808;
  --charcoal: #11110f;
  --charcoal-2: #1a1916;
  --concrete: #77736b;
  --paper: #f1eee7;
  --paper-2: #ddd8ce;
  --ink: #171613;
  --muted: #aaa59a;
  --orange: #dc5a22;
  --orange-dark: #9f3714;
  --line-dark: rgba(241, 238, 231, 0.16);
  --line-light: rgba(23, 22, 19, 0.18);
  --pad: clamp(20px, 4vw, 68px);
  --max: 1500px;
  --sans: "Manrope", "Arial Narrow", Arial, sans-serif;
  --condensed: "Archivo", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.page-light {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: #fff;
}

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

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

button,
label,
select,
input[type="file"] {
  -webkit-tap-highlight-color: transparent;
}

img,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  color: var(--paper);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
  transition: background 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled::after,
.site-header.is-solid::after {
  background: var(--line-dark);
}

.nav-wrap {
  width: min(100%, var(--max));
  min-height: 76px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  width: fit-content;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  display: block;
  white-space: nowrap;
}

.brand small {
  margin-left: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.brand-mark {
  width: 13px;
  height: 13px;
  margin-right: 12px;
  background: var(--orange);
  box-shadow: 7px 7px 0 rgba(220, 90, 34, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.7vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(241, 238, 231, 0.74);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.025em;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--orange);
}

.button,
.nav-quote {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 12px 19px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.nav-quote:hover {
  transform: translateY(-2px);
}

.button-primary,
.nav-quote {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.button-primary:hover,
.nav-quote:hover {
  border-color: #f26b31;
  background: #f26b31;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  border-color: var(--paper);
  color: var(--paper);
}

.button-arrow {
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms ease;
}

.button:hover .button-arrow,
.nav-quote:hover .button-arrow {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--pad);
}

.measure {
  max-width: 67ch;
}

.display {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(48px, 8vw, 126px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-wrap: balance;
}

.display-medium {
  font-size: clamp(42px, 6vw, 88px);
}

.display-small {
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.96;
}

.accent-text {
  color: var(--orange);
}

.lede {
  margin: 0;
  max-width: 58ch;
  color: inherit;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.52;
}

.body-copy {
  margin: 0;
  max-width: 64ch;
  color: inherit;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}

.text-muted {
  color: #57534c;
}

.text-muted-dark {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Homepage signature floor reveal */
.stage {
  position: relative;
  background: var(--black);
}

.pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
}

canvas#gl {
  width: 100%;
  height: 100%;
}

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

.frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.7) 0%, rgba(6, 6, 6, 0.16) 47%, transparent 72%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.16) 54%, transparent 78%);
  pointer-events: none;
}

.copy {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(48px, 8vh, 96px);
  pointer-events: none;
}

.copy .line {
  position: absolute;
  inset: auto 0 0;
  opacity: 0;
  color: #fff;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.9);
  will-change: opacity, transform;
}

.copy .tag {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.copy p {
  margin: 0;
  max-width: 12ch;
  font-family: var(--condensed);
  font-size: clamp(42px, 7.2vw, 112px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.copy .line:nth-child(2) p {
  max-width: 9ch;
}

.copy .line:nth-child(3) p {
  max-width: 10ch;
}

.rail {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rail-track {
  position: relative;
  width: 1px;
  height: clamp(90px, 17vh, 180px);
  background: rgba(255, 255, 255, 0.28);
}

.rail-fill,
#railFill {
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.rail-num,
#railNum {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.loader {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 420ms ease;
}

.loader::after {
  content: "";
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: loader-sweep 950ms ease-in-out infinite;
}

body.ready .loader {
  opacity: 0;
  pointer-events: none;
}

@keyframes loader-sweep {
  0%,
  100% {
    transform: scaleX(0.1);
    opacity: 0.3;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

body.is-portrait .frame {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.03;
}

body.is-portrait .copy {
  top: 100%;
  bottom: auto;
  left: 20px;
  right: 20px;
  height: 155px;
  padding-top: 22px;
}

body.is-portrait .copy .line {
  top: 0;
  bottom: auto;
}

body.is-portrait .copy .line p {
  max-width: none;
  font-size: clamp(32px, 9vw, 46px);
}

body.is-portrait .frame::after {
  display: none;
}

body.is-portrait .rail {
  right: 12px;
  top: auto;
  bottom: 12px;
  transform: none;
}

body.is-portrait .rail-track {
  height: 62px;
}

/* Homepage content */
.home-intro {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(92px, 12vw, 180px) 0;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.68fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
}

.home-intro-copy {
  max-width: 560px;
}

.home-intro-copy p {
  margin-top: 28px;
}

.material-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #2b2925;
}

.material-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.015);
}

.material-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.76));
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.service-links {
  background: var(--charcoal);
  color: var(--paper);
  padding: clamp(86px, 11vw, 160px) 0;
}

.service-links-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 110px);
}

.service-link {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 190px;
  border-top: 1px solid var(--line-dark);
  padding: 28px 0;
  transition: color 180ms ease;
}

.service-link:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-link:hover {
  color: #fff;
}

.service-link h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(30px, 4.2vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.service-link p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 16px;
}

.service-link .service-arrow {
  color: var(--orange);
  font-size: 30px;
  transition: transform 180ms ease;
}

.service-link:hover .service-arrow {
  transform: translateX(7px);
}

.projects-tease {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(88px, 11vw, 165px) 0;
}

.projects-tease-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.project-strip {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.project-shot {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #a9a49a;
  color: #fff;
}

.project-shot.secondary {
  min-height: 620px;
}

.project-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-shot:first-child img {
  object-position: 56% 58%;
}

.project-shot.secondary img {
  object-position: center;
  transform: scale(1.06);
}

.project-shot:hover img {
  transform: scale(1.03);
}

.project-shot.secondary:hover img {
  transform: scale(1.1);
}

.project-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.78), transparent 52%);
}

.project-caption {
  position: absolute;
  z-index: 1;
  inset: auto 24px 24px;
}

.project-caption strong {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.project-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.local-band {
  background: var(--orange);
  color: #fff;
  padding: clamp(76px, 9vw, 120px) 0;
}

.local-band-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.52fr);
  gap: 48px;
  align-items: end;
}

.local-band .button {
  justify-self: end;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

/* Interior route heroes */
.page-hero {
  position: relative;
  min-height: min(860px, 92svh);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: brightness(0.56) saturate(0.72) contrast(1.08);
  transform: scale(1.025);
}

.page-hero.is-before .page-hero-media img {
  object-position: center 66%;
  filter: brightness(0.5) saturate(0.55) contrast(1.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.86), rgba(7, 7, 7, 0.26) 62%, transparent),
    linear-gradient(0deg, rgba(7, 7, 7, 0.9), transparent 54%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px var(--pad) clamp(62px, 8vw, 110px);
}

.page-hero .display {
  max-width: 10ch;
}

.page-hero .lede {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.route-label {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-light .route-label {
  color: #67635b;
}

.content-section {
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--paper);
  color: var(--ink);
}

.content-section.dark {
  background: var(--charcoal);
  color: var(--paper);
}

.content-section.concrete {
  background: #c9c4ba;
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.72fr);
}

.split-section .copy-column p + p {
  margin-top: 22px;
}

.section-title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--condensed);
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 740;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-copy {
  margin: 28px 0 0;
  max-width: 62ch;
  color: #615e57;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.dark .section-copy {
  color: var(--muted);
}

.media-block {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #aaa59a;
}

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

.media-block.floor-detail img {
  object-position: 50% 78%;
  transform: scale(1.08);
}

.media-block.crack-detail img {
  object-position: 50% 55%;
  transform: scale(1.02);
}

.fact-list,
.process-list,
.area-list {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}

.fact-list li,
.process-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) 1fr;
  gap: clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line-light);
  padding: 28px 0;
}

.dark .fact-list li,
.dark .process-list li {
  border-color: var(--line-dark);
}

.fact-list strong,
.process-list strong {
  font-family: var(--condensed);
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.fact-list p,
.process-list p {
  margin: 0;
  max-width: 55ch;
  color: #615e57;
}

.dark .fact-list p,
.dark .process-list p {
  color: var(--muted);
}

.finish-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.finish {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 24px;
  background: #363633;
  color: #fff;
}

.finish::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.15) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px);
  background-size: 18px 17px, 23px 21px, 29px 27px;
  opacity: 0.65;
}

.finish:nth-child(2) {
  background: #777a78;
}

.finish:nth-child(3) {
  background: #b3aea4;
  color: var(--ink);
}

.finish::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 66%);
}

.finish:nth-child(3)::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), transparent 66%);
}

.finish > * {
  position: relative;
  z-index: 1;
}

.finish h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 29px;
  letter-spacing: -0.03em;
}

.finish p {
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.finish:nth-child(3) p {
  color: rgba(23, 22, 19, 0.7);
}

.quote-band {
  background: var(--orange);
  color: #fff;
  padding: clamp(76px, 9vw, 126px) 0;
}

.quote-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.quote-band h2 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--condensed);
  font-size: clamp(42px, 7vw, 96px);
  letter-spacing: -0.052em;
  line-height: 0.91;
}

.quote-band .button {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin-top: 56px;
}

.project-card {
  display: block;
  color: var(--ink);
}

.project-card:nth-child(even) {
  margin-top: 110px;
}

.project-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #8f8a81;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card h2 {
  margin: 20px 0 8px;
  font-family: var(--condensed);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.project-card p {
  margin: 0;
  color: #6b675f;
  font-size: 14px;
}

.demo-note {
  margin-top: 70px;
  max-width: 72ch;
  color: #706c64;
  font-size: 13px;
  line-height: 1.7;
}

/* Area and about */
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 36px;
  margin-top: 52px;
}

.area-list li {
  border-top: 1px solid var(--line-light);
  padding: 20px 0;
  font-family: var(--condensed);
  font-size: clamp(21px, 2.1vw, 30px);
  letter-spacing: -0.025em;
}

.service-map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #262520;
}

.service-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: grayscale(0.75) brightness(0.56) contrast(1.18);
  transform: scale(1.04);
}

.service-map::after {
  content: "Columbus, Ohio";
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 720;
  letter-spacing: -0.04em;
}

/* Quote form */
.quote-page {
  min-height: 100vh;
  padding: 148px 0 clamp(80px, 10vw, 140px);
  background: var(--paper);
  color: var(--ink);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro .display-small {
  max-width: 9ch;
}

.quote-intro p {
  margin: 28px 0 0;
  color: #625f58;
}

.quote-expect {
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #625f58;
  font-size: 14px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.quote-form[data-reveal] {
  opacity: 1;
  transform: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.field label,
.fieldset-title {
  color: #4f4c46;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #aaa59b;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(220, 90, 34, 0.18);
}

.field-help {
  color: #777269;
  font-size: 12px;
}

.file-field {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px dashed #9a958b;
  padding: 18px;
}

.file-field input {
  max-width: 250px;
  min-height: auto;
  border: 0;
  padding: 0;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
}

.form-note {
  margin: 0;
  max-width: 48ch;
  color: #777269;
  font-size: 12px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: #28643c;
  font-size: 14px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(130px, 0.45fr));
  gap: 36px;
}

.footer-brand h2 {
  margin: 0;
  max-width: 8ch;
  font-family: var(--condensed);
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.footer-brand p {
  max-width: 34ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a,
.footer-col li {
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 74px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #77736b;
  font-size: 11px;
}

/* Selective entry transitions */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav-wrap > nav {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px clamp(32px, 7vw, 80px);
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .mobile-menu {
    position: fixed;
    z-index: 88;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(8, 8, 8, 0.985);
    padding: 110px var(--pad) 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    color: var(--paper);
    font-family: var(--condensed);
    font-size: clamp(25px, 6vw, 44px);
    letter-spacing: -0.03em;
  }

  .mobile-menu .button {
    width: fit-content;
    margin-top: 30px;
    border-bottom: 1px solid var(--orange);
    font-family: var(--sans);
    font-size: 12px;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 68px;
    gap: 10px;
  }

  .nav-quote {
    min-height: 44px;
    padding-inline: 13px;
  }

  .nav-quote .button-arrow {
    display: none;
  }

  .home-intro-grid,
  .service-links-head,
  .local-band-grid,
  .split-section,
  .split-section.reverse,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .material-photo,
  .media-block,
  .service-map {
    min-height: 480px;
  }

  .service-link {
    grid-template-columns: 1fr auto;
    min-height: 0;
  }

  .service-link p {
    grid-column: 1 / -1;
  }

  .project-strip {
    grid-template-columns: 1fr;
  }

  .project-shot,
  .project-shot.secondary {
    min-height: 520px;
  }

  .local-band .button {
    justify-self: start;
  }

  .finish-list {
    grid-template-columns: 1fr;
  }

  .finish {
    min-height: 300px;
  }

  .quote-band-inner {
    grid-template-columns: 1fr;
  }

  .quote-band-inner .button {
    justify-self: start;
  }

  .quote-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 24px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    margin-right: 9px;
  }

  .nav-quote {
    font-size: 10px;
  }

  .display {
    font-size: clamp(44px, 15.3vw, 70px);
  }

  .copy .tag {
    font-size: 9px;
  }

  .projects-tease-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-shot,
  .project-shot.secondary {
    min-height: 430px;
  }

  .page-hero {
    min-height: 730px;
  }

  .page-hero-inner {
    padding-top: 124px;
    padding-bottom: 54px;
  }

  .fact-list li,
  .process-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .project-card:nth-child(even) {
    margin-top: 0;
  }

  .area-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  .file-field,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
