@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-Variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --concrete: #f2f1ec;
  --yard: #171c1f;
  --blue: #1957d2;
  --blue-deep: #103995;
  --lime: #c8f43d;
  --steel: #aeb7ba;
  --bay: #fcfcf8;
  --line: rgba(23, 28, 31, 0.22);
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "Source Sans 3", Arial, sans-serif;
  --gutter: clamp(1.15rem, 3vw, 3.75rem);
  --header-height: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--concrete);
  color: var(--yard);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(23, 28, 31, 0.065) 1px);
  background-size: calc((100vw - 2 * var(--gutter)) / 6) 100%;
  background-position: var(--gutter) 0;
  pointer-events: none;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--yard);
  color: var(--bay);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--yard);
  background: rgba(242, 241, 236, 0.96);
}

.masthead-primary {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  align-items: stretch;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  text-decoration: none;
}

.wordmark-numbers {
  display: grid;
  grid-template-columns: auto 5px auto;
  align-items: center;
  gap: 0.38rem;
  font-family: var(--display);
  font-size: 2.15rem;
  letter-spacing: -0.1em;
  line-height: 1;
}

.wordmark-numbers i {
  width: 5px;
  height: 38px;
  background: var(--blue);
}

.wordmark-name {
  max-width: 8rem;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 660;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
}

.header-actions a {
  display: grid;
  align-content: center;
  min-width: 230px;
  padding: 1rem 1.5rem;
  border-left: 1px solid var(--line);
  text-decoration: none;
}

.header-actions small {
  color: #687175;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions span {
  font-family: var(--display);
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.route-nav {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, minmax(105px, 0.75fr));
  min-height: 53px;
  padding-inline: var(--gutter);
}

.route-nav > * {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 630;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.route-nav b {
  color: var(--blue);
}

.route-origin {
  padding-left: 0;
  color: #687175;
}

.route-nav a:hover {
  background: var(--lime);
}

.route-nav a.is-active {
  background: var(--yard);
  color: var(--bay);
}

.route-nav a.is-active b {
  color: var(--lime);
}

.mobile-dock {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
  min-height: min(780px, calc(100vh - var(--header-height)));
  overflow: hidden;
  border-bottom: 1px solid var(--yard);
}

.hero-watermark {
  position: absolute;
  z-index: 0;
  top: -0.22em;
  left: -0.045em;
  color: rgba(23, 28, 31, 0.045);
  font-family: var(--display);
  font-size: clamp(14rem, 32vw, 34rem);
  font-weight: 690;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(4rem, 8vw, 8.5rem) var(--gutter) 2rem;
}

.coordinate {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.coordinate::before {
  width: 34px;
  height: 8px;
  background: var(--lime);
  content: "";
}

h1 {
  max-width: 10.6ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.5vw, 8.6rem);
  font-weight: 630;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

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

.hero-lede {
  max-width: 43rem;
  margin: 2rem 0 0;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.32;
}

.hero-note {
  max-width: 38rem;
  margin: 0.9rem 0 0;
  color: #4f595d;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--yard);
  background: var(--yard);
  color: var(--bay);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 690;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button::after {
  margin-left: 1.1rem;
  content: "↗";
}

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

.button--lime {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--yard);
}

.button--outline {
  background: transparent;
  color: var(--yard);
}

.button--light {
  border-color: rgba(252, 252, 248, 0.72);
  background: transparent;
  color: var(--bay);
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-index span {
  padding: 0.7rem 0.85rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 690;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 0.8fr;
  min-width: 0;
  padding: 1.2rem 1.2rem 3.4rem 0;
  background: var(--blue);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--yard);
  background: var(--steel);
}

.hero-photo--road {
  grid-row: 1 / 3;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
}

.hero-photo--dock {
  border-left: 0;
}

.hero-photo--worker {
  border-top: 0;
  border-left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.hero-photo img {
  filter: saturate(0.78) contrast(1.05);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  border: 8px solid transparent;
  content: "";
  pointer-events: none;
}

.hero-photo--dock::after {
  border-top-color: var(--lime);
}

.photo-note {
  position: absolute;
  right: 1.2rem;
  bottom: 0.65rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-contact {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr;
  align-items: center;
  min-height: 88px;
  background: var(--lime);
  font-family: var(--display);
}

.preview-contact > * {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1rem var(--gutter);
  border-right: 1px solid var(--yard);
  font-style: normal;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 0.5rem);
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2,
h3 {
  font-family: var(--display);
}

h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.3vw, 7.4rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  border-bottom: 1px solid var(--yard);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 4.8fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-intro > div {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.section-number {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-number--light {
  color: var(--lime);
}

.section-lede {
  max-width: 39rem;
  margin: 0;
  color: #4a5458;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.42;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--yard);
  border-left: 1px solid var(--yard);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 355px;
  flex-direction: column;
  padding: clamp(1.3rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--yard);
  border-bottom: 1px solid var(--yard);
  background: var(--bay);
}

.service-card::before,
.service-card::after {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--yard);
  content: "";
}

.service-card::before {
  width: 20px;
  height: 1px;
}

.service-card::after {
  width: 1px;
  height: 20px;
}

.service-card--blue {
  background: var(--blue);
  color: var(--bay);
}

.service-card--lime {
  background: var(--lime);
}

.service-code {
  margin-bottom: auto;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.service-card--blue .service-code {
  color: var(--lime);
}

.service-card h3 {
  max-width: 9ch;
  margin-top: 4rem;
}

.service-card p {
  margin: 1rem 0 1.8rem;
  color: #4f595d;
}

.service-card--blue p {
  color: rgba(252, 252, 248, 0.78);
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.work-section {
  padding-block: 0;
  background: var(--bay);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 760px;
}

.work-photo {
  position: relative;
  min-height: 760px;
  margin: 0 0 0 calc(-1 * var(--gutter));
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 74px), calc(100% - 74px) 100%, 0 100%);
}

.work-photo::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 42%;
  background: var(--lime);
  content: "";
}

.work-photo img {
  filter: saturate(0.82) contrast(1.04);
}

.work-photo figcaption,
.perspective-photo figcaption {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  padding: 0.42rem 0.65rem;
  background: var(--yard);
  color: var(--bay);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem) 0 clamp(4rem, 7vw, 8rem) clamp(2.5rem, 6vw, 7rem);
}

.work-copy h2 {
  margin: 2rem 0 1.5rem;
  font-size: clamp(3.4rem, 5.2vw, 6rem);
}

.work-steps {
  padding: 0;
  margin: 3rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.work-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.work-steps li > b {
  color: var(--blue);
  font-family: var(--display);
}

.work-steps h3 {
  font-size: 1.45rem;
}

.work-steps p {
  margin: 0.45rem 0 0;
  color: #4f595d;
}

.perspective-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.05fr);
  min-height: 710px;
  border-bottom: 1px solid var(--yard);
  background: var(--blue);
  color: var(--bay);
}

.perspective-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) var(--gutter);
}

.perspective-copy h2 {
  max-width: 9ch;
  margin: 2rem 0;
  font-size: clamp(3.6rem, 6vw, 7.2rem);
}

.perspective-copy > p:not(.section-number) {
  max-width: 42rem;
  margin: 0;
  color: rgba(252, 252, 248, 0.82);
  font-size: 1.18rem;
}

.perspective-copy address {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(252, 252, 248, 0.45);
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.77rem;
  font-style: normal;
  font-weight: 670;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.perspective-photo {
  position: relative;
  min-height: 710px;
  margin: 1.2rem 1.2rem 1.2rem 0;
  overflow: hidden;
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
}

.perspective-photo img {
  filter: saturate(0.7) contrast(1.1);
}

.manifest-section {
  background: var(--concrete);
}

.manifest-head {
  display: grid;
  grid-template-columns: 0.6fr 2.2fr 0.85fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.manifest-head h2 {
  max-width: 10ch;
}

.manifest-head > p:last-child {
  margin: 0;
  color: #4f595d;
}

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--yard);
  border-left: 1px solid var(--yard);
  list-style: none;
}

.manifest-grid li {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 1.4rem;
  border-right: 1px solid var(--yard);
  border-bottom: 1px solid var(--yard);
  background: var(--bay);
}

.manifest-grid b {
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.75rem;
}

.manifest-grid span {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 610;
  line-height: 1.08;
}

.gallery-section {
  background: var(--bay);
}

.gallery-head {
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.8fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}

.gallery-head p:last-child {
  margin: 0;
  color: #4f595d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--yard);
}

.gallery-item--city {
  grid-column: 1 / 7;
  grid-row: 1 / 4;
}

.gallery-item--road {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

.gallery-item--dock {
  grid-column: 7 / 10;
  grid-row: 3 / 6;
}

.gallery-item--floor {
  grid-column: 10 / 13;
  grid-row: 3 / 6;
}

.gallery-item--worker {
  grid-column: 1 / 7;
  grid-row: 4 / 6;
}

.gallery-item img {
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: rgba(23, 28, 31, 0.88);
  color: var(--bay);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item figcaption b {
  color: var(--lime);
}

.gallery-note {
  max-width: 58rem;
  margin: 1rem 0 0 auto;
  color: #657074;
  font-size: 0.75rem;
  text-align: right;
}

.brief-zone {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  background: var(--yard);
  color: var(--bay);
  border-bottom: 1px solid var(--yard);
}

.brief-intro {
  position: relative;
  min-width: 0;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.brief-intro::after {
  position: absolute;
  right: -9px;
  top: 9rem;
  width: 17px;
  height: 17px;
  border: 1px solid var(--yard);
  background: var(--lime);
  content: "";
}

.brief-intro h2 {
  max-width: 8ch;
  margin: 2rem 0;
  color: var(--bay);
  font-size: clamp(3.8rem, 6.3vw, 7.4rem);
}

.brief-intro > p:not(.section-number) {
  max-width: 34rem;
  color: rgba(252, 252, 248, 0.72);
  font-size: 1.13rem;
}

.brief-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.brief-key span {
  display: grid;
  gap: 1.8rem;
  padding: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(252, 252, 248, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-key b {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.2rem;
}

.brief-form {
  min-width: 0;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: #22292d;
}

.form-block,
.reply-field {
  padding: 0;
  margin: 0;
  border: 0;
}

.form-block {
  margin-bottom: 2.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.form-block > legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0 1.6rem;
  color: rgba(252, 252, 248, 0.78);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-block > legend b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--lime);
  color: var(--yard);
  font-size: 0.8rem;
}

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

.field {
  display: grid;
  min-width: 0;
  gap: 0.42rem;
}

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

.field > span,
.reply-field > legend {
  color: rgba(252, 252, 248, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: #171c1f;
  color: var(--bay);
}

.field select {
  color-scheme: dark;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(252, 252, 248, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  outline: 2px solid var(--lime);
  outline-offset: 1px;
}

.reply-field > legend {
  margin-bottom: 0.65rem;
}

.reply-options {
  display: flex;
  gap: 0.65rem;
}

.reply-options label {
  cursor: pointer;
}

.reply-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reply-options label span {
  display: inline-flex;
  min-width: 105px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reply-options input:checked + span {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--yard);
}

.reply-options input:focus-visible + span {
  outline: 3px solid var(--bay);
  outline-offset: 3px;
}

.form-submit {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.form-submit p {
  max-width: 42rem;
  margin: 0;
  color: rgba(252, 252, 248, 0.62);
  font-size: 0.76rem;
}

.summary-panel {
  display: none;
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--lime);
  background: #101416;
}

.summary-panel.is-visible {
  display: block;
}

.summary-status {
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-panel h3 {
  margin: 0.8rem 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.summary-panel > p:not(.summary-status) {
  color: rgba(252, 252, 248, 0.74);
}

.summary-panel pre {
  overflow-x: auto;
  padding: 1rem;
  border-left: 4px solid var(--lime);
  background: #22292d;
  color: var(--bay);
  font-family: var(--body);
  font-size: 0.84rem;
  white-space: pre-wrap;
}

.noscript-note {
  padding: 1rem;
  border: 1px solid var(--lime);
  color: var(--bay);
}

.contact-signal {
  display: grid;
  grid-template-columns: minmax(340px, 1.35fr) repeat(3, minmax(220px, 0.75fr));
  background: var(--lime);
  color: var(--yard);
  border-bottom: 1px solid var(--yard);
}

.contact-heading,
.contact-channel {
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem) var(--gutter);
  border-right: 1px solid var(--yard);
}

.contact-heading h2 {
  max-width: 10ch;
  margin: 1rem 0;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
}

.contact-heading > p:last-child {
  margin-bottom: 0;
}

.contact-channel {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.contact-channel small {
  margin-bottom: auto;
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channel > a,
.contact-channel address {
  margin: 4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 2.3rem);
  font-style: normal;
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-channel > span {
  color: rgba(23, 28, 31, 0.72);
  font-size: 0.8rem;
}

.site-footer {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 1.2rem;
  background: var(--yard);
  color: var(--bay);
}

.footer-mark {
  position: absolute;
  z-index: 0;
  right: -0.06em;
  bottom: -0.18em;
  display: flex;
  align-items: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(252, 252, 248, 0.17);
  font-family: var(--display);
  font-size: clamp(14rem, 32vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.13em;
  line-height: 0.9;
}

.footer-mark i {
  width: 0.025em;
  height: 0.65em;
  margin: 0 0.06em;
  background: var(--lime);
}

.footer-top,
.footer-nav,
.footer-contact {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.wordmark--footer {
  padding: 0;
  color: var(--bay);
}

.footer-top > p {
  margin: 0;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-nav a {
  padding: 0.85rem 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--bay);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  background: var(--lime);
  color: var(--yard);
}

.footer-contact {
  position: absolute;
  right: var(--gutter);
  bottom: 1.2rem;
  left: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(252, 252, 248, 0.68);
  font-size: 0.72rem;
}

.footer-contact a {
  color: var(--bay);
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-signal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-heading {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--yard);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .masthead-primary {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .header-actions,
  .route-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    min-width: 108px;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--yard);
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle i {
    width: 12px;
    height: 12px;
    border: 2px solid var(--blue);
    background: var(--lime);
  }

  .mobile-dock {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    max-height: 90vh;
    overflow-y: auto;
    border-top: 4px solid var(--lime);
    background: var(--yard);
    color: var(--bay);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .mobile-dock.is-open {
    transform: translateY(0);
  }

  .mobile-dock-head,
  .mobile-dock-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-family: var(--display);
    text-transform: uppercase;
  }

  .mobile-dock-head button {
    border: 0;
    background: transparent;
    color: var(--lime);
    cursor: pointer;
  }

  .mobile-dock nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-dock nav a {
    display: grid;
    gap: 1rem;
    min-height: 130px;
    align-content: space-between;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
  }

  .mobile-dock nav b {
    color: var(--lime);
  }

  .mobile-dock-actions {
    justify-content: flex-start;
    gap: 0.6rem;
    border-bottom: 0;
  }

  .mobile-dock .button--outline {
    border-color: var(--bay);
    color: var(--bay);
  }

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

  .hero-copy {
    min-height: 690px;
  }

  .hero-collage {
    min-height: 620px;
    padding-left: var(--gutter);
  }

  .section-intro,
  .section-intro > div,
  .manifest-head,
  .gallery-head {
    grid-template-columns: 1fr;
  }

  .section-intro > div,
  .manifest-head,
  .gallery-head {
    gap: 1.5rem;
  }

  .work-grid,
  .perspective-section,
  .brief-zone {
    grid-template-columns: 1fr;
  }

  .work-photo {
    min-height: 560px;
    margin-right: calc(-1 * var(--gutter));
  }

  .work-copy {
    padding-left: 0;
  }

  .perspective-photo {
    min-height: 540px;
    margin: 0 var(--gutter) var(--gutter);
  }

  .brief-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .brief-intro::after {
    top: auto;
    right: var(--gutter);
    bottom: -9px;
  }

  .contact-signal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-heading {
    grid-column: 1 / -1;
  }

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

  .preview-contact a {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1rem;
  }

  .wordmark-name {
    display: none;
  }

  .wordmark-numbers {
    font-size: 1.8rem;
  }

  .hero-copy {
    min-height: 620px;
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5.4rem);
  }

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

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    min-height: 490px;
  }

  .section {
    padding-block: 4.7rem;
  }

  h2,
  .work-copy h2,
  .perspective-copy h2,
  .brief-intro h2 {
    font-size: clamp(3rem, 14.5vw, 4.9rem);
  }

  .service-grid,
  .manifest-grid,
  .form-grid,
  .contact-signal {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .work-photo {
    min-height: 430px;
  }

  .work-copy {
    padding-block: 4.7rem;
  }

  .perspective-copy {
    padding-block: 5rem;
  }

  .perspective-photo {
    min-height: 410px;
  }

  .manifest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifest-grid li {
    min-height: 145px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item--city,
  .gallery-item--road,
  .gallery-item--dock,
  .gallery-item--floor,
  .gallery-item--worker {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-item--city,
  .gallery-item--worker {
    min-height: 390px;
  }

  .gallery-note {
    text-align: left;
  }

  .brief-key {
    grid-template-columns: 1fr;
  }

  .brief-key span {
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.6rem;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-heading,
  .contact-channel {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--yard);
  }

  .contact-channel {
    min-height: 230px;
  }

  .footer-top,
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top > p {
    margin-top: 2rem;
    text-align: left;
  }

  .site-footer {
    min-height: 660px;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .mobile-dock nav {
    grid-template-columns: 1fr;
  }

  .mobile-dock nav a {
    display: flex;
    min-height: 0;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .preview-contact span {
    display: none;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
